@indigina/wms-api 0.0.183 → 0.0.185

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.183",
3
+ "version": "0.0.185",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -712,6 +712,65 @@ declare class CarrierProviderIntegrationsService extends BaseService {
712
712
  static ɵprov: i0.ɵɵInjectableDeclaration<CarrierProviderIntegrationsService>;
713
713
  }
714
714
 
715
+ /**
716
+ * Wms.API.Client
717
+ *
718
+ *
719
+ *
720
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
721
+ * https://openapi-generator.tech
722
+ * Do not edit the class manually.
723
+ */
724
+ interface CarrierServiceType {
725
+ id: string;
726
+ serviceName?: string;
727
+ }
728
+
729
+ /**
730
+ * Wms.API.Client
731
+ *
732
+ *
733
+ *
734
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
735
+ * https://openapi-generator.tech
736
+ * Do not edit the class manually.
737
+ */
738
+
739
+ interface CarrierServiceTypes {
740
+ total: number;
741
+ data: Array<CarrierServiceType>;
742
+ }
743
+
744
+ declare class CarrierServiceTypesService extends BaseService {
745
+ protected httpClient: HttpClient;
746
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
747
+ /**
748
+ * Get the services for a carrier
749
+ * @endpoint get /carrierServiceTypes/{carrierId}
750
+ * @param carrierId
751
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
752
+ * @param reportProgress flag to report request and response progress.
753
+ * @param options additional options
754
+ */
755
+ getCarrierServiceTypes(carrierId: string, observe?: 'body', reportProgress?: boolean, options?: {
756
+ httpHeaderAccept?: 'application/json';
757
+ context?: HttpContext;
758
+ transferCache?: boolean;
759
+ }): Observable<CarrierServiceTypes>;
760
+ getCarrierServiceTypes(carrierId: string, observe?: 'response', reportProgress?: boolean, options?: {
761
+ httpHeaderAccept?: 'application/json';
762
+ context?: HttpContext;
763
+ transferCache?: boolean;
764
+ }): Observable<HttpResponse<CarrierServiceTypes>>;
765
+ getCarrierServiceTypes(carrierId: string, observe?: 'events', reportProgress?: boolean, options?: {
766
+ httpHeaderAccept?: 'application/json';
767
+ context?: HttpContext;
768
+ transferCache?: boolean;
769
+ }): Observable<HttpEvent<CarrierServiceTypes>>;
770
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarrierServiceTypesService, [null, { optional: true; }, { optional: true; }]>;
771
+ static ɵprov: i0.ɵɵInjectableDeclaration<CarrierServiceTypesService>;
772
+ }
773
+
715
774
  /**
716
775
  * Wms.API.Client
717
776
  *
@@ -4120,20 +4179,6 @@ declare class DeliveryItemsService extends BaseService {
4120
4179
  static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryItemsService>;
4121
4180
  }
4122
4181
 
4123
- /**
4124
- * Wms.API.Client
4125
- *
4126
- *
4127
- *
4128
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4129
- * https://openapi-generator.tech
4130
- * Do not edit the class manually.
4131
- */
4132
- interface CarrierServiceType {
4133
- id: string;
4134
- serviceName?: string;
4135
- }
4136
-
4137
4182
  /**
4138
4183
  * Wms.API.Client
4139
4184
  *
@@ -5161,6 +5206,8 @@ interface DispatchGridView {
5161
5206
  shipToAddress?: string;
5162
5207
  canPick?: boolean;
5163
5208
  hasTrackUrl?: boolean;
5209
+ dc?: string | null;
5210
+ shipToContact?: string | null;
5164
5211
  }
5165
5212
  declare namespace DispatchGridView {
5166
5213
  }
@@ -5252,6 +5299,29 @@ declare class DispatchesService extends BaseService {
5252
5299
  context?: HttpContext;
5253
5300
  transferCache?: boolean;
5254
5301
  }): Observable<HttpEvent<any>>;
5302
+ /**
5303
+ * Confirm dispatch requests
5304
+ * @endpoint put /dispatches/confirm-requests
5305
+ * @param ids
5306
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5307
+ * @param reportProgress flag to report request and response progress.
5308
+ * @param options additional options
5309
+ */
5310
+ confirmDispatchRequests(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
5311
+ httpHeaderAccept?: undefined;
5312
+ context?: HttpContext;
5313
+ transferCache?: boolean;
5314
+ }): Observable<any>;
5315
+ confirmDispatchRequests(ids: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
5316
+ httpHeaderAccept?: undefined;
5317
+ context?: HttpContext;
5318
+ transferCache?: boolean;
5319
+ }): Observable<HttpResponse<any>>;
5320
+ confirmDispatchRequests(ids: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
5321
+ httpHeaderAccept?: undefined;
5322
+ context?: HttpContext;
5323
+ transferCache?: boolean;
5324
+ }): Observable<HttpEvent<any>>;
5255
5325
  /**
5256
5326
  * Confirm dispatches
5257
5327
  * @endpoint put /dispatches/confirm
@@ -5276,6 +5346,29 @@ declare class DispatchesService extends BaseService {
5276
5346
  context?: HttpContext;
5277
5347
  transferCache?: boolean;
5278
5348
  }): Observable<HttpEvent<any>>;
5349
+ /**
5350
+ * Delete a dispatch
5351
+ * @endpoint delete /dispatches/{id}
5352
+ * @param id
5353
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5354
+ * @param reportProgress flag to report request and response progress.
5355
+ * @param options additional options
5356
+ */
5357
+ deleteDispatch(id: string, observe?: 'body', reportProgress?: boolean, options?: {
5358
+ httpHeaderAccept?: undefined;
5359
+ context?: HttpContext;
5360
+ transferCache?: boolean;
5361
+ }): Observable<any>;
5362
+ deleteDispatch(id: string, observe?: 'response', reportProgress?: boolean, options?: {
5363
+ httpHeaderAccept?: undefined;
5364
+ context?: HttpContext;
5365
+ transferCache?: boolean;
5366
+ }): Observable<HttpResponse<any>>;
5367
+ deleteDispatch(id: string, observe?: 'events', reportProgress?: boolean, options?: {
5368
+ httpHeaderAccept?: undefined;
5369
+ context?: HttpContext;
5370
+ transferCache?: boolean;
5371
+ }): Observable<HttpEvent<any>>;
5279
5372
  /**
5280
5373
  * Get merged carrier labels PDF for the given dispatches
5281
5374
  * @endpoint post /dispatches/carrier-labels
@@ -5382,21 +5475,22 @@ declare class DispatchesService extends BaseService {
5382
5475
  * @param $orderby
5383
5476
  * @param $filter
5384
5477
  * @param searchTerm
5478
+ * @param tabName
5385
5479
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5386
5480
  * @param reportProgress flag to report request and response progress.
5387
5481
  * @param options additional options
5388
5482
  */
5389
- getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
5483
+ getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, tabName?: string, observe?: 'body', reportProgress?: boolean, options?: {
5390
5484
  httpHeaderAccept?: 'application/json';
5391
5485
  context?: HttpContext;
5392
5486
  transferCache?: boolean;
5393
5487
  }): Observable<Dispatches>;
5394
- getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
5488
+ getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, tabName?: string, observe?: 'response', reportProgress?: boolean, options?: {
5395
5489
  httpHeaderAccept?: 'application/json';
5396
5490
  context?: HttpContext;
5397
5491
  transferCache?: boolean;
5398
5492
  }): Observable<HttpResponse<Dispatches>>;
5399
- getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
5493
+ getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, tabName?: string, observe?: 'events', reportProgress?: boolean, options?: {
5400
5494
  httpHeaderAccept?: 'application/json';
5401
5495
  context?: HttpContext;
5402
5496
  transferCache?: boolean;
@@ -7763,9 +7857,135 @@ interface SalesOrderItems {
7763
7857
  data: Array<SalesOrderItemView>;
7764
7858
  }
7765
7859
 
7860
+ /**
7861
+ * Wms.API.Client
7862
+ *
7863
+ *
7864
+ *
7865
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7866
+ * https://openapi-generator.tech
7867
+ * Do not edit the class manually.
7868
+ */
7869
+ declare const SalesOrderTab: {
7870
+ readonly All: "All";
7871
+ readonly ToBeCommitted: "ToBeCommitted";
7872
+ readonly Committed: "Committed";
7873
+ };
7874
+ type SalesOrderTab = typeof SalesOrderTab[keyof typeof SalesOrderTab];
7875
+
7876
+ /**
7877
+ * Wms.API.Client
7878
+ *
7879
+ *
7880
+ *
7881
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7882
+ * https://openapi-generator.tech
7883
+ * Do not edit the class manually.
7884
+ */
7885
+ declare const SalesOrderCompletionIssue: {
7886
+ readonly LineItemsRequired: "LineItemsRequired";
7887
+ readonly PostCodeRequired: "PostCodeRequired";
7888
+ readonly CountryRequired: "CountryRequired";
7889
+ };
7890
+ type SalesOrderCompletionIssue = typeof SalesOrderCompletionIssue[keyof typeof SalesOrderCompletionIssue];
7891
+
7892
+ /**
7893
+ * Wms.API.Client
7894
+ *
7895
+ *
7896
+ *
7897
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7898
+ * https://openapi-generator.tech
7899
+ * Do not edit the class manually.
7900
+ */
7901
+
7902
+ interface SalesOrderGridView {
7903
+ id: string;
7904
+ salesOrderNumber?: string | null;
7905
+ shipToCompanyId?: string | null;
7906
+ shipToCompanyName?: string | null;
7907
+ orderStatus: OrderStatus;
7908
+ lineItemCount?: number | null;
7909
+ totalUnits?: number | null;
7910
+ lineItemCountOrdered?: number | null;
7911
+ totalUnitsOrdered?: number | null;
7912
+ cancellation?: string | null;
7913
+ postCodeZip?: string | null;
7914
+ countryName?: string | null;
7915
+ completionIssues?: Array<SalesOrderCompletionIssue>;
7916
+ createdDate?: string;
7917
+ commitDate?: string | null;
7918
+ recordType: RecordType;
7919
+ isStockAdjustment: boolean;
7920
+ }
7921
+ declare namespace SalesOrderGridView {
7922
+ }
7923
+
7924
+ /**
7925
+ * Wms.API.Client
7926
+ *
7927
+ *
7928
+ *
7929
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7930
+ * https://openapi-generator.tech
7931
+ * Do not edit the class manually.
7932
+ */
7933
+
7934
+ interface SalesOrders {
7935
+ total: number;
7936
+ data: Array<SalesOrderGridView>;
7937
+ }
7938
+
7766
7939
  declare class SalesOrdersService extends BaseService {
7767
7940
  protected httpClient: HttpClient;
7768
7941
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
7942
+ /**
7943
+ * Clone a sales order
7944
+ * @endpoint post /salesOrders/{id}/clone
7945
+ * @param id
7946
+ * @param salesOrderNumber The sales order number to give the clone.
7947
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
7948
+ * @param reportProgress flag to report request and response progress.
7949
+ * @param options additional options
7950
+ */
7951
+ cloneSalesOrder(id: string, salesOrderNumber: string, observe?: 'body', reportProgress?: boolean, options?: {
7952
+ httpHeaderAccept?: 'application/json';
7953
+ context?: HttpContext;
7954
+ transferCache?: boolean;
7955
+ }): Observable<SalesOrderHeaderView>;
7956
+ cloneSalesOrder(id: string, salesOrderNumber: string, observe?: 'response', reportProgress?: boolean, options?: {
7957
+ httpHeaderAccept?: 'application/json';
7958
+ context?: HttpContext;
7959
+ transferCache?: boolean;
7960
+ }): Observable<HttpResponse<SalesOrderHeaderView>>;
7961
+ cloneSalesOrder(id: string, salesOrderNumber: string, observe?: 'events', reportProgress?: boolean, options?: {
7962
+ httpHeaderAccept?: 'application/json';
7963
+ context?: HttpContext;
7964
+ transferCache?: boolean;
7965
+ }): Observable<HttpEvent<SalesOrderHeaderView>>;
7966
+ /**
7967
+ * Commit sales orders
7968
+ * @endpoint put /salesOrders/commit
7969
+ * @param ids
7970
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
7971
+ * @param reportProgress flag to report request and response progress.
7972
+ * @param options additional options
7973
+ */
7974
+ commitSalesOrders(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
7975
+ httpHeaderAccept?: undefined;
7976
+ context?: HttpContext;
7977
+ transferCache?: boolean;
7978
+ }): Observable<any>;
7979
+ commitSalesOrders(ids: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
7980
+ httpHeaderAccept?: undefined;
7981
+ context?: HttpContext;
7982
+ transferCache?: boolean;
7983
+ }): Observable<HttpResponse<any>>;
7984
+ commitSalesOrders(ids: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
7985
+ httpHeaderAccept?: undefined;
7986
+ context?: HttpContext;
7987
+ transferCache?: boolean;
7988
+ }): Observable<HttpEvent<any>>;
7769
7989
  /**
7770
7990
  * Create a sales order
7771
7991
  * @endpoint post /salesOrders
@@ -7789,6 +8009,29 @@ declare class SalesOrdersService extends BaseService {
7789
8009
  context?: HttpContext;
7790
8010
  transferCache?: boolean;
7791
8011
  }): Observable<HttpEvent<SalesOrderHeaderView>>;
8012
+ /**
8013
+ * Delete a sales order
8014
+ * @endpoint delete /salesOrders/{id}
8015
+ * @param id
8016
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
8017
+ * @param reportProgress flag to report request and response progress.
8018
+ * @param options additional options
8019
+ */
8020
+ deleteSalesOrder(id: string, observe?: 'body', reportProgress?: boolean, options?: {
8021
+ httpHeaderAccept?: undefined;
8022
+ context?: HttpContext;
8023
+ transferCache?: boolean;
8024
+ }): Observable<any>;
8025
+ deleteSalesOrder(id: string, observe?: 'response', reportProgress?: boolean, options?: {
8026
+ httpHeaderAccept?: undefined;
8027
+ context?: HttpContext;
8028
+ transferCache?: boolean;
8029
+ }): Observable<HttpResponse<any>>;
8030
+ deleteSalesOrder(id: string, observe?: 'events', reportProgress?: boolean, options?: {
8031
+ httpHeaderAccept?: undefined;
8032
+ context?: HttpContext;
8033
+ transferCache?: boolean;
8034
+ }): Observable<HttpEvent<any>>;
7792
8035
  /**
7793
8036
  * Getting sales order by id
7794
8037
  * @endpoint get /salesOrders/{id}
@@ -7839,6 +8082,62 @@ declare class SalesOrdersService extends BaseService {
7839
8082
  context?: HttpContext;
7840
8083
  transferCache?: boolean;
7841
8084
  }): Observable<HttpEvent<SalesOrderItems>>;
8085
+ /**
8086
+ * Getting sales orders for the client Sales Channels grid
8087
+ * @endpoint get /salesOrders
8088
+ * @param tab
8089
+ * @param $skip
8090
+ * @param $top
8091
+ * @param $orderby
8092
+ * @param $filter
8093
+ * @param $search
8094
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
8095
+ * @param reportProgress flag to report request and response progress.
8096
+ * @param options additional options
8097
+ */
8098
+ getSalesOrders(tab: SalesOrderTab, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
8099
+ httpHeaderAccept?: 'application/json';
8100
+ context?: HttpContext;
8101
+ transferCache?: boolean;
8102
+ }): Observable<SalesOrders>;
8103
+ getSalesOrders(tab: SalesOrderTab, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
8104
+ httpHeaderAccept?: 'application/json';
8105
+ context?: HttpContext;
8106
+ transferCache?: boolean;
8107
+ }): Observable<HttpResponse<SalesOrders>>;
8108
+ getSalesOrders(tab: SalesOrderTab, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
8109
+ httpHeaderAccept?: 'application/json';
8110
+ context?: HttpContext;
8111
+ transferCache?: boolean;
8112
+ }): Observable<HttpEvent<SalesOrders>>;
8113
+ /**
8114
+ * Sales orders list
8115
+ * @endpoint get /salesOrders/search
8116
+ * @param tab
8117
+ * @param $skip
8118
+ * @param $top
8119
+ * @param $orderby
8120
+ * @param $filter
8121
+ * @param searchTerm
8122
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
8123
+ * @param reportProgress flag to report request and response progress.
8124
+ * @param options additional options
8125
+ */
8126
+ getSalesOrdersFromIndex(tab: SalesOrderTab, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
8127
+ httpHeaderAccept?: 'application/json';
8128
+ context?: HttpContext;
8129
+ transferCache?: boolean;
8130
+ }): Observable<SalesOrders>;
8131
+ getSalesOrdersFromIndex(tab: SalesOrderTab, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
8132
+ httpHeaderAccept?: 'application/json';
8133
+ context?: HttpContext;
8134
+ transferCache?: boolean;
8135
+ }): Observable<HttpResponse<SalesOrders>>;
8136
+ getSalesOrdersFromIndex(tab: SalesOrderTab, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
8137
+ httpHeaderAccept?: 'application/json';
8138
+ context?: HttpContext;
8139
+ transferCache?: boolean;
8140
+ }): Observable<HttpEvent<SalesOrders>>;
7842
8141
  /**
7843
8142
  * Update a sales order
7844
8143
  * @endpoint put /salesOrders/{id}
@@ -10467,7 +10766,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
10467
10766
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
10468
10767
  }
10469
10768
 
10470
- declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountContinuousInventoryService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
10769
+ declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarrierServiceTypesService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountContinuousInventoryService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
10471
10770
 
10472
10771
  /**
10473
10772
  * Wms.API.Client
@@ -10783,5 +11082,5 @@ declare class ApiModule {
10783
11082
 
10784
11083
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
10785
11084
 
10786
- export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
10787
- export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
11085
+ export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderCompletionIssue, SalesOrderGridView, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
11086
+ export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SalesOrders, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };