@teemill/platform 0.32.0 → 0.33.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 +14 -2
- package/api.ts +894 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +573 -3
- package/dist/api.js +487 -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 +573 -3
- package/dist/esm/api.js +482 -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/AmendOrderRequestAmendmentsInner.md +2 -0
- package/docs/AmendOrderRequestAmendmentsInnerReason.md +22 -0
- package/docs/CreatePixelRequest.md +24 -0
- package/docs/CreatePixelRequestFilters.md +24 -0
- package/docs/Pixel.md +26 -0
- package/docs/PixelsApi.md +341 -0
- package/docs/PixelsResponse.md +22 -0
- package/docs/ReturnOrderRequest.md +1 -1
- package/docs/ReturnOrderRequestReturnsInner.md +28 -0
- package/docs/ReturnOrderRequestReturnsInnerReason.md +22 -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.33.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.33.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -77,6 +77,11 @@ Class | Method | HTTP request | Description
|
|
|
77
77
|
*PaymentApi* | [**authorizeStripe**](docs/PaymentApi.md#authorizestripe) | **GET** /v1/platform/payment/stripe/authorize | Authorize Stripe
|
|
78
78
|
*PaymentApi* | [**deauthorizeStripe**](docs/PaymentApi.md#deauthorizestripe) | **DELETE** /v1/platform/payment/stripe/deauthorize | Deauthorize Stripe
|
|
79
79
|
*PaymentApi* | [**getStripePaymentAccount**](docs/PaymentApi.md#getstripepaymentaccount) | **GET** /v1/platform/payment/stripe | Get Stripe Payment Account
|
|
80
|
+
*PixelsApi* | [**createPixel**](docs/PixelsApi.md#createpixel) | **POST** /v1/platform/{platformId}/pixels | Create a pixel
|
|
81
|
+
*PixelsApi* | [**deletePixel**](docs/PixelsApi.md#deletepixel) | **DELETE** /v1/platform/{platformId}/pixels/{pixelId} | Delete a pixel
|
|
82
|
+
*PixelsApi* | [**getPixel**](docs/PixelsApi.md#getpixel) | **GET** /v1/platform/{platformId}/pixels/{pixelId} | Get pixel
|
|
83
|
+
*PixelsApi* | [**listPixels**](docs/PixelsApi.md#listpixels) | **GET** /v1/platform/{platformId}/pixels | List pixels
|
|
84
|
+
*PixelsApi* | [**updatePixel**](docs/PixelsApi.md#updatepixel) | **PUT** /v1/platform/{platformId}/pixels/{pixelId} | Update a pixel
|
|
80
85
|
*PlatformApi* | [**createClientDomain**](docs/PlatformApi.md#createclientdomain) | **POST** /v1/platform/client/domains | Create a platform client domain
|
|
81
86
|
*PlatformApi* | [**createDomain**](docs/PlatformApi.md#createdomain) | **POST** /v1/platform/domains | Create a platform domain
|
|
82
87
|
*PlatformApi* | [**deleteClientDomain**](docs/PlatformApi.md#deleteclientdomain) | **DELETE** /v1/platform/client/domains/{domain} | Delete a platform client domain
|
|
@@ -99,6 +104,7 @@ Class | Method | HTTP request | Description
|
|
|
99
104
|
- [Address](docs/Address.md)
|
|
100
105
|
- [AmendOrderRequest](docs/AmendOrderRequest.md)
|
|
101
106
|
- [AmendOrderRequestAmendmentsInner](docs/AmendOrderRequestAmendmentsInner.md)
|
|
107
|
+
- [AmendOrderRequestAmendmentsInnerReason](docs/AmendOrderRequestAmendmentsInnerReason.md)
|
|
102
108
|
- [AmendmentLog](docs/AmendmentLog.md)
|
|
103
109
|
- [ApiError](docs/ApiError.md)
|
|
104
110
|
- [BulkCreateReviewPayload](docs/BulkCreateReviewPayload.md)
|
|
@@ -113,6 +119,8 @@ Class | Method | HTTP request | Description
|
|
|
113
119
|
- [CreateDomainRequest](docs/CreateDomainRequest.md)
|
|
114
120
|
- [CreateOrder](docs/CreateOrder.md)
|
|
115
121
|
- [CreateOrderContactInformation](docs/CreateOrderContactInformation.md)
|
|
122
|
+
- [CreatePixelRequest](docs/CreatePixelRequest.md)
|
|
123
|
+
- [CreatePixelRequestFilters](docs/CreatePixelRequestFilters.md)
|
|
116
124
|
- [CreateReview201Response](docs/CreateReview201Response.md)
|
|
117
125
|
- [CreateReviewPayload](docs/CreateReviewPayload.md)
|
|
118
126
|
- [CreateReviewPayloadAuthor](docs/CreateReviewPayloadAuthor.md)
|
|
@@ -152,11 +160,15 @@ Class | Method | HTTP request | Description
|
|
|
152
160
|
- [Origin](docs/Origin.md)
|
|
153
161
|
- [PaymentAccount](docs/PaymentAccount.md)
|
|
154
162
|
- [PaymentAttempt](docs/PaymentAttempt.md)
|
|
163
|
+
- [Pixel](docs/Pixel.md)
|
|
164
|
+
- [PixelsResponse](docs/PixelsResponse.md)
|
|
155
165
|
- [Platform](docs/Platform.md)
|
|
156
166
|
- [PlatformLogo](docs/PlatformLogo.md)
|
|
157
167
|
- [Price](docs/Price.md)
|
|
158
168
|
- [Project](docs/Project.md)
|
|
159
169
|
- [ReturnOrderRequest](docs/ReturnOrderRequest.md)
|
|
170
|
+
- [ReturnOrderRequestReturnsInner](docs/ReturnOrderRequestReturnsInner.md)
|
|
171
|
+
- [ReturnOrderRequestReturnsInnerReason](docs/ReturnOrderRequestReturnsInnerReason.md)
|
|
160
172
|
- [Review](docs/Review.md)
|
|
161
173
|
- [ReviewAuthor](docs/ReviewAuthor.md)
|
|
162
174
|
- [ReviewImagesInner](docs/ReviewImagesInner.md)
|