@indigina/wms-api 0.0.190 → 0.0.191
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.191
|
|
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.191 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -5359,6 +5359,40 @@ class DispatchesService extends BaseService {
|
|
|
5359
5359
|
reportProgress: reportProgress
|
|
5360
5360
|
});
|
|
5361
5361
|
}
|
|
5362
|
+
getStarDispatchClients(observe = 'body', reportProgress = false, options) {
|
|
5363
|
+
let localVarHeaders = this.defaultHeaders;
|
|
5364
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
5365
|
+
'application/json'
|
|
5366
|
+
]);
|
|
5367
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
5368
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
5369
|
+
}
|
|
5370
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
5371
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
5372
|
+
let responseType_ = 'json';
|
|
5373
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
5374
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
5375
|
+
responseType_ = 'text';
|
|
5376
|
+
}
|
|
5377
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
5378
|
+
responseType_ = 'json';
|
|
5379
|
+
}
|
|
5380
|
+
else {
|
|
5381
|
+
responseType_ = 'blob';
|
|
5382
|
+
}
|
|
5383
|
+
}
|
|
5384
|
+
let localVarPath = `/dispatches/star-dispatches/clients`;
|
|
5385
|
+
const { basePath, withCredentials } = this.configuration;
|
|
5386
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
5387
|
+
context: localVarHttpContext,
|
|
5388
|
+
responseType: responseType_,
|
|
5389
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
5390
|
+
headers: localVarHeaders,
|
|
5391
|
+
observe: observe,
|
|
5392
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
5393
|
+
reportProgress: reportProgress
|
|
5394
|
+
});
|
|
5395
|
+
}
|
|
5362
5396
|
getStarDispatches($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
5363
5397
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
5364
5398
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|