@teemill/platform 0.21.0 → 0.22.1
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 -3
- package/api.ts +685 -16
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +388 -17
- package/dist/api.js +457 -1
- 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 +388 -17
- package/dist/esm/api.js +457 -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/CreateDomainRequest.md +20 -0
- package/docs/Domain.md +26 -0
- package/docs/InlineObject.md +22 -0
- package/docs/InlineObject1.md +20 -0
- package/docs/PaymentApi.md +2 -2
- package/docs/PlatformApi.md +356 -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.22.1
|
|
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.22.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -67,7 +67,13 @@ Class | Method | HTTP request | Description
|
|
|
67
67
|
*PaymentApi* | [**authorizeStripe**](docs/PaymentApi.md#authorizestripe) | **GET** /v1/platform/payment/stripe/authorize | Authorize Stripe
|
|
68
68
|
*PaymentApi* | [**deauthorizeStripe**](docs/PaymentApi.md#deauthorizestripe) | **DELETE** /v1/platform/payment/stripe/deauthorize | Deauthorize Stripe
|
|
69
69
|
*PaymentApi* | [**getStripePaymentAccount**](docs/PaymentApi.md#getstripepaymentaccount) | **GET** /v1/platform/payment/stripe | Get Stripe Payment Account
|
|
70
|
+
*PlatformApi* | [**createClientDomain**](docs/PlatformApi.md#createclientdomain) | **POST** /v1/platform/clients/domains | Create a platform client domain
|
|
71
|
+
*PlatformApi* | [**createDomain**](docs/PlatformApi.md#createdomain) | **POST** /v1/platform/domains | Create a platform domain
|
|
72
|
+
*PlatformApi* | [**deleteClientDomain**](docs/PlatformApi.md#deleteclientdomain) | **DELETE** /v1/platform/clients/domains/{domain} | Delete a platform client domain
|
|
73
|
+
*PlatformApi* | [**deleteDomain**](docs/PlatformApi.md#deletedomain) | **DELETE** /v1/platform/domains/{domain} | Delete a platform domain
|
|
70
74
|
*PlatformApi* | [**getPlatform**](docs/PlatformApi.md#getplatform) | **GET** /v1/platform | Get platform details
|
|
75
|
+
*PlatformApi* | [**listClientDomains**](docs/PlatformApi.md#listclientdomains) | **GET** /v1/platform/clients/domains | List platform client domains
|
|
76
|
+
*PlatformApi* | [**listDomains**](docs/PlatformApi.md#listdomains) | **GET** /v1/platform/domains | List platform domains
|
|
71
77
|
*PlatformApi* | [**updatePlatform**](docs/PlatformApi.md#updateplatform) | **PATCH** /v1/platform | Update platform
|
|
72
78
|
*ReviewsApi* | [**exportReviews**](docs/ReviewsApi.md#exportreviews) | **GET** /v1/platform/{platformId}/reviews/export | Export reviews
|
|
73
79
|
*ReviewsApi* | [**getReview**](docs/ReviewsApi.md#getreview) | **GET** /v1/platform/{platformId}/reviews/{reviewId} | Get review
|
|
@@ -81,13 +87,14 @@ Class | Method | HTTP request | Description
|
|
|
81
87
|
|
|
82
88
|
- [Address](docs/Address.md)
|
|
83
89
|
- [ApiError](docs/ApiError.md)
|
|
84
|
-
- [AuthorizeStripe200Response](docs/AuthorizeStripe200Response.md)
|
|
85
90
|
- [Client](docs/Client.md)
|
|
86
91
|
- [ContactInformation](docs/ContactInformation.md)
|
|
87
92
|
- [Coupon](docs/Coupon.md)
|
|
93
|
+
- [CreateDomainRequest](docs/CreateDomainRequest.md)
|
|
88
94
|
- [Customer](docs/Customer.md)
|
|
89
95
|
- [CustomersResponse](docs/CustomersResponse.md)
|
|
90
96
|
- [DeliveryEstimates](docs/DeliveryEstimates.md)
|
|
97
|
+
- [Domain](docs/Domain.md)
|
|
91
98
|
- [Enquiry](docs/Enquiry.md)
|
|
92
99
|
- [EnquiryExtraInputsInner](docs/EnquiryExtraInputsInner.md)
|
|
93
100
|
- [EnquiryExtraInputsInnerValue](docs/EnquiryExtraInputsInnerValue.md)
|
|
@@ -98,6 +105,8 @@ Class | Method | HTTP request | Description
|
|
|
98
105
|
- [Fulfillment](docs/Fulfillment.md)
|
|
99
106
|
- [FulfillmentItem](docs/FulfillmentItem.md)
|
|
100
107
|
- [Image](docs/Image.md)
|
|
108
|
+
- [InlineObject](docs/InlineObject.md)
|
|
109
|
+
- [InlineObject1](docs/InlineObject1.md)
|
|
101
110
|
- [ListCustomerEnquiries200Response](docs/ListCustomerEnquiries200Response.md)
|
|
102
111
|
- [ListCustomerEnquiryLogs200Response](docs/ListCustomerEnquiryLogs200Response.md)
|
|
103
112
|
- [ListCustomerEnquiryLogs200ResponseLogsInner](docs/ListCustomerEnquiryLogs200ResponseLogsInner.md)
|