@teemill/platform 0.19.0 → 0.21.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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/platform@0.19.0
1
+ ## @teemill/platform@0.21.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.19.0 --save
39
+ npm install @teemill/platform@0.21.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,9 @@ Class | Method | HTTP request | Description
54
54
  *CustomersApi* | [**exportCustomers**](docs/CustomersApi.md#exportcustomers) | **GET** /v1/platform/{platformId}/customers/export | Export customers
55
55
  *CustomersApi* | [**getCustomer**](docs/CustomersApi.md#getcustomer) | **GET** /v1/platform/{platformId}/customers/{customerId} | Get customer
56
56
  *CustomersApi* | [**listCustomers**](docs/CustomersApi.md#listcustomers) | **GET** /v1/platform/{platformId}/customers | List customers
57
+ *EnquiriesApi* | [**getCustomerEnquiry**](docs/EnquiriesApi.md#getcustomerenquiry) | **GET** /v1/platform/{platformId}/customers/enquiries/{enquiryId} | Get customer enquiry
58
+ *EnquiriesApi* | [**listCustomerEnquiries**](docs/EnquiriesApi.md#listcustomerenquiries) | **GET** /v1/platform/{platformId}/customers/enquiries | List customer enquiries
59
+ *EnquiriesApi* | [**listCustomerEnquiryLogs**](docs/EnquiriesApi.md#listcustomerenquirylogs) | **GET** /v1/platform/{platformId}/customers/enquiries/{enquiryId}/logs | List customer enquiry Logs
57
60
  *OrdersApi* | [**exportOrders**](docs/OrdersApi.md#exportorders) | **GET** /v1/platform/{platformId}/orders/export | Export orders
58
61
  *OrdersApi* | [**getFulfillment**](docs/OrdersApi.md#getfulfillment) | **GET** /v1/platform/{platformId}/fulfillments/{fulfillmentId} | Get fulfillment
59
62
  *OrdersApi* | [**getOrder**](docs/OrdersApi.md#getorder) | **GET** /v1/platform/{platformId}/orders/{orderId} | Get order
@@ -70,6 +73,8 @@ Class | Method | HTTP request | Description
70
73
  *ReviewsApi* | [**getReview**](docs/ReviewsApi.md#getreview) | **GET** /v1/platform/{platformId}/reviews/{reviewId} | Get review
71
74
  *ReviewsApi* | [**listReviews**](docs/ReviewsApi.md#listreviews) | **GET** /v1/platform/{platformId}/reviews | List reviews
72
75
  *ReviewsApi* | [**moderateReview**](docs/ReviewsApi.md#moderatereview) | **PATCH** /v1/platform/{platformId}/reviews/{reviewId}/moderate | Moderate review
76
+ *TermsApi* | [**getTerms**](docs/TermsApi.md#getterms) | **GET** /v1/platform/{platformId}/terms | Get the platform\'s terms
77
+ *TermsApi* | [**saveTerms**](docs/TermsApi.md#saveterms) | **POST** /v1/platform/{platformId}/terms | Save the platform\'s terms
73
78
 
74
79
 
75
80
  ### Documentation For Models
@@ -77,11 +82,15 @@ Class | Method | HTTP request | Description
77
82
  - [Address](docs/Address.md)
78
83
  - [ApiError](docs/ApiError.md)
79
84
  - [AuthorizeStripe200Response](docs/AuthorizeStripe200Response.md)
85
+ - [Client](docs/Client.md)
80
86
  - [ContactInformation](docs/ContactInformation.md)
81
87
  - [Coupon](docs/Coupon.md)
82
88
  - [Customer](docs/Customer.md)
83
89
  - [CustomersResponse](docs/CustomersResponse.md)
84
90
  - [DeliveryEstimates](docs/DeliveryEstimates.md)
91
+ - [Enquiry](docs/Enquiry.md)
92
+ - [EnquiryExtraInputsInner](docs/EnquiryExtraInputsInner.md)
93
+ - [EnquiryExtraInputsInnerValue](docs/EnquiryExtraInputsInnerValue.md)
85
94
  - [ExportOrders202Response](docs/ExportOrders202Response.md)
86
95
  - [Fulfiller](docs/Fulfiller.md)
87
96
  - [FulfillerLocation](docs/FulfillerLocation.md)
@@ -89,6 +98,10 @@ Class | Method | HTTP request | Description
89
98
  - [Fulfillment](docs/Fulfillment.md)
90
99
  - [FulfillmentItem](docs/FulfillmentItem.md)
91
100
  - [Image](docs/Image.md)
101
+ - [ListCustomerEnquiries200Response](docs/ListCustomerEnquiries200Response.md)
102
+ - [ListCustomerEnquiryLogs200Response](docs/ListCustomerEnquiryLogs200Response.md)
103
+ - [ListCustomerEnquiryLogs200ResponseLogsInner](docs/ListCustomerEnquiryLogs200ResponseLogsInner.md)
104
+ - [ListCustomerEnquiryLogs200ResponseLogsInnerCustomer](docs/ListCustomerEnquiryLogs200ResponseLogsInnerCustomer.md)
92
105
  - [ModerateReviewRequest](docs/ModerateReviewRequest.md)
93
106
  - [Option](docs/Option.md)
94
107
  - [Order](docs/Order.md)
@@ -110,9 +123,11 @@ Class | Method | HTTP request | Description
110
123
  - [ReviewReply](docs/ReviewReply.md)
111
124
  - [ReviewReplyAuthor](docs/ReviewReplyAuthor.md)
112
125
  - [ReviewsResponse](docs/ReviewsResponse.md)
126
+ - [SaveTermsRequest](docs/SaveTermsRequest.md)
113
127
  - [ShippingMethod](docs/ShippingMethod.md)
114
128
  - [Statistics](docs/Statistics.md)
115
129
  - [StatusHistoryItem](docs/StatusHistoryItem.md)
130
+ - [Terms](docs/Terms.md)
116
131
  - [UpdateFulfillmentRequest](docs/UpdateFulfillmentRequest.md)
117
132
  - [UpdatePlatformRequest](docs/UpdatePlatformRequest.md)
118
133
  - [ValidationError](docs/ValidationError.md)