@indigina/wms-api 0.0.130 → 0.0.131
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
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.131
|
|
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.131 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -6359,6 +6359,52 @@ class WavePickingAccessService extends BaseService {
|
|
|
6359
6359
|
super(basePath, configuration);
|
|
6360
6360
|
this.httpClient = httpClient;
|
|
6361
6361
|
}
|
|
6362
|
+
createWavePickingAccess(wavePickingAccess, observe = 'body', reportProgress = false, options) {
|
|
6363
|
+
if (wavePickingAccess === null || wavePickingAccess === undefined) {
|
|
6364
|
+
throw new Error('Required parameter wavePickingAccess was null or undefined when calling createWavePickingAccess.');
|
|
6365
|
+
}
|
|
6366
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6367
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6368
|
+
'application/json'
|
|
6369
|
+
]);
|
|
6370
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6371
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6372
|
+
}
|
|
6373
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6374
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6375
|
+
// to determine the Content-Type header
|
|
6376
|
+
const consumes = [
|
|
6377
|
+
'application/json'
|
|
6378
|
+
];
|
|
6379
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6380
|
+
if (httpContentTypeSelected !== undefined) {
|
|
6381
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
6382
|
+
}
|
|
6383
|
+
let responseType_ = 'json';
|
|
6384
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6385
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6386
|
+
responseType_ = 'text';
|
|
6387
|
+
}
|
|
6388
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6389
|
+
responseType_ = 'json';
|
|
6390
|
+
}
|
|
6391
|
+
else {
|
|
6392
|
+
responseType_ = 'blob';
|
|
6393
|
+
}
|
|
6394
|
+
}
|
|
6395
|
+
let localVarPath = `/wavePickingAccesses`;
|
|
6396
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6397
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
6398
|
+
context: localVarHttpContext,
|
|
6399
|
+
body: wavePickingAccess,
|
|
6400
|
+
responseType: responseType_,
|
|
6401
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6402
|
+
headers: localVarHeaders,
|
|
6403
|
+
observe: observe,
|
|
6404
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6405
|
+
reportProgress: reportProgress
|
|
6406
|
+
});
|
|
6407
|
+
}
|
|
6362
6408
|
deleteWavePickingAccess(id, observe = 'body', reportProgress = false, options) {
|
|
6363
6409
|
if (id === null || id === undefined) {
|
|
6364
6410
|
throw new Error('Required parameter id was null or undefined when calling deleteWavePickingAccess.');
|
|
@@ -6433,6 +6479,47 @@ class WavePickingAccessService extends BaseService {
|
|
|
6433
6479
|
reportProgress: reportProgress
|
|
6434
6480
|
});
|
|
6435
6481
|
}
|
|
6482
|
+
getWavePickingAccessClients($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
6483
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6484
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
6485
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
6486
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
6487
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
6488
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
6489
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6490
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6491
|
+
'application/json'
|
|
6492
|
+
]);
|
|
6493
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6494
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6495
|
+
}
|
|
6496
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6497
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6498
|
+
let responseType_ = 'json';
|
|
6499
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6500
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6501
|
+
responseType_ = 'text';
|
|
6502
|
+
}
|
|
6503
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6504
|
+
responseType_ = 'json';
|
|
6505
|
+
}
|
|
6506
|
+
else {
|
|
6507
|
+
responseType_ = 'blob';
|
|
6508
|
+
}
|
|
6509
|
+
}
|
|
6510
|
+
let localVarPath = `/wavePickingAccesses/clients`;
|
|
6511
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6512
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
6513
|
+
context: localVarHttpContext,
|
|
6514
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
6515
|
+
responseType: responseType_,
|
|
6516
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6517
|
+
headers: localVarHeaders,
|
|
6518
|
+
observe: observe,
|
|
6519
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6520
|
+
reportProgress: reportProgress
|
|
6521
|
+
});
|
|
6522
|
+
}
|
|
6436
6523
|
getWavePickingAccesses($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
6437
6524
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6438
6525
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
@@ -7437,6 +7524,16 @@ const WavePickReleaseStatuses = {
|
|
|
7437
7524
|
* Do not edit the class manually.
|
|
7438
7525
|
*/
|
|
7439
7526
|
|
|
7527
|
+
/**
|
|
7528
|
+
* Wms.API.Client
|
|
7529
|
+
*
|
|
7530
|
+
*
|
|
7531
|
+
*
|
|
7532
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7533
|
+
* https://openapi-generator.tech
|
|
7534
|
+
* Do not edit the class manually.
|
|
7535
|
+
*/
|
|
7536
|
+
|
|
7440
7537
|
/**
|
|
7441
7538
|
* Wms.API.Client
|
|
7442
7539
|
*
|