@teemill/platform 0.15.0 → 0.17.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 +95 -2
- package/api.ts +879 -4
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +596 -4
- package/dist/api.js +429 -4
- 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 +596 -4
- package/dist/esm/api.js +424 -3
- 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/Address.md +35 -0
- package/docs/ApiError.md +22 -0
- package/docs/AuthorizeStripe200Response.md +20 -0
- package/docs/ContactInformation.md +23 -0
- package/docs/Customer.md +33 -0
- package/docs/CustomersApi.md +229 -0
- package/docs/CustomersResponse.md +22 -0
- package/docs/DeliveryEstimates.md +22 -0
- package/docs/ExportOrders202Response.md +20 -0
- package/docs/Fulfiller.md +23 -0
- package/docs/FulfillerLocation.md +22 -0
- package/docs/FulfillersResponse.md +22 -0
- package/docs/Fulfillment.md +34 -0
- package/docs/FulfillmentItem.md +24 -0
- package/docs/Image.md +27 -0
- package/docs/ModerateReviewRequest.md +20 -0
- package/docs/Option.md +22 -0
- package/docs/Order.md +56 -0
- package/docs/OrderItem.md +42 -0
- package/docs/OrderStatus.md +16 -0
- package/docs/OrderTracking.md +24 -0
- package/docs/OrdersApi.md +410 -0
- package/docs/OrdersResponse.md +22 -0
- package/docs/Origin.md +22 -0
- package/docs/PaymentAccount.md +24 -0
- package/docs/PaymentApi.md +178 -0
- package/docs/PaymentAttempt.md +29 -0
- package/docs/Platform.md +38 -0
- package/docs/PlatformApi.md +122 -0
- package/docs/PlatformLogo.md +22 -0
- package/docs/Price.md +23 -0
- package/docs/Project.md +22 -0
- package/docs/Review.md +40 -0
- package/docs/ReviewAuthor.md +22 -0
- package/docs/ReviewImagesInner.md +22 -0
- package/docs/ReviewProduct.md +23 -0
- package/docs/ReviewReply.md +26 -0
- package/docs/ReviewReplyAuthor.md +20 -0
- package/docs/ReviewsApi.md +278 -0
- package/docs/ReviewsResponse.md +22 -0
- package/docs/ShippingMethod.md +34 -0
- package/docs/Statistics.md +24 -0
- package/docs/StatusHistoryItem.md +22 -0
- package/docs/UpdateFulfillmentRequest.md +20 -0
- package/docs/UpdatePlatformRequest.md +32 -0
- package/docs/ValidationError.md +20 -0
- package/docs/Variant.md +24 -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.17.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.17.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -44,3 +44,96 @@ _unPublished (not recommended):_
|
|
|
44
44
|
```
|
|
45
45
|
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
46
|
```
|
|
47
|
+
|
|
48
|
+
### Documentation for API Endpoints
|
|
49
|
+
|
|
50
|
+
All URIs are relative to *https://localhost:8080*
|
|
51
|
+
|
|
52
|
+
Class | Method | HTTP request | Description
|
|
53
|
+
------------ | ------------- | ------------- | -------------
|
|
54
|
+
*CustomersApi* | [**exportCustomers**](docs/CustomersApi.md#exportcustomers) | **GET** /v1/platform/{platformId}/customers/export | Export customers
|
|
55
|
+
*CustomersApi* | [**getCustomer**](docs/CustomersApi.md#getcustomer) | **GET** /v1/platform/{platformId}/customers/{customerId} | Get customer
|
|
56
|
+
*CustomersApi* | [**listCustomers**](docs/CustomersApi.md#listcustomers) | **GET** /v1/platform/{platformId}/customers | List customers
|
|
57
|
+
*OrdersApi* | [**exportOrders**](docs/OrdersApi.md#exportorders) | **GET** /v1/platform/{platformId}/orders/export | Export orders
|
|
58
|
+
*OrdersApi* | [**getFulfillment**](docs/OrdersApi.md#getfulfillment) | **GET** /v1/platform/{platformId}/fulfillments/{fulfillmentId} | Get fulfillment
|
|
59
|
+
*OrdersApi* | [**getOrder**](docs/OrdersApi.md#getorder) | **GET** /v1/platform/{platformId}/orders/{orderId} | Get order
|
|
60
|
+
*OrdersApi* | [**listAvailableFulfillers**](docs/OrdersApi.md#listavailablefulfillers) | **GET** /v1/platform/{platformId}/fulfillments/{fulfillmentId}/available-fulfillers | List available fulfillers
|
|
61
|
+
*OrdersApi* | [**listOrders**](docs/OrdersApi.md#listorders) | **GET** /v1/platform/{platformId}/orders | List orders
|
|
62
|
+
*OrdersApi* | [**updateFulfillment**](docs/OrdersApi.md#updatefulfillment) | **PATCH** /v1/platform/{platformId}/fulfillments/{fulfillmentId} | Update fulfillment
|
|
63
|
+
*PaymentApi* | [**authorizeStripe**](docs/PaymentApi.md#authorizestripe) | **GET** /v1/platform/payment/stripe/authorize | Authorize Stripe
|
|
64
|
+
*PaymentApi* | [**deauthorizeStripe**](docs/PaymentApi.md#deauthorizestripe) | **DELETE** /v1/platform/payment/stripe/deauthorize | Deauthorize Stripe
|
|
65
|
+
*PaymentApi* | [**getStripePaymentAccount**](docs/PaymentApi.md#getstripepaymentaccount) | **GET** /v1/platform/payment/stripe | Get Stripe Payment Account
|
|
66
|
+
*PlatformApi* | [**getPlatform**](docs/PlatformApi.md#getplatform) | **GET** /v1/platform | Get platform details
|
|
67
|
+
*PlatformApi* | [**updatePlatform**](docs/PlatformApi.md#updateplatform) | **PATCH** /v1/platform | Update platform
|
|
68
|
+
*ReviewsApi* | [**exportReviews**](docs/ReviewsApi.md#exportreviews) | **GET** /v1/platform/{platformId}/reviews/export | Export reviews
|
|
69
|
+
*ReviewsApi* | [**getReview**](docs/ReviewsApi.md#getreview) | **GET** /v1/platform/{platformId}/reviews/{reviewId} | Get review
|
|
70
|
+
*ReviewsApi* | [**listReviews**](docs/ReviewsApi.md#listreviews) | **GET** /v1/platform/{platformId}/reviews | List reviews
|
|
71
|
+
*ReviewsApi* | [**moderateReview**](docs/ReviewsApi.md#moderatereview) | **PATCH** /v1/platform/{platformId}/reviews/{reviewId}/moderate | Moderate review
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Documentation For Models
|
|
75
|
+
|
|
76
|
+
- [Address](docs/Address.md)
|
|
77
|
+
- [ApiError](docs/ApiError.md)
|
|
78
|
+
- [AuthorizeStripe200Response](docs/AuthorizeStripe200Response.md)
|
|
79
|
+
- [ContactInformation](docs/ContactInformation.md)
|
|
80
|
+
- [Customer](docs/Customer.md)
|
|
81
|
+
- [CustomersResponse](docs/CustomersResponse.md)
|
|
82
|
+
- [DeliveryEstimates](docs/DeliveryEstimates.md)
|
|
83
|
+
- [ExportOrders202Response](docs/ExportOrders202Response.md)
|
|
84
|
+
- [Fulfiller](docs/Fulfiller.md)
|
|
85
|
+
- [FulfillerLocation](docs/FulfillerLocation.md)
|
|
86
|
+
- [FulfillersResponse](docs/FulfillersResponse.md)
|
|
87
|
+
- [Fulfillment](docs/Fulfillment.md)
|
|
88
|
+
- [FulfillmentItem](docs/FulfillmentItem.md)
|
|
89
|
+
- [Image](docs/Image.md)
|
|
90
|
+
- [ModerateReviewRequest](docs/ModerateReviewRequest.md)
|
|
91
|
+
- [Option](docs/Option.md)
|
|
92
|
+
- [Order](docs/Order.md)
|
|
93
|
+
- [OrderItem](docs/OrderItem.md)
|
|
94
|
+
- [OrderStatus](docs/OrderStatus.md)
|
|
95
|
+
- [OrderTracking](docs/OrderTracking.md)
|
|
96
|
+
- [OrdersResponse](docs/OrdersResponse.md)
|
|
97
|
+
- [Origin](docs/Origin.md)
|
|
98
|
+
- [PaymentAccount](docs/PaymentAccount.md)
|
|
99
|
+
- [PaymentAttempt](docs/PaymentAttempt.md)
|
|
100
|
+
- [Platform](docs/Platform.md)
|
|
101
|
+
- [PlatformLogo](docs/PlatformLogo.md)
|
|
102
|
+
- [Price](docs/Price.md)
|
|
103
|
+
- [Project](docs/Project.md)
|
|
104
|
+
- [Review](docs/Review.md)
|
|
105
|
+
- [ReviewAuthor](docs/ReviewAuthor.md)
|
|
106
|
+
- [ReviewImagesInner](docs/ReviewImagesInner.md)
|
|
107
|
+
- [ReviewProduct](docs/ReviewProduct.md)
|
|
108
|
+
- [ReviewReply](docs/ReviewReply.md)
|
|
109
|
+
- [ReviewReplyAuthor](docs/ReviewReplyAuthor.md)
|
|
110
|
+
- [ReviewsResponse](docs/ReviewsResponse.md)
|
|
111
|
+
- [ShippingMethod](docs/ShippingMethod.md)
|
|
112
|
+
- [Statistics](docs/Statistics.md)
|
|
113
|
+
- [StatusHistoryItem](docs/StatusHistoryItem.md)
|
|
114
|
+
- [UpdateFulfillmentRequest](docs/UpdateFulfillmentRequest.md)
|
|
115
|
+
- [UpdatePlatformRequest](docs/UpdatePlatformRequest.md)
|
|
116
|
+
- [ValidationError](docs/ValidationError.md)
|
|
117
|
+
- [Variant](docs/Variant.md)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
<a id="documentation-for-authorization"></a>
|
|
121
|
+
## Documentation For Authorization
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
Authentication schemes defined for the API:
|
|
125
|
+
<a id="api-key"></a>
|
|
126
|
+
### api-key
|
|
127
|
+
|
|
128
|
+
- **Type**: API key
|
|
129
|
+
- **API key parameter name**: Authorization
|
|
130
|
+
- **Location**: HTTP header
|
|
131
|
+
|
|
132
|
+
<a id="session-oauth"></a>
|
|
133
|
+
### session-oauth
|
|
134
|
+
|
|
135
|
+
- **Type**: OAuth
|
|
136
|
+
- **Flow**: password
|
|
137
|
+
- **Authorization URL**:
|
|
138
|
+
- **Scopes**: N/A
|
|
139
|
+
|