@teemill/platform 0.27.0 → 0.29.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 +12 -2
- package/api.ts +681 -64
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +478 -42
- package/dist/api.js +289 -49
- 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 +478 -42
- package/dist/esm/api.js +288 -48
- 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/ConfirmOrderFulfillment.md +24 -0
- package/docs/ConfirmOrderFulfillmentShipment.md +21 -0
- package/docs/ConfirmOrderRequest.md +20 -0
- package/docs/CreateOrder.md +33 -0
- package/docs/CreateOrderContactInformation.md +23 -0
- package/docs/CustomersApi.md +59 -23
- package/docs/CustomsInformation.md +27 -0
- package/docs/OrderItem1.md +24 -0
- package/docs/OrderItem1RecipientCost.md +22 -0
- package/docs/OrdersApi.md +128 -0
- package/docs/Statistics.md +2 -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.29.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.29.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -59,6 +59,8 @@ Class | Method | HTTP request | Description
|
|
|
59
59
|
*EnquiriesApi* | [**listCustomerEnquiries**](docs/EnquiriesApi.md#listcustomerenquiries) | **GET** /v1/platform/{platformId}/customers/enquiries | List customer enquiries
|
|
60
60
|
*EnquiriesApi* | [**listCustomerEnquiryLogs**](docs/EnquiriesApi.md#listcustomerenquirylogs) | **GET** /v1/platform/{platformId}/customers/enquiries/{enquiryId}/logs | List customer enquiry Logs
|
|
61
61
|
*EnquiriesApi* | [**updateCustomerEnquiry**](docs/EnquiriesApi.md#updatecustomerenquiry) | **PATCH** /v1/platform/{platformId}/customers/enquiries/{enquiryId} | Update customer enquiry
|
|
62
|
+
*OrdersApi* | [**confirmOrder**](docs/OrdersApi.md#confirmorder) | **POST** /v1/platform/{platformId}/orders/{orderId}/confirm | Confirm order
|
|
63
|
+
*OrdersApi* | [**createOrder**](docs/OrdersApi.md#createorder) | **POST** /v1/platform/{platformId}/orders | Create order
|
|
62
64
|
*OrdersApi* | [**exportOrders**](docs/OrdersApi.md#exportorders) | **GET** /v1/platform/{platformId}/orders/export | Export orders
|
|
63
65
|
*OrdersApi* | [**getFulfillment**](docs/OrdersApi.md#getfulfillment) | **GET** /v1/platform/{platformId}/fulfillments/{fulfillmentId} | Get fulfillment
|
|
64
66
|
*OrdersApi* | [**getOrder**](docs/OrdersApi.md#getorder) | **GET** /v1/platform/{platformId}/orders/{orderId} | Get order
|
|
@@ -92,12 +94,18 @@ Class | Method | HTTP request | Description
|
|
|
92
94
|
- [Address](docs/Address.md)
|
|
93
95
|
- [ApiError](docs/ApiError.md)
|
|
94
96
|
- [Client](docs/Client.md)
|
|
97
|
+
- [ConfirmOrderFulfillment](docs/ConfirmOrderFulfillment.md)
|
|
98
|
+
- [ConfirmOrderFulfillmentShipment](docs/ConfirmOrderFulfillmentShipment.md)
|
|
99
|
+
- [ConfirmOrderRequest](docs/ConfirmOrderRequest.md)
|
|
95
100
|
- [ContactInformation](docs/ContactInformation.md)
|
|
96
101
|
- [Coupon](docs/Coupon.md)
|
|
97
102
|
- [CreateChatChannel200Response](docs/CreateChatChannel200Response.md)
|
|
98
103
|
- [CreateDomainRequest](docs/CreateDomainRequest.md)
|
|
104
|
+
- [CreateOrder](docs/CreateOrder.md)
|
|
105
|
+
- [CreateOrderContactInformation](docs/CreateOrderContactInformation.md)
|
|
99
106
|
- [Customer](docs/Customer.md)
|
|
100
107
|
- [CustomersResponse](docs/CustomersResponse.md)
|
|
108
|
+
- [CustomsInformation](docs/CustomsInformation.md)
|
|
101
109
|
- [DeliveryEstimates](docs/DeliveryEstimates.md)
|
|
102
110
|
- [Domain](docs/Domain.md)
|
|
103
111
|
- [Enquiry](docs/Enquiry.md)
|
|
@@ -120,6 +128,8 @@ Class | Method | HTTP request | Description
|
|
|
120
128
|
- [Option](docs/Option.md)
|
|
121
129
|
- [Order](docs/Order.md)
|
|
122
130
|
- [OrderItem](docs/OrderItem.md)
|
|
131
|
+
- [OrderItem1](docs/OrderItem1.md)
|
|
132
|
+
- [OrderItem1RecipientCost](docs/OrderItem1RecipientCost.md)
|
|
123
133
|
- [OrderStatus](docs/OrderStatus.md)
|
|
124
134
|
- [OrderTracking](docs/OrderTracking.md)
|
|
125
135
|
- [OrdersResponse](docs/OrdersResponse.md)
|