@indigina/wms-api 0.0.153 → 0.0.154

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.153",
3
+ "version": "0.0.154",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -6918,14 +6918,198 @@ declare class WaveConfigGroupsService extends BaseService {
6918
6918
  * https://openapi-generator.tech
6919
6919
  * Do not edit the class manually.
6920
6920
  */
6921
- declare const PickReleaseHistoryTypes: {
6921
+ interface UnlockWaveResult {
6922
+ success: boolean;
6923
+ }
6924
+
6925
+ /**
6926
+ * Wms.API.Client
6927
+ *
6928
+ *
6929
+ *
6930
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6931
+ * https://openapi-generator.tech
6932
+ * Do not edit the class manually.
6933
+ */
6934
+ declare const ClusterPackStatuses: {
6935
+ readonly ToBeProcessed: "ToBeProcessed";
6936
+ readonly PartiallySuccessful: "PartiallySuccessful";
6937
+ readonly AllSuccessful: "AllSuccessful";
6938
+ readonly AllFailed: "AllFailed";
6939
+ readonly NoLongerRequired: "NoLongerRequired";
6940
+ };
6941
+ type ClusterPackStatuses = typeof ClusterPackStatuses[keyof typeof ClusterPackStatuses];
6942
+
6943
+ /**
6944
+ * Wms.API.Client
6945
+ *
6946
+ *
6947
+ *
6948
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6949
+ * https://openapi-generator.tech
6950
+ * Do not edit the class manually.
6951
+ */
6952
+ declare const DocumentGenerationStatuses: {
6953
+ readonly NoDocsToGenerate: "NoDocsToGenerate";
6954
+ readonly ToBeGenerated: "ToBeGenerated";
6955
+ readonly Regenerate: "Regenerate";
6956
+ readonly Complete: "Complete";
6957
+ readonly Exception: "Exception";
6958
+ };
6959
+ type DocumentGenerationStatuses = typeof DocumentGenerationStatuses[keyof typeof DocumentGenerationStatuses];
6960
+
6961
+ /**
6962
+ * Wms.API.Client
6963
+ *
6964
+ *
6965
+ *
6966
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6967
+ * https://openapi-generator.tech
6968
+ * Do not edit the class manually.
6969
+ */
6970
+ declare const WaveStatuses: {
6971
+ readonly Active: "Active";
6972
+ readonly Complete: "Complete";
6973
+ readonly Closed: "Closed";
6974
+ };
6975
+ type WaveStatuses = typeof WaveStatuses[keyof typeof WaveStatuses];
6976
+
6977
+ /**
6978
+ * Wms.API.Client
6979
+ *
6980
+ *
6981
+ *
6982
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6983
+ * https://openapi-generator.tech
6984
+ * Do not edit the class manually.
6985
+ */
6986
+
6987
+ interface WaveHistoryView {
6988
+ id: string;
6989
+ wavePickReleaseId: string;
6990
+ waveNumber: number;
6991
+ waveStatus: WaveStatuses;
6992
+ dispatchCount: number;
6993
+ skipped: boolean;
6994
+ shortShipped: boolean;
6995
+ createdDate: string;
6996
+ createdBy: string;
6997
+ completedDate?: string | null;
6998
+ completedBy?: string;
6999
+ closedDate?: string | null;
7000
+ closedBy?: string;
7001
+ waveConfigurationDescription: string;
7002
+ clientId: string;
7003
+ client: string;
7004
+ wavePickReleaseNumber: string;
7005
+ extPlatesPending: boolean;
7006
+ documentGenerationStatus: DocumentGenerationStatuses;
7007
+ locked: boolean;
7008
+ clusterPick: boolean;
7009
+ reverseSortOrder: boolean;
7010
+ containsCi?: boolean | null;
7011
+ containsNsr?: boolean | null;
7012
+ clusterPack: boolean;
7013
+ containsBuildKit: boolean;
7014
+ clusterPackStatus?: ClusterPackStatuses | null;
7015
+ autoPrint: boolean;
7016
+ printerDescription?: string | null;
7017
+ pickStartDate?: string | null;
7018
+ printed: boolean;
7019
+ }
7020
+ declare namespace WaveHistoryView {
7021
+ }
7022
+
7023
+ /**
7024
+ * Wms.API.Client
7025
+ *
7026
+ *
7027
+ *
7028
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7029
+ * https://openapi-generator.tech
7030
+ * Do not edit the class manually.
7031
+ */
7032
+
7033
+ interface WaveHistories {
7034
+ total: number;
7035
+ data: Array<WaveHistoryView>;
7036
+ }
7037
+
7038
+ /**
7039
+ * Wms.API.Client
7040
+ *
7041
+ *
7042
+ *
7043
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7044
+ * https://openapi-generator.tech
7045
+ * Do not edit the class manually.
7046
+ */
7047
+ declare const WaveHistoryTypes: {
6922
7048
  readonly All: "All";
6923
7049
  readonly ToBePrinted: "ToBePrinted";
6924
7050
  readonly Active: "Active";
6925
7051
  readonly Complete: "Complete";
6926
7052
  readonly Closed: "Closed";
6927
7053
  };
6928
- type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickReleaseHistoryTypes];
7054
+ type WaveHistoryTypes = typeof WaveHistoryTypes[keyof typeof WaveHistoryTypes];
7055
+
7056
+ declare class WaveHistoryService extends BaseService {
7057
+ protected httpClient: HttpClient;
7058
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
7059
+ /**
7060
+ * Getting waves by waveHistoryType
7061
+ * @endpoint get /waveHistories/{waveHistoryType}
7062
+ * @param waveHistoryType
7063
+ * @param $skip
7064
+ * @param $top
7065
+ * @param $orderby
7066
+ * @param $filter
7067
+ * @param $search
7068
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
7069
+ * @param reportProgress flag to report request and response progress.
7070
+ * @param options additional options
7071
+ */
7072
+ getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
7073
+ httpHeaderAccept?: 'application/json';
7074
+ context?: HttpContext;
7075
+ transferCache?: boolean;
7076
+ }): Observable<WaveHistories>;
7077
+ getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
7078
+ httpHeaderAccept?: 'application/json';
7079
+ context?: HttpContext;
7080
+ transferCache?: boolean;
7081
+ }): Observable<HttpResponse<WaveHistories>>;
7082
+ getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
7083
+ httpHeaderAccept?: 'application/json';
7084
+ context?: HttpContext;
7085
+ transferCache?: boolean;
7086
+ }): Observable<HttpEvent<WaveHistories>>;
7087
+ /**
7088
+ * Unlock a wave
7089
+ * @endpoint patch /waveHistories/unlock/{waveId}
7090
+ * @param waveId
7091
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
7092
+ * @param reportProgress flag to report request and response progress.
7093
+ * @param options additional options
7094
+ */
7095
+ unlockWave(waveId: string, observe?: 'body', reportProgress?: boolean, options?: {
7096
+ httpHeaderAccept?: 'application/json';
7097
+ context?: HttpContext;
7098
+ transferCache?: boolean;
7099
+ }): Observable<UnlockWaveResult>;
7100
+ unlockWave(waveId: string, observe?: 'response', reportProgress?: boolean, options?: {
7101
+ httpHeaderAccept?: 'application/json';
7102
+ context?: HttpContext;
7103
+ transferCache?: boolean;
7104
+ }): Observable<HttpResponse<UnlockWaveResult>>;
7105
+ unlockWave(waveId: string, observe?: 'events', reportProgress?: boolean, options?: {
7106
+ httpHeaderAccept?: 'application/json';
7107
+ context?: HttpContext;
7108
+ transferCache?: boolean;
7109
+ }): Observable<HttpEvent<UnlockWaveResult>>;
7110
+ static ɵfac: i0.ɵɵFactoryDeclaration<WaveHistoryService, [null, { optional: true; }, { optional: true; }]>;
7111
+ static ɵprov: i0.ɵɵInjectableDeclaration<WaveHistoryService>;
7112
+ }
6929
7113
 
6930
7114
  /**
6931
7115
  * Wms.API.Client
@@ -6936,12 +7120,14 @@ type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickR
6936
7120
  * https://openapi-generator.tech
6937
7121
  * Do not edit the class manually.
6938
7122
  */
6939
- declare const WavePickReleaseStatuses: {
7123
+ declare const PickReleaseHistoryTypes: {
7124
+ readonly All: "All";
7125
+ readonly ToBePrinted: "ToBePrinted";
6940
7126
  readonly Active: "Active";
6941
7127
  readonly Complete: "Complete";
6942
7128
  readonly Closed: "Closed";
6943
7129
  };
6944
- type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WavePickReleaseStatuses];
7130
+ type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickReleaseHistoryTypes];
6945
7131
 
6946
7132
  /**
6947
7133
  * Wms.API.Client
@@ -6952,11 +7138,12 @@ type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WaveP
6952
7138
  * https://openapi-generator.tech
6953
7139
  * Do not edit the class manually.
6954
7140
  */
6955
- declare const WavePickReleaseMethods: {
6956
- readonly Sku: "SKU";
6957
- readonly Date: "Date";
7141
+ declare const WavePickReleaseStatuses: {
7142
+ readonly Active: "Active";
7143
+ readonly Complete: "Complete";
7144
+ readonly Closed: "Closed";
6958
7145
  };
6959
- type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePickReleaseMethods];
7146
+ type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WavePickReleaseStatuses];
6960
7147
 
6961
7148
  /**
6962
7149
  * Wms.API.Client
@@ -6967,14 +7154,11 @@ type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePic
6967
7154
  * https://openapi-generator.tech
6968
7155
  * Do not edit the class manually.
6969
7156
  */
6970
- declare const DocumentGenerationStatuses: {
6971
- readonly NoDocsToGenerate: "NoDocsToGenerate";
6972
- readonly ToBeGenerated: "ToBeGenerated";
6973
- readonly Regenerate: "Regenerate";
6974
- readonly Complete: "Complete";
6975
- readonly Exception: "Exception";
7157
+ declare const WavePickReleaseMethods: {
7158
+ readonly Sku: "SKU";
7159
+ readonly Date: "Date";
6976
7160
  };
6977
- type DocumentGenerationStatuses = typeof DocumentGenerationStatuses[keyof typeof DocumentGenerationStatuses];
7161
+ type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePickReleaseMethods];
6978
7162
 
6979
7163
  /**
6980
7164
  * Wms.API.Client
@@ -7320,22 +7504,6 @@ declare class WavePickingAccessService extends BaseService {
7320
7504
  static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
7321
7505
  }
7322
7506
 
7323
- /**
7324
- * Wms.API.Client
7325
- *
7326
- *
7327
- *
7328
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7329
- * https://openapi-generator.tech
7330
- * Do not edit the class manually.
7331
- */
7332
- declare const WaveStatuses: {
7333
- readonly Active: "Active";
7334
- readonly Complete: "Complete";
7335
- readonly Closed: "Closed";
7336
- };
7337
- type WaveStatuses = typeof WaveStatuses[keyof typeof WaveStatuses];
7338
-
7339
7507
  /**
7340
7508
  * Wms.API.Client
7341
7509
  *
@@ -7415,7 +7583,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
7415
7583
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
7416
7584
  }
7417
7585
 
7418
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | 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 WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
7586
+ declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | 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 WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
7419
7587
 
7420
7588
  /**
7421
7589
  * Wms.API.Client
@@ -7688,5 +7856,5 @@ declare class ApiModule {
7688
7856
 
7689
7857
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
7690
7858
 
7691
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, 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, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
7692
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, 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, 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, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurations, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
7859
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, 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, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
7860
+ export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, 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, 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, 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, WaveConfigurations, WaveHistories, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };