@indigina/wms-api 0.0.166 → 0.0.168
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.168
|
|
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.168 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -4153,7 +4153,7 @@ class PickSummariesService extends BaseService {
|
|
|
4153
4153
|
super(basePath, configuration);
|
|
4154
4154
|
this.httpClient = httpClient;
|
|
4155
4155
|
}
|
|
4156
|
-
getPickSummaries(from, to, observe = 'body', reportProgress = false, options) {
|
|
4156
|
+
getPickSummaries(from, to, $skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
4157
4157
|
if (from === null || from === undefined) {
|
|
4158
4158
|
throw new Error('Required parameter from was null or undefined when calling getPickSummaries.');
|
|
4159
4159
|
}
|
|
@@ -4163,6 +4163,10 @@ class PickSummariesService extends BaseService {
|
|
|
4163
4163
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
4164
4164
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'from', from, QueryParamStyle.Form, true);
|
|
4165
4165
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'to', to, QueryParamStyle.Form, true);
|
|
4166
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
4167
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
4168
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
4169
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
4166
4170
|
let localVarHeaders = this.defaultHeaders;
|
|
4167
4171
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
4168
4172
|
'application/json'
|