@indigina/wms-api 0.0.175 → 0.0.177
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 +256 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +271 -4
package/package.json
CHANGED
|
@@ -2301,6 +2301,273 @@ declare class ContactsService extends BaseService {
|
|
|
2301
2301
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContactsService>;
|
|
2302
2302
|
}
|
|
2303
2303
|
|
|
2304
|
+
/**
|
|
2305
|
+
* Wms.API.Client
|
|
2306
|
+
*
|
|
2307
|
+
*
|
|
2308
|
+
*
|
|
2309
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2310
|
+
* https://openapi-generator.tech
|
|
2311
|
+
* Do not edit the class manually.
|
|
2312
|
+
*/
|
|
2313
|
+
declare const CountStatuses: {
|
|
2314
|
+
readonly Any: "Any";
|
|
2315
|
+
readonly Active: "Active";
|
|
2316
|
+
readonly Complete: "Complete";
|
|
2317
|
+
readonly Recount: "Recount";
|
|
2318
|
+
readonly Cancel: "Cancel";
|
|
2319
|
+
};
|
|
2320
|
+
type CountStatuses = typeof CountStatuses[keyof typeof CountStatuses];
|
|
2321
|
+
|
|
2322
|
+
/**
|
|
2323
|
+
* Wms.API.Client
|
|
2324
|
+
*
|
|
2325
|
+
*
|
|
2326
|
+
*
|
|
2327
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2328
|
+
* https://openapi-generator.tech
|
|
2329
|
+
* Do not edit the class manually.
|
|
2330
|
+
*/
|
|
2331
|
+
declare const CountType: {
|
|
2332
|
+
readonly Any: "Any";
|
|
2333
|
+
readonly MovementException: "MovementException";
|
|
2334
|
+
readonly PickDenial: "PickDenial";
|
|
2335
|
+
readonly ContinuousInventory: "ContinuousInventory";
|
|
2336
|
+
readonly PlannedCount: "PlannedCount";
|
|
2337
|
+
readonly FreeCount: "FreeCount";
|
|
2338
|
+
};
|
|
2339
|
+
type CountType = typeof CountType[keyof typeof CountType];
|
|
2340
|
+
|
|
2341
|
+
/**
|
|
2342
|
+
* Wms.API.Client
|
|
2343
|
+
*
|
|
2344
|
+
*
|
|
2345
|
+
*
|
|
2346
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2347
|
+
* https://openapi-generator.tech
|
|
2348
|
+
* Do not edit the class manually.
|
|
2349
|
+
*/
|
|
2350
|
+
|
|
2351
|
+
interface CountRecordGridView {
|
|
2352
|
+
id: string;
|
|
2353
|
+
clientId: string;
|
|
2354
|
+
client: string;
|
|
2355
|
+
countType: CountType;
|
|
2356
|
+
countStatus: CountStatuses;
|
|
2357
|
+
location?: string;
|
|
2358
|
+
licencePlate?: number | null;
|
|
2359
|
+
productMasterId?: string | null;
|
|
2360
|
+
sku?: string;
|
|
2361
|
+
createSystemQuantity?: number | null;
|
|
2362
|
+
bestBeforeDate?: string | null;
|
|
2363
|
+
lotNo?: string;
|
|
2364
|
+
locationType?: string;
|
|
2365
|
+
zone?: string;
|
|
2366
|
+
module?: string;
|
|
2367
|
+
storageType?: string;
|
|
2368
|
+
createDate: string;
|
|
2369
|
+
createdByUser: string;
|
|
2370
|
+
firstCountDate?: string | null;
|
|
2371
|
+
firstCountUser?: string;
|
|
2372
|
+
lastSystemQuantity?: number | null;
|
|
2373
|
+
lastCountQuantity?: number | null;
|
|
2374
|
+
lastAdjustmentQuantity?: number | null;
|
|
2375
|
+
lastCountDate?: string | null;
|
|
2376
|
+
lastCountUser?: string;
|
|
2377
|
+
numberOfRecounts?: number | null;
|
|
2378
|
+
plannedCountNumber?: number | null;
|
|
2379
|
+
completedDate?: string | null;
|
|
2380
|
+
completedUser?: string;
|
|
2381
|
+
cancelDate?: string | null;
|
|
2382
|
+
cancelUser?: string;
|
|
2383
|
+
closedDate?: string | null;
|
|
2384
|
+
}
|
|
2385
|
+
declare namespace CountRecordGridView {
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
/**
|
|
2389
|
+
* Wms.API.Client
|
|
2390
|
+
*
|
|
2391
|
+
*
|
|
2392
|
+
*
|
|
2393
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2394
|
+
* https://openapi-generator.tech
|
|
2395
|
+
* Do not edit the class manually.
|
|
2396
|
+
*/
|
|
2397
|
+
|
|
2398
|
+
interface CountRecords {
|
|
2399
|
+
total: number;
|
|
2400
|
+
data: Array<CountRecordGridView>;
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
/**
|
|
2404
|
+
* Wms.API.Client
|
|
2405
|
+
*
|
|
2406
|
+
*
|
|
2407
|
+
*
|
|
2408
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2409
|
+
* https://openapi-generator.tech
|
|
2410
|
+
* Do not edit the class manually.
|
|
2411
|
+
*/
|
|
2412
|
+
declare const CountStatusGroup: {
|
|
2413
|
+
readonly Open: "Open";
|
|
2414
|
+
readonly Closed: "Closed";
|
|
2415
|
+
};
|
|
2416
|
+
type CountStatusGroup = typeof CountStatusGroup[keyof typeof CountStatusGroup];
|
|
2417
|
+
|
|
2418
|
+
/**
|
|
2419
|
+
* Wms.API.Client
|
|
2420
|
+
*
|
|
2421
|
+
*
|
|
2422
|
+
*
|
|
2423
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2424
|
+
* https://openapi-generator.tech
|
|
2425
|
+
* Do not edit the class manually.
|
|
2426
|
+
*/
|
|
2427
|
+
|
|
2428
|
+
interface OperatorCountGridView {
|
|
2429
|
+
id: string;
|
|
2430
|
+
countRecordId: string;
|
|
2431
|
+
createDate: string;
|
|
2432
|
+
countedBy: string;
|
|
2433
|
+
systemQuantity: number;
|
|
2434
|
+
countQuantity: number;
|
|
2435
|
+
adjustmentQuantity: number;
|
|
2436
|
+
fromCountStatus?: CountStatuses | null;
|
|
2437
|
+
toCountStatus?: CountStatuses | null;
|
|
2438
|
+
}
|
|
2439
|
+
declare namespace OperatorCountGridView {
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
/**
|
|
2443
|
+
* Wms.API.Client
|
|
2444
|
+
*
|
|
2445
|
+
*
|
|
2446
|
+
*
|
|
2447
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2448
|
+
* https://openapi-generator.tech
|
|
2449
|
+
* Do not edit the class manually.
|
|
2450
|
+
*/
|
|
2451
|
+
|
|
2452
|
+
interface OperatorCounts {
|
|
2453
|
+
total: number;
|
|
2454
|
+
data: Array<OperatorCountGridView>;
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
declare class CountRecordsService extends BaseService {
|
|
2458
|
+
protected httpClient: HttpClient;
|
|
2459
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2460
|
+
/**
|
|
2461
|
+
* Cancel count records
|
|
2462
|
+
* @endpoint put /CountRecords/cancel
|
|
2463
|
+
* @param ids
|
|
2464
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2465
|
+
* @param reportProgress flag to report request and response progress.
|
|
2466
|
+
* @param options additional options
|
|
2467
|
+
*/
|
|
2468
|
+
cancelCountRecords(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2469
|
+
httpHeaderAccept?: undefined;
|
|
2470
|
+
context?: HttpContext;
|
|
2471
|
+
transferCache?: boolean;
|
|
2472
|
+
}): Observable<any>;
|
|
2473
|
+
cancelCountRecords(ids: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2474
|
+
httpHeaderAccept?: undefined;
|
|
2475
|
+
context?: HttpContext;
|
|
2476
|
+
transferCache?: boolean;
|
|
2477
|
+
}): Observable<HttpResponse<any>>;
|
|
2478
|
+
cancelCountRecords(ids: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2479
|
+
httpHeaderAccept?: undefined;
|
|
2480
|
+
context?: HttpContext;
|
|
2481
|
+
transferCache?: boolean;
|
|
2482
|
+
}): Observable<HttpEvent<any>>;
|
|
2483
|
+
/**
|
|
2484
|
+
* Get list of count record clients
|
|
2485
|
+
* @endpoint get /CountRecords/clients
|
|
2486
|
+
* @param statusGroup
|
|
2487
|
+
* @param $skip
|
|
2488
|
+
* @param $top
|
|
2489
|
+
* @param $orderby
|
|
2490
|
+
* @param $filter
|
|
2491
|
+
* @param $search
|
|
2492
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2493
|
+
* @param reportProgress flag to report request and response progress.
|
|
2494
|
+
* @param options additional options
|
|
2495
|
+
*/
|
|
2496
|
+
getCountRecordClients(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2497
|
+
httpHeaderAccept?: 'application/json';
|
|
2498
|
+
context?: HttpContext;
|
|
2499
|
+
transferCache?: boolean;
|
|
2500
|
+
}): Observable<Array<string>>;
|
|
2501
|
+
getCountRecordClients(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2502
|
+
httpHeaderAccept?: 'application/json';
|
|
2503
|
+
context?: HttpContext;
|
|
2504
|
+
transferCache?: boolean;
|
|
2505
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
2506
|
+
getCountRecordClients(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2507
|
+
httpHeaderAccept?: 'application/json';
|
|
2508
|
+
context?: HttpContext;
|
|
2509
|
+
transferCache?: boolean;
|
|
2510
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
2511
|
+
/**
|
|
2512
|
+
* Getting count records
|
|
2513
|
+
* @endpoint get /CountRecords
|
|
2514
|
+
* @param statusGroup
|
|
2515
|
+
* @param $skip
|
|
2516
|
+
* @param $top
|
|
2517
|
+
* @param $orderby
|
|
2518
|
+
* @param $filter
|
|
2519
|
+
* @param $search
|
|
2520
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2521
|
+
* @param reportProgress flag to report request and response progress.
|
|
2522
|
+
* @param options additional options
|
|
2523
|
+
*/
|
|
2524
|
+
getCountRecords(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2525
|
+
httpHeaderAccept?: 'application/json';
|
|
2526
|
+
context?: HttpContext;
|
|
2527
|
+
transferCache?: boolean;
|
|
2528
|
+
}): Observable<CountRecords>;
|
|
2529
|
+
getCountRecords(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2530
|
+
httpHeaderAccept?: 'application/json';
|
|
2531
|
+
context?: HttpContext;
|
|
2532
|
+
transferCache?: boolean;
|
|
2533
|
+
}): Observable<HttpResponse<CountRecords>>;
|
|
2534
|
+
getCountRecords(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2535
|
+
httpHeaderAccept?: 'application/json';
|
|
2536
|
+
context?: HttpContext;
|
|
2537
|
+
transferCache?: boolean;
|
|
2538
|
+
}): Observable<HttpEvent<CountRecords>>;
|
|
2539
|
+
/**
|
|
2540
|
+
* Getting operator counts for a count record
|
|
2541
|
+
* @endpoint get /CountRecords/{id}/operatorCounts
|
|
2542
|
+
* @param id
|
|
2543
|
+
* @param $skip
|
|
2544
|
+
* @param $top
|
|
2545
|
+
* @param $orderby
|
|
2546
|
+
* @param $filter
|
|
2547
|
+
* @param $search
|
|
2548
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2549
|
+
* @param reportProgress flag to report request and response progress.
|
|
2550
|
+
* @param options additional options
|
|
2551
|
+
*/
|
|
2552
|
+
getOperatorCounts(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2553
|
+
httpHeaderAccept?: 'application/json';
|
|
2554
|
+
context?: HttpContext;
|
|
2555
|
+
transferCache?: boolean;
|
|
2556
|
+
}): Observable<OperatorCounts>;
|
|
2557
|
+
getOperatorCounts(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2558
|
+
httpHeaderAccept?: 'application/json';
|
|
2559
|
+
context?: HttpContext;
|
|
2560
|
+
transferCache?: boolean;
|
|
2561
|
+
}): Observable<HttpResponse<OperatorCounts>>;
|
|
2562
|
+
getOperatorCounts(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2563
|
+
httpHeaderAccept?: 'application/json';
|
|
2564
|
+
context?: HttpContext;
|
|
2565
|
+
transferCache?: boolean;
|
|
2566
|
+
}): Observable<HttpEvent<OperatorCounts>>;
|
|
2567
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CountRecordsService, [null, { optional: true; }, { optional: true; }]>;
|
|
2568
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CountRecordsService>;
|
|
2569
|
+
}
|
|
2570
|
+
|
|
2304
2571
|
/**
|
|
2305
2572
|
* Wms.API.Client
|
|
2306
2573
|
*
|
|
@@ -3898,7 +4165,7 @@ interface Dispatch {
|
|
|
3898
4165
|
packedDate?: string | null;
|
|
3899
4166
|
packCompleteDate?: string | null;
|
|
3900
4167
|
dispatchDate?: string | null;
|
|
3901
|
-
|
|
4168
|
+
sysDispatchDate?: string | null;
|
|
3902
4169
|
requestedCarrierId?: string | null;
|
|
3903
4170
|
requestedServiceName?: string;
|
|
3904
4171
|
carrierId?: string | null;
|
|
@@ -9433,7 +9700,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
9433
9700
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
9434
9701
|
}
|
|
9435
9702
|
|
|
9436
|
-
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | 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 PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | 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)[];
|
|
9703
|
+
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountRecordsService | 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 PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | 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)[];
|
|
9437
9704
|
|
|
9438
9705
|
/**
|
|
9439
9706
|
* Wms.API.Client
|
|
@@ -9749,5 +10016,5 @@ declare class ApiModule {
|
|
|
9749
10016
|
|
|
9750
10017
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
9751
10018
|
|
|
9752
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, 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, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, 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 };
|
|
9753
|
-
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, 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, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, 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 };
|
|
10019
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, 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, OperatorCountGridView, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, 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 };
|
|
10020
|
+
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountRecords, 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, OperatorCounts, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, 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 };
|