@indigina/wms-api 0.0.184 → 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/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +312 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +259 -5
package/package.json
CHANGED
|
@@ -5206,6 +5206,8 @@ interface DispatchGridView {
|
|
|
5206
5206
|
shipToAddress?: string;
|
|
5207
5207
|
canPick?: boolean;
|
|
5208
5208
|
hasTrackUrl?: boolean;
|
|
5209
|
+
dc?: string | null;
|
|
5210
|
+
shipToContact?: string | null;
|
|
5209
5211
|
}
|
|
5210
5212
|
declare namespace DispatchGridView {
|
|
5211
5213
|
}
|
|
@@ -5297,6 +5299,29 @@ declare class DispatchesService extends BaseService {
|
|
|
5297
5299
|
context?: HttpContext;
|
|
5298
5300
|
transferCache?: boolean;
|
|
5299
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>>;
|
|
5300
5325
|
/**
|
|
5301
5326
|
* Confirm dispatches
|
|
5302
5327
|
* @endpoint put /dispatches/confirm
|
|
@@ -5321,6 +5346,29 @@ declare class DispatchesService extends BaseService {
|
|
|
5321
5346
|
context?: HttpContext;
|
|
5322
5347
|
transferCache?: boolean;
|
|
5323
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>>;
|
|
5324
5372
|
/**
|
|
5325
5373
|
* Get merged carrier labels PDF for the given dispatches
|
|
5326
5374
|
* @endpoint post /dispatches/carrier-labels
|
|
@@ -5427,21 +5475,22 @@ declare class DispatchesService extends BaseService {
|
|
|
5427
5475
|
* @param $orderby
|
|
5428
5476
|
* @param $filter
|
|
5429
5477
|
* @param searchTerm
|
|
5478
|
+
* @param tabName
|
|
5430
5479
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5431
5480
|
* @param reportProgress flag to report request and response progress.
|
|
5432
5481
|
* @param options additional options
|
|
5433
5482
|
*/
|
|
5434
|
-
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?: {
|
|
5435
5484
|
httpHeaderAccept?: 'application/json';
|
|
5436
5485
|
context?: HttpContext;
|
|
5437
5486
|
transferCache?: boolean;
|
|
5438
5487
|
}): Observable<Dispatches>;
|
|
5439
|
-
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?: {
|
|
5440
5489
|
httpHeaderAccept?: 'application/json';
|
|
5441
5490
|
context?: HttpContext;
|
|
5442
5491
|
transferCache?: boolean;
|
|
5443
5492
|
}): Observable<HttpResponse<Dispatches>>;
|
|
5444
|
-
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?: {
|
|
5445
5494
|
httpHeaderAccept?: 'application/json';
|
|
5446
5495
|
context?: HttpContext;
|
|
5447
5496
|
transferCache?: boolean;
|
|
@@ -7808,9 +7857,135 @@ interface SalesOrderItems {
|
|
|
7808
7857
|
data: Array<SalesOrderItemView>;
|
|
7809
7858
|
}
|
|
7810
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
|
+
|
|
7811
7939
|
declare class SalesOrdersService extends BaseService {
|
|
7812
7940
|
protected httpClient: HttpClient;
|
|
7813
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>>;
|
|
7814
7989
|
/**
|
|
7815
7990
|
* Create a sales order
|
|
7816
7991
|
* @endpoint post /salesOrders
|
|
@@ -7834,6 +8009,29 @@ declare class SalesOrdersService extends BaseService {
|
|
|
7834
8009
|
context?: HttpContext;
|
|
7835
8010
|
transferCache?: boolean;
|
|
7836
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>>;
|
|
7837
8035
|
/**
|
|
7838
8036
|
* Getting sales order by id
|
|
7839
8037
|
* @endpoint get /salesOrders/{id}
|
|
@@ -7884,6 +8082,62 @@ declare class SalesOrdersService extends BaseService {
|
|
|
7884
8082
|
context?: HttpContext;
|
|
7885
8083
|
transferCache?: boolean;
|
|
7886
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>>;
|
|
7887
8141
|
/**
|
|
7888
8142
|
* Update a sales order
|
|
7889
8143
|
* @endpoint put /salesOrders/{id}
|
|
@@ -10828,5 +11082,5 @@ declare class ApiModule {
|
|
|
10828
11082
|
|
|
10829
11083
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
10830
11084
|
|
|
10831
|
-
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, 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 };
|
|
10832
|
-
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, 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 };
|