@indigina/wms-api 0.0.157 → 0.0.158
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.158
|
|
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.158 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -7484,6 +7484,47 @@ class WaveConfigGroupsService extends BaseService {
|
|
|
7484
7484
|
reportProgress: reportProgress
|
|
7485
7485
|
});
|
|
7486
7486
|
}
|
|
7487
|
+
getWaveConfigGroupClients($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7488
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7489
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
7490
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
7491
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
7492
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
7493
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
7494
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7495
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7496
|
+
'application/json'
|
|
7497
|
+
]);
|
|
7498
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7499
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7500
|
+
}
|
|
7501
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7502
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7503
|
+
let responseType_ = 'json';
|
|
7504
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7505
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7506
|
+
responseType_ = 'text';
|
|
7507
|
+
}
|
|
7508
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7509
|
+
responseType_ = 'json';
|
|
7510
|
+
}
|
|
7511
|
+
else {
|
|
7512
|
+
responseType_ = 'blob';
|
|
7513
|
+
}
|
|
7514
|
+
}
|
|
7515
|
+
let localVarPath = `/waveConfigGroups/clients`;
|
|
7516
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7517
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7518
|
+
context: localVarHttpContext,
|
|
7519
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7520
|
+
responseType: responseType_,
|
|
7521
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7522
|
+
headers: localVarHeaders,
|
|
7523
|
+
observe: observe,
|
|
7524
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7525
|
+
reportProgress: reportProgress
|
|
7526
|
+
});
|
|
7527
|
+
}
|
|
7487
7528
|
getWaveConfigGroupConfigurations(waveConfigGroupId, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7488
7529
|
if (waveConfigGroupId === null || waveConfigGroupId === undefined) {
|
|
7489
7530
|
throw new Error('Required parameter waveConfigGroupId was null or undefined when calling getWaveConfigGroupConfigurations.');
|