@indigina/wms-api 0.0.126 → 0.0.128

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.126
1
+ # @indigina/wms-api@0.0.128
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.126 --save
27
+ npm install @indigina/wms-api@0.0.128 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -1987,9 +1987,9 @@ class DeliveriesService extends BaseService {
1987
1987
  reportProgress: reportProgress
1988
1988
  });
1989
1989
  }
1990
- createDelivery(deliveryDataModel, observe = 'body', reportProgress = false, options) {
1991
- if (deliveryDataModel === null || deliveryDataModel === undefined) {
1992
- throw new Error('Required parameter deliveryDataModel was null or undefined when calling createDelivery.');
1990
+ createDelivery(deliveryCreateModel, observe = 'body', reportProgress = false, options) {
1991
+ if (deliveryCreateModel === null || deliveryCreateModel === undefined) {
1992
+ throw new Error('Required parameter deliveryCreateModel was null or undefined when calling createDelivery.');
1993
1993
  }
1994
1994
  let localVarHeaders = this.defaultHeaders;
1995
1995
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
@@ -2024,7 +2024,7 @@ class DeliveriesService extends BaseService {
2024
2024
  const { basePath, withCredentials } = this.configuration;
2025
2025
  return this.httpClient.request('post', `${basePath}${localVarPath}`, {
2026
2026
  context: localVarHttpContext,
2027
- body: deliveryDataModel,
2027
+ body: deliveryCreateModel,
2028
2028
  responseType: responseType_,
2029
2029
  ...(withCredentials ? { withCredentials } : {}),
2030
2030
  headers: localVarHeaders,
@@ -2225,12 +2225,12 @@ class DeliveriesService extends BaseService {
2225
2225
  reportProgress: reportProgress
2226
2226
  });
2227
2227
  }
2228
- setDelivery(id, delivery, observe = 'body', reportProgress = false, options) {
2228
+ setDelivery(id, deliveryUpdateModel, observe = 'body', reportProgress = false, options) {
2229
2229
  if (id === null || id === undefined) {
2230
2230
  throw new Error('Required parameter id was null or undefined when calling setDelivery.');
2231
2231
  }
2232
- if (delivery === null || delivery === undefined) {
2233
- throw new Error('Required parameter delivery was null or undefined when calling setDelivery.');
2232
+ if (deliveryUpdateModel === null || deliveryUpdateModel === undefined) {
2233
+ throw new Error('Required parameter deliveryUpdateModel was null or undefined when calling setDelivery.');
2234
2234
  }
2235
2235
  let localVarHeaders = this.defaultHeaders;
2236
2236
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
@@ -2265,7 +2265,7 @@ class DeliveriesService extends BaseService {
2265
2265
  const { basePath, withCredentials } = this.configuration;
2266
2266
  return this.httpClient.request('put', `${basePath}${localVarPath}`, {
2267
2267
  context: localVarHttpContext,
2268
- body: delivery,
2268
+ body: deliveryUpdateModel,
2269
2269
  responseType: responseType_,
2270
2270
  ...(withCredentials ? { withCredentials } : {}),
2271
2271
  headers: localVarHeaders,