@indigina/wms-api 0.0.143 → 0.0.145
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.145
|
|
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.145 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -6932,7 +6932,10 @@ class WavePickReleasesService extends BaseService {
|
|
|
6932
6932
|
reportProgress: reportProgress
|
|
6933
6933
|
});
|
|
6934
6934
|
}
|
|
6935
|
-
getWavePickReleasesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
6935
|
+
getWavePickReleasesFromIndex(pickReleaseHistoryType, $skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
6936
|
+
if (pickReleaseHistoryType === null || pickReleaseHistoryType === undefined) {
|
|
6937
|
+
throw new Error('Required parameter pickReleaseHistoryType was null or undefined when calling getWavePickReleasesFromIndex.');
|
|
6938
|
+
}
|
|
6936
6939
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6937
6940
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
6938
6941
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
@@ -6960,7 +6963,7 @@ class WavePickReleasesService extends BaseService {
|
|
|
6960
6963
|
responseType_ = 'blob';
|
|
6961
6964
|
}
|
|
6962
6965
|
}
|
|
6963
|
-
let localVarPath = `/wavePickReleases/search`;
|
|
6966
|
+
let localVarPath = `/wavePickReleases/history/${this.configuration.encodeParam({ name: "pickReleaseHistoryType", value: pickReleaseHistoryType, in: "path", style: "simple", explode: false, dataType: "PickReleaseHistoryTypes", dataFormat: undefined })}/search`;
|
|
6964
6967
|
const { basePath, withCredentials } = this.configuration;
|
|
6965
6968
|
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
6966
6969
|
context: localVarHttpContext,
|