@indigina/wms-api 0.0.153 → 0.0.155

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.155",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -6918,14 +6918,224 @@ 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
+ interface WaveHistoryWaveConfigurationSummary {
6987
+ description: string;
6988
+ clusterPack: boolean;
6989
+ }
6990
+
6991
+ /**
6992
+ * Wms.API.Client
6993
+ *
6994
+ *
6995
+ *
6996
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6997
+ * https://openapi-generator.tech
6998
+ * Do not edit the class manually.
6999
+ */
7000
+ interface WaveHistoryWavePickReleaseSummary {
7001
+ clientId: string;
7002
+ wavePickReleaseNumber: string;
7003
+ }
7004
+
7005
+ /**
7006
+ * Wms.API.Client
7007
+ *
7008
+ *
7009
+ *
7010
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7011
+ * https://openapi-generator.tech
7012
+ * Do not edit the class manually.
7013
+ */
7014
+
7015
+ interface WaveHistoryView {
7016
+ id: string;
7017
+ wavePickReleaseId: string;
7018
+ waveNumber: number;
7019
+ waveStatus: WaveStatuses;
7020
+ dispatchCount: number;
7021
+ skipped: boolean;
7022
+ shortShipped: boolean;
7023
+ createdDate: string;
7024
+ createdBy: string;
7025
+ completedDate?: string | null;
7026
+ completedBy?: string;
7027
+ closedDate?: string | null;
7028
+ closedBy?: string;
7029
+ client: string;
7030
+ wavePickRelease: WaveHistoryWavePickReleaseSummary;
7031
+ waveConfiguration: WaveHistoryWaveConfigurationSummary;
7032
+ extPlatesPending: boolean;
7033
+ documentGenerationStatus: DocumentGenerationStatuses;
7034
+ locked: boolean;
7035
+ clusterPick: boolean;
7036
+ reverseSortOrder: boolean;
7037
+ containsCi?: boolean | null;
7038
+ containsNsr?: boolean | null;
7039
+ containsBuildKit: boolean;
7040
+ clusterPackStatus?: ClusterPackStatuses | null;
7041
+ autoPrint: boolean;
7042
+ printerDescription?: string | null;
7043
+ pickStartDate?: string | null;
7044
+ printed: boolean;
7045
+ }
7046
+ declare namespace WaveHistoryView {
7047
+ }
7048
+
7049
+ /**
7050
+ * Wms.API.Client
7051
+ *
7052
+ *
7053
+ *
7054
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7055
+ * https://openapi-generator.tech
7056
+ * Do not edit the class manually.
7057
+ */
7058
+
7059
+ interface WaveHistories {
7060
+ total: number;
7061
+ data: Array<WaveHistoryView>;
7062
+ }
7063
+
7064
+ /**
7065
+ * Wms.API.Client
7066
+ *
7067
+ *
7068
+ *
7069
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7070
+ * https://openapi-generator.tech
7071
+ * Do not edit the class manually.
7072
+ */
7073
+ declare const WaveHistoryTypes: {
6922
7074
  readonly All: "All";
6923
7075
  readonly ToBePrinted: "ToBePrinted";
6924
7076
  readonly Active: "Active";
6925
7077
  readonly Complete: "Complete";
6926
7078
  readonly Closed: "Closed";
6927
7079
  };
6928
- type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickReleaseHistoryTypes];
7080
+ type WaveHistoryTypes = typeof WaveHistoryTypes[keyof typeof WaveHistoryTypes];
7081
+
7082
+ declare class WaveHistoryService extends BaseService {
7083
+ protected httpClient: HttpClient;
7084
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
7085
+ /**
7086
+ * Getting waves by waveHistoryType
7087
+ * @endpoint get /waveHistories/{waveHistoryType}
7088
+ * @param waveHistoryType
7089
+ * @param $skip
7090
+ * @param $top
7091
+ * @param $orderby
7092
+ * @param $filter
7093
+ * @param $search
7094
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
7095
+ * @param reportProgress flag to report request and response progress.
7096
+ * @param options additional options
7097
+ */
7098
+ getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
7099
+ httpHeaderAccept?: 'application/json';
7100
+ context?: HttpContext;
7101
+ transferCache?: boolean;
7102
+ }): Observable<WaveHistories>;
7103
+ getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
7104
+ httpHeaderAccept?: 'application/json';
7105
+ context?: HttpContext;
7106
+ transferCache?: boolean;
7107
+ }): Observable<HttpResponse<WaveHistories>>;
7108
+ getWavesByHistoryType(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
7109
+ httpHeaderAccept?: 'application/json';
7110
+ context?: HttpContext;
7111
+ transferCache?: boolean;
7112
+ }): Observable<HttpEvent<WaveHistories>>;
7113
+ /**
7114
+ * Unlock a wave
7115
+ * @endpoint patch /waveHistories/unlock/{waveId}
7116
+ * @param waveId
7117
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
7118
+ * @param reportProgress flag to report request and response progress.
7119
+ * @param options additional options
7120
+ */
7121
+ unlockWave(waveId: string, observe?: 'body', reportProgress?: boolean, options?: {
7122
+ httpHeaderAccept?: 'application/json';
7123
+ context?: HttpContext;
7124
+ transferCache?: boolean;
7125
+ }): Observable<UnlockWaveResult>;
7126
+ unlockWave(waveId: string, observe?: 'response', reportProgress?: boolean, options?: {
7127
+ httpHeaderAccept?: 'application/json';
7128
+ context?: HttpContext;
7129
+ transferCache?: boolean;
7130
+ }): Observable<HttpResponse<UnlockWaveResult>>;
7131
+ unlockWave(waveId: string, observe?: 'events', reportProgress?: boolean, options?: {
7132
+ httpHeaderAccept?: 'application/json';
7133
+ context?: HttpContext;
7134
+ transferCache?: boolean;
7135
+ }): Observable<HttpEvent<UnlockWaveResult>>;
7136
+ static ɵfac: i0.ɵɵFactoryDeclaration<WaveHistoryService, [null, { optional: true; }, { optional: true; }]>;
7137
+ static ɵprov: i0.ɵɵInjectableDeclaration<WaveHistoryService>;
7138
+ }
6929
7139
 
6930
7140
  /**
6931
7141
  * Wms.API.Client
@@ -6936,12 +7146,14 @@ type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickR
6936
7146
  * https://openapi-generator.tech
6937
7147
  * Do not edit the class manually.
6938
7148
  */
6939
- declare const WavePickReleaseStatuses: {
7149
+ declare const PickReleaseHistoryTypes: {
7150
+ readonly All: "All";
7151
+ readonly ToBePrinted: "ToBePrinted";
6940
7152
  readonly Active: "Active";
6941
7153
  readonly Complete: "Complete";
6942
7154
  readonly Closed: "Closed";
6943
7155
  };
6944
- type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WavePickReleaseStatuses];
7156
+ type PickReleaseHistoryTypes = typeof PickReleaseHistoryTypes[keyof typeof PickReleaseHistoryTypes];
6945
7157
 
6946
7158
  /**
6947
7159
  * Wms.API.Client
@@ -6952,11 +7164,12 @@ type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WaveP
6952
7164
  * https://openapi-generator.tech
6953
7165
  * Do not edit the class manually.
6954
7166
  */
6955
- declare const WavePickReleaseMethods: {
6956
- readonly Sku: "SKU";
6957
- readonly Date: "Date";
7167
+ declare const WavePickReleaseStatuses: {
7168
+ readonly Active: "Active";
7169
+ readonly Complete: "Complete";
7170
+ readonly Closed: "Closed";
6958
7171
  };
6959
- type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePickReleaseMethods];
7172
+ type WavePickReleaseStatuses = typeof WavePickReleaseStatuses[keyof typeof WavePickReleaseStatuses];
6960
7173
 
6961
7174
  /**
6962
7175
  * Wms.API.Client
@@ -6967,14 +7180,11 @@ type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePic
6967
7180
  * https://openapi-generator.tech
6968
7181
  * Do not edit the class manually.
6969
7182
  */
6970
- declare const DocumentGenerationStatuses: {
6971
- readonly NoDocsToGenerate: "NoDocsToGenerate";
6972
- readonly ToBeGenerated: "ToBeGenerated";
6973
- readonly Regenerate: "Regenerate";
6974
- readonly Complete: "Complete";
6975
- readonly Exception: "Exception";
7183
+ declare const WavePickReleaseMethods: {
7184
+ readonly Sku: "SKU";
7185
+ readonly Date: "Date";
6976
7186
  };
6977
- type DocumentGenerationStatuses = typeof DocumentGenerationStatuses[keyof typeof DocumentGenerationStatuses];
7187
+ type WavePickReleaseMethods = typeof WavePickReleaseMethods[keyof typeof WavePickReleaseMethods];
6978
7188
 
6979
7189
  /**
6980
7190
  * Wms.API.Client
@@ -7320,22 +7530,6 @@ declare class WavePickingAccessService extends BaseService {
7320
7530
  static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
7321
7531
  }
7322
7532
 
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
7533
  /**
7340
7534
  * Wms.API.Client
7341
7535
  *
@@ -7415,7 +7609,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
7415
7609
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
7416
7610
  }
7417
7611
 
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)[];
7612
+ 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
7613
 
7420
7614
  /**
7421
7615
  * Wms.API.Client
@@ -7688,5 +7882,5 @@ declare class ApiModule {
7688
7882
 
7689
7883
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
7690
7884
 
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 };
7885
+ 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 };
7886
+ 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, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };