@indigina/wms-api 0.0.101 → 0.0.103
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 +282 -7
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +274 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.103
|
|
2
2
|
|
|
3
3
|
WMS API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.103 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -2729,10 +2729,7 @@ class DispatchesService extends BaseService {
|
|
|
2729
2729
|
reportProgress: reportProgress
|
|
2730
2730
|
});
|
|
2731
2731
|
}
|
|
2732
|
-
|
|
2733
|
-
if (orderStatus === null || orderStatus === undefined) {
|
|
2734
|
-
throw new Error('Required parameter orderStatus was null or undefined when calling getDispatchesByOrderStatus.');
|
|
2735
|
-
}
|
|
2732
|
+
getDispatches($skip, $top, $orderby, $filter, $search, tabName, orderStatuses, observe = 'body', reportProgress = false, options) {
|
|
2736
2733
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
2737
2734
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
2738
2735
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
@@ -2740,6 +2737,11 @@ class DispatchesService extends BaseService {
|
|
|
2740
2737
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
2741
2738
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $search, '$search');
|
|
2742
2739
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, tabName, 'tabName');
|
|
2740
|
+
if (orderStatuses) {
|
|
2741
|
+
orderStatuses.forEach((element) => {
|
|
2742
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, element, 'orderStatuses');
|
|
2743
|
+
});
|
|
2744
|
+
}
|
|
2743
2745
|
let localVarHeaders = this.defaultHeaders;
|
|
2744
2746
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2745
2747
|
'application/json'
|
|
@@ -2761,7 +2763,7 @@ class DispatchesService extends BaseService {
|
|
|
2761
2763
|
responseType_ = 'blob';
|
|
2762
2764
|
}
|
|
2763
2765
|
}
|
|
2764
|
-
let localVarPath = `/dispatches
|
|
2766
|
+
let localVarPath = `/dispatches`;
|
|
2765
2767
|
const { basePath, withCredentials } = this.configuration;
|
|
2766
2768
|
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2767
2769
|
context: localVarHttpContext,
|
|
@@ -5328,7 +5330,202 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
5328
5330
|
type: Optional
|
|
5329
5331
|
}] }] });
|
|
5330
5332
|
|
|
5331
|
-
|
|
5333
|
+
/**
|
|
5334
|
+
* Wms.API.Client
|
|
5335
|
+
*
|
|
5336
|
+
*
|
|
5337
|
+
*
|
|
5338
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5339
|
+
* https://openapi-generator.tech
|
|
5340
|
+
* Do not edit the class manually.
|
|
5341
|
+
*/
|
|
5342
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
5343
|
+
class WavePickReleasesService extends BaseService {
|
|
5344
|
+
httpClient;
|
|
5345
|
+
constructor(httpClient, basePath, configuration) {
|
|
5346
|
+
super(basePath, configuration);
|
|
5347
|
+
this.httpClient = httpClient;
|
|
5348
|
+
}
|
|
5349
|
+
getWavePickReleasesByHistoryType(pickReleaseHistoryType, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
5350
|
+
if (pickReleaseHistoryType === null || pickReleaseHistoryType === undefined) {
|
|
5351
|
+
throw new Error('Required parameter pickReleaseHistoryType was null or undefined when calling getWavePickReleasesByHistoryType.');
|
|
5352
|
+
}
|
|
5353
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
5354
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
5355
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
5356
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
5357
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
5358
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $search, '$search');
|
|
5359
|
+
let localVarHeaders = this.defaultHeaders;
|
|
5360
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
5361
|
+
'application/json'
|
|
5362
|
+
]);
|
|
5363
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
5364
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
5365
|
+
}
|
|
5366
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
5367
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
5368
|
+
let responseType_ = 'json';
|
|
5369
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
5370
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
5371
|
+
responseType_ = 'text';
|
|
5372
|
+
}
|
|
5373
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
5374
|
+
responseType_ = 'json';
|
|
5375
|
+
}
|
|
5376
|
+
else {
|
|
5377
|
+
responseType_ = 'blob';
|
|
5378
|
+
}
|
|
5379
|
+
}
|
|
5380
|
+
let localVarPath = `/wavePickReleases/history/${this.configuration.encodeParam({ name: "pickReleaseHistoryType", value: pickReleaseHistoryType, in: "path", style: "simple", explode: false, dataType: "PickReleaseHistoryTypes", dataFormat: undefined })}`;
|
|
5381
|
+
const { basePath, withCredentials } = this.configuration;
|
|
5382
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
5383
|
+
context: localVarHttpContext,
|
|
5384
|
+
params: localVarQueryParameters,
|
|
5385
|
+
responseType: responseType_,
|
|
5386
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
5387
|
+
headers: localVarHeaders,
|
|
5388
|
+
observe: observe,
|
|
5389
|
+
transferCache: localVarTransferCache,
|
|
5390
|
+
reportProgress: reportProgress
|
|
5391
|
+
});
|
|
5392
|
+
}
|
|
5393
|
+
getWavePickReleasesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
5394
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
5395
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
5396
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
5397
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
5398
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
5399
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, searchTerm, 'searchTerm');
|
|
5400
|
+
let localVarHeaders = this.defaultHeaders;
|
|
5401
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
5402
|
+
'application/json'
|
|
5403
|
+
]);
|
|
5404
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
5405
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
5406
|
+
}
|
|
5407
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
5408
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
5409
|
+
let responseType_ = 'json';
|
|
5410
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
5411
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
5412
|
+
responseType_ = 'text';
|
|
5413
|
+
}
|
|
5414
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
5415
|
+
responseType_ = 'json';
|
|
5416
|
+
}
|
|
5417
|
+
else {
|
|
5418
|
+
responseType_ = 'blob';
|
|
5419
|
+
}
|
|
5420
|
+
}
|
|
5421
|
+
let localVarPath = `/wavePickReleases/search`;
|
|
5422
|
+
const { basePath, withCredentials } = this.configuration;
|
|
5423
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
5424
|
+
context: localVarHttpContext,
|
|
5425
|
+
params: localVarQueryParameters,
|
|
5426
|
+
responseType: responseType_,
|
|
5427
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
5428
|
+
headers: localVarHeaders,
|
|
5429
|
+
observe: observe,
|
|
5430
|
+
transferCache: localVarTransferCache,
|
|
5431
|
+
reportProgress: reportProgress
|
|
5432
|
+
});
|
|
5433
|
+
}
|
|
5434
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: WavePickReleasesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5435
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: WavePickReleasesService, providedIn: 'root' });
|
|
5436
|
+
}
|
|
5437
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: WavePickReleasesService, decorators: [{
|
|
5438
|
+
type: Injectable,
|
|
5439
|
+
args: [{
|
|
5440
|
+
providedIn: 'root'
|
|
5441
|
+
}]
|
|
5442
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
5443
|
+
type: Optional
|
|
5444
|
+
}, {
|
|
5445
|
+
type: Inject,
|
|
5446
|
+
args: [BASE_PATH]
|
|
5447
|
+
}] }, { type: Configuration, decorators: [{
|
|
5448
|
+
type: Optional
|
|
5449
|
+
}] }] });
|
|
5450
|
+
|
|
5451
|
+
/**
|
|
5452
|
+
* Wms.API.Client
|
|
5453
|
+
*
|
|
5454
|
+
*
|
|
5455
|
+
*
|
|
5456
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5457
|
+
* https://openapi-generator.tech
|
|
5458
|
+
* Do not edit the class manually.
|
|
5459
|
+
*/
|
|
5460
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
5461
|
+
class WavesByPickReleaseIdService extends BaseService {
|
|
5462
|
+
httpClient;
|
|
5463
|
+
constructor(httpClient, basePath, configuration) {
|
|
5464
|
+
super(basePath, configuration);
|
|
5465
|
+
this.httpClient = httpClient;
|
|
5466
|
+
}
|
|
5467
|
+
getWavesByPickReleaseId(id, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
5468
|
+
if (id === null || id === undefined) {
|
|
5469
|
+
throw new Error('Required parameter id was null or undefined when calling getWavesByPickReleaseId.');
|
|
5470
|
+
}
|
|
5471
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
5472
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
5473
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
5474
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
5475
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
5476
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $search, '$search');
|
|
5477
|
+
let localVarHeaders = this.defaultHeaders;
|
|
5478
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
5479
|
+
'application/json'
|
|
5480
|
+
]);
|
|
5481
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
5482
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
5483
|
+
}
|
|
5484
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
5485
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
5486
|
+
let responseType_ = 'json';
|
|
5487
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
5488
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
5489
|
+
responseType_ = 'text';
|
|
5490
|
+
}
|
|
5491
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
5492
|
+
responseType_ = 'json';
|
|
5493
|
+
}
|
|
5494
|
+
else {
|
|
5495
|
+
responseType_ = 'blob';
|
|
5496
|
+
}
|
|
5497
|
+
}
|
|
5498
|
+
let localVarPath = `/wavePickReleases/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/waves`;
|
|
5499
|
+
const { basePath, withCredentials } = this.configuration;
|
|
5500
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
5501
|
+
context: localVarHttpContext,
|
|
5502
|
+
params: localVarQueryParameters,
|
|
5503
|
+
responseType: responseType_,
|
|
5504
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
5505
|
+
headers: localVarHeaders,
|
|
5506
|
+
observe: observe,
|
|
5507
|
+
transferCache: localVarTransferCache,
|
|
5508
|
+
reportProgress: reportProgress
|
|
5509
|
+
});
|
|
5510
|
+
}
|
|
5511
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: WavesByPickReleaseIdService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5512
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: WavesByPickReleaseIdService, providedIn: 'root' });
|
|
5513
|
+
}
|
|
5514
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: WavesByPickReleaseIdService, decorators: [{
|
|
5515
|
+
type: Injectable,
|
|
5516
|
+
args: [{
|
|
5517
|
+
providedIn: 'root'
|
|
5518
|
+
}]
|
|
5519
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
5520
|
+
type: Optional
|
|
5521
|
+
}, {
|
|
5522
|
+
type: Inject,
|
|
5523
|
+
args: [BASE_PATH]
|
|
5524
|
+
}] }, { type: Configuration, decorators: [{
|
|
5525
|
+
type: Optional
|
|
5526
|
+
}] }] });
|
|
5527
|
+
|
|
5528
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService, WavePickReleasesService, WavesByPickReleaseIdService];
|
|
5332
5529
|
|
|
5333
5530
|
/**
|
|
5334
5531
|
* Wms.API.Client
|
|
@@ -5527,6 +5724,23 @@ const DeviceType = {
|
|
|
5527
5724
|
* Do not edit the class manually.
|
|
5528
5725
|
*/
|
|
5529
5726
|
|
|
5727
|
+
/**
|
|
5728
|
+
* Wms.API.Client
|
|
5729
|
+
*
|
|
5730
|
+
*
|
|
5731
|
+
*
|
|
5732
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5733
|
+
* https://openapi-generator.tech
|
|
5734
|
+
* Do not edit the class manually.
|
|
5735
|
+
*/
|
|
5736
|
+
const DocumentGenerationStatuses = {
|
|
5737
|
+
NoDocsToGenerate: 'NoDocsToGenerate',
|
|
5738
|
+
ToBeGenerated: 'ToBeGenerated',
|
|
5739
|
+
Regenerate: 'Regenerate',
|
|
5740
|
+
Complete: 'Complete',
|
|
5741
|
+
Exception: 'Exception'
|
|
5742
|
+
};
|
|
5743
|
+
|
|
5530
5744
|
/**
|
|
5531
5745
|
* Wms.API.Client
|
|
5532
5746
|
*
|
|
@@ -5688,6 +5902,23 @@ const PackingProcesses = {
|
|
|
5688
5902
|
BatchPicking: 'BatchPicking'
|
|
5689
5903
|
};
|
|
5690
5904
|
|
|
5905
|
+
/**
|
|
5906
|
+
* Wms.API.Client
|
|
5907
|
+
*
|
|
5908
|
+
*
|
|
5909
|
+
*
|
|
5910
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5911
|
+
* https://openapi-generator.tech
|
|
5912
|
+
* Do not edit the class manually.
|
|
5913
|
+
*/
|
|
5914
|
+
const PickReleaseHistoryTypes = {
|
|
5915
|
+
All: 'All',
|
|
5916
|
+
ToBePrinted: 'ToBePrinted',
|
|
5917
|
+
Active: 'Active',
|
|
5918
|
+
Complete: 'Complete',
|
|
5919
|
+
Closed: 'Closed'
|
|
5920
|
+
};
|
|
5921
|
+
|
|
5691
5922
|
/**
|
|
5692
5923
|
* Wms.API.Client
|
|
5693
5924
|
*
|
|
@@ -5964,6 +6195,50 @@ const UserCompanyType = {
|
|
|
5964
6195
|
* Do not edit the class manually.
|
|
5965
6196
|
*/
|
|
5966
6197
|
|
|
6198
|
+
/**
|
|
6199
|
+
* Wms.API.Client
|
|
6200
|
+
*
|
|
6201
|
+
*
|
|
6202
|
+
*
|
|
6203
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6204
|
+
* https://openapi-generator.tech
|
|
6205
|
+
* Do not edit the class manually.
|
|
6206
|
+
*/
|
|
6207
|
+
const WavePickReleaseMethods = {
|
|
6208
|
+
Sku: 'SKU',
|
|
6209
|
+
Date: 'Date'
|
|
6210
|
+
};
|
|
6211
|
+
|
|
6212
|
+
/**
|
|
6213
|
+
* Wms.API.Client
|
|
6214
|
+
*
|
|
6215
|
+
*
|
|
6216
|
+
*
|
|
6217
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6218
|
+
* https://openapi-generator.tech
|
|
6219
|
+
* Do not edit the class manually.
|
|
6220
|
+
*/
|
|
6221
|
+
const WavePickReleaseStatuses = {
|
|
6222
|
+
Active: 'Active',
|
|
6223
|
+
Complete: 'Complete',
|
|
6224
|
+
Closed: 'Closed'
|
|
6225
|
+
};
|
|
6226
|
+
|
|
6227
|
+
/**
|
|
6228
|
+
* Wms.API.Client
|
|
6229
|
+
*
|
|
6230
|
+
*
|
|
6231
|
+
*
|
|
6232
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6233
|
+
* https://openapi-generator.tech
|
|
6234
|
+
* Do not edit the class manually.
|
|
6235
|
+
*/
|
|
6236
|
+
const WaveStatuses = {
|
|
6237
|
+
Active: 'Active',
|
|
6238
|
+
Complete: 'Complete',
|
|
6239
|
+
Closed: 'Closed'
|
|
6240
|
+
};
|
|
6241
|
+
|
|
5967
6242
|
class ApiModule {
|
|
5968
6243
|
static forRoot(configurationFactory) {
|
|
5969
6244
|
return {
|
|
@@ -6016,5 +6291,5 @@ function provideApi(configOrBasePath) {
|
|
|
6016
6291
|
* Generated bundle index. Do not edit.
|
|
6017
6292
|
*/
|
|
6018
6293
|
|
|
6019
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
6294
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6020
6295
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|