@indigina/wms-api 0.0.173 → 0.0.174

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