@indigina/wms-api 0.0.150 → 0.0.152
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.152
|
|
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.152 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -7367,6 +7367,47 @@ class WaveConfigGroupsService extends BaseService {
|
|
|
7367
7367
|
reportProgress: reportProgress
|
|
7368
7368
|
});
|
|
7369
7369
|
}
|
|
7370
|
+
getWaveConfigGroupsFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
7371
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7372
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
7373
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
7374
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
7375
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
7376
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
7377
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7378
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7379
|
+
'application/json'
|
|
7380
|
+
]);
|
|
7381
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7382
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7383
|
+
}
|
|
7384
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7385
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7386
|
+
let responseType_ = 'json';
|
|
7387
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7388
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7389
|
+
responseType_ = 'text';
|
|
7390
|
+
}
|
|
7391
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7392
|
+
responseType_ = 'json';
|
|
7393
|
+
}
|
|
7394
|
+
else {
|
|
7395
|
+
responseType_ = 'blob';
|
|
7396
|
+
}
|
|
7397
|
+
}
|
|
7398
|
+
let localVarPath = `/waveConfigGroups/search`;
|
|
7399
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7400
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7401
|
+
context: localVarHttpContext,
|
|
7402
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7403
|
+
responseType: responseType_,
|
|
7404
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7405
|
+
headers: localVarHeaders,
|
|
7406
|
+
observe: observe,
|
|
7407
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7408
|
+
reportProgress: reportProgress
|
|
7409
|
+
});
|
|
7410
|
+
}
|
|
7370
7411
|
updateWaveConfigGroup(id, waveConfigGroup, observe = 'body', reportProgress = false, options) {
|
|
7371
7412
|
if (id === null || id === undefined) {
|
|
7372
7413
|
throw new Error('Required parameter id was null or undefined when calling updateWaveConfigGroup.');
|