@indigina/wms-api 0.0.125 → 0.0.126
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.126
|
|
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.126 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -6359,6 +6359,43 @@ class WavePickingAccessService extends BaseService {
|
|
|
6359
6359
|
super(basePath, configuration);
|
|
6360
6360
|
this.httpClient = httpClient;
|
|
6361
6361
|
}
|
|
6362
|
+
deleteWavePickingAccess(id, observe = 'body', reportProgress = false, options) {
|
|
6363
|
+
if (id === null || id === undefined) {
|
|
6364
|
+
throw new Error('Required parameter id was null or undefined when calling deleteWavePickingAccess.');
|
|
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
|
+
let responseType_ = 'json';
|
|
6376
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6377
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6378
|
+
responseType_ = 'text';
|
|
6379
|
+
}
|
|
6380
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6381
|
+
responseType_ = 'json';
|
|
6382
|
+
}
|
|
6383
|
+
else {
|
|
6384
|
+
responseType_ = 'blob';
|
|
6385
|
+
}
|
|
6386
|
+
}
|
|
6387
|
+
let localVarPath = `/wavePickingAccesses/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
|
|
6388
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6389
|
+
return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
|
|
6390
|
+
context: localVarHttpContext,
|
|
6391
|
+
responseType: responseType_,
|
|
6392
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6393
|
+
headers: localVarHeaders,
|
|
6394
|
+
observe: observe,
|
|
6395
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6396
|
+
reportProgress: reportProgress
|
|
6397
|
+
});
|
|
6398
|
+
}
|
|
6362
6399
|
getWavePickingAccesses($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
6363
6400
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6364
6401
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|