@teemill/platform 0.56.0 → 0.58.0

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
- ## @teemill/platform@0.56.0
1
+ ## @teemill/platform@0.58.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/platform@0.56.0 --save
39
+ npm install @teemill/platform@0.58.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -166,6 +166,7 @@ Class | Method | HTTP request | Description
166
166
  - [ModerateReviewRequest](docs/ModerateReviewRequest.md)
167
167
  - [Option](docs/Option.md)
168
168
  - [Order](docs/Order.md)
169
+ - [OrderAdditionalFilesInner](docs/OrderAdditionalFilesInner.md)
169
170
  - [OrderItem](docs/OrderItem.md)
170
171
  - [OrderItem1](docs/OrderItem1.md)
171
172
  - [OrderItem1Price](docs/OrderItem1Price.md)
@@ -205,6 +206,7 @@ Class | Method | HTTP request | Description
205
206
  - [UpdateFulfillmentRequest](docs/UpdateFulfillmentRequest.md)
206
207
  - [UpdateModerationItemRequest](docs/UpdateModerationItemRequest.md)
207
208
  - [UpdateOrderRequest](docs/UpdateOrderRequest.md)
209
+ - [UpdateOrderRequestAdditionalFilesInner](docs/UpdateOrderRequestAdditionalFilesInner.md)
208
210
  - [UpdatePlatformFulfillmentStyleApplicationRequest](docs/UpdatePlatformFulfillmentStyleApplicationRequest.md)
209
211
  - [UpdatePlatformRequest](docs/UpdatePlatformRequest.md)
210
212
  - [ValidationError](docs/ValidationError.md)
package/api.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.56.0
7
+ * The version of the OpenAPI document: 0.58.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -668,9 +668,14 @@ export interface Order {
668
668
  'bulk'?: boolean;
669
669
  'priorityLevel': PriorityLevel;
670
670
  'warnings'?: Array<string>;
671
+ 'additionalFiles'?: Array<OrderAdditionalFilesInner>;
671
672
  }
672
673
 
673
674
 
675
+ export interface OrderAdditionalFilesInner {
676
+ 'src': string;
677
+ 'name': string;
678
+ }
674
679
  export interface OrderItem {
675
680
  /**
676
681
  * Unique object identifier
@@ -1090,9 +1095,14 @@ export interface UpdateOrderRequest {
1090
1095
  'billingAddress'?: Address;
1091
1096
  'shippingAddress'?: Address;
1092
1097
  'priorityLevel'?: PriorityLevel;
1098
+ 'additionalFiles'?: Array<UpdateOrderRequestAdditionalFilesInner>;
1093
1099
  }
1094
1100
 
1095
1101
 
1102
+ export interface UpdateOrderRequestAdditionalFilesInner {
1103
+ 'src': string;
1104
+ 'name': string;
1105
+ }
1096
1106
  export interface UpdatePlatformFulfillmentStyleApplicationRequest {
1097
1107
  'design'?: string;
1098
1108
  }
package/base.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.56.0
7
+ * The version of the OpenAPI document: 0.58.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.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.56.0
7
+ * The version of the OpenAPI document: 0.58.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Platform API
4
4
  * Manage Your podOS platform
5
5
  *
6
- * The version of the OpenAPI document: 0.56.0
6
+ * The version of the OpenAPI document: 0.58.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -637,6 +637,11 @@ export interface Order {
637
637
  'bulk'?: boolean;
638
638
  'priorityLevel': PriorityLevel;
639
639
  'warnings'?: Array<string>;
640
+ 'additionalFiles'?: Array<OrderAdditionalFilesInner>;
641
+ }
642
+ export interface OrderAdditionalFilesInner {
643
+ 'src': string;
644
+ 'name': string;
640
645
  }
641
646
  export interface OrderItem {
642
647
  /**
@@ -1038,6 +1043,11 @@ export interface UpdateOrderRequest {
1038
1043
  'billingAddress'?: Address;
1039
1044
  'shippingAddress'?: Address;
1040
1045
  'priorityLevel'?: PriorityLevel;
1046
+ 'additionalFiles'?: Array<UpdateOrderRequestAdditionalFilesInner>;
1047
+ }
1048
+ export interface UpdateOrderRequestAdditionalFilesInner {
1049
+ 'src': string;
1050
+ 'name': string;
1041
1051
  }
1042
1052
  export interface UpdatePlatformFulfillmentStyleApplicationRequest {
1043
1053
  'design'?: string;
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.56.0
8
+ * The version of the OpenAPI document: 0.58.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.56.0
8
+ * The version of the OpenAPI document: 0.58.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.56.0
8
+ * The version of the OpenAPI document: 0.58.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.56.0
7
+ * The version of the OpenAPI document: 0.58.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -637,6 +637,11 @@ export interface Order {
637
637
  'bulk'?: boolean;
638
638
  'priorityLevel': PriorityLevel;
639
639
  'warnings'?: Array<string>;
640
+ 'additionalFiles'?: Array<OrderAdditionalFilesInner>;
641
+ }
642
+ export interface OrderAdditionalFilesInner {
643
+ 'src': string;
644
+ 'name': string;
640
645
  }
641
646
  export interface OrderItem {
642
647
  /**
@@ -1038,6 +1043,11 @@ export interface UpdateOrderRequest {
1038
1043
  'billingAddress'?: Address;
1039
1044
  'shippingAddress'?: Address;
1040
1045
  'priorityLevel'?: PriorityLevel;
1046
+ 'additionalFiles'?: Array<UpdateOrderRequestAdditionalFilesInner>;
1047
+ }
1048
+ export interface UpdateOrderRequestAdditionalFilesInner {
1049
+ 'src': string;
1050
+ 'name': string;
1041
1051
  }
1042
1052
  export interface UpdatePlatformFulfillmentStyleApplicationRequest {
1043
1053
  'design'?: string;
package/dist/esm/api.js 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.56.0
7
+ * The version of the OpenAPI document: 0.58.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js 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.56.0
7
+ * The version of the OpenAPI document: 0.58.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.56.0
7
+ * The version of the OpenAPI document: 0.58.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,7 +3,7 @@
3
3
  * Platform API
4
4
  * Manage Your podOS platform
5
5
  *
6
- * The version of the OpenAPI document: 0.56.0
6
+ * The version of the OpenAPI document: 0.58.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js 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.56.0
7
+ * The version of the OpenAPI document: 0.58.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.56.0
5
+ * The version of the OpenAPI document: 0.58.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.56.0
8
+ * The version of the OpenAPI document: 0.58.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/docs/Order.md CHANGED
@@ -35,6 +35,7 @@ Name | Type | Description | Notes
35
35
  **bulk** | **boolean** | Whether this order will go through the bulk production flow or not | [optional] [default to undefined]
36
36
  **priorityLevel** | [**PriorityLevel**](PriorityLevel.md) | | [default to undefined]
37
37
  **warnings** | **Array&lt;string&gt;** | | [optional] [default to undefined]
38
+ **additionalFiles** | [**Array&lt;OrderAdditionalFilesInner&gt;**](OrderAdditionalFilesInner.md) | | [optional] [default to undefined]
38
39
 
39
40
  ## Example
40
41
 
@@ -72,6 +73,7 @@ const instance: Order = {
72
73
  bulk,
73
74
  priorityLevel,
74
75
  warnings,
76
+ additionalFiles,
75
77
  };
76
78
  ```
77
79
 
@@ -0,0 +1,22 @@
1
+ # OrderAdditionalFilesInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **src** | **string** | | [default to undefined]
9
+ **name** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { OrderAdditionalFilesInner } from '@teemill/platform';
15
+
16
+ const instance: OrderAdditionalFilesInner = {
17
+ src,
18
+ name,
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)
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
  **billingAddress** | [**Address**](Address.md) | | [optional] [default to undefined]
10
10
  **shippingAddress** | [**Address**](Address.md) | | [optional] [default to undefined]
11
11
  **priorityLevel** | [**PriorityLevel**](PriorityLevel.md) | | [optional] [default to undefined]
12
+ **additionalFiles** | [**Array&lt;UpdateOrderRequestAdditionalFilesInner&gt;**](UpdateOrderRequestAdditionalFilesInner.md) | | [optional] [default to undefined]
12
13
 
13
14
  ## Example
14
15
 
@@ -20,6 +21,7 @@ const instance: UpdateOrderRequest = {
20
21
  billingAddress,
21
22
  shippingAddress,
22
23
  priorityLevel,
24
+ additionalFiles,
23
25
  };
24
26
  ```
25
27
 
@@ -0,0 +1,22 @@
1
+ # UpdateOrderRequestAdditionalFilesInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **src** | **string** | | [default to undefined]
9
+ **name** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { UpdateOrderRequestAdditionalFilesInner } from '@teemill/platform';
15
+
16
+ const instance: UpdateOrderRequestAdditionalFilesInner = {
17
+ src,
18
+ name,
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.56.0
7
+ * The version of the OpenAPI document: 0.58.0
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.56.0",
3
+ "version": "0.58.0",
4
4
  "description": "OpenAPI client for @teemill/platform",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "prepare": "npm run build"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "1.12.2"
27
+ "axios": "1.13.5"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "12.11.5 - 12.20.42",