@teemill/platform 0.51.1 → 0.53.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 +5 -2
- package/api.ts +189 -69
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +74 -1
- package/dist/api.js +145 -3
- 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 +74 -1
- package/dist/esm/api.js +143 -1
- 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/Fulfillment.md +2 -0
- package/docs/Order.md +6 -0
- package/docs/OrdersApi.md +66 -0
- package/docs/PriorityLevel.md +10 -0
- package/docs/UpdateOrderRequest.md +24 -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.53.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.53.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -78,6 +78,7 @@ Class | Method | HTTP request | Description
|
|
|
78
78
|
*OrdersApi* | [**returnOrder**](docs/OrdersApi.md#returnorder) | **PATCH** /v1/platform/{platformId}/orders/{orderId}/return | Return the contents of an order for a refund or exchange
|
|
79
79
|
*OrdersApi* | [**sendOrderReceipt**](docs/OrdersApi.md#sendorderreceipt) | **POST** /v1/platform/{platformId}/orders/{orderId}/receipt/send | Send order receipt
|
|
80
80
|
*OrdersApi* | [**updateFulfillment**](docs/OrdersApi.md#updatefulfillment) | **PATCH** /v1/platform/{platformId}/fulfillments/{fulfillmentId} | Update fulfillment
|
|
81
|
+
*OrdersApi* | [**updateOrder**](docs/OrdersApi.md#updateorder) | **PATCH** /v1/platform/{platformId}/orders/{orderId} | Update order
|
|
81
82
|
*OrdersApi* | [**updatePlatformFulfillmentStyleApplication**](docs/OrdersApi.md#updateplatformfulfillmentstyleapplication) | **PATCH** /v1/platform/{platformId}/styles/{styleId}/applications/{applicationId} | Update platform fulfillment style application
|
|
82
83
|
*PaymentApi* | [**authorizeStripe**](docs/PaymentApi.md#authorizestripe) | **GET** /v1/platform/payment/stripe/authorize | Authorize Stripe
|
|
83
84
|
*PaymentApi* | [**deauthorizeStripe**](docs/PaymentApi.md#deauthorizestripe) | **DELETE** /v1/platform/payment/stripe/deauthorize | Deauthorize Stripe
|
|
@@ -177,6 +178,7 @@ Class | Method | HTTP request | Description
|
|
|
177
178
|
- [PlatformLogo](docs/PlatformLogo.md)
|
|
178
179
|
- [Price](docs/Price.md)
|
|
179
180
|
- [PrintArea](docs/PrintArea.md)
|
|
181
|
+
- [PriorityLevel](docs/PriorityLevel.md)
|
|
180
182
|
- [Project](docs/Project.md)
|
|
181
183
|
- [ReturnOrderRequest](docs/ReturnOrderRequest.md)
|
|
182
184
|
- [ReturnOrderRequestReturnsInner](docs/ReturnOrderRequestReturnsInner.md)
|
|
@@ -197,6 +199,7 @@ Class | Method | HTTP request | Description
|
|
|
197
199
|
- [UpdateCustomerEnquiryRequest](docs/UpdateCustomerEnquiryRequest.md)
|
|
198
200
|
- [UpdateFulfillmentRequest](docs/UpdateFulfillmentRequest.md)
|
|
199
201
|
- [UpdateModerationItemRequest](docs/UpdateModerationItemRequest.md)
|
|
202
|
+
- [UpdateOrderRequest](docs/UpdateOrderRequest.md)
|
|
200
203
|
- [UpdatePlatformFulfillmentStyleApplicationRequest](docs/UpdatePlatformFulfillmentStyleApplicationRequest.md)
|
|
201
204
|
- [UpdatePlatformRequest](docs/UpdatePlatformRequest.md)
|
|
202
205
|
- [ValidationError](docs/ValidationError.md)
|