@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.
Files changed (74) hide show
  1. package/README.md +95 -2
  2. package/api.ts +879 -4
  3. package/base.ts +1 -1
  4. package/common.ts +1 -1
  5. package/configuration.ts +1 -1
  6. package/dist/api.d.ts +596 -4
  7. package/dist/api.js +429 -4
  8. package/dist/base.d.ts +1 -1
  9. package/dist/base.js +1 -1
  10. package/dist/common.d.ts +1 -1
  11. package/dist/common.js +1 -1
  12. package/dist/configuration.d.ts +1 -1
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +596 -4
  15. package/dist/esm/api.js +424 -3
  16. package/dist/esm/base.d.ts +1 -1
  17. package/dist/esm/base.js +1 -1
  18. package/dist/esm/common.d.ts +1 -1
  19. package/dist/esm/common.js +1 -1
  20. package/dist/esm/configuration.d.ts +1 -1
  21. package/dist/esm/configuration.js +1 -1
  22. package/dist/esm/index.d.ts +1 -1
  23. package/dist/esm/index.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/docs/Address.md +35 -0
  27. package/docs/ApiError.md +22 -0
  28. package/docs/AuthorizeStripe200Response.md +20 -0
  29. package/docs/ContactInformation.md +23 -0
  30. package/docs/Customer.md +33 -0
  31. package/docs/CustomersApi.md +229 -0
  32. package/docs/CustomersResponse.md +22 -0
  33. package/docs/DeliveryEstimates.md +22 -0
  34. package/docs/ExportOrders202Response.md +20 -0
  35. package/docs/Fulfiller.md +23 -0
  36. package/docs/FulfillerLocation.md +22 -0
  37. package/docs/FulfillersResponse.md +22 -0
  38. package/docs/Fulfillment.md +34 -0
  39. package/docs/FulfillmentItem.md +24 -0
  40. package/docs/Image.md +27 -0
  41. package/docs/ModerateReviewRequest.md +20 -0
  42. package/docs/Option.md +22 -0
  43. package/docs/Order.md +56 -0
  44. package/docs/OrderItem.md +42 -0
  45. package/docs/OrderStatus.md +16 -0
  46. package/docs/OrderTracking.md +24 -0
  47. package/docs/OrdersApi.md +410 -0
  48. package/docs/OrdersResponse.md +22 -0
  49. package/docs/Origin.md +22 -0
  50. package/docs/PaymentAccount.md +24 -0
  51. package/docs/PaymentApi.md +178 -0
  52. package/docs/PaymentAttempt.md +29 -0
  53. package/docs/Platform.md +38 -0
  54. package/docs/PlatformApi.md +122 -0
  55. package/docs/PlatformLogo.md +22 -0
  56. package/docs/Price.md +23 -0
  57. package/docs/Project.md +22 -0
  58. package/docs/Review.md +40 -0
  59. package/docs/ReviewAuthor.md +22 -0
  60. package/docs/ReviewImagesInner.md +22 -0
  61. package/docs/ReviewProduct.md +23 -0
  62. package/docs/ReviewReply.md +26 -0
  63. package/docs/ReviewReplyAuthor.md +20 -0
  64. package/docs/ReviewsApi.md +278 -0
  65. package/docs/ReviewsResponse.md +22 -0
  66. package/docs/ShippingMethod.md +34 -0
  67. package/docs/Statistics.md +24 -0
  68. package/docs/StatusHistoryItem.md +22 -0
  69. package/docs/UpdateFulfillmentRequest.md +20 -0
  70. package/docs/UpdatePlatformRequest.md +32 -0
  71. package/docs/ValidationError.md +20 -0
  72. package/docs/Variant.md +24 -0
  73. package/index.ts +1 -1
  74. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/platform@0.15.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.15.0 --save
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
+