@teemill/platform 0.33.0 → 0.34.1

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.
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **returns** | [**Array<AmendOrderRequestAmendmentsInner>**](AmendOrderRequestAmendmentsInner.md) | | [default to undefined]
8
+ **returns** | [**Array<ReturnOrderRequestReturnsInner>**](ReturnOrderRequestReturnsInner.md) | | [default to undefined]
9
9
 
10
10
  ## Example
11
11
 
@@ -0,0 +1,28 @@
1
+ # ReturnOrderRequestReturnsInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | Unique order item identifier | [default to undefined]
9
+ **action** | **string** | | [default to undefined]
10
+ **quantity** | **number** | The quantity of the item to refund or exchange. This must be less than or equal to the quantity of the item in the order. | [default to undefined]
11
+ **newVariantRef** | **string** | A reference to the variant being ordered | [optional] [default to undefined]
12
+ **reason** | [**ReturnOrderRequestReturnsInnerReason**](ReturnOrderRequestReturnsInnerReason.md) | | [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { ReturnOrderRequestReturnsInner } from '@teemill/platform';
18
+
19
+ const instance: ReturnOrderRequestReturnsInner = {
20
+ id,
21
+ action,
22
+ quantity,
23
+ newVariantRef,
24
+ reason,
25
+ };
26
+ ```
27
+
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,22 @@
1
+ # ReturnOrderRequestReturnsInnerReason
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **reasonRef** | **string** | A reference to the reason for the return or exchange. | [default to undefined]
9
+ **additionalComments** | **string** | Additional comments as to why the item is being returned or exchanged. | [optional] [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ReturnOrderRequestReturnsInnerReason } from '@teemill/platform';
15
+
16
+ const instance: ReturnOrderRequestReturnsInnerReason = {
17
+ reasonRef,
18
+ additionalComments,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.33.0
7
+ * The version of the OpenAPI document: 0.34.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/platform",
3
- "version": "0.33.0",
3
+ "version": "0.34.1",
4
4
  "description": "OpenAPI client for @teemill/platform",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {