@teemill/platform 0.20.0 → 0.22.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 +16 -3
- package/api.ts +990 -92
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +538 -17
- package/dist/api.js +612 -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 +538 -17
- package/dist/esm/api.js +607 -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 +330 -0
- package/docs/SaveTermsRequest.md +24 -0
- package/docs/Terms.md +32 -0
- package/docs/TermsApi.md +127 -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.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.22.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -67,25 +67,34 @@ 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
|
|
74
80
|
*ReviewsApi* | [**listReviews**](docs/ReviewsApi.md#listreviews) | **GET** /v1/platform/{platformId}/reviews | List reviews
|
|
75
81
|
*ReviewsApi* | [**moderateReview**](docs/ReviewsApi.md#moderatereview) | **PATCH** /v1/platform/{platformId}/reviews/{reviewId}/moderate | Moderate review
|
|
82
|
+
*TermsApi* | [**getTerms**](docs/TermsApi.md#getterms) | **GET** /v1/platform/{platformId}/terms | Get the platform\'s terms
|
|
83
|
+
*TermsApi* | [**saveTerms**](docs/TermsApi.md#saveterms) | **POST** /v1/platform/{platformId}/terms | Save the platform\'s terms
|
|
76
84
|
|
|
77
85
|
|
|
78
86
|
### Documentation For Models
|
|
79
87
|
|
|
80
88
|
- [Address](docs/Address.md)
|
|
81
89
|
- [ApiError](docs/ApiError.md)
|
|
82
|
-
- [AuthorizeStripe200Response](docs/AuthorizeStripe200Response.md)
|
|
83
90
|
- [Client](docs/Client.md)
|
|
84
91
|
- [ContactInformation](docs/ContactInformation.md)
|
|
85
92
|
- [Coupon](docs/Coupon.md)
|
|
93
|
+
- [CreateDomainRequest](docs/CreateDomainRequest.md)
|
|
86
94
|
- [Customer](docs/Customer.md)
|
|
87
95
|
- [CustomersResponse](docs/CustomersResponse.md)
|
|
88
96
|
- [DeliveryEstimates](docs/DeliveryEstimates.md)
|
|
97
|
+
- [Domain](docs/Domain.md)
|
|
89
98
|
- [Enquiry](docs/Enquiry.md)
|
|
90
99
|
- [EnquiryExtraInputsInner](docs/EnquiryExtraInputsInner.md)
|
|
91
100
|
- [EnquiryExtraInputsInnerValue](docs/EnquiryExtraInputsInnerValue.md)
|
|
@@ -96,6 +105,8 @@ Class | Method | HTTP request | Description
|
|
|
96
105
|
- [Fulfillment](docs/Fulfillment.md)
|
|
97
106
|
- [FulfillmentItem](docs/FulfillmentItem.md)
|
|
98
107
|
- [Image](docs/Image.md)
|
|
108
|
+
- [InlineObject](docs/InlineObject.md)
|
|
109
|
+
- [InlineObject1](docs/InlineObject1.md)
|
|
99
110
|
- [ListCustomerEnquiries200Response](docs/ListCustomerEnquiries200Response.md)
|
|
100
111
|
- [ListCustomerEnquiryLogs200Response](docs/ListCustomerEnquiryLogs200Response.md)
|
|
101
112
|
- [ListCustomerEnquiryLogs200ResponseLogsInner](docs/ListCustomerEnquiryLogs200ResponseLogsInner.md)
|
|
@@ -121,9 +132,11 @@ Class | Method | HTTP request | Description
|
|
|
121
132
|
- [ReviewReply](docs/ReviewReply.md)
|
|
122
133
|
- [ReviewReplyAuthor](docs/ReviewReplyAuthor.md)
|
|
123
134
|
- [ReviewsResponse](docs/ReviewsResponse.md)
|
|
135
|
+
- [SaveTermsRequest](docs/SaveTermsRequest.md)
|
|
124
136
|
- [ShippingMethod](docs/ShippingMethod.md)
|
|
125
137
|
- [Statistics](docs/Statistics.md)
|
|
126
138
|
- [StatusHistoryItem](docs/StatusHistoryItem.md)
|
|
139
|
+
- [Terms](docs/Terms.md)
|
|
127
140
|
- [UpdateFulfillmentRequest](docs/UpdateFulfillmentRequest.md)
|
|
128
141
|
- [UpdatePlatformRequest](docs/UpdatePlatformRequest.md)
|
|
129
142
|
- [ValidationError](docs/ValidationError.md)
|