@teemill/platform 0.30.5 → 0.32.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 +15 -2
- package/api.ts +787 -85
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +489 -2
- package/dist/api.js +324 -2
- 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 +489 -2
- package/dist/esm/api.js +319 -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/AmendmentLog.md +30 -0
- package/docs/BulkCreateReviewPayload.md +20 -0
- package/docs/BulkCreatedReviews.md +20 -0
- package/docs/CreateReview201Response.md +42 -0
- package/docs/CreateReviewPayload.md +34 -0
- package/docs/CreateReviewPayloadAuthor.md +22 -0
- package/docs/CreateReviewRequest.md +36 -0
- package/docs/DashboardApi.md +127 -0
- package/docs/DashboardItem.md +30 -0
- package/docs/GetDashboardResponse.md +20 -0
- package/docs/OrderItem.md +2 -0
- package/docs/ReviewsApi.md +81 -0
- package/docs/SaveDashboardRequest.md +20 -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.32.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.32.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ 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
|
+
*DashboardApi* | [**getDashboard**](docs/DashboardApi.md#getdashboard) | **GET** /v1/platform/{platformId}/dashboard | Get the platform\'s dashboard
|
|
58
|
+
*DashboardApi* | [**saveDashboard**](docs/DashboardApi.md#savedashboard) | **PUT** /v1/platform/{platformId}/dashboard | Save the platform\'s dashboard
|
|
57
59
|
*EnquiriesApi* | [**createChatChannel**](docs/EnquiriesApi.md#createchatchannel) | **POST** /v1/platform/{platformId}/customers/enquiries/{enquiryId}/chat-channel | Create chat channel
|
|
58
60
|
*EnquiriesApi* | [**getCustomerEnquiry**](docs/EnquiriesApi.md#getcustomerenquiry) | **GET** /v1/platform/{platformId}/customers/enquiries/{enquiryId} | Get customer enquiry
|
|
59
61
|
*EnquiriesApi* | [**listCustomerEnquiries**](docs/EnquiriesApi.md#listcustomerenquiries) | **GET** /v1/platform/{platformId}/customers/enquiries | List customer enquiries
|
|
@@ -83,6 +85,7 @@ Class | Method | HTTP request | Description
|
|
|
83
85
|
*PlatformApi* | [**listClientDomains**](docs/PlatformApi.md#listclientdomains) | **GET** /v1/platform/client/domains | List platform client domains
|
|
84
86
|
*PlatformApi* | [**listDomains**](docs/PlatformApi.md#listdomains) | **GET** /v1/platform/domains | List platform domains
|
|
85
87
|
*PlatformApi* | [**updatePlatform**](docs/PlatformApi.md#updateplatform) | **PATCH** /v1/platform | Update platform
|
|
88
|
+
*ReviewsApi* | [**createReview**](docs/ReviewsApi.md#createreview) | **POST** /v1/platform/{platformId}/reviews | Create a review
|
|
86
89
|
*ReviewsApi* | [**exportReviews**](docs/ReviewsApi.md#exportreviews) | **GET** /v1/platform/{platformId}/reviews/export | Export reviews
|
|
87
90
|
*ReviewsApi* | [**getReview**](docs/ReviewsApi.md#getreview) | **GET** /v1/platform/{platformId}/reviews/{reviewId} | Get review
|
|
88
91
|
*ReviewsApi* | [**listReviews**](docs/ReviewsApi.md#listreviews) | **GET** /v1/platform/{platformId}/reviews | List reviews
|
|
@@ -96,7 +99,10 @@ Class | Method | HTTP request | Description
|
|
|
96
99
|
- [Address](docs/Address.md)
|
|
97
100
|
- [AmendOrderRequest](docs/AmendOrderRequest.md)
|
|
98
101
|
- [AmendOrderRequestAmendmentsInner](docs/AmendOrderRequestAmendmentsInner.md)
|
|
102
|
+
- [AmendmentLog](docs/AmendmentLog.md)
|
|
99
103
|
- [ApiError](docs/ApiError.md)
|
|
104
|
+
- [BulkCreateReviewPayload](docs/BulkCreateReviewPayload.md)
|
|
105
|
+
- [BulkCreatedReviews](docs/BulkCreatedReviews.md)
|
|
100
106
|
- [Client](docs/Client.md)
|
|
101
107
|
- [ConfirmOrderFulfillment](docs/ConfirmOrderFulfillment.md)
|
|
102
108
|
- [ConfirmOrderFulfillmentShipment](docs/ConfirmOrderFulfillmentShipment.md)
|
|
@@ -107,9 +113,14 @@ Class | Method | HTTP request | Description
|
|
|
107
113
|
- [CreateDomainRequest](docs/CreateDomainRequest.md)
|
|
108
114
|
- [CreateOrder](docs/CreateOrder.md)
|
|
109
115
|
- [CreateOrderContactInformation](docs/CreateOrderContactInformation.md)
|
|
116
|
+
- [CreateReview201Response](docs/CreateReview201Response.md)
|
|
117
|
+
- [CreateReviewPayload](docs/CreateReviewPayload.md)
|
|
118
|
+
- [CreateReviewPayloadAuthor](docs/CreateReviewPayloadAuthor.md)
|
|
119
|
+
- [CreateReviewRequest](docs/CreateReviewRequest.md)
|
|
110
120
|
- [Customer](docs/Customer.md)
|
|
111
121
|
- [CustomersResponse](docs/CustomersResponse.md)
|
|
112
122
|
- [CustomsInformation](docs/CustomsInformation.md)
|
|
123
|
+
- [DashboardItem](docs/DashboardItem.md)
|
|
113
124
|
- [DeliveryEstimates](docs/DeliveryEstimates.md)
|
|
114
125
|
- [Domain](docs/Domain.md)
|
|
115
126
|
- [Enquiry](docs/Enquiry.md)
|
|
@@ -121,6 +132,7 @@ Class | Method | HTTP request | Description
|
|
|
121
132
|
- [FulfillersResponse](docs/FulfillersResponse.md)
|
|
122
133
|
- [Fulfillment](docs/Fulfillment.md)
|
|
123
134
|
- [FulfillmentItem](docs/FulfillmentItem.md)
|
|
135
|
+
- [GetDashboardResponse](docs/GetDashboardResponse.md)
|
|
124
136
|
- [Image](docs/Image.md)
|
|
125
137
|
- [InlineObject](docs/InlineObject.md)
|
|
126
138
|
- [InlineObject1](docs/InlineObject1.md)
|
|
@@ -152,6 +164,7 @@ Class | Method | HTTP request | Description
|
|
|
152
164
|
- [ReviewReply](docs/ReviewReply.md)
|
|
153
165
|
- [ReviewReplyAuthor](docs/ReviewReplyAuthor.md)
|
|
154
166
|
- [ReviewsResponse](docs/ReviewsResponse.md)
|
|
167
|
+
- [SaveDashboardRequest](docs/SaveDashboardRequest.md)
|
|
155
168
|
- [SaveTermsRequest](docs/SaveTermsRequest.md)
|
|
156
169
|
- [ShippingMethod](docs/ShippingMethod.md)
|
|
157
170
|
- [Statistics](docs/Statistics.md)
|