@indigina/wms-api 0.0.173 → 0.0.175

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.
@@ -397,6 +397,133 @@ class BaseService {
397
397
  }
398
398
  }
399
399
 
400
+ /**
401
+ * Wms.API.Client
402
+ *
403
+ *
404
+ *
405
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
406
+ * https://openapi-generator.tech
407
+ * Do not edit the class manually.
408
+ */
409
+ /* tslint:disable:no-unused-variable member-ordering */
410
+ class AddressesService extends BaseService {
411
+ httpClient;
412
+ constructor(httpClient, basePath, configuration) {
413
+ super(basePath, configuration);
414
+ this.httpClient = httpClient;
415
+ }
416
+ getAddressesByCompany(companyId, addressType, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
417
+ if (companyId === null || companyId === undefined) {
418
+ throw new Error('Required parameter companyId was null or undefined when calling getAddressesByCompany.');
419
+ }
420
+ if (addressType === null || addressType === undefined) {
421
+ throw new Error('Required parameter addressType was null or undefined when calling getAddressesByCompany.');
422
+ }
423
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
424
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
425
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
426
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
427
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
428
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
429
+ let localVarHeaders = this.defaultHeaders;
430
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
431
+ 'application/json'
432
+ ]);
433
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
434
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
435
+ }
436
+ const localVarHttpContext = options?.context ?? new HttpContext();
437
+ const localVarTransferCache = options?.transferCache ?? true;
438
+ let responseType_ = 'json';
439
+ if (localVarHttpHeaderAcceptSelected) {
440
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
441
+ responseType_ = 'text';
442
+ }
443
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
444
+ responseType_ = 'json';
445
+ }
446
+ else {
447
+ responseType_ = 'blob';
448
+ }
449
+ }
450
+ let localVarPath = `/companies/${this.configuration.encodeParam({ name: "companyId", value: companyId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/addresses/${this.configuration.encodeParam({ name: "addressType", value: addressType, in: "path", style: "simple", explode: false, dataType: "AddressType", dataFormat: undefined })}`;
451
+ const { basePath, withCredentials } = this.configuration;
452
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
453
+ context: localVarHttpContext,
454
+ params: localVarQueryParameters.toHttpParams(),
455
+ responseType: responseType_,
456
+ ...(withCredentials ? { withCredentials } : {}),
457
+ headers: localVarHeaders,
458
+ observe: observe,
459
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
460
+ reportProgress: reportProgress
461
+ });
462
+ }
463
+ getAddressesByPerson(personId, addressType, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
464
+ if (personId === null || personId === undefined) {
465
+ throw new Error('Required parameter personId was null or undefined when calling getAddressesByPerson.');
466
+ }
467
+ if (addressType === null || addressType === undefined) {
468
+ throw new Error('Required parameter addressType was null or undefined when calling getAddressesByPerson.');
469
+ }
470
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
471
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
472
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
473
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
474
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
475
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
476
+ let localVarHeaders = this.defaultHeaders;
477
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
478
+ 'application/json'
479
+ ]);
480
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
481
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
482
+ }
483
+ const localVarHttpContext = options?.context ?? new HttpContext();
484
+ const localVarTransferCache = options?.transferCache ?? true;
485
+ let responseType_ = 'json';
486
+ if (localVarHttpHeaderAcceptSelected) {
487
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
488
+ responseType_ = 'text';
489
+ }
490
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
491
+ responseType_ = 'json';
492
+ }
493
+ else {
494
+ responseType_ = 'blob';
495
+ }
496
+ }
497
+ let localVarPath = `/people/${this.configuration.encodeParam({ name: "personId", value: personId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/addresses/${this.configuration.encodeParam({ name: "addressType", value: addressType, in: "path", style: "simple", explode: false, dataType: "AddressType", dataFormat: undefined })}`;
498
+ const { basePath, withCredentials } = this.configuration;
499
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
500
+ context: localVarHttpContext,
501
+ params: localVarQueryParameters.toHttpParams(),
502
+ responseType: responseType_,
503
+ ...(withCredentials ? { withCredentials } : {}),
504
+ headers: localVarHeaders,
505
+ observe: observe,
506
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
507
+ reportProgress: reportProgress
508
+ });
509
+ }
510
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: AddressesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
511
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: AddressesService, providedIn: 'root' });
512
+ }
513
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: AddressesService, decorators: [{
514
+ type: Injectable,
515
+ args: [{
516
+ providedIn: 'root'
517
+ }]
518
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
519
+ type: Optional
520
+ }, {
521
+ type: Inject,
522
+ args: [BASE_PATH]
523
+ }] }, { type: Configuration, decorators: [{
524
+ type: Optional
525
+ }] }] });
526
+
400
527
  /**
401
528
  * Wms.API.Client
402
529
  *
@@ -2125,6 +2252,50 @@ class CompaniesService extends BaseService {
2125
2252
  reportProgress: reportProgress
2126
2253
  });
2127
2254
  }
2255
+ getCompaniesByCompanyType(companyType, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
2256
+ if (companyType === null || companyType === undefined) {
2257
+ throw new Error('Required parameter companyType was null or undefined when calling getCompaniesByCompanyType.');
2258
+ }
2259
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2260
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
2261
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
2262
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
2263
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
2264
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
2265
+ let localVarHeaders = this.defaultHeaders;
2266
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2267
+ 'application/json'
2268
+ ]);
2269
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2270
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2271
+ }
2272
+ const localVarHttpContext = options?.context ?? new HttpContext();
2273
+ const localVarTransferCache = options?.transferCache ?? true;
2274
+ let responseType_ = 'json';
2275
+ if (localVarHttpHeaderAcceptSelected) {
2276
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2277
+ responseType_ = 'text';
2278
+ }
2279
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2280
+ responseType_ = 'json';
2281
+ }
2282
+ else {
2283
+ responseType_ = 'blob';
2284
+ }
2285
+ }
2286
+ let localVarPath = `/companies/${this.configuration.encodeParam({ name: "companyType", value: companyType, in: "path", style: "simple", explode: false, dataType: "CompanyType", dataFormat: undefined })}`;
2287
+ const { basePath, withCredentials } = this.configuration;
2288
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2289
+ context: localVarHttpContext,
2290
+ params: localVarQueryParameters.toHttpParams(),
2291
+ responseType: responseType_,
2292
+ ...(withCredentials ? { withCredentials } : {}),
2293
+ headers: localVarHeaders,
2294
+ observe: observe,
2295
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2296
+ reportProgress: reportProgress
2297
+ });
2298
+ }
2128
2299
  getSuppliers(id, observe = 'body', reportProgress = false, options) {
2129
2300
  if (id === null || id === undefined) {
2130
2301
  throw new Error('Required parameter id was null or undefined when calling getSuppliers.');
@@ -2179,6 +2350,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
2179
2350
  type: Optional
2180
2351
  }] }] });
2181
2352
 
2353
+ /**
2354
+ * Wms.API.Client
2355
+ *
2356
+ *
2357
+ *
2358
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2359
+ * https://openapi-generator.tech
2360
+ * Do not edit the class manually.
2361
+ */
2362
+ /* tslint:disable:no-unused-variable member-ordering */
2363
+ class ContactsService extends BaseService {
2364
+ httpClient;
2365
+ constructor(httpClient, basePath, configuration) {
2366
+ super(basePath, configuration);
2367
+ this.httpClient = httpClient;
2368
+ }
2369
+ getContactsByCompany(companyId, contactType, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
2370
+ if (companyId === null || companyId === undefined) {
2371
+ throw new Error('Required parameter companyId was null or undefined when calling getContactsByCompany.');
2372
+ }
2373
+ if (contactType === null || contactType === undefined) {
2374
+ throw new Error('Required parameter contactType was null or undefined when calling getContactsByCompany.');
2375
+ }
2376
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2377
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
2378
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
2379
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
2380
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
2381
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
2382
+ let localVarHeaders = this.defaultHeaders;
2383
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2384
+ 'application/json'
2385
+ ]);
2386
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2387
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2388
+ }
2389
+ const localVarHttpContext = options?.context ?? new HttpContext();
2390
+ const localVarTransferCache = options?.transferCache ?? true;
2391
+ let responseType_ = 'json';
2392
+ if (localVarHttpHeaderAcceptSelected) {
2393
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2394
+ responseType_ = 'text';
2395
+ }
2396
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2397
+ responseType_ = 'json';
2398
+ }
2399
+ else {
2400
+ responseType_ = 'blob';
2401
+ }
2402
+ }
2403
+ let localVarPath = `/companies/${this.configuration.encodeParam({ name: "companyId", value: companyId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/contacts/${this.configuration.encodeParam({ name: "contactType", value: contactType, in: "path", style: "simple", explode: false, dataType: "PeopleGroup", dataFormat: undefined })}`;
2404
+ const { basePath, withCredentials } = this.configuration;
2405
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2406
+ context: localVarHttpContext,
2407
+ params: localVarQueryParameters.toHttpParams(),
2408
+ responseType: responseType_,
2409
+ ...(withCredentials ? { withCredentials } : {}),
2410
+ headers: localVarHeaders,
2411
+ observe: observe,
2412
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2413
+ reportProgress: reportProgress
2414
+ });
2415
+ }
2416
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ContactsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2417
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ContactsService, providedIn: 'root' });
2418
+ }
2419
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ContactsService, decorators: [{
2420
+ type: Injectable,
2421
+ args: [{
2422
+ providedIn: 'root'
2423
+ }]
2424
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
2425
+ type: Optional
2426
+ }, {
2427
+ type: Inject,
2428
+ args: [BASE_PATH]
2429
+ }] }, { type: Configuration, decorators: [{
2430
+ type: Optional
2431
+ }] }] });
2432
+
2182
2433
  /**
2183
2434
  * Wms.API.Client
2184
2435
  *
@@ -6203,26 +6454,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
6203
6454
  * Do not edit the class manually.
6204
6455
  */
6205
6456
  /* tslint:disable:no-unused-variable member-ordering */
6206
- class SettingsService extends BaseService {
6457
+ class SalesOrderItemsService extends BaseService {
6207
6458
  httpClient;
6208
6459
  constructor(httpClient, basePath, configuration) {
6209
6460
  super(basePath, configuration);
6210
6461
  this.httpClient = httpClient;
6211
6462
  }
6212
- deleteSettingByGroupAndKey(key, group, observe = 'body', reportProgress = false, options) {
6213
- if (key === null || key === undefined) {
6214
- throw new Error('Required parameter key was null or undefined when calling deleteSettingByGroupAndKey.');
6215
- }
6216
- if (group === null || group === undefined) {
6217
- throw new Error('Required parameter group was null or undefined when calling deleteSettingByGroupAndKey.');
6463
+ createSalesOrderItem(salesOrderItemCreateModel, observe = 'body', reportProgress = false, options) {
6464
+ if (salesOrderItemCreateModel === null || salesOrderItemCreateModel === undefined) {
6465
+ throw new Error('Required parameter salesOrderItemCreateModel was null or undefined when calling createSalesOrderItem.');
6218
6466
  }
6219
6467
  let localVarHeaders = this.defaultHeaders;
6220
- const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
6468
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6469
+ 'application/json'
6470
+ ]);
6221
6471
  if (localVarHttpHeaderAcceptSelected !== undefined) {
6222
6472
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6223
6473
  }
6224
6474
  const localVarHttpContext = options?.context ?? new HttpContext();
6225
6475
  const localVarTransferCache = options?.transferCache ?? true;
6476
+ // to determine the Content-Type header
6477
+ const consumes = [
6478
+ 'application/json'
6479
+ ];
6480
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
6481
+ if (httpContentTypeSelected !== undefined) {
6482
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
6483
+ }
6226
6484
  let responseType_ = 'json';
6227
6485
  if (localVarHttpHeaderAcceptSelected) {
6228
6486
  if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
@@ -6235,10 +6493,11 @@ class SettingsService extends BaseService {
6235
6493
  responseType_ = 'blob';
6236
6494
  }
6237
6495
  }
6238
- let localVarPath = `/users/me/settings/groups/${this.configuration.encodeParam({ name: "group", value: group, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}/${this.configuration.encodeParam({ name: "key", value: key, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}`;
6496
+ let localVarPath = `/salesOrderItems`;
6239
6497
  const { basePath, withCredentials } = this.configuration;
6240
- return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
6498
+ return this.httpClient.request('post', `${basePath}${localVarPath}`, {
6241
6499
  context: localVarHttpContext,
6500
+ body: salesOrderItemCreateModel,
6242
6501
  responseType: responseType_,
6243
6502
  ...(withCredentials ? { withCredentials } : {}),
6244
6503
  headers: localVarHeaders,
@@ -6247,23 +6506,470 @@ class SettingsService extends BaseService {
6247
6506
  reportProgress: reportProgress
6248
6507
  });
6249
6508
  }
6250
- deleteSettingByKey(key, observe = 'body', reportProgress = false, options) {
6251
- if (key === null || key === undefined) {
6252
- throw new Error('Required parameter key was null or undefined when calling deleteSettingByKey.');
6509
+ createSalesOrderItemsBulk(salesOrderItemCreateModel, observe = 'body', reportProgress = false, options) {
6510
+ if (salesOrderItemCreateModel === null || salesOrderItemCreateModel === undefined) {
6511
+ throw new Error('Required parameter salesOrderItemCreateModel was null or undefined when calling createSalesOrderItemsBulk.');
6253
6512
  }
6254
6513
  let localVarHeaders = this.defaultHeaders;
6255
- const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
6514
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6515
+ 'application/json'
6516
+ ]);
6256
6517
  if (localVarHttpHeaderAcceptSelected !== undefined) {
6257
6518
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6258
6519
  }
6259
6520
  const localVarHttpContext = options?.context ?? new HttpContext();
6260
6521
  const localVarTransferCache = options?.transferCache ?? true;
6261
- let responseType_ = 'json';
6262
- if (localVarHttpHeaderAcceptSelected) {
6263
- if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6264
- responseType_ = 'text';
6265
- }
6266
- else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6522
+ // to determine the Content-Type header
6523
+ const consumes = [
6524
+ 'application/json'
6525
+ ];
6526
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
6527
+ if (httpContentTypeSelected !== undefined) {
6528
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
6529
+ }
6530
+ let responseType_ = 'json';
6531
+ if (localVarHttpHeaderAcceptSelected) {
6532
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6533
+ responseType_ = 'text';
6534
+ }
6535
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6536
+ responseType_ = 'json';
6537
+ }
6538
+ else {
6539
+ responseType_ = 'blob';
6540
+ }
6541
+ }
6542
+ let localVarPath = `/salesOrderItems/bulk`;
6543
+ const { basePath, withCredentials } = this.configuration;
6544
+ return this.httpClient.request('post', `${basePath}${localVarPath}`, {
6545
+ context: localVarHttpContext,
6546
+ body: salesOrderItemCreateModel,
6547
+ responseType: responseType_,
6548
+ ...(withCredentials ? { withCredentials } : {}),
6549
+ headers: localVarHeaders,
6550
+ observe: observe,
6551
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6552
+ reportProgress: reportProgress
6553
+ });
6554
+ }
6555
+ deleteSalesOrderItem(id, observe = 'body', reportProgress = false, options) {
6556
+ if (id === null || id === undefined) {
6557
+ throw new Error('Required parameter id was null or undefined when calling deleteSalesOrderItem.');
6558
+ }
6559
+ let localVarHeaders = this.defaultHeaders;
6560
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
6561
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6562
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6563
+ }
6564
+ const localVarHttpContext = options?.context ?? new HttpContext();
6565
+ const localVarTransferCache = options?.transferCache ?? true;
6566
+ let responseType_ = 'json';
6567
+ if (localVarHttpHeaderAcceptSelected) {
6568
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6569
+ responseType_ = 'text';
6570
+ }
6571
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6572
+ responseType_ = 'json';
6573
+ }
6574
+ else {
6575
+ responseType_ = 'blob';
6576
+ }
6577
+ }
6578
+ let localVarPath = `/salesOrderItems/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
6579
+ const { basePath, withCredentials } = this.configuration;
6580
+ return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
6581
+ context: localVarHttpContext,
6582
+ responseType: responseType_,
6583
+ ...(withCredentials ? { withCredentials } : {}),
6584
+ headers: localVarHeaders,
6585
+ observe: observe,
6586
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6587
+ reportProgress: reportProgress
6588
+ });
6589
+ }
6590
+ getSalesOrderItem(id, observe = 'body', reportProgress = false, options) {
6591
+ if (id === null || id === undefined) {
6592
+ throw new Error('Required parameter id was null or undefined when calling getSalesOrderItem.');
6593
+ }
6594
+ let localVarHeaders = this.defaultHeaders;
6595
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6596
+ 'application/json'
6597
+ ]);
6598
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6599
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6600
+ }
6601
+ const localVarHttpContext = options?.context ?? new HttpContext();
6602
+ const localVarTransferCache = options?.transferCache ?? true;
6603
+ let responseType_ = 'json';
6604
+ if (localVarHttpHeaderAcceptSelected) {
6605
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6606
+ responseType_ = 'text';
6607
+ }
6608
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6609
+ responseType_ = 'json';
6610
+ }
6611
+ else {
6612
+ responseType_ = 'blob';
6613
+ }
6614
+ }
6615
+ let localVarPath = `/salesOrderItems/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
6616
+ const { basePath, withCredentials } = this.configuration;
6617
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
6618
+ context: localVarHttpContext,
6619
+ responseType: responseType_,
6620
+ ...(withCredentials ? { withCredentials } : {}),
6621
+ headers: localVarHeaders,
6622
+ observe: observe,
6623
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6624
+ reportProgress: reportProgress
6625
+ });
6626
+ }
6627
+ updateSalesOrderItem(id, salesOrderItemUpdateModel, observe = 'body', reportProgress = false, options) {
6628
+ if (id === null || id === undefined) {
6629
+ throw new Error('Required parameter id was null or undefined when calling updateSalesOrderItem.');
6630
+ }
6631
+ if (salesOrderItemUpdateModel === null || salesOrderItemUpdateModel === undefined) {
6632
+ throw new Error('Required parameter salesOrderItemUpdateModel was null or undefined when calling updateSalesOrderItem.');
6633
+ }
6634
+ let localVarHeaders = this.defaultHeaders;
6635
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6636
+ 'application/json'
6637
+ ]);
6638
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6639
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6640
+ }
6641
+ const localVarHttpContext = options?.context ?? new HttpContext();
6642
+ const localVarTransferCache = options?.transferCache ?? true;
6643
+ // to determine the Content-Type header
6644
+ const consumes = [
6645
+ 'application/json'
6646
+ ];
6647
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
6648
+ if (httpContentTypeSelected !== undefined) {
6649
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
6650
+ }
6651
+ let responseType_ = 'json';
6652
+ if (localVarHttpHeaderAcceptSelected) {
6653
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6654
+ responseType_ = 'text';
6655
+ }
6656
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6657
+ responseType_ = 'json';
6658
+ }
6659
+ else {
6660
+ responseType_ = 'blob';
6661
+ }
6662
+ }
6663
+ let localVarPath = `/salesOrderItems/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
6664
+ const { basePath, withCredentials } = this.configuration;
6665
+ return this.httpClient.request('put', `${basePath}${localVarPath}`, {
6666
+ context: localVarHttpContext,
6667
+ body: salesOrderItemUpdateModel,
6668
+ responseType: responseType_,
6669
+ ...(withCredentials ? { withCredentials } : {}),
6670
+ headers: localVarHeaders,
6671
+ observe: observe,
6672
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6673
+ reportProgress: reportProgress
6674
+ });
6675
+ }
6676
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SalesOrderItemsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6677
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SalesOrderItemsService, providedIn: 'root' });
6678
+ }
6679
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SalesOrderItemsService, decorators: [{
6680
+ type: Injectable,
6681
+ args: [{
6682
+ providedIn: 'root'
6683
+ }]
6684
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
6685
+ type: Optional
6686
+ }, {
6687
+ type: Inject,
6688
+ args: [BASE_PATH]
6689
+ }] }, { type: Configuration, decorators: [{
6690
+ type: Optional
6691
+ }] }] });
6692
+
6693
+ /**
6694
+ * Wms.API.Client
6695
+ *
6696
+ *
6697
+ *
6698
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6699
+ * https://openapi-generator.tech
6700
+ * Do not edit the class manually.
6701
+ */
6702
+ /* tslint:disable:no-unused-variable member-ordering */
6703
+ class SalesOrdersService extends BaseService {
6704
+ httpClient;
6705
+ constructor(httpClient, basePath, configuration) {
6706
+ super(basePath, configuration);
6707
+ this.httpClient = httpClient;
6708
+ }
6709
+ createSalesOrder(salesOrderHeaderCreateModel, observe = 'body', reportProgress = false, options) {
6710
+ if (salesOrderHeaderCreateModel === null || salesOrderHeaderCreateModel === undefined) {
6711
+ throw new Error('Required parameter salesOrderHeaderCreateModel was null or undefined when calling createSalesOrder.');
6712
+ }
6713
+ let localVarHeaders = this.defaultHeaders;
6714
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6715
+ 'application/json'
6716
+ ]);
6717
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6718
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6719
+ }
6720
+ const localVarHttpContext = options?.context ?? new HttpContext();
6721
+ const localVarTransferCache = options?.transferCache ?? true;
6722
+ // to determine the Content-Type header
6723
+ const consumes = [
6724
+ 'application/json'
6725
+ ];
6726
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
6727
+ if (httpContentTypeSelected !== undefined) {
6728
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
6729
+ }
6730
+ let responseType_ = 'json';
6731
+ if (localVarHttpHeaderAcceptSelected) {
6732
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6733
+ responseType_ = 'text';
6734
+ }
6735
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6736
+ responseType_ = 'json';
6737
+ }
6738
+ else {
6739
+ responseType_ = 'blob';
6740
+ }
6741
+ }
6742
+ let localVarPath = `/salesOrders`;
6743
+ const { basePath, withCredentials } = this.configuration;
6744
+ return this.httpClient.request('post', `${basePath}${localVarPath}`, {
6745
+ context: localVarHttpContext,
6746
+ body: salesOrderHeaderCreateModel,
6747
+ responseType: responseType_,
6748
+ ...(withCredentials ? { withCredentials } : {}),
6749
+ headers: localVarHeaders,
6750
+ observe: observe,
6751
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6752
+ reportProgress: reportProgress
6753
+ });
6754
+ }
6755
+ getSalesOrder(id, observe = 'body', reportProgress = false, options) {
6756
+ if (id === null || id === undefined) {
6757
+ throw new Error('Required parameter id was null or undefined when calling getSalesOrder.');
6758
+ }
6759
+ let localVarHeaders = this.defaultHeaders;
6760
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6761
+ 'application/json'
6762
+ ]);
6763
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6764
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6765
+ }
6766
+ const localVarHttpContext = options?.context ?? new HttpContext();
6767
+ const localVarTransferCache = options?.transferCache ?? true;
6768
+ let responseType_ = 'json';
6769
+ if (localVarHttpHeaderAcceptSelected) {
6770
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6771
+ responseType_ = 'text';
6772
+ }
6773
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6774
+ responseType_ = 'json';
6775
+ }
6776
+ else {
6777
+ responseType_ = 'blob';
6778
+ }
6779
+ }
6780
+ let localVarPath = `/salesOrders/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
6781
+ const { basePath, withCredentials } = this.configuration;
6782
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
6783
+ context: localVarHttpContext,
6784
+ responseType: responseType_,
6785
+ ...(withCredentials ? { withCredentials } : {}),
6786
+ headers: localVarHeaders,
6787
+ observe: observe,
6788
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6789
+ reportProgress: reportProgress
6790
+ });
6791
+ }
6792
+ getSalesOrderItems(id, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
6793
+ if (id === null || id === undefined) {
6794
+ throw new Error('Required parameter id was null or undefined when calling getSalesOrderItems.');
6795
+ }
6796
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
6797
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
6798
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
6799
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
6800
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
6801
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
6802
+ let localVarHeaders = this.defaultHeaders;
6803
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6804
+ 'application/json'
6805
+ ]);
6806
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6807
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6808
+ }
6809
+ const localVarHttpContext = options?.context ?? new HttpContext();
6810
+ const localVarTransferCache = options?.transferCache ?? true;
6811
+ let responseType_ = 'json';
6812
+ if (localVarHttpHeaderAcceptSelected) {
6813
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6814
+ responseType_ = 'text';
6815
+ }
6816
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6817
+ responseType_ = 'json';
6818
+ }
6819
+ else {
6820
+ responseType_ = 'blob';
6821
+ }
6822
+ }
6823
+ let localVarPath = `/salesOrders/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/items`;
6824
+ const { basePath, withCredentials } = this.configuration;
6825
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
6826
+ context: localVarHttpContext,
6827
+ params: localVarQueryParameters.toHttpParams(),
6828
+ responseType: responseType_,
6829
+ ...(withCredentials ? { withCredentials } : {}),
6830
+ headers: localVarHeaders,
6831
+ observe: observe,
6832
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6833
+ reportProgress: reportProgress
6834
+ });
6835
+ }
6836
+ updateSalesOrder(id, salesOrderHeaderUpdateModel, observe = 'body', reportProgress = false, options) {
6837
+ if (id === null || id === undefined) {
6838
+ throw new Error('Required parameter id was null or undefined when calling updateSalesOrder.');
6839
+ }
6840
+ if (salesOrderHeaderUpdateModel === null || salesOrderHeaderUpdateModel === undefined) {
6841
+ throw new Error('Required parameter salesOrderHeaderUpdateModel was null or undefined when calling updateSalesOrder.');
6842
+ }
6843
+ let localVarHeaders = this.defaultHeaders;
6844
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6845
+ 'application/json'
6846
+ ]);
6847
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6848
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6849
+ }
6850
+ const localVarHttpContext = options?.context ?? new HttpContext();
6851
+ const localVarTransferCache = options?.transferCache ?? true;
6852
+ // to determine the Content-Type header
6853
+ const consumes = [
6854
+ 'application/json'
6855
+ ];
6856
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
6857
+ if (httpContentTypeSelected !== undefined) {
6858
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
6859
+ }
6860
+ let responseType_ = 'json';
6861
+ if (localVarHttpHeaderAcceptSelected) {
6862
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6863
+ responseType_ = 'text';
6864
+ }
6865
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6866
+ responseType_ = 'json';
6867
+ }
6868
+ else {
6869
+ responseType_ = 'blob';
6870
+ }
6871
+ }
6872
+ let localVarPath = `/salesOrders/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
6873
+ const { basePath, withCredentials } = this.configuration;
6874
+ return this.httpClient.request('put', `${basePath}${localVarPath}`, {
6875
+ context: localVarHttpContext,
6876
+ body: salesOrderHeaderUpdateModel,
6877
+ responseType: responseType_,
6878
+ ...(withCredentials ? { withCredentials } : {}),
6879
+ headers: localVarHeaders,
6880
+ observe: observe,
6881
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6882
+ reportProgress: reportProgress
6883
+ });
6884
+ }
6885
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SalesOrdersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6886
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SalesOrdersService, providedIn: 'root' });
6887
+ }
6888
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SalesOrdersService, decorators: [{
6889
+ type: Injectable,
6890
+ args: [{
6891
+ providedIn: 'root'
6892
+ }]
6893
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
6894
+ type: Optional
6895
+ }, {
6896
+ type: Inject,
6897
+ args: [BASE_PATH]
6898
+ }] }, { type: Configuration, decorators: [{
6899
+ type: Optional
6900
+ }] }] });
6901
+
6902
+ /**
6903
+ * Wms.API.Client
6904
+ *
6905
+ *
6906
+ *
6907
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6908
+ * https://openapi-generator.tech
6909
+ * Do not edit the class manually.
6910
+ */
6911
+ /* tslint:disable:no-unused-variable member-ordering */
6912
+ class SettingsService extends BaseService {
6913
+ httpClient;
6914
+ constructor(httpClient, basePath, configuration) {
6915
+ super(basePath, configuration);
6916
+ this.httpClient = httpClient;
6917
+ }
6918
+ deleteSettingByGroupAndKey(key, group, observe = 'body', reportProgress = false, options) {
6919
+ if (key === null || key === undefined) {
6920
+ throw new Error('Required parameter key was null or undefined when calling deleteSettingByGroupAndKey.');
6921
+ }
6922
+ if (group === null || group === undefined) {
6923
+ throw new Error('Required parameter group was null or undefined when calling deleteSettingByGroupAndKey.');
6924
+ }
6925
+ let localVarHeaders = this.defaultHeaders;
6926
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
6927
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6928
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6929
+ }
6930
+ const localVarHttpContext = options?.context ?? new HttpContext();
6931
+ const localVarTransferCache = options?.transferCache ?? true;
6932
+ let responseType_ = 'json';
6933
+ if (localVarHttpHeaderAcceptSelected) {
6934
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6935
+ responseType_ = 'text';
6936
+ }
6937
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6938
+ responseType_ = 'json';
6939
+ }
6940
+ else {
6941
+ responseType_ = 'blob';
6942
+ }
6943
+ }
6944
+ let localVarPath = `/users/me/settings/groups/${this.configuration.encodeParam({ name: "group", value: group, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}/${this.configuration.encodeParam({ name: "key", value: key, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}`;
6945
+ const { basePath, withCredentials } = this.configuration;
6946
+ return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
6947
+ context: localVarHttpContext,
6948
+ responseType: responseType_,
6949
+ ...(withCredentials ? { withCredentials } : {}),
6950
+ headers: localVarHeaders,
6951
+ observe: observe,
6952
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6953
+ reportProgress: reportProgress
6954
+ });
6955
+ }
6956
+ deleteSettingByKey(key, observe = 'body', reportProgress = false, options) {
6957
+ if (key === null || key === undefined) {
6958
+ throw new Error('Required parameter key was null or undefined when calling deleteSettingByKey.');
6959
+ }
6960
+ let localVarHeaders = this.defaultHeaders;
6961
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
6962
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6963
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6964
+ }
6965
+ const localVarHttpContext = options?.context ?? new HttpContext();
6966
+ const localVarTransferCache = options?.transferCache ?? true;
6967
+ let responseType_ = 'json';
6968
+ if (localVarHttpHeaderAcceptSelected) {
6969
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6970
+ responseType_ = 'text';
6971
+ }
6972
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6267
6973
  responseType_ = 'json';
6268
6974
  }
6269
6975
  else {
@@ -9272,7 +9978,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
9272
9978
  type: Optional
9273
9979
  }] }] });
9274
9980
 
9275
- const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
9981
+ const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
9982
+
9983
+ /**
9984
+ * Wms.API.Client
9985
+ *
9986
+ *
9987
+ *
9988
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9989
+ * https://openapi-generator.tech
9990
+ * Do not edit the class manually.
9991
+ */
9992
+ const AddressSource = {
9993
+ Company: 'Company',
9994
+ Contact: 'Contact'
9995
+ };
9996
+
9997
+ /**
9998
+ * Wms.API.Client
9999
+ *
10000
+ *
10001
+ *
10002
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10003
+ * https://openapi-generator.tech
10004
+ * Do not edit the class manually.
10005
+ */
10006
+ const AddressType = {
10007
+ Delivery: 'Delivery',
10008
+ Bank: 'Bank',
10009
+ Primary: 'Primary',
10010
+ Supplier: 'Supplier',
10011
+ Billing: 'Billing',
10012
+ Shipping: 'Shipping',
10013
+ ForwardingAgent: 'ForwardingAgent',
10014
+ Invoice: 'Invoice',
10015
+ MarkFor: 'MarkFor',
10016
+ Return: 'Return'
10017
+ };
10018
+
10019
+ /**
10020
+ * Wms.API.Client
10021
+ *
10022
+ *
10023
+ *
10024
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10025
+ * https://openapi-generator.tech
10026
+ * Do not edit the class manually.
10027
+ */
9276
10028
 
9277
10029
  /**
9278
10030
  * Wms.API.Client
@@ -9459,6 +10211,48 @@ const ClusterPackWaveGridTypes = {
9459
10211
  * Do not edit the class manually.
9460
10212
  */
9461
10213
 
10214
+ /**
10215
+ * Wms.API.Client
10216
+ *
10217
+ *
10218
+ *
10219
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10220
+ * https://openapi-generator.tech
10221
+ * Do not edit the class manually.
10222
+ */
10223
+
10224
+ /**
10225
+ * Wms.API.Client
10226
+ *
10227
+ *
10228
+ *
10229
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10230
+ * https://openapi-generator.tech
10231
+ * Do not edit the class manually.
10232
+ */
10233
+ const CompanyType = {
10234
+ Carrier: 'Carrier',
10235
+ TransportServices: 'TransportServices',
10236
+ Company: 'Company',
10237
+ Vendor: 'Vendor',
10238
+ Customer: 'Customer',
10239
+ ShippingAgent: 'ShippingAgent',
10240
+ ShipFrom: 'ShipFrom',
10241
+ OriginAgent: 'OriginAgent',
10242
+ ShipTo: 'ShipTo',
10243
+ BuyingAgent: 'BuyingAgent',
10244
+ Seller: 'Seller',
10245
+ DistributionCentre: 'DistributionCentre',
10246
+ Client: 'Client',
10247
+ SysAdmin: 'SysAdmin',
10248
+ LocalAgent: 'LocalAgent',
10249
+ CarrierProvider: 'CarrierProvider',
10250
+ WholesaleCustomer: 'WholesaleCustomer',
10251
+ WebCustomer: 'WebCustomer',
10252
+ DestinationAgent: 'DestinationAgent',
10253
+ ForwardingAgent: 'ForwardingAgent'
10254
+ };
10255
+
9462
10256
  /**
9463
10257
  * Wms.API.Client
9464
10258
  *
@@ -9742,7 +10536,8 @@ const NoteCategory = {
9742
10536
  */
9743
10537
  const NoteSourceType = {
9744
10538
  Delivery: 'Delivery',
9745
- DispatchHeader: 'DispatchHeader'
10539
+ DispatchHeader: 'DispatchHeader',
10540
+ SalesOrderHeader: 'SalesOrderHeader'
9746
10541
  };
9747
10542
 
9748
10543
  /**
@@ -9827,6 +10622,22 @@ const PackingProcesses = {
9827
10622
  SkuPackingWeb: 'SkuPackingWeb'
9828
10623
  };
9829
10624
 
10625
+ /**
10626
+ * Wms.API.Client
10627
+ *
10628
+ *
10629
+ *
10630
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10631
+ * https://openapi-generator.tech
10632
+ * Do not edit the class manually.
10633
+ */
10634
+ const PeopleGroup = {
10635
+ DeliveryContact: 'DeliveryContact',
10636
+ BillingContact: 'BillingContact',
10637
+ SupplierContact: 'SupplierContact',
10638
+ ForwardingAgentContact: 'ForwardingAgentContact'
10639
+ };
10640
+
9830
10641
  /**
9831
10642
  * Wms.API.Client
9832
10643
  *
@@ -10130,6 +10941,46 @@ const ReprintStatuses = {
10130
10941
  * Do not edit the class manually.
10131
10942
  */
10132
10943
 
10944
+ /**
10945
+ * Wms.API.Client
10946
+ *
10947
+ *
10948
+ *
10949
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10950
+ * https://openapi-generator.tech
10951
+ * Do not edit the class manually.
10952
+ */
10953
+
10954
+ /**
10955
+ * Wms.API.Client
10956
+ *
10957
+ *
10958
+ *
10959
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10960
+ * https://openapi-generator.tech
10961
+ * Do not edit the class manually.
10962
+ */
10963
+
10964
+ /**
10965
+ * Wms.API.Client
10966
+ *
10967
+ *
10968
+ *
10969
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10970
+ * https://openapi-generator.tech
10971
+ * Do not edit the class manually.
10972
+ */
10973
+
10974
+ /**
10975
+ * Wms.API.Client
10976
+ *
10977
+ *
10978
+ *
10979
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10980
+ * https://openapi-generator.tech
10981
+ * Do not edit the class manually.
10982
+ */
10983
+
10133
10984
  /**
10134
10985
  * Wms.API.Client
10135
10986
  *
@@ -10438,5 +11289,5 @@ function provideApi(configOrBasePath) {
10438
11289
  * Generated bundle index. Do not edit.
10439
11290
  */
10440
11291
 
10441
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
11292
+ export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
10442
11293
  //# sourceMappingURL=indigina-wms-api.mjs.map