@indigina/wms-api 0.0.120 → 0.0.121

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.120
1
+ # @indigina/wms-api@0.0.121
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.120 --save
27
+ npm install @indigina/wms-api@0.0.121 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -4153,15 +4153,13 @@ class ReplenishmentAccessesService extends BaseService {
4153
4153
  reportProgress: reportProgress
4154
4154
  });
4155
4155
  }
4156
- updateReplenishmentAccess(id, replenishmentAccess, propertiesToUpdate, observe = 'body', reportProgress = false, options) {
4156
+ updateReplenishmentAccess(id, replenishmentAccess, observe = 'body', reportProgress = false, options) {
4157
4157
  if (id === null || id === undefined) {
4158
4158
  throw new Error('Required parameter id was null or undefined when calling updateReplenishmentAccess.');
4159
4159
  }
4160
4160
  if (replenishmentAccess === null || replenishmentAccess === undefined) {
4161
4161
  throw new Error('Required parameter replenishmentAccess was null or undefined when calling updateReplenishmentAccess.');
4162
4162
  }
4163
- let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
4164
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'propertiesToUpdate', propertiesToUpdate, QueryParamStyle.Form, true);
4165
4163
  let localVarHeaders = this.defaultHeaders;
4166
4164
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
4167
4165
  'application/json'
@@ -4196,7 +4194,6 @@ class ReplenishmentAccessesService extends BaseService {
4196
4194
  return this.httpClient.request('put', `${basePath}${localVarPath}`, {
4197
4195
  context: localVarHttpContext,
4198
4196
  body: replenishmentAccess,
4199
- params: localVarQueryParameters.toHttpParams(),
4200
4197
  responseType: responseType_,
4201
4198
  ...(withCredentials ? { withCredentials } : {}),
4202
4199
  headers: localVarHeaders,