@indigina/wms-api 0.0.182 → 0.0.183

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @indigina/wms-api@0.0.182
1
+ # @indigina/wms-api@0.0.183
2
2
 
3
3
  WMS API Client for Angular applications
4
4
 
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
24
24
  _published:_
25
25
 
26
26
  ```console
27
- npm install @indigina/wms-api@0.0.182 --save
27
+ npm install @indigina/wms-api@0.0.183 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -2466,6 +2466,361 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
2466
2466
  type: Optional
2467
2467
  }] }] });
2468
2468
 
2469
+ /**
2470
+ * Wms.API.Client
2471
+ *
2472
+ *
2473
+ *
2474
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2475
+ * https://openapi-generator.tech
2476
+ * Do not edit the class manually.
2477
+ */
2478
+ /* tslint:disable:no-unused-variable member-ordering */
2479
+ class CountContinuousInventoryService extends BaseService {
2480
+ httpClient;
2481
+ constructor(httpClient, basePath, configuration) {
2482
+ super(basePath, configuration);
2483
+ this.httpClient = httpClient;
2484
+ }
2485
+ activateCountContinuousInventory(id, observe = 'body', reportProgress = false, options) {
2486
+ if (id === null || id === undefined) {
2487
+ throw new Error('Required parameter id was null or undefined when calling activateCountContinuousInventory.');
2488
+ }
2489
+ let localVarHeaders = this.defaultHeaders;
2490
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2491
+ 'application/json'
2492
+ ]);
2493
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2494
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2495
+ }
2496
+ const localVarHttpContext = options?.context ?? new HttpContext();
2497
+ const localVarTransferCache = options?.transferCache ?? true;
2498
+ let responseType_ = 'json';
2499
+ if (localVarHttpHeaderAcceptSelected) {
2500
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2501
+ responseType_ = 'text';
2502
+ }
2503
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2504
+ responseType_ = 'json';
2505
+ }
2506
+ else {
2507
+ responseType_ = 'blob';
2508
+ }
2509
+ }
2510
+ let localVarPath = `/CountContinuousInventories/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/activate`;
2511
+ const { basePath, withCredentials } = this.configuration;
2512
+ return this.httpClient.request('put', `${basePath}${localVarPath}`, {
2513
+ context: localVarHttpContext,
2514
+ responseType: responseType_,
2515
+ ...(withCredentials ? { withCredentials } : {}),
2516
+ headers: localVarHeaders,
2517
+ observe: observe,
2518
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2519
+ reportProgress: reportProgress
2520
+ });
2521
+ }
2522
+ createCountContinuousInventory(createCountContinuousInventory, observe = 'body', reportProgress = false, options) {
2523
+ if (createCountContinuousInventory === null || createCountContinuousInventory === undefined) {
2524
+ throw new Error('Required parameter createCountContinuousInventory was null or undefined when calling createCountContinuousInventory.');
2525
+ }
2526
+ let localVarHeaders = this.defaultHeaders;
2527
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2528
+ 'application/json'
2529
+ ]);
2530
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2531
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2532
+ }
2533
+ const localVarHttpContext = options?.context ?? new HttpContext();
2534
+ const localVarTransferCache = options?.transferCache ?? true;
2535
+ // to determine the Content-Type header
2536
+ const consumes = [
2537
+ 'application/json'
2538
+ ];
2539
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
2540
+ if (httpContentTypeSelected !== undefined) {
2541
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
2542
+ }
2543
+ let responseType_ = 'json';
2544
+ if (localVarHttpHeaderAcceptSelected) {
2545
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2546
+ responseType_ = 'text';
2547
+ }
2548
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2549
+ responseType_ = 'json';
2550
+ }
2551
+ else {
2552
+ responseType_ = 'blob';
2553
+ }
2554
+ }
2555
+ let localVarPath = `/CountContinuousInventories`;
2556
+ const { basePath, withCredentials } = this.configuration;
2557
+ return this.httpClient.request('post', `${basePath}${localVarPath}`, {
2558
+ context: localVarHttpContext,
2559
+ body: createCountContinuousInventory,
2560
+ responseType: responseType_,
2561
+ ...(withCredentials ? { withCredentials } : {}),
2562
+ headers: localVarHeaders,
2563
+ observe: observe,
2564
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2565
+ reportProgress: reportProgress
2566
+ });
2567
+ }
2568
+ deleteCountContinuousInventory(id, observe = 'body', reportProgress = false, options) {
2569
+ if (id === null || id === undefined) {
2570
+ throw new Error('Required parameter id was null or undefined when calling deleteCountContinuousInventory.');
2571
+ }
2572
+ let localVarHeaders = this.defaultHeaders;
2573
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2574
+ 'application/json'
2575
+ ]);
2576
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2577
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2578
+ }
2579
+ const localVarHttpContext = options?.context ?? new HttpContext();
2580
+ const localVarTransferCache = options?.transferCache ?? true;
2581
+ let responseType_ = 'json';
2582
+ if (localVarHttpHeaderAcceptSelected) {
2583
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2584
+ responseType_ = 'text';
2585
+ }
2586
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2587
+ responseType_ = 'json';
2588
+ }
2589
+ else {
2590
+ responseType_ = 'blob';
2591
+ }
2592
+ }
2593
+ let localVarPath = `/CountContinuousInventories/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
2594
+ const { basePath, withCredentials } = this.configuration;
2595
+ return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
2596
+ context: localVarHttpContext,
2597
+ responseType: responseType_,
2598
+ ...(withCredentials ? { withCredentials } : {}),
2599
+ headers: localVarHeaders,
2600
+ observe: observe,
2601
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2602
+ reportProgress: reportProgress
2603
+ });
2604
+ }
2605
+ getCountContinuousInventories($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
2606
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2607
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
2608
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
2609
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
2610
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
2611
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
2612
+ let localVarHeaders = this.defaultHeaders;
2613
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2614
+ 'application/json'
2615
+ ]);
2616
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2617
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2618
+ }
2619
+ const localVarHttpContext = options?.context ?? new HttpContext();
2620
+ const localVarTransferCache = options?.transferCache ?? true;
2621
+ let responseType_ = 'json';
2622
+ if (localVarHttpHeaderAcceptSelected) {
2623
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2624
+ responseType_ = 'text';
2625
+ }
2626
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2627
+ responseType_ = 'json';
2628
+ }
2629
+ else {
2630
+ responseType_ = 'blob';
2631
+ }
2632
+ }
2633
+ let localVarPath = `/CountContinuousInventories`;
2634
+ const { basePath, withCredentials } = this.configuration;
2635
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2636
+ context: localVarHttpContext,
2637
+ params: localVarQueryParameters.toHttpParams(),
2638
+ responseType: responseType_,
2639
+ ...(withCredentials ? { withCredentials } : {}),
2640
+ headers: localVarHeaders,
2641
+ observe: observe,
2642
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2643
+ reportProgress: reportProgress
2644
+ });
2645
+ }
2646
+ getCountContinuousInventoriesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
2647
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2648
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
2649
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
2650
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
2651
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
2652
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
2653
+ let localVarHeaders = this.defaultHeaders;
2654
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2655
+ 'application/json'
2656
+ ]);
2657
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2658
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2659
+ }
2660
+ const localVarHttpContext = options?.context ?? new HttpContext();
2661
+ const localVarTransferCache = options?.transferCache ?? true;
2662
+ let responseType_ = 'json';
2663
+ if (localVarHttpHeaderAcceptSelected) {
2664
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2665
+ responseType_ = 'text';
2666
+ }
2667
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2668
+ responseType_ = 'json';
2669
+ }
2670
+ else {
2671
+ responseType_ = 'blob';
2672
+ }
2673
+ }
2674
+ let localVarPath = `/CountContinuousInventories/search`;
2675
+ const { basePath, withCredentials } = this.configuration;
2676
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2677
+ context: localVarHttpContext,
2678
+ params: localVarQueryParameters.toHttpParams(),
2679
+ responseType: responseType_,
2680
+ ...(withCredentials ? { withCredentials } : {}),
2681
+ headers: localVarHeaders,
2682
+ observe: observe,
2683
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2684
+ reportProgress: reportProgress
2685
+ });
2686
+ }
2687
+ getCountContinuousInventoryClients(observe = 'body', reportProgress = false, options) {
2688
+ let localVarHeaders = this.defaultHeaders;
2689
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2690
+ 'application/json'
2691
+ ]);
2692
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2693
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2694
+ }
2695
+ const localVarHttpContext = options?.context ?? new HttpContext();
2696
+ const localVarTransferCache = options?.transferCache ?? true;
2697
+ let responseType_ = 'json';
2698
+ if (localVarHttpHeaderAcceptSelected) {
2699
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2700
+ responseType_ = 'text';
2701
+ }
2702
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2703
+ responseType_ = 'json';
2704
+ }
2705
+ else {
2706
+ responseType_ = 'blob';
2707
+ }
2708
+ }
2709
+ let localVarPath = `/CountContinuousInventories/clients`;
2710
+ const { basePath, withCredentials } = this.configuration;
2711
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2712
+ context: localVarHttpContext,
2713
+ responseType: responseType_,
2714
+ ...(withCredentials ? { withCredentials } : {}),
2715
+ headers: localVarHeaders,
2716
+ observe: observe,
2717
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2718
+ reportProgress: reportProgress
2719
+ });
2720
+ }
2721
+ pauseCountContinuousInventory(id, observe = 'body', reportProgress = false, options) {
2722
+ if (id === null || id === undefined) {
2723
+ throw new Error('Required parameter id was null or undefined when calling pauseCountContinuousInventory.');
2724
+ }
2725
+ let localVarHeaders = this.defaultHeaders;
2726
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2727
+ 'application/json'
2728
+ ]);
2729
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2730
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2731
+ }
2732
+ const localVarHttpContext = options?.context ?? new HttpContext();
2733
+ const localVarTransferCache = options?.transferCache ?? true;
2734
+ let responseType_ = 'json';
2735
+ if (localVarHttpHeaderAcceptSelected) {
2736
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2737
+ responseType_ = 'text';
2738
+ }
2739
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2740
+ responseType_ = 'json';
2741
+ }
2742
+ else {
2743
+ responseType_ = 'blob';
2744
+ }
2745
+ }
2746
+ let localVarPath = `/CountContinuousInventories/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/pause`;
2747
+ const { basePath, withCredentials } = this.configuration;
2748
+ return this.httpClient.request('put', `${basePath}${localVarPath}`, {
2749
+ context: localVarHttpContext,
2750
+ responseType: responseType_,
2751
+ ...(withCredentials ? { withCredentials } : {}),
2752
+ headers: localVarHeaders,
2753
+ observe: observe,
2754
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2755
+ reportProgress: reportProgress
2756
+ });
2757
+ }
2758
+ updateCountContinuousInventory(id, updateCountContinuousInventory, observe = 'body', reportProgress = false, options) {
2759
+ if (id === null || id === undefined) {
2760
+ throw new Error('Required parameter id was null or undefined when calling updateCountContinuousInventory.');
2761
+ }
2762
+ if (updateCountContinuousInventory === null || updateCountContinuousInventory === undefined) {
2763
+ throw new Error('Required parameter updateCountContinuousInventory was null or undefined when calling updateCountContinuousInventory.');
2764
+ }
2765
+ let localVarHeaders = this.defaultHeaders;
2766
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2767
+ 'application/json'
2768
+ ]);
2769
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2770
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2771
+ }
2772
+ const localVarHttpContext = options?.context ?? new HttpContext();
2773
+ const localVarTransferCache = options?.transferCache ?? true;
2774
+ // to determine the Content-Type header
2775
+ const consumes = [
2776
+ 'application/json'
2777
+ ];
2778
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
2779
+ if (httpContentTypeSelected !== undefined) {
2780
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
2781
+ }
2782
+ let responseType_ = 'json';
2783
+ if (localVarHttpHeaderAcceptSelected) {
2784
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2785
+ responseType_ = 'text';
2786
+ }
2787
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2788
+ responseType_ = 'json';
2789
+ }
2790
+ else {
2791
+ responseType_ = 'blob';
2792
+ }
2793
+ }
2794
+ let localVarPath = `/CountContinuousInventories/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
2795
+ const { basePath, withCredentials } = this.configuration;
2796
+ return this.httpClient.request('put', `${basePath}${localVarPath}`, {
2797
+ context: localVarHttpContext,
2798
+ body: updateCountContinuousInventory,
2799
+ responseType: responseType_,
2800
+ ...(withCredentials ? { withCredentials } : {}),
2801
+ headers: localVarHeaders,
2802
+ observe: observe,
2803
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2804
+ reportProgress: reportProgress
2805
+ });
2806
+ }
2807
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountContinuousInventoryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2808
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountContinuousInventoryService, providedIn: 'root' });
2809
+ }
2810
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountContinuousInventoryService, decorators: [{
2811
+ type: Injectable,
2812
+ args: [{
2813
+ providedIn: 'root'
2814
+ }]
2815
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
2816
+ type: Optional
2817
+ }, {
2818
+ type: Inject,
2819
+ args: [BASE_PATH]
2820
+ }] }, { type: Configuration, decorators: [{
2821
+ type: Optional
2822
+ }] }] });
2823
+
2469
2824
  /**
2470
2825
  * Wms.API.Client
2471
2826
  *
@@ -10639,7 +10994,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
10639
10994
  type: Optional
10640
10995
  }] }] });
10641
10996
 
10642
- const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, CountRecordsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PackageTypesService, 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];
10997
+ const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, CountContinuousInventoryService, CountRecordsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PackageTypesService, 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];
10643
10998
 
10644
10999
  /**
10645
11000
  * Wms.API.Client
@@ -10934,6 +11289,36 @@ const CompanyType = {
10934
11289
  ForwardingAgent: 'ForwardingAgent'
10935
11290
  };
10936
11291
 
11292
+ /**
11293
+ * Wms.API.Client
11294
+ *
11295
+ *
11296
+ *
11297
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11298
+ * https://openapi-generator.tech
11299
+ * Do not edit the class manually.
11300
+ */
11301
+
11302
+ /**
11303
+ * Wms.API.Client
11304
+ *
11305
+ *
11306
+ *
11307
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11308
+ * https://openapi-generator.tech
11309
+ * Do not edit the class manually.
11310
+ */
11311
+
11312
+ /**
11313
+ * Wms.API.Client
11314
+ *
11315
+ *
11316
+ *
11317
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11318
+ * https://openapi-generator.tech
11319
+ * Do not edit the class manually.
11320
+ */
11321
+
10937
11322
  /**
10938
11323
  * Wms.API.Client
10939
11324
  *
@@ -11013,6 +11398,16 @@ const CountType = {
11013
11398
  * Do not edit the class manually.
11014
11399
  */
11015
11400
 
11401
+ /**
11402
+ * Wms.API.Client
11403
+ *
11404
+ *
11405
+ *
11406
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11407
+ * https://openapi-generator.tech
11408
+ * Do not edit the class manually.
11409
+ */
11410
+
11016
11411
  /**
11017
11412
  * Wms.API.Client
11018
11413
  *
@@ -11818,6 +12213,16 @@ const UnitOfMeasurementTypes = {
11818
12213
  * Do not edit the class manually.
11819
12214
  */
11820
12215
 
12216
+ /**
12217
+ * Wms.API.Client
12218
+ *
12219
+ *
12220
+ *
12221
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12222
+ * https://openapi-generator.tech
12223
+ * Do not edit the class manually.
12224
+ */
12225
+
11821
12226
  /**
11822
12227
  * Wms.API.Client
11823
12228
  *
@@ -12053,5 +12458,5 @@ function provideApi(configOrBasePath) {
12053
12458
  * Generated bundle index. Do not edit.
12054
12459
  */
12055
12460
 
12056
- 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, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackageTypesService, 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, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
12461
+ 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, CountContinuousInventoryService, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackageTypesService, 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, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
12057
12462
  //# sourceMappingURL=indigina-wms-api.mjs.map