From f8c055d313ed1cc778c0a293b7bc94258d495b27 Mon Sep 17 00:00:00 2001 From: Bas Rutten Date: Mon, 21 Oct 2024 19:49:24 +0200 Subject: [PATCH] Updated dynamo/model with correct classes --- dynamo-angular/dynamo/model/api.module.ts | 4 +- dynamo-angular/dynamo/model/api/api.ts | 4 +- .../dynamo/model/api/autoFill.service.ts | 12 +++--- .../dynamo/model/api/cRUD.service.ts | 20 +++++----- .../dynamo/model/api/export.service.ts | 14 +++---- .../dynamo/model/api/file.service.ts | 12 +++--- .../dynamo/model/api/model.service.ts | 12 +++--- .../dynamo/model/api/status.service.ts | 10 ++--- dynamo-angular/dynamo/model/configuration.ts | 4 +- dynamo-angular/dynamo/model/encoder.ts | 4 +- dynamo-angular/dynamo/model/git_push.sh | 4 +- dynamo-angular/dynamo/model/index.ts | 4 +- .../dynamo/model/model/abstractEntity.ts | 10 ++--- .../model/model/attributeGroupResponse.ts | 10 ++--- .../model/model/attributeModelResponse.ts | 11 +++--- .../dynamo/model/model/autoFillOptions.ts | 10 ++--- .../dynamo/model/model/autoFillRequest.ts | 10 ++--- .../dynamo/model/model/cascadeModel.ts | 10 ++--- .../model/model/dateRangeFilterModel.ts | 10 ++--- .../model/elementCollectionFilterModel.ts | 10 ++--- .../model/model/entityModelActionResponse.ts | 17 +++++--- .../dynamo/model/model/entityModelResponse.ts | 10 ++--- .../dynamo/model/model/equalsFilterModel.ts | 10 ++--- .../dynamo/model/model/filterModel.ts | 10 ++--- .../model/model/instantRangeFilterModel.ts | 10 ++--- .../model/localDateTimeRangeFilterModel.ts | 10 ++--- .../dynamo/model/model/localTime.ts | 10 ++--- dynamo-angular/dynamo/model/model/models.ts | 4 +- .../dynamo/model/model/notFilterModel.ts | 10 ++--- .../dynamo/model/model/nullFilterModel.ts | 39 +++++++++++++++++++ .../dynamo/model/model/numberInFilterModel.ts | 10 ++--- .../model/model/numberRangeFilterModel.ts | 10 ++--- .../dynamo/model/model/orFilterModel.ts | 10 ++--- .../dynamo/model/model/pagingModel.ts | 10 ++--- .../dynamo/model/model/searchModel.ts | 10 ++--- .../model/model/searchModelFiltersInner.ts | 8 ++-- .../model/searchResultsModelAbstractEntity.ts | 10 ++--- .../dynamo/model/model/sortModel.ts | 10 ++--- .../dynamo/model/model/statsModel.ts | 10 ++--- .../dynamo/model/model/statusResponse.ts | 10 ++--- .../model/model/timeRangeFilterModel.ts | 10 ++--- dynamo-angular/dynamo/model/param.ts | 4 +- dynamo-angular/dynamo/model/variables.ts | 4 +- 43 files changed, 239 insertions(+), 192 deletions(-) create mode 100644 dynamo-angular/dynamo/model/model/nullFilterModel.ts diff --git a/dynamo-angular/dynamo/model/api.module.ts b/dynamo-angular/dynamo/model/api.module.ts index 16ba03c3e..f8432b925 100644 --- a/dynamo-angular/dynamo/model/api.module.ts +++ b/dynamo-angular/dynamo/model/api.module.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/dynamo-angular/dynamo/model/api/api.ts b/dynamo-angular/dynamo/model/api/api.ts index 9934e6423..cfc64fb3d 100644 --- a/dynamo-angular/dynamo/model/api/api.ts +++ b/dynamo-angular/dynamo/model/api/api.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/dynamo-angular/dynamo/model/api/autoFill.service.ts b/dynamo-angular/dynamo/model/api/autoFill.service.ts index 0a410ffff..5ad5cdbb1 100644 --- a/dynamo-angular/dynamo/model/api/autoFill.service.ts +++ b/dynamo-angular/dynamo/model/api/autoFill.service.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,7 +32,7 @@ import { Inject, Injectable, Optional } from '@angular/core'; import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent, HttpParameterCodec, HttpContext + HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { CustomHttpParameterCodec } from '../encoder'; import { Observable } from 'rxjs'; @@ -113,7 +113,7 @@ export class AutoFillService { /** * Makes a request to automatically fill a form * @param entityName The name of the entity for which to fill a form - * @param autoFillRequest + * @param autoFillRequest * @param reference The entity model reference * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/dynamo-angular/dynamo/model/api/cRUD.service.ts b/dynamo-angular/dynamo/model/api/cRUD.service.ts index 1b9549606..8188c4baa 100644 --- a/dynamo-angular/dynamo/model/api/cRUD.service.ts +++ b/dynamo-angular/dynamo/model/api/cRUD.service.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,7 +32,7 @@ import { Inject, Injectable, Optional } from '@angular/core'; import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent, HttpParameterCodec, HttpContext + HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { CustomHttpParameterCodec } from '../encoder'; import { Observable } from 'rxjs'; @@ -187,7 +187,7 @@ export class CRUDService { * Executes an action defined in the entity model * @param entityName The name of the entity * @param actionId The id of the action to execute - * @param body + * @param body * @param reference Entity model reference * @param id ID of the entity to update (in case of update actions) * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -502,8 +502,8 @@ export class CRUDService { /** * Create a new entity * @param entityName The name of the entity - * @param body - * @param reference + * @param body + * @param reference * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ @@ -590,7 +590,7 @@ export class CRUDService { * Updates an existing entity * @param entityName The name of the entity * @param id The ID of the entity - * @param body + * @param body * @param reference Reference to specify the entity model to use * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -680,7 +680,7 @@ export class CRUDService { /** * Executes a search request * @param entityName The name of the entity - * @param searchModel + * @param searchModel * @param reference The entity model reference * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/dynamo-angular/dynamo/model/api/export.service.ts b/dynamo-angular/dynamo/model/api/export.service.ts index 45de3eb7c..baedbc8d7 100644 --- a/dynamo-angular/dynamo/model/api/export.service.ts +++ b/dynamo-angular/dynamo/model/api/export.service.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,7 +32,7 @@ import { Inject, Injectable, Optional } from '@angular/core'; import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent, HttpParameterCodec, HttpContext + HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { CustomHttpParameterCodec } from '../encoder'; import { Observable } from 'rxjs'; @@ -114,7 +114,7 @@ export class ExportService { * Exports data to csv * @param entityName The name of the entity to export * @param exportMode The export mode - * @param searchModel + * @param searchModel * @param reference The entity model reference * @param locale The locale to use * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -204,7 +204,7 @@ export class ExportService { * Exports data to Excel * @param entityName The name of the entity to export * @param exportMode The export mode - * @param searchModel + * @param searchModel * @param reference The entity model reference * @param locale The locale to use * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. diff --git a/dynamo-angular/dynamo/model/api/file.service.ts b/dynamo-angular/dynamo/model/api/file.service.ts index 6e15d1c40..913232691 100644 --- a/dynamo-angular/dynamo/model/api/file.service.ts +++ b/dynamo-angular/dynamo/model/api/file.service.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,7 +32,7 @@ import { Inject, Injectable, Optional } from '@angular/core'; import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent, HttpParameterCodec, HttpContext + HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { CustomHttpParameterCodec } from '../encoder'; import { Observable } from 'rxjs'; @@ -377,7 +377,7 @@ export class FileService { * Uploads a file * @param entityId The ID of the entity on which to store the file * @param entityName The name of the entity - * @param attributeName + * @param attributeName * @param file The file to upload * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/dynamo-angular/dynamo/model/api/model.service.ts b/dynamo-angular/dynamo/model/api/model.service.ts index 651bedb81..d1f4b8af1 100644 --- a/dynamo-angular/dynamo/model/api/model.service.ts +++ b/dynamo-angular/dynamo/model/api/model.service.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,7 +32,7 @@ import { Inject, Injectable, Optional } from '@angular/core'; import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent, HttpParameterCodec, HttpContext + HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { CustomHttpParameterCodec } from '../encoder'; import { Observable } from 'rxjs'; @@ -114,7 +114,7 @@ export class ModelService { * Retrieve an action entity model * @param entityName The name of the entity * @param actionId The ID of the action - * @param reference + * @param reference * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ diff --git a/dynamo-angular/dynamo/model/api/status.service.ts b/dynamo-angular/dynamo/model/api/status.service.ts index 41c839d83..2f01c68ff 100644 --- a/dynamo-angular/dynamo/model/api/status.service.ts +++ b/dynamo-angular/dynamo/model/api/status.service.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,7 +32,7 @@ import { Inject, Injectable, Optional } from '@angular/core'; import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent, HttpParameterCodec, HttpContext + HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { CustomHttpParameterCodec } from '../encoder'; import { Observable } from 'rxjs'; diff --git a/dynamo-angular/dynamo/model/configuration.ts b/dynamo-angular/dynamo/model/configuration.ts index 20aa9e89b..dcb417069 100644 --- a/dynamo-angular/dynamo/model/configuration.ts +++ b/dynamo-angular/dynamo/model/configuration.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/dynamo-angular/dynamo/model/encoder.ts b/dynamo-angular/dynamo/model/encoder.ts index aade72822..633149051 100644 --- a/dynamo-angular/dynamo/model/encoder.ts +++ b/dynamo-angular/dynamo/model/encoder.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/dynamo-angular/dynamo/model/git_push.sh b/dynamo-angular/dynamo/model/git_push.sh index f6fd81ced..bba545c42 100644 --- a/dynamo-angular/dynamo/model/git_push.sh +++ b/dynamo-angular/dynamo/model/git_push.sh @@ -9,9 +9,9 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 -# +# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/dynamo-angular/dynamo/model/index.ts b/dynamo-angular/dynamo/model/index.ts index 5ede040d7..14067284d 100644 --- a/dynamo-angular/dynamo/model/index.ts +++ b/dynamo-angular/dynamo/model/index.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/dynamo-angular/dynamo/model/model/abstractEntity.ts b/dynamo-angular/dynamo/model/model/abstractEntity.ts index 69c318dd0..18c83eb93 100644 --- a/dynamo-angular/dynamo/model/model/abstractEntity.ts +++ b/dynamo-angular/dynamo/model/model/abstractEntity.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface AbstractEntity { +export interface AbstractEntity { id?: object; } diff --git a/dynamo-angular/dynamo/model/model/attributeGroupResponse.ts b/dynamo-angular/dynamo/model/model/attributeGroupResponse.ts index 8a3978369..fab844cef 100644 --- a/dynamo-angular/dynamo/model/model/attributeGroupResponse.ts +++ b/dynamo-angular/dynamo/model/model/attributeGroupResponse.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface AttributeGroupResponse { +export interface AttributeGroupResponse { index: number; groupName: string; groupDescriptions: { [key: string]: string; }; diff --git a/dynamo-angular/dynamo/model/model/attributeModelResponse.ts b/dynamo-angular/dynamo/model/model/attributeModelResponse.ts index 3af133d0f..66e1b1890 100644 --- a/dynamo-angular/dynamo/model/model/attributeModelResponse.ts +++ b/dynamo-angular/dynamo/model/model/attributeModelResponse.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { CascadeModel } from './cascadeModel'; -export interface AttributeModelResponse { +export interface AttributeModelResponse { allowedExtensions?: Set; currencyCode?: string; dateType?: AttributeModelResponse.DateTypeEnum; @@ -93,6 +93,7 @@ export interface AttributeModelResponse { ignoreInSearchFilter?: boolean; trimSpaces?: boolean; lookupQueryType?: AttributeModelResponse.LookupQueryTypeEnum; + showDetailsPaginator?: boolean; } export namespace AttributeModelResponse { export type DateTypeEnum = 'INHERIT' | 'LOCAL_DATE_TIME' | 'INSTANT' | 'DATE' | 'TIME'; diff --git a/dynamo-angular/dynamo/model/model/autoFillOptions.ts b/dynamo-angular/dynamo/model/model/autoFillOptions.ts index 63607ce9c..1f6984756 100644 --- a/dynamo-angular/dynamo/model/model/autoFillOptions.ts +++ b/dynamo-angular/dynamo/model/model/autoFillOptions.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface AutoFillOptions { +export interface AutoFillOptions { type?: AutoFillOptions.TypeEnum; description?: string; defaultValue?: boolean; diff --git a/dynamo-angular/dynamo/model/model/autoFillRequest.ts b/dynamo-angular/dynamo/model/model/autoFillRequest.ts index 219e02024..228d1f7cf 100644 --- a/dynamo-angular/dynamo/model/model/autoFillRequest.ts +++ b/dynamo-angular/dynamo/model/model/autoFillRequest.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -33,7 +33,7 @@ /** * Therequest containing the input and desired AI service */ -export interface AutoFillRequest { +export interface AutoFillRequest { input: string; type: AutoFillRequest.TypeEnum; additionalInstructions?: string; diff --git a/dynamo-angular/dynamo/model/model/cascadeModel.ts b/dynamo-angular/dynamo/model/model/cascadeModel.ts index d19972de3..7164b9281 100644 --- a/dynamo-angular/dynamo/model/model/cascadeModel.ts +++ b/dynamo-angular/dynamo/model/model/cascadeModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface CascadeModel { +export interface CascadeModel { cascadeTo: string; filterPath: string; cascadeMode: CascadeModel.CascadeModeEnum; diff --git a/dynamo-angular/dynamo/model/model/dateRangeFilterModel.ts b/dynamo-angular/dynamo/model/model/dateRangeFilterModel.ts index 122f484a5..6d7ae4a03 100644 --- a/dynamo-angular/dynamo/model/model/dateRangeFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/dateRangeFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface DateRangeFilterModel extends FilterModel { +export interface DateRangeFilterModel extends FilterModel { from?: string; to?: string; } diff --git a/dynamo-angular/dynamo/model/model/elementCollectionFilterModel.ts b/dynamo-angular/dynamo/model/model/elementCollectionFilterModel.ts index e5c9920ae..5835a5a0b 100644 --- a/dynamo-angular/dynamo/model/model/elementCollectionFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/elementCollectionFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface ElementCollectionFilterModel extends FilterModel { +export interface ElementCollectionFilterModel extends FilterModel { values?: Array; } export namespace ElementCollectionFilterModel { diff --git a/dynamo-angular/dynamo/model/model/entityModelActionResponse.ts b/dynamo-angular/dynamo/model/model/entityModelActionResponse.ts index a8d538c3d..4aed842d4 100644 --- a/dynamo-angular/dynamo/model/model/entityModelActionResponse.ts +++ b/dynamo-angular/dynamo/model/model/entityModelActionResponse.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,13 +31,14 @@ import { AttributeModelResponse } from './attributeModelResponse'; -export interface EntityModelActionResponse { +export interface EntityModelActionResponse { id: string; displayNames: { [key: string]: string; }; attributeModels: Array; type: EntityModelActionResponse.TypeEnum; icon?: string; roles?: Array; + formMode: EntityModelActionResponse.FormModeEnum; } export namespace EntityModelActionResponse { export type TypeEnum = 'UPDATE' | 'CREATE'; @@ -45,6 +46,12 @@ export namespace EntityModelActionResponse { UPDATE: 'UPDATE' as TypeEnum, CREATE: 'CREATE' as TypeEnum }; + export type FormModeEnum = 'VIEW' | 'EDIT' | 'BOTH'; + export const FormModeEnum = { + VIEW: 'VIEW' as FormModeEnum, + EDIT: 'EDIT' as FormModeEnum, + BOTH: 'BOTH' as FormModeEnum + }; } diff --git a/dynamo-angular/dynamo/model/model/entityModelResponse.ts b/dynamo-angular/dynamo/model/model/entityModelResponse.ts index 2959a0c31..3df31de4a 100644 --- a/dynamo-angular/dynamo/model/model/entityModelResponse.ts +++ b/dynamo-angular/dynamo/model/model/entityModelResponse.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -33,7 +33,7 @@ import { AttributeGroupResponse } from './attributeGroupResponse'; import { EntityModelActionResponse } from './entityModelActionResponse'; -export interface EntityModelResponse { +export interface EntityModelResponse { attributeModels: Array; attributeGroups: Array; attributeNamesOrdered: Array; diff --git a/dynamo-angular/dynamo/model/model/equalsFilterModel.ts b/dynamo-angular/dynamo/model/model/equalsFilterModel.ts index 639c697e6..d65e8794b 100644 --- a/dynamo-angular/dynamo/model/model/equalsFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/equalsFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface EqualsFilterModel extends FilterModel { +export interface EqualsFilterModel extends FilterModel { value: object; } export namespace EqualsFilterModel { diff --git a/dynamo-angular/dynamo/model/model/filterModel.ts b/dynamo-angular/dynamo/model/model/filterModel.ts index 5642a7b07..b8d04fcc3 100644 --- a/dynamo-angular/dynamo/model/model/filterModel.ts +++ b/dynamo-angular/dynamo/model/model/filterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface FilterModel { +export interface FilterModel { match: FilterModel.MatchEnum; name?: string; } diff --git a/dynamo-angular/dynamo/model/model/instantRangeFilterModel.ts b/dynamo-angular/dynamo/model/model/instantRangeFilterModel.ts index 5004ea629..3fdb80f06 100644 --- a/dynamo-angular/dynamo/model/model/instantRangeFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/instantRangeFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface InstantRangeFilterModel extends FilterModel { +export interface InstantRangeFilterModel extends FilterModel { from?: string; to?: string; } diff --git a/dynamo-angular/dynamo/model/model/localDateTimeRangeFilterModel.ts b/dynamo-angular/dynamo/model/model/localDateTimeRangeFilterModel.ts index d914dc61c..47a04615b 100644 --- a/dynamo-angular/dynamo/model/model/localDateTimeRangeFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/localDateTimeRangeFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface LocalDateTimeRangeFilterModel extends FilterModel { +export interface LocalDateTimeRangeFilterModel extends FilterModel { from?: string; to?: string; } diff --git a/dynamo-angular/dynamo/model/model/localTime.ts b/dynamo-angular/dynamo/model/model/localTime.ts index 2ab0a6bac..6a53f5805 100644 --- a/dynamo-angular/dynamo/model/model/localTime.ts +++ b/dynamo-angular/dynamo/model/model/localTime.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface LocalTime { +export interface LocalTime { hour?: number; minute?: number; second?: number; diff --git a/dynamo-angular/dynamo/model/model/models.ts b/dynamo-angular/dynamo/model/model/models.ts index 1010de269..e62899a18 100644 --- a/dynamo-angular/dynamo/model/model/models.ts +++ b/dynamo-angular/dynamo/model/model/models.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/dynamo-angular/dynamo/model/model/notFilterModel.ts b/dynamo-angular/dynamo/model/model/notFilterModel.ts index ec749760f..8c936ed1d 100644 --- a/dynamo-angular/dynamo/model/model/notFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/notFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface NotFilterModel extends FilterModel { +export interface NotFilterModel extends FilterModel { filter: FilterModel; } export namespace NotFilterModel { diff --git a/dynamo-angular/dynamo/model/model/nullFilterModel.ts b/dynamo-angular/dynamo/model/model/nullFilterModel.ts new file mode 100644 index 000000000..b6335aa6b --- /dev/null +++ b/dynamo-angular/dynamo/model/model/nullFilterModel.ts @@ -0,0 +1,39 @@ +/*- + * #%L + * Dynamo Framework + * %% + * Copyright (C) 2014 - 2024 Open Circle Solutions + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ +/** + * GTS + * Gift tracking + * + * The version of the OpenAPI document: 1 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +import { FilterModel } from './filterModel'; + + +export interface NullFilterModel extends FilterModel { +} +export namespace NullFilterModel { +} + + diff --git a/dynamo-angular/dynamo/model/model/numberInFilterModel.ts b/dynamo-angular/dynamo/model/model/numberInFilterModel.ts index 571e73aba..8277897d6 100644 --- a/dynamo-angular/dynamo/model/model/numberInFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/numberInFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface NumberInFilterModel extends FilterModel { +export interface NumberInFilterModel extends FilterModel { values: Array; } export namespace NumberInFilterModel { diff --git a/dynamo-angular/dynamo/model/model/numberRangeFilterModel.ts b/dynamo-angular/dynamo/model/model/numberRangeFilterModel.ts index 1c7076525..5cc946215 100644 --- a/dynamo-angular/dynamo/model/model/numberRangeFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/numberRangeFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface NumberRangeFilterModel extends FilterModel { +export interface NumberRangeFilterModel extends FilterModel { from?: number; to?: number; } diff --git a/dynamo-angular/dynamo/model/model/orFilterModel.ts b/dynamo-angular/dynamo/model/model/orFilterModel.ts index 4ae75ab96..577506492 100644 --- a/dynamo-angular/dynamo/model/model/orFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/orFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,7 +31,7 @@ import { FilterModel } from './filterModel'; -export interface OrFilterModel extends FilterModel { +export interface OrFilterModel extends FilterModel { orFilters?: Array; } export namespace OrFilterModel { diff --git a/dynamo-angular/dynamo/model/model/pagingModel.ts b/dynamo-angular/dynamo/model/model/pagingModel.ts index 4e38ef345..eef298b71 100644 --- a/dynamo-angular/dynamo/model/model/pagingModel.ts +++ b/dynamo-angular/dynamo/model/model/pagingModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface PagingModel { +export interface PagingModel { pageNumber: number; pageSize: number; type: PagingModel.TypeEnum; diff --git a/dynamo-angular/dynamo/model/model/searchModel.ts b/dynamo-angular/dynamo/model/model/searchModel.ts index 0e801633e..89f365042 100644 --- a/dynamo-angular/dynamo/model/model/searchModel.ts +++ b/dynamo-angular/dynamo/model/model/searchModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -36,7 +36,7 @@ import { PagingModel } from './pagingModel'; /** * The search request */ -export interface SearchModel { +export interface SearchModel { paging: PagingModel; sort: SortModel; filters?: Array; diff --git a/dynamo-angular/dynamo/model/model/searchModelFiltersInner.ts b/dynamo-angular/dynamo/model/model/searchModelFiltersInner.ts index 60614eba7..1d4661e93 100644 --- a/dynamo-angular/dynamo/model/model/searchModelFiltersInner.ts +++ b/dynamo-angular/dynamo/model/model/searchModelFiltersInner.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/dynamo-angular/dynamo/model/model/searchResultsModelAbstractEntity.ts b/dynamo-angular/dynamo/model/model/searchResultsModelAbstractEntity.ts index 1a00f7192..0ec7366c1 100644 --- a/dynamo-angular/dynamo/model/model/searchResultsModelAbstractEntity.ts +++ b/dynamo-angular/dynamo/model/model/searchResultsModelAbstractEntity.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,7 +32,7 @@ import { AbstractEntity } from './abstractEntity'; import { StatsModel } from './statsModel'; -export interface SearchResultsModelAbstractEntity { +export interface SearchResultsModelAbstractEntity { stats?: StatsModel; results?: Array; } diff --git a/dynamo-angular/dynamo/model/model/sortModel.ts b/dynamo-angular/dynamo/model/model/sortModel.ts index 9809ae51c..b039a7728 100644 --- a/dynamo-angular/dynamo/model/model/sortModel.ts +++ b/dynamo-angular/dynamo/model/model/sortModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface SortModel { +export interface SortModel { sortDirection: SortModel.SortDirectionEnum; sortField: string; } diff --git a/dynamo-angular/dynamo/model/model/statsModel.ts b/dynamo-angular/dynamo/model/model/statsModel.ts index 5995b7d8e..fbbf703cb 100644 --- a/dynamo-angular/dynamo/model/model/statsModel.ts +++ b/dynamo-angular/dynamo/model/model/statsModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface StatsModel { +export interface StatsModel { pageNumber?: number; pageSize?: number; totalResults?: number; diff --git a/dynamo-angular/dynamo/model/model/statusResponse.ts b/dynamo-angular/dynamo/model/model/statusResponse.ts index 73d48633a..3517830ff 100644 --- a/dynamo-angular/dynamo/model/model/statusResponse.ts +++ b/dynamo-angular/dynamo/model/model/statusResponse.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,7 +30,7 @@ */ -export interface StatusResponse { +export interface StatusResponse { status?: string; } diff --git a/dynamo-angular/dynamo/model/model/timeRangeFilterModel.ts b/dynamo-angular/dynamo/model/model/timeRangeFilterModel.ts index e6db6308d..8670deb9a 100644 --- a/dynamo-angular/dynamo/model/model/timeRangeFilterModel.ts +++ b/dynamo-angular/dynamo/model/model/timeRangeFilterModel.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,10 +19,10 @@ */ /** * GTS - * Gift tracking + * Gift tracking * * The version of the OpenAPI document: 1 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,7 +32,7 @@ import { LocalTime } from './localTime'; import { FilterModel } from './filterModel'; -export interface TimeRangeFilterModel extends FilterModel { +export interface TimeRangeFilterModel extends FilterModel { from?: LocalTime; to?: LocalTime; } diff --git a/dynamo-angular/dynamo/model/param.ts b/dynamo-angular/dynamo/model/param.ts index ce11f52d2..2f81794ca 100644 --- a/dynamo-angular/dynamo/model/param.ts +++ b/dynamo-angular/dynamo/model/param.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/dynamo-angular/dynamo/model/variables.ts b/dynamo-angular/dynamo/model/variables.ts index b4806e269..6ee07a8e2 100644 --- a/dynamo-angular/dynamo/model/variables.ts +++ b/dynamo-angular/dynamo/model/variables.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.