@indigina/wms-api 0.0.131 → 0.0.133

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.131
1
+ # @indigina/wms-api@0.0.133
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.131 --save
27
+ npm install @indigina/wms-api@0.0.133 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -6093,7 +6093,7 @@ class UserPrintersService extends BaseService {
6093
6093
  reportProgress: reportProgress
6094
6094
  });
6095
6095
  }
6096
- updateUserPrinters(userPrinter, observe = 'body', reportProgress = false, options) {
6096
+ updateUserPrinters(userPrinterUpdateModel, observe = 'body', reportProgress = false, options) {
6097
6097
  let localVarHeaders = this.defaultHeaders;
6098
6098
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
6099
6099
  if (localVarHttpHeaderAcceptSelected !== undefined) {
@@ -6125,7 +6125,7 @@ class UserPrintersService extends BaseService {
6125
6125
  const { basePath, withCredentials } = this.configuration;
6126
6126
  return this.httpClient.request('put', `${basePath}${localVarPath}`, {
6127
6127
  context: localVarHttpContext,
6128
- body: userPrinter,
6128
+ body: userPrinterUpdateModel,
6129
6129
  responseType: responseType_,
6130
6130
  ...(withCredentials ? { withCredentials } : {}),
6131
6131
  headers: localVarHeaders,