@teemill/orders 1.24.1 → 1.26.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 +14 -9
- package/api.ts +560 -137
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +499 -137
- package/dist/api.js +127 -32
- 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 +499 -137
- package/dist/esm/api.js +126 -31
- 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/Address.md +9 -9
- package/docs/ApiError.md +3 -2
- package/docs/ConfirmOrderFulfillment.md +4 -3
- package/docs/ConfirmOrderFulfillmentWithShipment.md +3 -2
- package/docs/ConfirmOrderFulfillmentWithShippingMethod.md +3 -2
- package/docs/ConfirmOrderValidationError.md +2 -0
- package/docs/ContactInformation.md +2 -2
- package/docs/ContactInformation1.md +23 -0
- package/docs/CreateOrder.md +7 -7
- package/docs/CreateOrderItem.md +24 -0
- package/docs/CustomsInformation.md +4 -4
- package/docs/CustomsInformation1.md +5 -4
- package/docs/DeliveryEstimates.md +4 -3
- package/docs/Fulfiller.md +25 -0
- package/docs/FulfillerLocation.md +23 -0
- package/docs/Fulfillment.md +9 -8
- package/docs/FulfillmentItem.md +3 -3
- package/docs/Image.md +5 -5
- package/docs/ImportOrders202Response.md +20 -0
- package/docs/Order.md +18 -17
- package/docs/OrderItem.md +10 -9
- package/docs/OrderPaymentMethod.md +21 -0
- package/docs/OrderTracking.md +4 -3
- package/docs/OrdersApi.md +91 -31
- package/docs/Origin.md +3 -2
- package/docs/PaymentAttempt.md +4 -5
- package/docs/PaymentMethod.md +2 -1
- package/docs/Price.md +3 -3
- package/docs/ProductUnavailableError.md +35 -0
- package/docs/RecipientCost.md +23 -0
- package/docs/Shipment.md +21 -0
- package/docs/ShippingMethod.md +8 -7
- package/docs/Status.md +1 -0
- package/docs/StockConflictError.md +34 -0
- package/docs/StockUnavailableError.md +35 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/orders@1.
|
|
1
|
+
## @teemill/orders@1.26.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/orders@1.
|
|
39
|
+
npm install @teemill/orders@1.26.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -58,6 +58,7 @@ Class | Method | HTTP request | Description
|
|
|
58
58
|
*OrdersApi* | [**exportOrders**](docs/OrdersApi.md#exportorders) | **GET** /v1/orders/export | Export orders
|
|
59
59
|
*OrdersApi* | [**getOrder**](docs/OrdersApi.md#getorder) | **GET** /v1/orders/{orderId} | Get order
|
|
60
60
|
*OrdersApi* | [**getOrders**](docs/OrdersApi.md#getorders) | **GET** /v1/orders | List orders
|
|
61
|
+
*OrdersApi* | [**importOrders**](docs/OrdersApi.md#importorders) | **POST** /v1/orders/import | Import orders
|
|
61
62
|
*OrdersApi* | [**retryPlatformPayment**](docs/OrdersApi.md#retryplatformpayment) | **POST** /v1/orders/{orderId}/retryPlatformPayment | Retry
|
|
62
63
|
|
|
63
64
|
|
|
@@ -67,37 +68,41 @@ Class | Method | HTTP request | Description
|
|
|
67
68
|
- [ApiError](docs/ApiError.md)
|
|
68
69
|
- [ConfirmOrderFulfillment](docs/ConfirmOrderFulfillment.md)
|
|
69
70
|
- [ConfirmOrderFulfillmentWithShipment](docs/ConfirmOrderFulfillmentWithShipment.md)
|
|
70
|
-
- [ConfirmOrderFulfillmentWithShipmentShipment](docs/ConfirmOrderFulfillmentWithShipmentShipment.md)
|
|
71
71
|
- [ConfirmOrderFulfillmentWithShippingMethod](docs/ConfirmOrderFulfillmentWithShippingMethod.md)
|
|
72
72
|
- [ConfirmOrderRequest](docs/ConfirmOrderRequest.md)
|
|
73
73
|
- [ConfirmOrderValidationError](docs/ConfirmOrderValidationError.md)
|
|
74
74
|
- [ContactInformation](docs/ContactInformation.md)
|
|
75
|
+
- [ContactInformation1](docs/ContactInformation1.md)
|
|
75
76
|
- [Coupon](docs/Coupon.md)
|
|
76
77
|
- [CreateOrder](docs/CreateOrder.md)
|
|
77
|
-
- [
|
|
78
|
+
- [CreateOrderItem](docs/CreateOrderItem.md)
|
|
78
79
|
- [CustomsInformation](docs/CustomsInformation.md)
|
|
79
80
|
- [CustomsInformation1](docs/CustomsInformation1.md)
|
|
80
81
|
- [DeliveryEstimates](docs/DeliveryEstimates.md)
|
|
81
82
|
- [ExportOrders202Response](docs/ExportOrders202Response.md)
|
|
83
|
+
- [Fulfiller](docs/Fulfiller.md)
|
|
84
|
+
- [FulfillerLocation](docs/FulfillerLocation.md)
|
|
82
85
|
- [Fulfillment](docs/Fulfillment.md)
|
|
83
|
-
- [FulfillmentFulfiller](docs/FulfillmentFulfiller.md)
|
|
84
|
-
- [FulfillmentFulfillerLocation](docs/FulfillmentFulfillerLocation.md)
|
|
85
86
|
- [FulfillmentItem](docs/FulfillmentItem.md)
|
|
86
87
|
- [Image](docs/Image.md)
|
|
88
|
+
- [ImportOrders202Response](docs/ImportOrders202Response.md)
|
|
87
89
|
- [Option](docs/Option.md)
|
|
88
90
|
- [Order](docs/Order.md)
|
|
89
91
|
- [OrderItem](docs/OrderItem.md)
|
|
90
|
-
- [
|
|
91
|
-
- [OrderItem1RecipientCost](docs/OrderItem1RecipientCost.md)
|
|
92
|
+
- [OrderPaymentMethod](docs/OrderPaymentMethod.md)
|
|
92
93
|
- [OrderTracking](docs/OrderTracking.md)
|
|
93
94
|
- [OrdersResponse](docs/OrdersResponse.md)
|
|
94
95
|
- [Origin](docs/Origin.md)
|
|
95
96
|
- [PaymentAttempt](docs/PaymentAttempt.md)
|
|
96
|
-
- [PaymentMethod](docs/PaymentMethod.md)
|
|
97
97
|
- [Price](docs/Price.md)
|
|
98
|
+
- [ProductUnavailableError](docs/ProductUnavailableError.md)
|
|
99
|
+
- [RecipientCost](docs/RecipientCost.md)
|
|
100
|
+
- [Shipment](docs/Shipment.md)
|
|
98
101
|
- [ShippingMethod](docs/ShippingMethod.md)
|
|
99
102
|
- [Status](docs/Status.md)
|
|
100
103
|
- [StatusHistoryItem](docs/StatusHistoryItem.md)
|
|
104
|
+
- [StockConflictError](docs/StockConflictError.md)
|
|
105
|
+
- [StockUnavailableError](docs/StockUnavailableError.md)
|
|
101
106
|
|
|
102
107
|
|
|
103
108
|
<a id="documentation-for-authorization"></a>
|