@indigina/wms-api 0.0.50 → 0.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2096,6 +2096,53 @@ class DeliveryItemsService {
2096
2096
  reportProgress: reportProgress
2097
2097
  });
2098
2098
  }
2099
+ getDeliveryItem(id, observe = 'body', reportProgress = false, options) {
2100
+ if (id === null || id === undefined) {
2101
+ throw new Error('Required parameter id was null or undefined when calling getDeliveryItem.');
2102
+ }
2103
+ let localVarHeaders = this.defaultHeaders;
2104
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
2105
+ if (localVarHttpHeaderAcceptSelected === undefined) {
2106
+ // to determine the Accept header
2107
+ const httpHeaderAccepts = [
2108
+ 'application/json'
2109
+ ];
2110
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
2111
+ }
2112
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2113
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2114
+ }
2115
+ let localVarHttpContext = options && options.context;
2116
+ if (localVarHttpContext === undefined) {
2117
+ localVarHttpContext = new HttpContext();
2118
+ }
2119
+ let localVarTransferCache = options && options.transferCache;
2120
+ if (localVarTransferCache === undefined) {
2121
+ localVarTransferCache = true;
2122
+ }
2123
+ let responseType_ = 'json';
2124
+ if (localVarHttpHeaderAcceptSelected) {
2125
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2126
+ responseType_ = 'text';
2127
+ }
2128
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2129
+ responseType_ = 'json';
2130
+ }
2131
+ else {
2132
+ responseType_ = 'blob';
2133
+ }
2134
+ }
2135
+ let localVarPath = `/deliveryItems/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}`;
2136
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
2137
+ context: localVarHttpContext,
2138
+ responseType: responseType_,
2139
+ withCredentials: this.configuration.withCredentials,
2140
+ headers: localVarHeaders,
2141
+ observe: observe,
2142
+ transferCache: localVarTransferCache,
2143
+ reportProgress: reportProgress
2144
+ });
2145
+ }
2099
2146
  getDeliveryItems(id, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
2100
2147
  if (id === null || id === undefined) {
2101
2148
  throw new Error('Required parameter id was null or undefined when calling getDeliveryItems.');
@@ -3762,7 +3809,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor
3762
3809
  * Do not edit the class manually.
3763
3810
  */
3764
3811
  /* tslint:disable:no-unused-variable member-ordering */
3765
- class UserService {
3812
+ class TaskOperationsService {
3766
3813
  httpClient;
3767
3814
  basePath = 'http://localhost';
3768
3815
  defaultHeaders = new HttpHeaders();
@@ -3823,9 +3870,9 @@ class UserService {
3823
3870
  }
3824
3871
  return httpParams;
3825
3872
  }
3826
- getApplicationSetting(name, observe = 'body', reportProgress = false, options) {
3827
- if (name === null || name === undefined) {
3828
- throw new Error('Required parameter name was null or undefined when calling getApplicationSetting.');
3873
+ createTaskOperation(taskOperation, observe = 'body', reportProgress = false, options) {
3874
+ if (taskOperation === null || taskOperation === undefined) {
3875
+ throw new Error('Required parameter taskOperation was null or undefined when calling createTaskOperation.');
3829
3876
  }
3830
3877
  let localVarHeaders = this.defaultHeaders;
3831
3878
  let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
@@ -3847,6 +3894,14 @@ class UserService {
3847
3894
  if (localVarTransferCache === undefined) {
3848
3895
  localVarTransferCache = true;
3849
3896
  }
3897
+ // to determine the Content-Type header
3898
+ const consumes = [
3899
+ 'application/json'
3900
+ ];
3901
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
3902
+ if (httpContentTypeSelected !== undefined) {
3903
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
3904
+ }
3850
3905
  let responseType_ = 'json';
3851
3906
  if (localVarHttpHeaderAcceptSelected) {
3852
3907
  if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
@@ -3859,9 +3914,10 @@ class UserService {
3859
3914
  responseType_ = 'blob';
3860
3915
  }
3861
3916
  }
3862
- let localVarPath = `/user/me/settings/${this.configuration.encodeParam({ name: "name", value: name, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}`;
3863
- return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
3917
+ let localVarPath = `/taskOperations`;
3918
+ return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`, {
3864
3919
  context: localVarHttpContext,
3920
+ body: taskOperation,
3865
3921
  responseType: responseType_,
3866
3922
  withCredentials: this.configuration.withCredentials,
3867
3923
  headers: localVarHeaders,
@@ -3870,7 +3926,55 @@ class UserService {
3870
3926
  reportProgress: reportProgress
3871
3927
  });
3872
3928
  }
3873
- getUserApplicationList(observe = 'body', reportProgress = false, options) {
3929
+ deleteTaskOperation(id, observe = 'body', reportProgress = false, options) {
3930
+ if (id === null || id === undefined) {
3931
+ throw new Error('Required parameter id was null or undefined when calling deleteTaskOperation.');
3932
+ }
3933
+ let localVarHeaders = this.defaultHeaders;
3934
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
3935
+ if (localVarHttpHeaderAcceptSelected === undefined) {
3936
+ // to determine the Accept header
3937
+ const httpHeaderAccepts = [];
3938
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3939
+ }
3940
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
3941
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
3942
+ }
3943
+ let localVarHttpContext = options && options.context;
3944
+ if (localVarHttpContext === undefined) {
3945
+ localVarHttpContext = new HttpContext();
3946
+ }
3947
+ let localVarTransferCache = options && options.transferCache;
3948
+ if (localVarTransferCache === undefined) {
3949
+ localVarTransferCache = true;
3950
+ }
3951
+ let responseType_ = 'json';
3952
+ if (localVarHttpHeaderAcceptSelected) {
3953
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
3954
+ responseType_ = 'text';
3955
+ }
3956
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
3957
+ responseType_ = 'json';
3958
+ }
3959
+ else {
3960
+ responseType_ = 'blob';
3961
+ }
3962
+ }
3963
+ let localVarPath = `/taskOperations/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
3964
+ return this.httpClient.request('delete', `${this.configuration.basePath}${localVarPath}`, {
3965
+ context: localVarHttpContext,
3966
+ responseType: responseType_,
3967
+ withCredentials: this.configuration.withCredentials,
3968
+ headers: localVarHeaders,
3969
+ observe: observe,
3970
+ transferCache: localVarTransferCache,
3971
+ reportProgress: reportProgress
3972
+ });
3973
+ }
3974
+ getTaskOperationById(id, observe = 'body', reportProgress = false, options) {
3975
+ if (id === null || id === undefined) {
3976
+ throw new Error('Required parameter id was null or undefined when calling getTaskOperationById.');
3977
+ }
3874
3978
  let localVarHeaders = this.defaultHeaders;
3875
3979
  let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
3876
3980
  if (localVarHttpHeaderAcceptSelected === undefined) {
@@ -3903,7 +4007,7 @@ class UserService {
3903
4007
  responseType_ = 'blob';
3904
4008
  }
3905
4009
  }
3906
- let localVarPath = `/users/me/applications`;
4010
+ let localVarPath = `/taskOperations/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
3907
4011
  return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
3908
4012
  context: localVarHttpContext,
3909
4013
  responseType: responseType_,
@@ -3914,7 +4018,23 @@ class UserService {
3914
4018
  reportProgress: reportProgress
3915
4019
  });
3916
4020
  }
3917
- getUserInfo(observe = 'body', reportProgress = false, options) {
4021
+ getTaskOperations($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
4022
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
4023
+ if ($skip !== undefined && $skip !== null) {
4024
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
4025
+ }
4026
+ if ($top !== undefined && $top !== null) {
4027
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
4028
+ }
4029
+ if ($orderby !== undefined && $orderby !== null) {
4030
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
4031
+ }
4032
+ if ($filter !== undefined && $filter !== null) {
4033
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
4034
+ }
4035
+ if ($search !== undefined && $search !== null) {
4036
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $search, '$search');
4037
+ }
3918
4038
  let localVarHeaders = this.defaultHeaders;
3919
4039
  let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
3920
4040
  if (localVarHttpHeaderAcceptSelected === undefined) {
@@ -3947,9 +4067,10 @@ class UserService {
3947
4067
  responseType_ = 'blob';
3948
4068
  }
3949
4069
  }
3950
- let localVarPath = `/user/me`;
4070
+ let localVarPath = `/taskOperations`;
3951
4071
  return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
3952
4072
  context: localVarHttpContext,
4073
+ params: localVarQueryParameters,
3953
4074
  responseType: responseType_,
3954
4075
  withCredentials: this.configuration.withCredentials,
3955
4076
  headers: localVarHeaders,
@@ -3958,7 +4079,13 @@ class UserService {
3958
4079
  reportProgress: reportProgress
3959
4080
  });
3960
4081
  }
3961
- setNewFeaturesVisibility(setNewFeaturesVisibilityCommand, observe = 'body', reportProgress = false, options) {
4082
+ updateTaskOperation(id, taskOperation, observe = 'body', reportProgress = false, options) {
4083
+ if (id === null || id === undefined) {
4084
+ throw new Error('Required parameter id was null or undefined when calling updateTaskOperation.');
4085
+ }
4086
+ if (taskOperation === null || taskOperation === undefined) {
4087
+ throw new Error('Required parameter taskOperation was null or undefined when calling updateTaskOperation.');
4088
+ }
3962
4089
  let localVarHeaders = this.defaultHeaders;
3963
4090
  let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
3964
4091
  if (localVarHttpHeaderAcceptSelected === undefined) {
@@ -3999,10 +4126,10 @@ class UserService {
3999
4126
  responseType_ = 'blob';
4000
4127
  }
4001
4128
  }
4002
- let localVarPath = `/user/me/settings/newfeaturevisibility`;
4129
+ let localVarPath = `/taskOperations/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
4003
4130
  return this.httpClient.request('put', `${this.configuration.basePath}${localVarPath}`, {
4004
4131
  context: localVarHttpContext,
4005
- body: setNewFeaturesVisibilityCommand,
4132
+ body: taskOperation,
4006
4133
  responseType: responseType_,
4007
4134
  withCredentials: this.configuration.withCredentials,
4008
4135
  headers: localVarHeaders,
@@ -4011,10 +4138,10 @@ class UserService {
4011
4138
  reportProgress: reportProgress
4012
4139
  });
4013
4140
  }
4014
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4015
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, providedIn: 'root' });
4141
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TaskOperationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4142
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TaskOperationsService, providedIn: 'root' });
4016
4143
  }
4017
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, decorators: [{
4144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TaskOperationsService, decorators: [{
4018
4145
  type: Injectable,
4019
4146
  args: [{
4020
4147
  providedIn: 'root'
@@ -4028,125 +4155,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor
4028
4155
  type: Optional
4029
4156
  }] }] });
4030
4157
 
4031
- const APIS = [AnalyticsService, CompaniesService, DcsService, DeliveriesService, DeliveryItemsService, HealthService, NotesService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, SettingsService, SummaryService, UserService];
4032
-
4033
- /**
4034
- * Wms.API.Client
4035
- *
4036
- *
4037
- *
4038
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4039
- * https://openapi-generator.tech
4040
- * Do not edit the class manually.
4041
- */
4042
-
4043
- /**
4044
- * Wms.API.Client
4045
- *
4046
- *
4047
- *
4048
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4049
- * https://openapi-generator.tech
4050
- * Do not edit the class manually.
4051
- */
4052
-
4053
- /**
4054
- * Wms.API.Client
4055
- *
4056
- *
4057
- *
4058
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4059
- * https://openapi-generator.tech
4060
- * Do not edit the class manually.
4061
- */
4062
-
4063
- /**
4064
- * Wms.API.Client
4065
- *
4066
- *
4067
- *
4068
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4069
- * https://openapi-generator.tech
4070
- * Do not edit the class manually.
4071
- */
4072
-
4073
- /**
4074
- * Wms.API.Client
4075
- *
4076
- *
4077
- *
4078
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4079
- * https://openapi-generator.tech
4080
- * Do not edit the class manually.
4081
- */
4082
-
4083
- /**
4084
- * Wms.API.Client
4085
- *
4086
- *
4087
- *
4088
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4089
- * https://openapi-generator.tech
4090
- * Do not edit the class manually.
4091
- */
4092
-
4093
- /**
4094
- * Wms.API.Client
4095
- *
4096
- *
4097
- *
4098
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4099
- * https://openapi-generator.tech
4100
- * Do not edit the class manually.
4101
- */
4102
- const DeliveryType = {
4103
- Standard: 'Standard',
4104
- Return: 'Return',
4105
- EcomCrossDock: 'EcomCrossDock',
4106
- Internal: 'Internal',
4107
- WorkOrder: 'WorkOrder'
4108
- };
4109
-
4110
- /**
4111
- * Wms.API.Client
4112
- *
4113
- *
4114
- *
4115
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4116
- * https://openapi-generator.tech
4117
- * Do not edit the class manually.
4118
- */
4119
-
4120
- /**
4121
- * Wms.API.Client
4122
- *
4123
- *
4124
- *
4125
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4126
- * https://openapi-generator.tech
4127
- * Do not edit the class manually.
4128
- */
4129
-
4130
- /**
4131
- * Wms.API.Client
4132
- *
4133
- *
4134
- *
4135
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4136
- * https://openapi-generator.tech
4137
- * Do not edit the class manually.
4138
- */
4139
-
4140
- /**
4141
- * Wms.API.Client
4142
- *
4143
- *
4144
- *
4145
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4146
- * https://openapi-generator.tech
4147
- * Do not edit the class manually.
4148
- */
4149
-
4150
4158
  /**
4151
4159
  * Wms.API.Client
4152
4160
  *
@@ -4156,10 +4164,776 @@ const DeliveryType = {
4156
4164
  * https://openapi-generator.tech
4157
4165
  * Do not edit the class manually.
4158
4166
  */
4159
- const NoteCategory = {
4160
- Notes: 'Notes',
4161
- ShippingMarks: 'ShippingMarks',
4162
- SpecialInstructions: 'SpecialInstructions',
4167
+ /* tslint:disable:no-unused-variable member-ordering */
4168
+ class TaskUserRecordsService {
4169
+ httpClient;
4170
+ basePath = 'http://localhost';
4171
+ defaultHeaders = new HttpHeaders();
4172
+ configuration = new Configuration();
4173
+ encoder;
4174
+ constructor(httpClient, basePath, configuration) {
4175
+ this.httpClient = httpClient;
4176
+ if (configuration) {
4177
+ this.configuration = configuration;
4178
+ }
4179
+ if (typeof this.configuration.basePath !== 'string') {
4180
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
4181
+ if (firstBasePath != undefined) {
4182
+ basePath = firstBasePath;
4183
+ }
4184
+ if (typeof basePath !== 'string') {
4185
+ basePath = this.basePath;
4186
+ }
4187
+ this.configuration.basePath = basePath;
4188
+ }
4189
+ this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
4190
+ }
4191
+ // @ts-ignore
4192
+ addToHttpParams(httpParams, value, key) {
4193
+ if (typeof value === "object" && value instanceof Date === false) {
4194
+ httpParams = this.addToHttpParamsRecursive(httpParams, value);
4195
+ }
4196
+ else {
4197
+ httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
4198
+ }
4199
+ return httpParams;
4200
+ }
4201
+ addToHttpParamsRecursive(httpParams, value, key) {
4202
+ if (value == null) {
4203
+ return httpParams;
4204
+ }
4205
+ if (typeof value === "object") {
4206
+ if (Array.isArray(value)) {
4207
+ value.forEach(elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));
4208
+ }
4209
+ else if (value instanceof Date) {
4210
+ if (key != null) {
4211
+ httpParams = httpParams.append(key, value.toISOString().substring(0, 10));
4212
+ }
4213
+ else {
4214
+ throw Error("key may not be null if value is Date");
4215
+ }
4216
+ }
4217
+ else {
4218
+ Object.keys(value).forEach(k => httpParams = this.addToHttpParamsRecursive(httpParams, value[k], key != null ? `${key}.${k}` : k));
4219
+ }
4220
+ }
4221
+ else if (key != null) {
4222
+ httpParams = httpParams.append(key, value);
4223
+ }
4224
+ else {
4225
+ throw Error("key may not be null if value is not object or array");
4226
+ }
4227
+ return httpParams;
4228
+ }
4229
+ createTaskUserRecord(taskUserRecord, observe = 'body', reportProgress = false, options) {
4230
+ if (taskUserRecord === null || taskUserRecord === undefined) {
4231
+ throw new Error('Required parameter taskUserRecord was null or undefined when calling createTaskUserRecord.');
4232
+ }
4233
+ let localVarHeaders = this.defaultHeaders;
4234
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4235
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4236
+ // to determine the Accept header
4237
+ const httpHeaderAccepts = [
4238
+ 'application/json'
4239
+ ];
4240
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4241
+ }
4242
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4243
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4244
+ }
4245
+ let localVarHttpContext = options && options.context;
4246
+ if (localVarHttpContext === undefined) {
4247
+ localVarHttpContext = new HttpContext();
4248
+ }
4249
+ let localVarTransferCache = options && options.transferCache;
4250
+ if (localVarTransferCache === undefined) {
4251
+ localVarTransferCache = true;
4252
+ }
4253
+ // to determine the Content-Type header
4254
+ const consumes = [
4255
+ 'application/json'
4256
+ ];
4257
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
4258
+ if (httpContentTypeSelected !== undefined) {
4259
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
4260
+ }
4261
+ let responseType_ = 'json';
4262
+ if (localVarHttpHeaderAcceptSelected) {
4263
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4264
+ responseType_ = 'text';
4265
+ }
4266
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4267
+ responseType_ = 'json';
4268
+ }
4269
+ else {
4270
+ responseType_ = 'blob';
4271
+ }
4272
+ }
4273
+ let localVarPath = `/taskUserRecords`;
4274
+ return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`, {
4275
+ context: localVarHttpContext,
4276
+ body: taskUserRecord,
4277
+ responseType: responseType_,
4278
+ withCredentials: this.configuration.withCredentials,
4279
+ headers: localVarHeaders,
4280
+ observe: observe,
4281
+ transferCache: localVarTransferCache,
4282
+ reportProgress: reportProgress
4283
+ });
4284
+ }
4285
+ deleteTaskUserRecord(id, observe = 'body', reportProgress = false, options) {
4286
+ if (id === null || id === undefined) {
4287
+ throw new Error('Required parameter id was null or undefined when calling deleteTaskUserRecord.');
4288
+ }
4289
+ let localVarHeaders = this.defaultHeaders;
4290
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4291
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4292
+ // to determine the Accept header
4293
+ const httpHeaderAccepts = [];
4294
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4295
+ }
4296
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4297
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4298
+ }
4299
+ let localVarHttpContext = options && options.context;
4300
+ if (localVarHttpContext === undefined) {
4301
+ localVarHttpContext = new HttpContext();
4302
+ }
4303
+ let localVarTransferCache = options && options.transferCache;
4304
+ if (localVarTransferCache === undefined) {
4305
+ localVarTransferCache = true;
4306
+ }
4307
+ let responseType_ = 'json';
4308
+ if (localVarHttpHeaderAcceptSelected) {
4309
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4310
+ responseType_ = 'text';
4311
+ }
4312
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4313
+ responseType_ = 'json';
4314
+ }
4315
+ else {
4316
+ responseType_ = 'blob';
4317
+ }
4318
+ }
4319
+ let localVarPath = `/taskUserRecords/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
4320
+ return this.httpClient.request('delete', `${this.configuration.basePath}${localVarPath}`, {
4321
+ context: localVarHttpContext,
4322
+ responseType: responseType_,
4323
+ withCredentials: this.configuration.withCredentials,
4324
+ headers: localVarHeaders,
4325
+ observe: observe,
4326
+ transferCache: localVarTransferCache,
4327
+ reportProgress: reportProgress
4328
+ });
4329
+ }
4330
+ getTaskUserRecordById(id, observe = 'body', reportProgress = false, options) {
4331
+ if (id === null || id === undefined) {
4332
+ throw new Error('Required parameter id was null or undefined when calling getTaskUserRecordById.');
4333
+ }
4334
+ let localVarHeaders = this.defaultHeaders;
4335
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4336
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4337
+ // to determine the Accept header
4338
+ const httpHeaderAccepts = [
4339
+ 'application/json'
4340
+ ];
4341
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4342
+ }
4343
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4344
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4345
+ }
4346
+ let localVarHttpContext = options && options.context;
4347
+ if (localVarHttpContext === undefined) {
4348
+ localVarHttpContext = new HttpContext();
4349
+ }
4350
+ let localVarTransferCache = options && options.transferCache;
4351
+ if (localVarTransferCache === undefined) {
4352
+ localVarTransferCache = true;
4353
+ }
4354
+ let responseType_ = 'json';
4355
+ if (localVarHttpHeaderAcceptSelected) {
4356
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4357
+ responseType_ = 'text';
4358
+ }
4359
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4360
+ responseType_ = 'json';
4361
+ }
4362
+ else {
4363
+ responseType_ = 'blob';
4364
+ }
4365
+ }
4366
+ let localVarPath = `/taskUserRecords/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
4367
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
4368
+ context: localVarHttpContext,
4369
+ responseType: responseType_,
4370
+ withCredentials: this.configuration.withCredentials,
4371
+ headers: localVarHeaders,
4372
+ observe: observe,
4373
+ transferCache: localVarTransferCache,
4374
+ reportProgress: reportProgress
4375
+ });
4376
+ }
4377
+ getTaskUserRecords($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
4378
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
4379
+ if ($skip !== undefined && $skip !== null) {
4380
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
4381
+ }
4382
+ if ($top !== undefined && $top !== null) {
4383
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
4384
+ }
4385
+ if ($orderby !== undefined && $orderby !== null) {
4386
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
4387
+ }
4388
+ if ($filter !== undefined && $filter !== null) {
4389
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
4390
+ }
4391
+ if ($search !== undefined && $search !== null) {
4392
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $search, '$search');
4393
+ }
4394
+ let localVarHeaders = this.defaultHeaders;
4395
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4396
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4397
+ // to determine the Accept header
4398
+ const httpHeaderAccepts = [
4399
+ 'application/json'
4400
+ ];
4401
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4402
+ }
4403
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4404
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4405
+ }
4406
+ let localVarHttpContext = options && options.context;
4407
+ if (localVarHttpContext === undefined) {
4408
+ localVarHttpContext = new HttpContext();
4409
+ }
4410
+ let localVarTransferCache = options && options.transferCache;
4411
+ if (localVarTransferCache === undefined) {
4412
+ localVarTransferCache = true;
4413
+ }
4414
+ let responseType_ = 'json';
4415
+ if (localVarHttpHeaderAcceptSelected) {
4416
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4417
+ responseType_ = 'text';
4418
+ }
4419
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4420
+ responseType_ = 'json';
4421
+ }
4422
+ else {
4423
+ responseType_ = 'blob';
4424
+ }
4425
+ }
4426
+ let localVarPath = `/taskUserRecords`;
4427
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
4428
+ context: localVarHttpContext,
4429
+ params: localVarQueryParameters,
4430
+ responseType: responseType_,
4431
+ withCredentials: this.configuration.withCredentials,
4432
+ headers: localVarHeaders,
4433
+ observe: observe,
4434
+ transferCache: localVarTransferCache,
4435
+ reportProgress: reportProgress
4436
+ });
4437
+ }
4438
+ updateTaskUserRecord(id, taskUserRecord, observe = 'body', reportProgress = false, options) {
4439
+ if (id === null || id === undefined) {
4440
+ throw new Error('Required parameter id was null or undefined when calling updateTaskUserRecord.');
4441
+ }
4442
+ if (taskUserRecord === null || taskUserRecord === undefined) {
4443
+ throw new Error('Required parameter taskUserRecord was null or undefined when calling updateTaskUserRecord.');
4444
+ }
4445
+ let localVarHeaders = this.defaultHeaders;
4446
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4447
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4448
+ // to determine the Accept header
4449
+ const httpHeaderAccepts = [
4450
+ 'application/json'
4451
+ ];
4452
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4453
+ }
4454
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4455
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4456
+ }
4457
+ let localVarHttpContext = options && options.context;
4458
+ if (localVarHttpContext === undefined) {
4459
+ localVarHttpContext = new HttpContext();
4460
+ }
4461
+ let localVarTransferCache = options && options.transferCache;
4462
+ if (localVarTransferCache === undefined) {
4463
+ localVarTransferCache = true;
4464
+ }
4465
+ // to determine the Content-Type header
4466
+ const consumes = [
4467
+ 'application/json'
4468
+ ];
4469
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
4470
+ if (httpContentTypeSelected !== undefined) {
4471
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
4472
+ }
4473
+ let responseType_ = 'json';
4474
+ if (localVarHttpHeaderAcceptSelected) {
4475
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4476
+ responseType_ = 'text';
4477
+ }
4478
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4479
+ responseType_ = 'json';
4480
+ }
4481
+ else {
4482
+ responseType_ = 'blob';
4483
+ }
4484
+ }
4485
+ let localVarPath = `/taskUserRecords/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
4486
+ return this.httpClient.request('put', `${this.configuration.basePath}${localVarPath}`, {
4487
+ context: localVarHttpContext,
4488
+ body: taskUserRecord,
4489
+ responseType: responseType_,
4490
+ withCredentials: this.configuration.withCredentials,
4491
+ headers: localVarHeaders,
4492
+ observe: observe,
4493
+ transferCache: localVarTransferCache,
4494
+ reportProgress: reportProgress
4495
+ });
4496
+ }
4497
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TaskUserRecordsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4498
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TaskUserRecordsService, providedIn: 'root' });
4499
+ }
4500
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TaskUserRecordsService, decorators: [{
4501
+ type: Injectable,
4502
+ args: [{
4503
+ providedIn: 'root'
4504
+ }]
4505
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
4506
+ type: Optional
4507
+ }, {
4508
+ type: Inject,
4509
+ args: [BASE_PATH]
4510
+ }] }, { type: Configuration, decorators: [{
4511
+ type: Optional
4512
+ }] }] });
4513
+
4514
+ /**
4515
+ * Wms.API.Client
4516
+ *
4517
+ *
4518
+ *
4519
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4520
+ * https://openapi-generator.tech
4521
+ * Do not edit the class manually.
4522
+ */
4523
+ /* tslint:disable:no-unused-variable member-ordering */
4524
+ class UserService {
4525
+ httpClient;
4526
+ basePath = 'http://localhost';
4527
+ defaultHeaders = new HttpHeaders();
4528
+ configuration = new Configuration();
4529
+ encoder;
4530
+ constructor(httpClient, basePath, configuration) {
4531
+ this.httpClient = httpClient;
4532
+ if (configuration) {
4533
+ this.configuration = configuration;
4534
+ }
4535
+ if (typeof this.configuration.basePath !== 'string') {
4536
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
4537
+ if (firstBasePath != undefined) {
4538
+ basePath = firstBasePath;
4539
+ }
4540
+ if (typeof basePath !== 'string') {
4541
+ basePath = this.basePath;
4542
+ }
4543
+ this.configuration.basePath = basePath;
4544
+ }
4545
+ this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
4546
+ }
4547
+ // @ts-ignore
4548
+ addToHttpParams(httpParams, value, key) {
4549
+ if (typeof value === "object" && value instanceof Date === false) {
4550
+ httpParams = this.addToHttpParamsRecursive(httpParams, value);
4551
+ }
4552
+ else {
4553
+ httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
4554
+ }
4555
+ return httpParams;
4556
+ }
4557
+ addToHttpParamsRecursive(httpParams, value, key) {
4558
+ if (value == null) {
4559
+ return httpParams;
4560
+ }
4561
+ if (typeof value === "object") {
4562
+ if (Array.isArray(value)) {
4563
+ value.forEach(elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));
4564
+ }
4565
+ else if (value instanceof Date) {
4566
+ if (key != null) {
4567
+ httpParams = httpParams.append(key, value.toISOString().substring(0, 10));
4568
+ }
4569
+ else {
4570
+ throw Error("key may not be null if value is Date");
4571
+ }
4572
+ }
4573
+ else {
4574
+ Object.keys(value).forEach(k => httpParams = this.addToHttpParamsRecursive(httpParams, value[k], key != null ? `${key}.${k}` : k));
4575
+ }
4576
+ }
4577
+ else if (key != null) {
4578
+ httpParams = httpParams.append(key, value);
4579
+ }
4580
+ else {
4581
+ throw Error("key may not be null if value is not object or array");
4582
+ }
4583
+ return httpParams;
4584
+ }
4585
+ getApplicationSetting(name, observe = 'body', reportProgress = false, options) {
4586
+ if (name === null || name === undefined) {
4587
+ throw new Error('Required parameter name was null or undefined when calling getApplicationSetting.');
4588
+ }
4589
+ let localVarHeaders = this.defaultHeaders;
4590
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4591
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4592
+ // to determine the Accept header
4593
+ const httpHeaderAccepts = [
4594
+ 'application/json'
4595
+ ];
4596
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4597
+ }
4598
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4599
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4600
+ }
4601
+ let localVarHttpContext = options && options.context;
4602
+ if (localVarHttpContext === undefined) {
4603
+ localVarHttpContext = new HttpContext();
4604
+ }
4605
+ let localVarTransferCache = options && options.transferCache;
4606
+ if (localVarTransferCache === undefined) {
4607
+ localVarTransferCache = true;
4608
+ }
4609
+ let responseType_ = 'json';
4610
+ if (localVarHttpHeaderAcceptSelected) {
4611
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4612
+ responseType_ = 'text';
4613
+ }
4614
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4615
+ responseType_ = 'json';
4616
+ }
4617
+ else {
4618
+ responseType_ = 'blob';
4619
+ }
4620
+ }
4621
+ let localVarPath = `/user/me/settings/${this.configuration.encodeParam({ name: "name", value: name, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}`;
4622
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
4623
+ context: localVarHttpContext,
4624
+ responseType: responseType_,
4625
+ withCredentials: this.configuration.withCredentials,
4626
+ headers: localVarHeaders,
4627
+ observe: observe,
4628
+ transferCache: localVarTransferCache,
4629
+ reportProgress: reportProgress
4630
+ });
4631
+ }
4632
+ getUserApplicationList(observe = 'body', reportProgress = false, options) {
4633
+ let localVarHeaders = this.defaultHeaders;
4634
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4635
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4636
+ // to determine the Accept header
4637
+ const httpHeaderAccepts = [
4638
+ 'application/json'
4639
+ ];
4640
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4641
+ }
4642
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4643
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4644
+ }
4645
+ let localVarHttpContext = options && options.context;
4646
+ if (localVarHttpContext === undefined) {
4647
+ localVarHttpContext = new HttpContext();
4648
+ }
4649
+ let localVarTransferCache = options && options.transferCache;
4650
+ if (localVarTransferCache === undefined) {
4651
+ localVarTransferCache = true;
4652
+ }
4653
+ let responseType_ = 'json';
4654
+ if (localVarHttpHeaderAcceptSelected) {
4655
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4656
+ responseType_ = 'text';
4657
+ }
4658
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4659
+ responseType_ = 'json';
4660
+ }
4661
+ else {
4662
+ responseType_ = 'blob';
4663
+ }
4664
+ }
4665
+ let localVarPath = `/users/me/applications`;
4666
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
4667
+ context: localVarHttpContext,
4668
+ responseType: responseType_,
4669
+ withCredentials: this.configuration.withCredentials,
4670
+ headers: localVarHeaders,
4671
+ observe: observe,
4672
+ transferCache: localVarTransferCache,
4673
+ reportProgress: reportProgress
4674
+ });
4675
+ }
4676
+ getUserInfo(observe = 'body', reportProgress = false, options) {
4677
+ let localVarHeaders = this.defaultHeaders;
4678
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4679
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4680
+ // to determine the Accept header
4681
+ const httpHeaderAccepts = [
4682
+ 'application/json'
4683
+ ];
4684
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4685
+ }
4686
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4687
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4688
+ }
4689
+ let localVarHttpContext = options && options.context;
4690
+ if (localVarHttpContext === undefined) {
4691
+ localVarHttpContext = new HttpContext();
4692
+ }
4693
+ let localVarTransferCache = options && options.transferCache;
4694
+ if (localVarTransferCache === undefined) {
4695
+ localVarTransferCache = true;
4696
+ }
4697
+ let responseType_ = 'json';
4698
+ if (localVarHttpHeaderAcceptSelected) {
4699
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4700
+ responseType_ = 'text';
4701
+ }
4702
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4703
+ responseType_ = 'json';
4704
+ }
4705
+ else {
4706
+ responseType_ = 'blob';
4707
+ }
4708
+ }
4709
+ let localVarPath = `/user/me`;
4710
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
4711
+ context: localVarHttpContext,
4712
+ responseType: responseType_,
4713
+ withCredentials: this.configuration.withCredentials,
4714
+ headers: localVarHeaders,
4715
+ observe: observe,
4716
+ transferCache: localVarTransferCache,
4717
+ reportProgress: reportProgress
4718
+ });
4719
+ }
4720
+ setNewFeaturesVisibility(setNewFeaturesVisibilityCommand, observe = 'body', reportProgress = false, options) {
4721
+ let localVarHeaders = this.defaultHeaders;
4722
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
4723
+ if (localVarHttpHeaderAcceptSelected === undefined) {
4724
+ // to determine the Accept header
4725
+ const httpHeaderAccepts = [
4726
+ 'application/json'
4727
+ ];
4728
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4729
+ }
4730
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
4731
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
4732
+ }
4733
+ let localVarHttpContext = options && options.context;
4734
+ if (localVarHttpContext === undefined) {
4735
+ localVarHttpContext = new HttpContext();
4736
+ }
4737
+ let localVarTransferCache = options && options.transferCache;
4738
+ if (localVarTransferCache === undefined) {
4739
+ localVarTransferCache = true;
4740
+ }
4741
+ // to determine the Content-Type header
4742
+ const consumes = [
4743
+ 'application/json'
4744
+ ];
4745
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
4746
+ if (httpContentTypeSelected !== undefined) {
4747
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
4748
+ }
4749
+ let responseType_ = 'json';
4750
+ if (localVarHttpHeaderAcceptSelected) {
4751
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
4752
+ responseType_ = 'text';
4753
+ }
4754
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
4755
+ responseType_ = 'json';
4756
+ }
4757
+ else {
4758
+ responseType_ = 'blob';
4759
+ }
4760
+ }
4761
+ let localVarPath = `/user/me/settings/newfeaturevisibility`;
4762
+ return this.httpClient.request('put', `${this.configuration.basePath}${localVarPath}`, {
4763
+ context: localVarHttpContext,
4764
+ body: setNewFeaturesVisibilityCommand,
4765
+ responseType: responseType_,
4766
+ withCredentials: this.configuration.withCredentials,
4767
+ headers: localVarHeaders,
4768
+ observe: observe,
4769
+ transferCache: localVarTransferCache,
4770
+ reportProgress: reportProgress
4771
+ });
4772
+ }
4773
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4774
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, providedIn: 'root' });
4775
+ }
4776
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: UserService, decorators: [{
4777
+ type: Injectable,
4778
+ args: [{
4779
+ providedIn: 'root'
4780
+ }]
4781
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
4782
+ type: Optional
4783
+ }, {
4784
+ type: Inject,
4785
+ args: [BASE_PATH]
4786
+ }] }, { type: Configuration, decorators: [{
4787
+ type: Optional
4788
+ }] }] });
4789
+
4790
+ const APIS = [AnalyticsService, CompaniesService, DcsService, DeliveriesService, DeliveryItemsService, HealthService, NotesService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, SettingsService, SummaryService, TaskOperationsService, TaskUserRecordsService, UserService];
4791
+
4792
+ /**
4793
+ * Wms.API.Client
4794
+ *
4795
+ *
4796
+ *
4797
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4798
+ * https://openapi-generator.tech
4799
+ * Do not edit the class manually.
4800
+ */
4801
+
4802
+ /**
4803
+ * Wms.API.Client
4804
+ *
4805
+ *
4806
+ *
4807
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4808
+ * https://openapi-generator.tech
4809
+ * Do not edit the class manually.
4810
+ */
4811
+
4812
+ /**
4813
+ * Wms.API.Client
4814
+ *
4815
+ *
4816
+ *
4817
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4818
+ * https://openapi-generator.tech
4819
+ * Do not edit the class manually.
4820
+ */
4821
+
4822
+ /**
4823
+ * Wms.API.Client
4824
+ *
4825
+ *
4826
+ *
4827
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4828
+ * https://openapi-generator.tech
4829
+ * Do not edit the class manually.
4830
+ */
4831
+
4832
+ /**
4833
+ * Wms.API.Client
4834
+ *
4835
+ *
4836
+ *
4837
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4838
+ * https://openapi-generator.tech
4839
+ * Do not edit the class manually.
4840
+ */
4841
+
4842
+ /**
4843
+ * Wms.API.Client
4844
+ *
4845
+ *
4846
+ *
4847
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4848
+ * https://openapi-generator.tech
4849
+ * Do not edit the class manually.
4850
+ */
4851
+
4852
+ /**
4853
+ * Wms.API.Client
4854
+ *
4855
+ *
4856
+ *
4857
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4858
+ * https://openapi-generator.tech
4859
+ * Do not edit the class manually.
4860
+ */
4861
+ const DeliveryType = {
4862
+ Standard: 'Standard',
4863
+ Return: 'Return',
4864
+ EcomCrossDock: 'EcomCrossDock',
4865
+ Internal: 'Internal',
4866
+ WorkOrder: 'WorkOrder'
4867
+ };
4868
+
4869
+ /**
4870
+ * Wms.API.Client
4871
+ *
4872
+ *
4873
+ *
4874
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4875
+ * https://openapi-generator.tech
4876
+ * Do not edit the class manually.
4877
+ */
4878
+ const DeviceType = {
4879
+ Unknown: 'Unknown',
4880
+ Desktop: 'Desktop',
4881
+ Hht: 'HHT'
4882
+ };
4883
+
4884
+ /**
4885
+ * Wms.API.Client
4886
+ *
4887
+ *
4888
+ *
4889
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4890
+ * https://openapi-generator.tech
4891
+ * Do not edit the class manually.
4892
+ */
4893
+
4894
+ /**
4895
+ * Wms.API.Client
4896
+ *
4897
+ *
4898
+ *
4899
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4900
+ * https://openapi-generator.tech
4901
+ * Do not edit the class manually.
4902
+ */
4903
+
4904
+ /**
4905
+ * Wms.API.Client
4906
+ *
4907
+ *
4908
+ *
4909
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4910
+ * https://openapi-generator.tech
4911
+ * Do not edit the class manually.
4912
+ */
4913
+
4914
+ /**
4915
+ * Wms.API.Client
4916
+ *
4917
+ *
4918
+ *
4919
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4920
+ * https://openapi-generator.tech
4921
+ * Do not edit the class manually.
4922
+ */
4923
+
4924
+ /**
4925
+ * Wms.API.Client
4926
+ *
4927
+ *
4928
+ *
4929
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4930
+ * https://openapi-generator.tech
4931
+ * Do not edit the class manually.
4932
+ */
4933
+ const NoteCategory = {
4934
+ Notes: 'Notes',
4935
+ ShippingMarks: 'ShippingMarks',
4936
+ SpecialInstructions: 'SpecialInstructions',
4163
4937
  Comments: 'Comments'
4164
4938
  };
4165
4939
 
@@ -4347,6 +5121,16 @@ const RecordType = {
4347
5121
  * Do not edit the class manually.
4348
5122
  */
4349
5123
 
5124
+ /**
5125
+ * Wms.API.Client
5126
+ *
5127
+ *
5128
+ *
5129
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5130
+ * https://openapi-generator.tech
5131
+ * Do not edit the class manually.
5132
+ */
5133
+
4350
5134
  class ApiModule {
4351
5135
  static forRoot(configurationFactory) {
4352
5136
  return {
@@ -4387,5 +5171,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor
4387
5171
  * Generated bundle index. Do not edit.
4388
5172
  */
4389
5173
 
4390
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CompaniesService, Configuration, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, PermissionsService, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, SettingsService, SummaryService, UserService };
5174
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CompaniesService, Configuration, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, PermissionsService, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, SettingsService, SummaryService, TaskOperationsService, TaskUserRecordsService, UserService };
4391
5175
  //# sourceMappingURL=indigina-wms-api.mjs.map