@teemill/platform 0.56.1 → 0.59.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 +4 -2
- package/api.ts +25 -7
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +24 -6
- package/dist/api.js +3 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +24 -6
- package/dist/esm/api.js +3 -2
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AmendmentLog.md +5 -3
- package/docs/Order.md +2 -0
- package/docs/OrderAdditionalFilesInner.md +22 -0
- package/docs/UpdateOrderRequest.md +2 -0
- package/docs/UpdateOrderRequestAdditionalFilesInner.md +22 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/platform@0.
|
|
1
|
+
## @teemill/platform@0.59.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.
|
|
39
|
+
npm install @teemill/platform@0.59.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.
|
|
7
|
+
* The version of the OpenAPI document: 0.59.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -97,15 +97,22 @@ export interface AmendmentLog {
|
|
|
97
97
|
*/
|
|
98
98
|
'id': string;
|
|
99
99
|
/**
|
|
100
|
-
* A reference to the order
|
|
100
|
+
* A reference to the order that was amended.
|
|
101
101
|
*/
|
|
102
|
-
'
|
|
102
|
+
'orderId'?: string | null;
|
|
103
103
|
/**
|
|
104
|
-
* A reference to the
|
|
104
|
+
* A reference to the order item that was amended. Null for shipping_refund amendments.
|
|
105
105
|
*/
|
|
106
|
-
'
|
|
106
|
+
'orderItemId'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
* A reference to the top level order item that was amended, useful for finding the original item within a chain of exchanges, for example. Null for shipping_refund amendments.
|
|
109
|
+
*/
|
|
110
|
+
'originalOrderItemId'?: string | null;
|
|
107
111
|
'amendmentType': AmendmentLogAmendmentTypeEnum;
|
|
108
|
-
|
|
112
|
+
/**
|
|
113
|
+
* The quantity of the item that was amended, if applicable to the amendment type.
|
|
114
|
+
*/
|
|
115
|
+
'quantity'?: number | null;
|
|
109
116
|
/**
|
|
110
117
|
* ISO 8601 Timestamp
|
|
111
118
|
*/
|
|
@@ -114,7 +121,8 @@ export interface AmendmentLog {
|
|
|
114
121
|
|
|
115
122
|
export const AmendmentLogAmendmentTypeEnum = {
|
|
116
123
|
Refund: 'refund',
|
|
117
|
-
Exchange: 'exchange'
|
|
124
|
+
Exchange: 'exchange',
|
|
125
|
+
ShippingRefund: 'shipping_refund'
|
|
118
126
|
} as const;
|
|
119
127
|
|
|
120
128
|
export type AmendmentLogAmendmentTypeEnum = typeof AmendmentLogAmendmentTypeEnum[keyof typeof AmendmentLogAmendmentTypeEnum];
|
|
@@ -668,9 +676,14 @@ export interface Order {
|
|
|
668
676
|
'bulk'?: boolean;
|
|
669
677
|
'priorityLevel': PriorityLevel;
|
|
670
678
|
'warnings'?: Array<string>;
|
|
679
|
+
'additionalFiles'?: Array<OrderAdditionalFilesInner>;
|
|
671
680
|
}
|
|
672
681
|
|
|
673
682
|
|
|
683
|
+
export interface OrderAdditionalFilesInner {
|
|
684
|
+
'src': string;
|
|
685
|
+
'name': string;
|
|
686
|
+
}
|
|
674
687
|
export interface OrderItem {
|
|
675
688
|
/**
|
|
676
689
|
* Unique object identifier
|
|
@@ -1090,9 +1103,14 @@ export interface UpdateOrderRequest {
|
|
|
1090
1103
|
'billingAddress'?: Address;
|
|
1091
1104
|
'shippingAddress'?: Address;
|
|
1092
1105
|
'priorityLevel'?: PriorityLevel;
|
|
1106
|
+
'additionalFiles'?: Array<UpdateOrderRequestAdditionalFilesInner>;
|
|
1093
1107
|
}
|
|
1094
1108
|
|
|
1095
1109
|
|
|
1110
|
+
export interface UpdateOrderRequestAdditionalFilesInner {
|
|
1111
|
+
'src': string;
|
|
1112
|
+
'name': string;
|
|
1113
|
+
}
|
|
1096
1114
|
export interface UpdatePlatformFulfillmentStyleApplicationRequest {
|
|
1097
1115
|
'design'?: string;
|
|
1098
1116
|
}
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
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.
|
|
5
|
+
* The version of the OpenAPI document: 0.59.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -84,15 +84,22 @@ export interface AmendmentLog {
|
|
|
84
84
|
*/
|
|
85
85
|
'id': string;
|
|
86
86
|
/**
|
|
87
|
-
* A reference to the order
|
|
87
|
+
* A reference to the order that was amended.
|
|
88
88
|
*/
|
|
89
|
-
'
|
|
89
|
+
'orderId'?: string | null;
|
|
90
90
|
/**
|
|
91
|
-
* A reference to the
|
|
91
|
+
* A reference to the order item that was amended. Null for shipping_refund amendments.
|
|
92
92
|
*/
|
|
93
|
-
'
|
|
93
|
+
'orderItemId'?: string | null;
|
|
94
|
+
/**
|
|
95
|
+
* A reference to the top level order item that was amended, useful for finding the original item within a chain of exchanges, for example. Null for shipping_refund amendments.
|
|
96
|
+
*/
|
|
97
|
+
'originalOrderItemId'?: string | null;
|
|
94
98
|
'amendmentType': AmendmentLogAmendmentTypeEnum;
|
|
95
|
-
|
|
99
|
+
/**
|
|
100
|
+
* The quantity of the item that was amended, if applicable to the amendment type.
|
|
101
|
+
*/
|
|
102
|
+
'quantity'?: number | null;
|
|
96
103
|
/**
|
|
97
104
|
* ISO 8601 Timestamp
|
|
98
105
|
*/
|
|
@@ -101,6 +108,7 @@ export interface AmendmentLog {
|
|
|
101
108
|
export declare const AmendmentLogAmendmentTypeEnum: {
|
|
102
109
|
readonly Refund: "refund";
|
|
103
110
|
readonly Exchange: "exchange";
|
|
111
|
+
readonly ShippingRefund: "shipping_refund";
|
|
104
112
|
};
|
|
105
113
|
export type AmendmentLogAmendmentTypeEnum = typeof AmendmentLogAmendmentTypeEnum[keyof typeof AmendmentLogAmendmentTypeEnum];
|
|
106
114
|
export interface ApiError {
|
|
@@ -637,6 +645,11 @@ export interface Order {
|
|
|
637
645
|
'bulk'?: boolean;
|
|
638
646
|
'priorityLevel': PriorityLevel;
|
|
639
647
|
'warnings'?: Array<string>;
|
|
648
|
+
'additionalFiles'?: Array<OrderAdditionalFilesInner>;
|
|
649
|
+
}
|
|
650
|
+
export interface OrderAdditionalFilesInner {
|
|
651
|
+
'src': string;
|
|
652
|
+
'name': string;
|
|
640
653
|
}
|
|
641
654
|
export interface OrderItem {
|
|
642
655
|
/**
|
|
@@ -1038,6 +1051,11 @@ export interface UpdateOrderRequest {
|
|
|
1038
1051
|
'billingAddress'?: Address;
|
|
1039
1052
|
'shippingAddress'?: Address;
|
|
1040
1053
|
'priorityLevel'?: PriorityLevel;
|
|
1054
|
+
'additionalFiles'?: Array<UpdateOrderRequestAdditionalFilesInner>;
|
|
1055
|
+
}
|
|
1056
|
+
export interface UpdateOrderRequestAdditionalFilesInner {
|
|
1057
|
+
'src': string;
|
|
1058
|
+
'name': string;
|
|
1041
1059
|
}
|
|
1042
1060
|
export interface UpdatePlatformFulfillmentStyleApplicationRequest {
|
|
1043
1061
|
'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.
|
|
8
|
+
* The version of the OpenAPI document: 0.59.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -36,7 +36,8 @@ exports.AmendOrderRequestAmendmentsInnerActionEnum = {
|
|
|
36
36
|
};
|
|
37
37
|
exports.AmendmentLogAmendmentTypeEnum = {
|
|
38
38
|
Refund: 'refund',
|
|
39
|
-
Exchange: 'exchange'
|
|
39
|
+
Exchange: 'exchange',
|
|
40
|
+
ShippingRefund: 'shipping_refund'
|
|
40
41
|
};
|
|
41
42
|
exports.ApplicationPlacementEnum = {
|
|
42
43
|
Front: 'front',
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
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.
|
|
5
|
+
* The version of the OpenAPI document: 0.59.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -84,15 +84,22 @@ export interface AmendmentLog {
|
|
|
84
84
|
*/
|
|
85
85
|
'id': string;
|
|
86
86
|
/**
|
|
87
|
-
* A reference to the order
|
|
87
|
+
* A reference to the order that was amended.
|
|
88
88
|
*/
|
|
89
|
-
'
|
|
89
|
+
'orderId'?: string | null;
|
|
90
90
|
/**
|
|
91
|
-
* A reference to the
|
|
91
|
+
* A reference to the order item that was amended. Null for shipping_refund amendments.
|
|
92
92
|
*/
|
|
93
|
-
'
|
|
93
|
+
'orderItemId'?: string | null;
|
|
94
|
+
/**
|
|
95
|
+
* A reference to the top level order item that was amended, useful for finding the original item within a chain of exchanges, for example. Null for shipping_refund amendments.
|
|
96
|
+
*/
|
|
97
|
+
'originalOrderItemId'?: string | null;
|
|
94
98
|
'amendmentType': AmendmentLogAmendmentTypeEnum;
|
|
95
|
-
|
|
99
|
+
/**
|
|
100
|
+
* The quantity of the item that was amended, if applicable to the amendment type.
|
|
101
|
+
*/
|
|
102
|
+
'quantity'?: number | null;
|
|
96
103
|
/**
|
|
97
104
|
* ISO 8601 Timestamp
|
|
98
105
|
*/
|
|
@@ -101,6 +108,7 @@ export interface AmendmentLog {
|
|
|
101
108
|
export declare const AmendmentLogAmendmentTypeEnum: {
|
|
102
109
|
readonly Refund: "refund";
|
|
103
110
|
readonly Exchange: "exchange";
|
|
111
|
+
readonly ShippingRefund: "shipping_refund";
|
|
104
112
|
};
|
|
105
113
|
export type AmendmentLogAmendmentTypeEnum = typeof AmendmentLogAmendmentTypeEnum[keyof typeof AmendmentLogAmendmentTypeEnum];
|
|
106
114
|
export interface ApiError {
|
|
@@ -637,6 +645,11 @@ export interface Order {
|
|
|
637
645
|
'bulk'?: boolean;
|
|
638
646
|
'priorityLevel': PriorityLevel;
|
|
639
647
|
'warnings'?: Array<string>;
|
|
648
|
+
'additionalFiles'?: Array<OrderAdditionalFilesInner>;
|
|
649
|
+
}
|
|
650
|
+
export interface OrderAdditionalFilesInner {
|
|
651
|
+
'src': string;
|
|
652
|
+
'name': string;
|
|
640
653
|
}
|
|
641
654
|
export interface OrderItem {
|
|
642
655
|
/**
|
|
@@ -1038,6 +1051,11 @@ export interface UpdateOrderRequest {
|
|
|
1038
1051
|
'billingAddress'?: Address;
|
|
1039
1052
|
'shippingAddress'?: Address;
|
|
1040
1053
|
'priorityLevel'?: PriorityLevel;
|
|
1054
|
+
'additionalFiles'?: Array<UpdateOrderRequestAdditionalFilesInner>;
|
|
1055
|
+
}
|
|
1056
|
+
export interface UpdateOrderRequestAdditionalFilesInner {
|
|
1057
|
+
'src': string;
|
|
1058
|
+
'name': string;
|
|
1041
1059
|
}
|
|
1042
1060
|
export interface UpdatePlatformFulfillmentStyleApplicationRequest {
|
|
1043
1061
|
'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.
|
|
7
|
+
* The version of the OpenAPI document: 0.59.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -32,7 +32,8 @@ export const AmendOrderRequestAmendmentsInnerActionEnum = {
|
|
|
32
32
|
};
|
|
33
33
|
export const AmendmentLogAmendmentTypeEnum = {
|
|
34
34
|
Refund: 'refund',
|
|
35
|
-
Exchange: 'exchange'
|
|
35
|
+
Exchange: 'exchange',
|
|
36
|
+
ShippingRefund: 'shipping_refund'
|
|
36
37
|
};
|
|
37
38
|
export const ApplicationPlacementEnum = {
|
|
38
39
|
Front: 'front',
|
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/docs/AmendmentLog.md
CHANGED
|
@@ -6,10 +6,11 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | Unique object identifier | [default to undefined]
|
|
9
|
-
**
|
|
10
|
-
**
|
|
9
|
+
**orderId** | **string** | A reference to the order that was amended. | [optional] [default to undefined]
|
|
10
|
+
**orderItemId** | **string** | A reference to the order item that was amended. Null for shipping_refund amendments. | [optional] [default to undefined]
|
|
11
|
+
**originalOrderItemId** | **string** | A reference to the top level order item that was amended, useful for finding the original item within a chain of exchanges, for example. Null for shipping_refund amendments. | [optional] [default to undefined]
|
|
11
12
|
**amendmentType** | **string** | | [default to undefined]
|
|
12
|
-
**quantity** | **number** |
|
|
13
|
+
**quantity** | **number** | The quantity of the item that was amended, if applicable to the amendment type. | [optional] [default to undefined]
|
|
13
14
|
**createdAt** | **string** | ISO 8601 Timestamp | [default to undefined]
|
|
14
15
|
|
|
15
16
|
## Example
|
|
@@ -19,6 +20,7 @@ import { AmendmentLog } from '@teemill/platform';
|
|
|
19
20
|
|
|
20
21
|
const instance: AmendmentLog = {
|
|
21
22
|
id,
|
|
23
|
+
orderId,
|
|
22
24
|
orderItemId,
|
|
23
25
|
originalOrderItemId,
|
|
24
26
|
amendmentType,
|
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<string>** | | [optional] [default to undefined]
|
|
38
|
+
**additionalFiles** | [**Array<OrderAdditionalFilesInner>**](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<UpdateOrderRequestAdditionalFilesInner>**](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