@indigina/wms-api 0.0.169 → 0.0.170
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.170
|
|
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.170 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -7848,6 +7848,47 @@ class WaveConfigurationsService extends BaseService {
|
|
|
7848
7848
|
super(basePath, configuration);
|
|
7849
7849
|
this.httpClient = httpClient;
|
|
7850
7850
|
}
|
|
7851
|
+
getWaveConfigurationClients($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7852
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7853
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
7854
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
7855
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
7856
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
7857
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
7858
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7859
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7860
|
+
'application/json'
|
|
7861
|
+
]);
|
|
7862
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7863
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7864
|
+
}
|
|
7865
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7866
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7867
|
+
let responseType_ = 'json';
|
|
7868
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7869
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7870
|
+
responseType_ = 'text';
|
|
7871
|
+
}
|
|
7872
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7873
|
+
responseType_ = 'json';
|
|
7874
|
+
}
|
|
7875
|
+
else {
|
|
7876
|
+
responseType_ = 'blob';
|
|
7877
|
+
}
|
|
7878
|
+
}
|
|
7879
|
+
let localVarPath = `/waveConfigurations/clients`;
|
|
7880
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7881
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7882
|
+
context: localVarHttpContext,
|
|
7883
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7884
|
+
responseType: responseType_,
|
|
7885
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7886
|
+
headers: localVarHeaders,
|
|
7887
|
+
observe: observe,
|
|
7888
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7889
|
+
reportProgress: reportProgress
|
|
7890
|
+
});
|
|
7891
|
+
}
|
|
7851
7892
|
getWaveConfigurations($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7852
7893
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7853
7894
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|