@indigina/wms-api 0.0.163 → 0.0.165
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 +168 -32
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +142 -20
package/package.json
CHANGED
|
@@ -4962,7 +4962,7 @@ interface ReplenishmentAccessClients {
|
|
|
4962
4962
|
* https://openapi-generator.tech
|
|
4963
4963
|
* Do not edit the class manually.
|
|
4964
4964
|
*/
|
|
4965
|
-
interface
|
|
4965
|
+
interface CompanyDescriptionSummary {
|
|
4966
4966
|
companyDescription?: string | null;
|
|
4967
4967
|
}
|
|
4968
4968
|
|
|
@@ -4979,7 +4979,7 @@ interface ReplenishmentCompanySummary {
|
|
|
4979
4979
|
interface ReplenishmentAccessView {
|
|
4980
4980
|
id: string;
|
|
4981
4981
|
clientId: string;
|
|
4982
|
-
company?:
|
|
4982
|
+
company?: CompanyDescriptionSummary | null;
|
|
4983
4983
|
systemReplenishment: boolean;
|
|
4984
4984
|
createdDate: string;
|
|
4985
4985
|
createdBy: string;
|
|
@@ -6864,10 +6864,11 @@ interface WaveConfigGroupConfigurations {
|
|
|
6864
6864
|
* https://openapi-generator.tech
|
|
6865
6865
|
* Do not edit the class manually.
|
|
6866
6866
|
*/
|
|
6867
|
+
|
|
6867
6868
|
interface WaveConfigGroupView {
|
|
6868
6869
|
id?: number;
|
|
6869
6870
|
clientId?: string;
|
|
6870
|
-
|
|
6871
|
+
company?: CompanyDescriptionSummary | null;
|
|
6871
6872
|
code?: string;
|
|
6872
6873
|
description?: string;
|
|
6873
6874
|
}
|
|
@@ -7258,6 +7259,33 @@ declare class WaveConfigurationsService extends BaseService {
|
|
|
7258
7259
|
context?: HttpContext;
|
|
7259
7260
|
transferCache?: boolean;
|
|
7260
7261
|
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
7262
|
+
/**
|
|
7263
|
+
* Wave configurations list
|
|
7264
|
+
* @endpoint get /waveConfigurations/search
|
|
7265
|
+
* @param $skip
|
|
7266
|
+
* @param $top
|
|
7267
|
+
* @param $orderby
|
|
7268
|
+
* @param $filter
|
|
7269
|
+
* @param searchTerm
|
|
7270
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7271
|
+
* @param reportProgress flag to report request and response progress.
|
|
7272
|
+
* @param options additional options
|
|
7273
|
+
*/
|
|
7274
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7275
|
+
httpHeaderAccept?: 'application/json';
|
|
7276
|
+
context?: HttpContext;
|
|
7277
|
+
transferCache?: boolean;
|
|
7278
|
+
}): Observable<WaveConfigurations>;
|
|
7279
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7280
|
+
httpHeaderAccept?: 'application/json';
|
|
7281
|
+
context?: HttpContext;
|
|
7282
|
+
transferCache?: boolean;
|
|
7283
|
+
}): Observable<HttpResponse<WaveConfigurations>>;
|
|
7284
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7285
|
+
httpHeaderAccept?: 'application/json';
|
|
7286
|
+
context?: HttpContext;
|
|
7287
|
+
transferCache?: boolean;
|
|
7288
|
+
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
7261
7289
|
static ɵfac: i0.ɵɵFactoryDeclaration<WaveConfigurationsService, [null, { optional: true; }, { optional: true; }]>;
|
|
7262
7290
|
static ɵprov: i0.ɵɵInjectableDeclaration<WaveConfigurationsService>;
|
|
7263
7291
|
}
|
|
@@ -7722,19 +7750,6 @@ interface WavePickingAccessClients {
|
|
|
7722
7750
|
data: Array<WavePickingAccessClient>;
|
|
7723
7751
|
}
|
|
7724
7752
|
|
|
7725
|
-
/**
|
|
7726
|
-
* Wms.API.Client
|
|
7727
|
-
*
|
|
7728
|
-
*
|
|
7729
|
-
*
|
|
7730
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7731
|
-
* https://openapi-generator.tech
|
|
7732
|
-
* Do not edit the class manually.
|
|
7733
|
-
*/
|
|
7734
|
-
interface WavePickingAccessCompanySummary {
|
|
7735
|
-
companyDescription?: string | null;
|
|
7736
|
-
}
|
|
7737
|
-
|
|
7738
7753
|
/**
|
|
7739
7754
|
* Wms.API.Client
|
|
7740
7755
|
*
|
|
@@ -7748,7 +7763,7 @@ interface WavePickingAccessCompanySummary {
|
|
|
7748
7763
|
interface WavePickingAccessView {
|
|
7749
7764
|
id: string;
|
|
7750
7765
|
clientId?: string | null;
|
|
7751
|
-
company?:
|
|
7766
|
+
company?: CompanyDescriptionSummary | null;
|
|
7752
7767
|
pickByLicencePlate: boolean;
|
|
7753
7768
|
createdDate: string;
|
|
7754
7769
|
createdBy: string;
|
|
@@ -7925,6 +7940,113 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
7925
7940
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
|
|
7926
7941
|
}
|
|
7927
7942
|
|
|
7943
|
+
/**
|
|
7944
|
+
* Wms.API.Client
|
|
7945
|
+
*
|
|
7946
|
+
*
|
|
7947
|
+
*
|
|
7948
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7949
|
+
* https://openapi-generator.tech
|
|
7950
|
+
* Do not edit the class manually.
|
|
7951
|
+
*/
|
|
7952
|
+
|
|
7953
|
+
interface WaveSummaryView {
|
|
7954
|
+
id: string;
|
|
7955
|
+
dispatchId: string;
|
|
7956
|
+
clientId: string;
|
|
7957
|
+
client: string;
|
|
7958
|
+
wavePickReleaseNumber: string;
|
|
7959
|
+
waveNumber: number;
|
|
7960
|
+
waveStatus: WaveStatuses;
|
|
7961
|
+
salesOrderNumberList?: string;
|
|
7962
|
+
dispatchNumber?: string;
|
|
7963
|
+
plateNumber: number;
|
|
7964
|
+
extPlatesPending: boolean;
|
|
7965
|
+
documentGenerationStatus: DocumentGenerationStatuses;
|
|
7966
|
+
extPlateNumber?: string;
|
|
7967
|
+
containsCi?: boolean | null;
|
|
7968
|
+
containsBuildKit: boolean;
|
|
7969
|
+
createdDate: string;
|
|
7970
|
+
}
|
|
7971
|
+
declare namespace WaveSummaryView {
|
|
7972
|
+
}
|
|
7973
|
+
|
|
7974
|
+
/**
|
|
7975
|
+
* Wms.API.Client
|
|
7976
|
+
*
|
|
7977
|
+
*
|
|
7978
|
+
*
|
|
7979
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7980
|
+
* https://openapi-generator.tech
|
|
7981
|
+
* Do not edit the class manually.
|
|
7982
|
+
*/
|
|
7983
|
+
|
|
7984
|
+
interface WaveSummaries {
|
|
7985
|
+
total: number;
|
|
7986
|
+
data: Array<WaveSummaryView>;
|
|
7987
|
+
}
|
|
7988
|
+
|
|
7989
|
+
declare class WaveSummariesService extends BaseService {
|
|
7990
|
+
protected httpClient: HttpClient;
|
|
7991
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7992
|
+
/**
|
|
7993
|
+
* Getting wave summaries
|
|
7994
|
+
* @endpoint get /waveSummaries
|
|
7995
|
+
* @param $skip
|
|
7996
|
+
* @param $top
|
|
7997
|
+
* @param $orderby
|
|
7998
|
+
* @param $filter
|
|
7999
|
+
* @param $search
|
|
8000
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8001
|
+
* @param reportProgress flag to report request and response progress.
|
|
8002
|
+
* @param options additional options
|
|
8003
|
+
*/
|
|
8004
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8005
|
+
httpHeaderAccept?: 'application/json';
|
|
8006
|
+
context?: HttpContext;
|
|
8007
|
+
transferCache?: boolean;
|
|
8008
|
+
}): Observable<WaveSummaries>;
|
|
8009
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8010
|
+
httpHeaderAccept?: 'application/json';
|
|
8011
|
+
context?: HttpContext;
|
|
8012
|
+
transferCache?: boolean;
|
|
8013
|
+
}): Observable<HttpResponse<WaveSummaries>>;
|
|
8014
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8015
|
+
httpHeaderAccept?: 'application/json';
|
|
8016
|
+
context?: HttpContext;
|
|
8017
|
+
transferCache?: boolean;
|
|
8018
|
+
}): Observable<HttpEvent<WaveSummaries>>;
|
|
8019
|
+
/**
|
|
8020
|
+
* Wave summaries list
|
|
8021
|
+
* @endpoint get /waveSummaries/search
|
|
8022
|
+
* @param $skip
|
|
8023
|
+
* @param $top
|
|
8024
|
+
* @param $orderby
|
|
8025
|
+
* @param $filter
|
|
8026
|
+
* @param searchTerm
|
|
8027
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8028
|
+
* @param reportProgress flag to report request and response progress.
|
|
8029
|
+
* @param options additional options
|
|
8030
|
+
*/
|
|
8031
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8032
|
+
httpHeaderAccept?: 'application/json';
|
|
8033
|
+
context?: HttpContext;
|
|
8034
|
+
transferCache?: boolean;
|
|
8035
|
+
}): Observable<WaveSummaries>;
|
|
8036
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8037
|
+
httpHeaderAccept?: 'application/json';
|
|
8038
|
+
context?: HttpContext;
|
|
8039
|
+
transferCache?: boolean;
|
|
8040
|
+
}): Observable<HttpResponse<WaveSummaries>>;
|
|
8041
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8042
|
+
httpHeaderAccept?: 'application/json';
|
|
8043
|
+
context?: HttpContext;
|
|
8044
|
+
transferCache?: boolean;
|
|
8045
|
+
}): Observable<HttpEvent<WaveSummaries>>;
|
|
8046
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WaveSummariesService, [null, { optional: true; }, { optional: true; }]>;
|
|
8047
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WaveSummariesService>;
|
|
8048
|
+
}
|
|
8049
|
+
|
|
7928
8050
|
/**
|
|
7929
8051
|
* Wms.API.Client
|
|
7930
8052
|
*
|
|
@@ -8004,7 +8126,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
8004
8126
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
8005
8127
|
}
|
|
8006
8128
|
|
|
8007
|
-
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)[];
|
|
8129
|
+
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)[];
|
|
8008
8130
|
|
|
8009
8131
|
/**
|
|
8010
8132
|
* Wms.API.Client
|
|
@@ -8277,5 +8399,5 @@ declare class ApiModule {
|
|
|
8277
8399
|
|
|
8278
8400
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
8279
8401
|
|
|
8280
|
-
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 };
|
|
8281
|
-
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,
|
|
8402
|
+
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 };
|
|
8403
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, 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, 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, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|