@indigina/wms-api 0.0.154 → 0.0.156
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 +244 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +227 -7
package/package.json
CHANGED
|
@@ -1174,6 +1174,200 @@ declare class CartonsService extends BaseService {
|
|
|
1174
1174
|
static ɵprov: i0.ɵɵInjectableDeclaration<CartonsService>;
|
|
1175
1175
|
}
|
|
1176
1176
|
|
|
1177
|
+
/**
|
|
1178
|
+
* Wms.API.Client
|
|
1179
|
+
*
|
|
1180
|
+
*
|
|
1181
|
+
*
|
|
1182
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1183
|
+
* https://openapi-generator.tech
|
|
1184
|
+
* Do not edit the class manually.
|
|
1185
|
+
*/
|
|
1186
|
+
interface ClientWaveConfigurationGridView {
|
|
1187
|
+
id: string;
|
|
1188
|
+
clientName: string;
|
|
1189
|
+
code: string;
|
|
1190
|
+
description: string;
|
|
1191
|
+
sequence: number;
|
|
1192
|
+
dispatchesPerWave: number | null;
|
|
1193
|
+
serviceGroupName: string;
|
|
1194
|
+
niCarrierGroupName: string;
|
|
1195
|
+
nonStandardRequirement: boolean | null;
|
|
1196
|
+
totalUnitsInDispatchMin: number | null;
|
|
1197
|
+
totalUnitsInDispatchMax: number | null;
|
|
1198
|
+
noOfLinesInDispatchMin: number | null;
|
|
1199
|
+
noOfLinesInDispatchMax: number | null;
|
|
1200
|
+
clusterPick: boolean;
|
|
1201
|
+
noOfSkus: number | null;
|
|
1202
|
+
noOfZones: number | null;
|
|
1203
|
+
reverseSortOrder: boolean;
|
|
1204
|
+
orderType: number | null;
|
|
1205
|
+
star: boolean | null;
|
|
1206
|
+
buildKit: boolean | null;
|
|
1207
|
+
bot: boolean;
|
|
1208
|
+
groupReference: string;
|
|
1209
|
+
multiZonePick: boolean;
|
|
1210
|
+
giftCard: boolean | null;
|
|
1211
|
+
clusterPack: boolean;
|
|
1212
|
+
autoPrint: boolean;
|
|
1213
|
+
findStockOutsideZones: boolean;
|
|
1214
|
+
editLocked: boolean;
|
|
1215
|
+
enabled: boolean;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
/**
|
|
1219
|
+
* Wms.API.Client
|
|
1220
|
+
*
|
|
1221
|
+
*
|
|
1222
|
+
*
|
|
1223
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1224
|
+
* https://openapi-generator.tech
|
|
1225
|
+
* Do not edit the class manually.
|
|
1226
|
+
*/
|
|
1227
|
+
|
|
1228
|
+
interface ClientWaveConfigurations {
|
|
1229
|
+
total: number;
|
|
1230
|
+
data: Array<ClientWaveConfigurationGridView>;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
/**
|
|
1234
|
+
* Wms.API.Client
|
|
1235
|
+
*
|
|
1236
|
+
*
|
|
1237
|
+
*
|
|
1238
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1239
|
+
* https://openapi-generator.tech
|
|
1240
|
+
* Do not edit the class manually.
|
|
1241
|
+
*/
|
|
1242
|
+
interface WaveConfigurationSequenceItem {
|
|
1243
|
+
waveConfigurationId: string;
|
|
1244
|
+
sequence: number;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
/**
|
|
1248
|
+
* Wms.API.Client
|
|
1249
|
+
*
|
|
1250
|
+
*
|
|
1251
|
+
*
|
|
1252
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1253
|
+
* https://openapi-generator.tech
|
|
1254
|
+
* Do not edit the class manually.
|
|
1255
|
+
*/
|
|
1256
|
+
|
|
1257
|
+
interface ResequenceClientWaveConfigurationsCommand {
|
|
1258
|
+
clientId: string;
|
|
1259
|
+
sequences: Array<WaveConfigurationSequenceItem>;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
declare class ClientWaveConfigurationsService extends BaseService {
|
|
1263
|
+
protected httpClient: HttpClient;
|
|
1264
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
1265
|
+
/**
|
|
1266
|
+
* Delete a client wave configuration
|
|
1267
|
+
* @endpoint delete /clientWaveConfigurations/{id}
|
|
1268
|
+
* @param id
|
|
1269
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1270
|
+
* @param reportProgress flag to report request and response progress.
|
|
1271
|
+
* @param options additional options
|
|
1272
|
+
*/
|
|
1273
|
+
deleteClientWaveConfiguration(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1274
|
+
httpHeaderAccept?: undefined;
|
|
1275
|
+
context?: HttpContext;
|
|
1276
|
+
transferCache?: boolean;
|
|
1277
|
+
}): Observable<any>;
|
|
1278
|
+
deleteClientWaveConfiguration(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1279
|
+
httpHeaderAccept?: undefined;
|
|
1280
|
+
context?: HttpContext;
|
|
1281
|
+
transferCache?: boolean;
|
|
1282
|
+
}): Observable<HttpResponse<any>>;
|
|
1283
|
+
deleteClientWaveConfiguration(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1284
|
+
httpHeaderAccept?: undefined;
|
|
1285
|
+
context?: HttpContext;
|
|
1286
|
+
transferCache?: boolean;
|
|
1287
|
+
}): Observable<HttpEvent<any>>;
|
|
1288
|
+
/**
|
|
1289
|
+
* Getting client wave configurations
|
|
1290
|
+
* @endpoint get /clientWaveConfigurations
|
|
1291
|
+
* @param clientId
|
|
1292
|
+
* @param $skip
|
|
1293
|
+
* @param $top
|
|
1294
|
+
* @param $orderby
|
|
1295
|
+
* @param $filter
|
|
1296
|
+
* @param $search
|
|
1297
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1298
|
+
* @param reportProgress flag to report request and response progress.
|
|
1299
|
+
* @param options additional options
|
|
1300
|
+
*/
|
|
1301
|
+
getClientWaveConfigurations(clientId: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1302
|
+
httpHeaderAccept?: 'application/json';
|
|
1303
|
+
context?: HttpContext;
|
|
1304
|
+
transferCache?: boolean;
|
|
1305
|
+
}): Observable<ClientWaveConfigurations>;
|
|
1306
|
+
getClientWaveConfigurations(clientId: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1307
|
+
httpHeaderAccept?: 'application/json';
|
|
1308
|
+
context?: HttpContext;
|
|
1309
|
+
transferCache?: boolean;
|
|
1310
|
+
}): Observable<HttpResponse<ClientWaveConfigurations>>;
|
|
1311
|
+
getClientWaveConfigurations(clientId: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1312
|
+
httpHeaderAccept?: 'application/json';
|
|
1313
|
+
context?: HttpContext;
|
|
1314
|
+
transferCache?: boolean;
|
|
1315
|
+
}): Observable<HttpEvent<ClientWaveConfigurations>>;
|
|
1316
|
+
/**
|
|
1317
|
+
* Client wave configurations list
|
|
1318
|
+
* @endpoint get /clientWaveConfigurations/search
|
|
1319
|
+
* @param clientId
|
|
1320
|
+
* @param $skip
|
|
1321
|
+
* @param $top
|
|
1322
|
+
* @param $orderby
|
|
1323
|
+
* @param $filter
|
|
1324
|
+
* @param searchTerm
|
|
1325
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1326
|
+
* @param reportProgress flag to report request and response progress.
|
|
1327
|
+
* @param options additional options
|
|
1328
|
+
*/
|
|
1329
|
+
getClientWaveConfigurationsFromIndex(clientId: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1330
|
+
httpHeaderAccept?: 'application/json';
|
|
1331
|
+
context?: HttpContext;
|
|
1332
|
+
transferCache?: boolean;
|
|
1333
|
+
}): Observable<ClientWaveConfigurations>;
|
|
1334
|
+
getClientWaveConfigurationsFromIndex(clientId: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1335
|
+
httpHeaderAccept?: 'application/json';
|
|
1336
|
+
context?: HttpContext;
|
|
1337
|
+
transferCache?: boolean;
|
|
1338
|
+
}): Observable<HttpResponse<ClientWaveConfigurations>>;
|
|
1339
|
+
getClientWaveConfigurationsFromIndex(clientId: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1340
|
+
httpHeaderAccept?: 'application/json';
|
|
1341
|
+
context?: HttpContext;
|
|
1342
|
+
transferCache?: boolean;
|
|
1343
|
+
}): Observable<HttpEvent<ClientWaveConfigurations>>;
|
|
1344
|
+
/**
|
|
1345
|
+
* Resequence client wave configurations
|
|
1346
|
+
* @endpoint put /clientWaveConfigurations/re-sequence
|
|
1347
|
+
* @param resequenceClientWaveConfigurationsCommand
|
|
1348
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1349
|
+
* @param reportProgress flag to report request and response progress.
|
|
1350
|
+
* @param options additional options
|
|
1351
|
+
*/
|
|
1352
|
+
resequenceClientWaveConfigurations(resequenceClientWaveConfigurationsCommand: ResequenceClientWaveConfigurationsCommand, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1353
|
+
httpHeaderAccept?: undefined;
|
|
1354
|
+
context?: HttpContext;
|
|
1355
|
+
transferCache?: boolean;
|
|
1356
|
+
}): Observable<any>;
|
|
1357
|
+
resequenceClientWaveConfigurations(resequenceClientWaveConfigurationsCommand: ResequenceClientWaveConfigurationsCommand, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1358
|
+
httpHeaderAccept?: undefined;
|
|
1359
|
+
context?: HttpContext;
|
|
1360
|
+
transferCache?: boolean;
|
|
1361
|
+
}): Observable<HttpResponse<any>>;
|
|
1362
|
+
resequenceClientWaveConfigurations(resequenceClientWaveConfigurationsCommand: ResequenceClientWaveConfigurationsCommand, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1363
|
+
httpHeaderAccept?: undefined;
|
|
1364
|
+
context?: HttpContext;
|
|
1365
|
+
transferCache?: boolean;
|
|
1366
|
+
}): Observable<HttpEvent<any>>;
|
|
1367
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClientWaveConfigurationsService, [null, { optional: true; }, { optional: true; }]>;
|
|
1368
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ClientWaveConfigurationsService>;
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1177
1371
|
/**
|
|
1178
1372
|
* Wms.API.Client
|
|
1179
1373
|
*
|
|
@@ -6974,6 +7168,34 @@ declare const WaveStatuses: {
|
|
|
6974
7168
|
};
|
|
6975
7169
|
type WaveStatuses = typeof WaveStatuses[keyof typeof WaveStatuses];
|
|
6976
7170
|
|
|
7171
|
+
/**
|
|
7172
|
+
* Wms.API.Client
|
|
7173
|
+
*
|
|
7174
|
+
*
|
|
7175
|
+
*
|
|
7176
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7177
|
+
* https://openapi-generator.tech
|
|
7178
|
+
* Do not edit the class manually.
|
|
7179
|
+
*/
|
|
7180
|
+
interface WaveHistoryWaveConfigurationSummary {
|
|
7181
|
+
description: string;
|
|
7182
|
+
clusterPack: boolean;
|
|
7183
|
+
}
|
|
7184
|
+
|
|
7185
|
+
/**
|
|
7186
|
+
* Wms.API.Client
|
|
7187
|
+
*
|
|
7188
|
+
*
|
|
7189
|
+
*
|
|
7190
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7191
|
+
* https://openapi-generator.tech
|
|
7192
|
+
* Do not edit the class manually.
|
|
7193
|
+
*/
|
|
7194
|
+
interface WaveHistoryWavePickReleaseSummary {
|
|
7195
|
+
clientId: string;
|
|
7196
|
+
wavePickReleaseNumber: string;
|
|
7197
|
+
}
|
|
7198
|
+
|
|
6977
7199
|
/**
|
|
6978
7200
|
* Wms.API.Client
|
|
6979
7201
|
*
|
|
@@ -6998,10 +7220,9 @@ interface WaveHistoryView {
|
|
|
6998
7220
|
completedBy?: string;
|
|
6999
7221
|
closedDate?: string | null;
|
|
7000
7222
|
closedBy?: string;
|
|
7001
|
-
waveConfigurationDescription: string;
|
|
7002
|
-
clientId: string;
|
|
7003
7223
|
client: string;
|
|
7004
|
-
|
|
7224
|
+
wavePickRelease: WaveHistoryWavePickReleaseSummary;
|
|
7225
|
+
waveConfiguration: WaveHistoryWaveConfigurationSummary;
|
|
7005
7226
|
extPlatesPending: boolean;
|
|
7006
7227
|
documentGenerationStatus: DocumentGenerationStatuses;
|
|
7007
7228
|
locked: boolean;
|
|
@@ -7009,7 +7230,6 @@ interface WaveHistoryView {
|
|
|
7009
7230
|
reverseSortOrder: boolean;
|
|
7010
7231
|
containsCi?: boolean | null;
|
|
7011
7232
|
containsNsr?: boolean | null;
|
|
7012
|
-
clusterPack: boolean;
|
|
7013
7233
|
containsBuildKit: boolean;
|
|
7014
7234
|
clusterPackStatus?: ClusterPackStatuses | null;
|
|
7015
7235
|
autoPrint: boolean;
|
|
@@ -7583,7 +7803,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
7583
7803
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
7584
7804
|
}
|
|
7585
7805
|
|
|
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)[];
|
|
7806
|
+
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 WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
7587
7807
|
|
|
7588
7808
|
/**
|
|
7589
7809
|
* Wms.API.Client
|
|
@@ -7856,5 +8076,5 @@ declare class ApiModule {
|
|
|
7856
8076
|
|
|
7857
8077
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
7858
8078
|
|
|
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 };
|
|
8079
|
+
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, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
8080
|
+
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, 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, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|