@indigina/wms-api 0.0.102 → 0.0.104
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 +275 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +270 -3
- 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.104
|
|
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.104 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -5330,7 +5330,202 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
5330
5330
|
type: Optional
|
|
5331
5331
|
}] }] });
|
|
5332
5332
|
|
|
5333
|
-
|
|
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: "string", 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];
|
|
5334
5529
|
|
|
5335
5530
|
/**
|
|
5336
5531
|
* Wms.API.Client
|
|
@@ -5529,6 +5724,23 @@ const DeviceType = {
|
|
|
5529
5724
|
* Do not edit the class manually.
|
|
5530
5725
|
*/
|
|
5531
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
|
+
|
|
5532
5744
|
/**
|
|
5533
5745
|
* Wms.API.Client
|
|
5534
5746
|
*
|
|
@@ -5690,6 +5902,23 @@ const PackingProcesses = {
|
|
|
5690
5902
|
BatchPicking: 'BatchPicking'
|
|
5691
5903
|
};
|
|
5692
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
|
+
|
|
5693
5922
|
/**
|
|
5694
5923
|
* Wms.API.Client
|
|
5695
5924
|
*
|
|
@@ -5966,6 +6195,50 @@ const UserCompanyType = {
|
|
|
5966
6195
|
* Do not edit the class manually.
|
|
5967
6196
|
*/
|
|
5968
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
|
+
|
|
5969
6242
|
class ApiModule {
|
|
5970
6243
|
static forRoot(configurationFactory) {
|
|
5971
6244
|
return {
|
|
@@ -6018,5 +6291,5 @@ function provideApi(configOrBasePath) {
|
|
|
6018
6291
|
* Generated bundle index. Do not edit.
|
|
6019
6292
|
*/
|
|
6020
6293
|
|
|
6021
|
-
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 };
|
|
6022
6295
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|