@teemill/platform 0.33.1 → 0.35.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 +6 -4
- package/api.ts +211 -2152
- package/base.ts +1 -25
- package/common.ts +1 -2
- package/configuration.ts +1 -18
- package/dist/api.d.ts +128 -2155
- package/dist/api.js +123 -131
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -18
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +128 -2155
- package/dist/esm/api.js +123 -131
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -18
- 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/CustomersApi.md +81 -0
- package/docs/InlineObject1.md +4 -2
- package/docs/InlineObject2.md +20 -0
- package/docs/ListCustomerTags200Response.md +22 -0
- package/docs/ListDomains200Response.md +22 -0
- package/docs/PaymentApi.md +2 -2
- package/docs/Platform.md +2 -0
- package/docs/PlatformApi.md +4 -4
- package/docs/UpdatePlatformRequest.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.35.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.35.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -53,6 +53,7 @@ Class | Method | HTTP request | Description
|
|
|
53
53
|
------------ | ------------- | ------------- | -------------
|
|
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
|
+
*CustomersApi* | [**listCustomerTags**](docs/CustomersApi.md#listcustomertags) | **GET** /v1/platform/{platformId}/customers/tags | List customer tags
|
|
56
57
|
*CustomersApi* | [**listCustomers**](docs/CustomersApi.md#listcustomers) | **GET** /v1/platform/{platformId}/customers | List customers
|
|
57
58
|
*DashboardApi* | [**getDashboard**](docs/DashboardApi.md#getdashboard) | **GET** /v1/platform/{platformId}/dashboard | Get the platform\'s dashboard
|
|
58
59
|
*DashboardApi* | [**saveDashboard**](docs/DashboardApi.md#savedashboard) | **PUT** /v1/platform/{platformId}/dashboard | Save the platform\'s dashboard
|
|
@@ -107,6 +108,7 @@ Class | Method | HTTP request | Description
|
|
|
107
108
|
- [AmendOrderRequestAmendmentsInnerReason](docs/AmendOrderRequestAmendmentsInnerReason.md)
|
|
108
109
|
- [AmendmentLog](docs/AmendmentLog.md)
|
|
109
110
|
- [ApiError](docs/ApiError.md)
|
|
111
|
+
- [AuthorizeStripe200Response](docs/AuthorizeStripe200Response.md)
|
|
110
112
|
- [BulkCreateReviewPayload](docs/BulkCreateReviewPayload.md)
|
|
111
113
|
- [BulkCreatedReviews](docs/BulkCreatedReviews.md)
|
|
112
114
|
- [Client](docs/Client.md)
|
|
@@ -142,12 +144,12 @@ Class | Method | HTTP request | Description
|
|
|
142
144
|
- [FulfillmentItem](docs/FulfillmentItem.md)
|
|
143
145
|
- [GetDashboardResponse](docs/GetDashboardResponse.md)
|
|
144
146
|
- [Image](docs/Image.md)
|
|
145
|
-
- [InlineObject](docs/InlineObject.md)
|
|
146
|
-
- [InlineObject1](docs/InlineObject1.md)
|
|
147
147
|
- [ListCustomerEnquiries200Response](docs/ListCustomerEnquiries200Response.md)
|
|
148
148
|
- [ListCustomerEnquiryLogs200Response](docs/ListCustomerEnquiryLogs200Response.md)
|
|
149
149
|
- [ListCustomerEnquiryLogs200ResponseLogsInner](docs/ListCustomerEnquiryLogs200ResponseLogsInner.md)
|
|
150
150
|
- [ListCustomerEnquiryLogs200ResponseLogsInnerCustomer](docs/ListCustomerEnquiryLogs200ResponseLogsInnerCustomer.md)
|
|
151
|
+
- [ListCustomerTags200Response](docs/ListCustomerTags200Response.md)
|
|
152
|
+
- [ListDomains200Response](docs/ListDomains200Response.md)
|
|
151
153
|
- [ModerateReviewRequest](docs/ModerateReviewRequest.md)
|
|
152
154
|
- [Option](docs/Option.md)
|
|
153
155
|
- [Order](docs/Order.md)
|