@indigina/wms-api 0.0.162 → 0.0.164
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 +192 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +160 -3
package/package.json
CHANGED
|
@@ -3378,6 +3378,29 @@ declare class DispatchesService extends BaseService {
|
|
|
3378
3378
|
context?: HttpContext;
|
|
3379
3379
|
transferCache?: boolean;
|
|
3380
3380
|
}): Observable<HttpEvent<any>>;
|
|
3381
|
+
/**
|
|
3382
|
+
* Get merged carrier labels PDF for the given dispatches
|
|
3383
|
+
* @endpoint post /dispatches/carrier-labels
|
|
3384
|
+
* @param requestBody
|
|
3385
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3386
|
+
* @param reportProgress flag to report request and response progress.
|
|
3387
|
+
* @param options additional options
|
|
3388
|
+
*/
|
|
3389
|
+
getCarrierLabels(requestBody: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3390
|
+
httpHeaderAccept?: 'application/pdf';
|
|
3391
|
+
context?: HttpContext;
|
|
3392
|
+
transferCache?: boolean;
|
|
3393
|
+
}): Observable<Blob>;
|
|
3394
|
+
getCarrierLabels(requestBody: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3395
|
+
httpHeaderAccept?: 'application/pdf';
|
|
3396
|
+
context?: HttpContext;
|
|
3397
|
+
transferCache?: boolean;
|
|
3398
|
+
}): Observable<HttpResponse<Blob>>;
|
|
3399
|
+
getCarrierLabels(requestBody: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3400
|
+
httpHeaderAccept?: 'application/pdf';
|
|
3401
|
+
context?: HttpContext;
|
|
3402
|
+
transferCache?: boolean;
|
|
3403
|
+
}): Observable<HttpEvent<Blob>>;
|
|
3381
3404
|
/**
|
|
3382
3405
|
* Getting dispatch by id
|
|
3383
3406
|
* @endpoint get /dispatches/{id}
|
|
@@ -7235,6 +7258,33 @@ declare class WaveConfigurationsService extends BaseService {
|
|
|
7235
7258
|
context?: HttpContext;
|
|
7236
7259
|
transferCache?: boolean;
|
|
7237
7260
|
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
7261
|
+
/**
|
|
7262
|
+
* Wave configurations list
|
|
7263
|
+
* @endpoint get /waveConfigurations/search
|
|
7264
|
+
* @param $skip
|
|
7265
|
+
* @param $top
|
|
7266
|
+
* @param $orderby
|
|
7267
|
+
* @param $filter
|
|
7268
|
+
* @param searchTerm
|
|
7269
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7270
|
+
* @param reportProgress flag to report request and response progress.
|
|
7271
|
+
* @param options additional options
|
|
7272
|
+
*/
|
|
7273
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7274
|
+
httpHeaderAccept?: 'application/json';
|
|
7275
|
+
context?: HttpContext;
|
|
7276
|
+
transferCache?: boolean;
|
|
7277
|
+
}): Observable<WaveConfigurations>;
|
|
7278
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7279
|
+
httpHeaderAccept?: 'application/json';
|
|
7280
|
+
context?: HttpContext;
|
|
7281
|
+
transferCache?: boolean;
|
|
7282
|
+
}): Observable<HttpResponse<WaveConfigurations>>;
|
|
7283
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7284
|
+
httpHeaderAccept?: 'application/json';
|
|
7285
|
+
context?: HttpContext;
|
|
7286
|
+
transferCache?: boolean;
|
|
7287
|
+
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
7238
7288
|
static ɵfac: i0.ɵɵFactoryDeclaration<WaveConfigurationsService, [null, { optional: true; }, { optional: true; }]>;
|
|
7239
7289
|
static ɵprov: i0.ɵɵInjectableDeclaration<WaveConfigurationsService>;
|
|
7240
7290
|
}
|
|
@@ -7902,6 +7952,113 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
7902
7952
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
|
|
7903
7953
|
}
|
|
7904
7954
|
|
|
7955
|
+
/**
|
|
7956
|
+
* Wms.API.Client
|
|
7957
|
+
*
|
|
7958
|
+
*
|
|
7959
|
+
*
|
|
7960
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7961
|
+
* https://openapi-generator.tech
|
|
7962
|
+
* Do not edit the class manually.
|
|
7963
|
+
*/
|
|
7964
|
+
|
|
7965
|
+
interface WaveSummaryView {
|
|
7966
|
+
id: string;
|
|
7967
|
+
dispatchId: string;
|
|
7968
|
+
clientId: string;
|
|
7969
|
+
client: string;
|
|
7970
|
+
wavePickReleaseNumber: string;
|
|
7971
|
+
waveNumber: number;
|
|
7972
|
+
waveStatus: WaveStatuses;
|
|
7973
|
+
salesOrderNumberList?: string;
|
|
7974
|
+
dispatchNumber?: string;
|
|
7975
|
+
plateNumber: number;
|
|
7976
|
+
extPlatesPending: boolean;
|
|
7977
|
+
documentGenerationStatus: DocumentGenerationStatuses;
|
|
7978
|
+
extPlateNumber?: string;
|
|
7979
|
+
containsCi?: boolean | null;
|
|
7980
|
+
containsBuildKit: boolean;
|
|
7981
|
+
createdDate: string;
|
|
7982
|
+
}
|
|
7983
|
+
declare namespace WaveSummaryView {
|
|
7984
|
+
}
|
|
7985
|
+
|
|
7986
|
+
/**
|
|
7987
|
+
* Wms.API.Client
|
|
7988
|
+
*
|
|
7989
|
+
*
|
|
7990
|
+
*
|
|
7991
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7992
|
+
* https://openapi-generator.tech
|
|
7993
|
+
* Do not edit the class manually.
|
|
7994
|
+
*/
|
|
7995
|
+
|
|
7996
|
+
interface WaveSummaries {
|
|
7997
|
+
total: number;
|
|
7998
|
+
data: Array<WaveSummaryView>;
|
|
7999
|
+
}
|
|
8000
|
+
|
|
8001
|
+
declare class WaveSummariesService extends BaseService {
|
|
8002
|
+
protected httpClient: HttpClient;
|
|
8003
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
8004
|
+
/**
|
|
8005
|
+
* Getting wave summaries
|
|
8006
|
+
* @endpoint get /waveSummaries
|
|
8007
|
+
* @param $skip
|
|
8008
|
+
* @param $top
|
|
8009
|
+
* @param $orderby
|
|
8010
|
+
* @param $filter
|
|
8011
|
+
* @param $search
|
|
8012
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8013
|
+
* @param reportProgress flag to report request and response progress.
|
|
8014
|
+
* @param options additional options
|
|
8015
|
+
*/
|
|
8016
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8017
|
+
httpHeaderAccept?: 'application/json';
|
|
8018
|
+
context?: HttpContext;
|
|
8019
|
+
transferCache?: boolean;
|
|
8020
|
+
}): Observable<WaveSummaries>;
|
|
8021
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8022
|
+
httpHeaderAccept?: 'application/json';
|
|
8023
|
+
context?: HttpContext;
|
|
8024
|
+
transferCache?: boolean;
|
|
8025
|
+
}): Observable<HttpResponse<WaveSummaries>>;
|
|
8026
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8027
|
+
httpHeaderAccept?: 'application/json';
|
|
8028
|
+
context?: HttpContext;
|
|
8029
|
+
transferCache?: boolean;
|
|
8030
|
+
}): Observable<HttpEvent<WaveSummaries>>;
|
|
8031
|
+
/**
|
|
8032
|
+
* Wave summaries list
|
|
8033
|
+
* @endpoint get /waveSummaries/search
|
|
8034
|
+
* @param $skip
|
|
8035
|
+
* @param $top
|
|
8036
|
+
* @param $orderby
|
|
8037
|
+
* @param $filter
|
|
8038
|
+
* @param searchTerm
|
|
8039
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8040
|
+
* @param reportProgress flag to report request and response progress.
|
|
8041
|
+
* @param options additional options
|
|
8042
|
+
*/
|
|
8043
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8044
|
+
httpHeaderAccept?: 'application/json';
|
|
8045
|
+
context?: HttpContext;
|
|
8046
|
+
transferCache?: boolean;
|
|
8047
|
+
}): Observable<WaveSummaries>;
|
|
8048
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8049
|
+
httpHeaderAccept?: 'application/json';
|
|
8050
|
+
context?: HttpContext;
|
|
8051
|
+
transferCache?: boolean;
|
|
8052
|
+
}): Observable<HttpResponse<WaveSummaries>>;
|
|
8053
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8054
|
+
httpHeaderAccept?: 'application/json';
|
|
8055
|
+
context?: HttpContext;
|
|
8056
|
+
transferCache?: boolean;
|
|
8057
|
+
}): Observable<HttpEvent<WaveSummaries>>;
|
|
8058
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WaveSummariesService, [null, { optional: true; }, { optional: true; }]>;
|
|
8059
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WaveSummariesService>;
|
|
8060
|
+
}
|
|
8061
|
+
|
|
7905
8062
|
/**
|
|
7906
8063
|
* Wms.API.Client
|
|
7907
8064
|
*
|
|
@@ -7981,7 +8138,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
7981
8138
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
7982
8139
|
}
|
|
7983
8140
|
|
|
7984
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | 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 WavesByPickReleaseIdService)[];
|
|
8141
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | 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)[];
|
|
7985
8142
|
|
|
7986
8143
|
/**
|
|
7987
8144
|
* Wms.API.Client
|
|
@@ -8254,5 +8411,5 @@ declare class ApiModule {
|
|
|
8254
8411
|
|
|
8255
8412
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
8256
8413
|
|
|
8257
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, 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, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, 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, WavesByPickReleaseIdService, provideApi };
|
|
8258
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, 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, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentCompanySummary, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessCompanySummary, WavePickingAccessView, WavePickingAccesses, Waves };
|
|
8414
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, 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, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, 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 };
|
|
8415
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, 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, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentCompanySummary, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessCompanySummary, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|