@teemill/platform 0.52.0 → 0.54.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 +7 -2
- package/api.ts +307 -70
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +134 -2
- package/dist/api.js +232 -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 +134 -2
- package/dist/esm/api.js +230 -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/Customer.md +2 -0
- package/docs/CustomersApi.md +66 -0
- package/docs/Order.md +5 -1
- package/docs/OrdersApi.md +66 -0
- package/docs/PriorityLevel.md +10 -0
- package/docs/UpdateCustomerRequest.md +26 -0
- package/docs/UpdateOrderRequest.md +26 -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.54.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.54.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -56,6 +56,7 @@ Class | Method | HTTP request | Description
|
|
|
56
56
|
*CustomersApi* | [**getCustomer**](docs/CustomersApi.md#getcustomer) | **GET** /v1/platform/{platformId}/customers/{customerId} | Get customer
|
|
57
57
|
*CustomersApi* | [**listCustomerTags**](docs/CustomersApi.md#listcustomertags) | **GET** /v1/platform/{platformId}/customers/tags | List customer tags
|
|
58
58
|
*CustomersApi* | [**listCustomers**](docs/CustomersApi.md#listcustomers) | **GET** /v1/platform/{platformId}/customers | List customers
|
|
59
|
+
*CustomersApi* | [**updateCustomer**](docs/CustomersApi.md#updatecustomer) | **PATCH** /v1/platform/{platformId}/customers/{customerId} | Update the customer with the given customer ID
|
|
59
60
|
*DashboardApi* | [**getDashboard**](docs/DashboardApi.md#getdashboard) | **GET** /v1/platform/{platformId}/dashboard | Get the platform\'s dashboard
|
|
60
61
|
*DashboardApi* | [**saveDashboard**](docs/DashboardApi.md#savedashboard) | **PUT** /v1/platform/{platformId}/dashboard | Save the platform\'s dashboard
|
|
61
62
|
*EnquiriesApi* | [**createCustomerEnquiryChatChannel**](docs/EnquiriesApi.md#createcustomerenquirychatchannel) | **POST** /v1/platform/{platformId}/customers/enquiries/{enquiryId}/chat-channel | Create chat channel
|
|
@@ -78,6 +79,7 @@ Class | Method | HTTP request | Description
|
|
|
78
79
|
*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
80
|
*OrdersApi* | [**sendOrderReceipt**](docs/OrdersApi.md#sendorderreceipt) | **POST** /v1/platform/{platformId}/orders/{orderId}/receipt/send | Send order receipt
|
|
80
81
|
*OrdersApi* | [**updateFulfillment**](docs/OrdersApi.md#updatefulfillment) | **PATCH** /v1/platform/{platformId}/fulfillments/{fulfillmentId} | Update fulfillment
|
|
82
|
+
*OrdersApi* | [**updateOrder**](docs/OrdersApi.md#updateorder) | **PATCH** /v1/platform/{platformId}/orders/{orderId} | Update order
|
|
81
83
|
*OrdersApi* | [**updatePlatformFulfillmentStyleApplication**](docs/OrdersApi.md#updateplatformfulfillmentstyleapplication) | **PATCH** /v1/platform/{platformId}/styles/{styleId}/applications/{applicationId} | Update platform fulfillment style application
|
|
82
84
|
*PaymentApi* | [**authorizeStripe**](docs/PaymentApi.md#authorizestripe) | **GET** /v1/platform/payment/stripe/authorize | Authorize Stripe
|
|
83
85
|
*PaymentApi* | [**deauthorizeStripe**](docs/PaymentApi.md#deauthorizestripe) | **DELETE** /v1/platform/payment/stripe/deauthorize | Deauthorize Stripe
|
|
@@ -177,6 +179,7 @@ Class | Method | HTTP request | Description
|
|
|
177
179
|
- [PlatformLogo](docs/PlatformLogo.md)
|
|
178
180
|
- [Price](docs/Price.md)
|
|
179
181
|
- [PrintArea](docs/PrintArea.md)
|
|
182
|
+
- [PriorityLevel](docs/PriorityLevel.md)
|
|
180
183
|
- [Project](docs/Project.md)
|
|
181
184
|
- [ReturnOrderRequest](docs/ReturnOrderRequest.md)
|
|
182
185
|
- [ReturnOrderRequestReturnsInner](docs/ReturnOrderRequestReturnsInner.md)
|
|
@@ -195,8 +198,10 @@ Class | Method | HTTP request | Description
|
|
|
195
198
|
- [StatusHistoryItem](docs/StatusHistoryItem.md)
|
|
196
199
|
- [Terms](docs/Terms.md)
|
|
197
200
|
- [UpdateCustomerEnquiryRequest](docs/UpdateCustomerEnquiryRequest.md)
|
|
201
|
+
- [UpdateCustomerRequest](docs/UpdateCustomerRequest.md)
|
|
198
202
|
- [UpdateFulfillmentRequest](docs/UpdateFulfillmentRequest.md)
|
|
199
203
|
- [UpdateModerationItemRequest](docs/UpdateModerationItemRequest.md)
|
|
204
|
+
- [UpdateOrderRequest](docs/UpdateOrderRequest.md)
|
|
200
205
|
- [UpdatePlatformFulfillmentStyleApplicationRequest](docs/UpdatePlatformFulfillmentStyleApplicationRequest.md)
|
|
201
206
|
- [UpdatePlatformRequest](docs/UpdatePlatformRequest.md)
|
|
202
207
|
- [ValidationError](docs/ValidationError.md)
|