@teemill/platform 0.32.0 → 0.33.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 +11 -2
- package/api.ts +803 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +485 -1
- package/dist/api.js +483 -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 +485 -1
- package/dist/esm/api.js +478 -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/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/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.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.33.0 --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
|
|
@@ -113,6 +118,8 @@ Class | Method | HTTP request | Description
|
|
|
113
118
|
- [CreateDomainRequest](docs/CreateDomainRequest.md)
|
|
114
119
|
- [CreateOrder](docs/CreateOrder.md)
|
|
115
120
|
- [CreateOrderContactInformation](docs/CreateOrderContactInformation.md)
|
|
121
|
+
- [CreatePixelRequest](docs/CreatePixelRequest.md)
|
|
122
|
+
- [CreatePixelRequestFilters](docs/CreatePixelRequestFilters.md)
|
|
116
123
|
- [CreateReview201Response](docs/CreateReview201Response.md)
|
|
117
124
|
- [CreateReviewPayload](docs/CreateReviewPayload.md)
|
|
118
125
|
- [CreateReviewPayloadAuthor](docs/CreateReviewPayloadAuthor.md)
|
|
@@ -152,6 +159,8 @@ Class | Method | HTTP request | Description
|
|
|
152
159
|
- [Origin](docs/Origin.md)
|
|
153
160
|
- [PaymentAccount](docs/PaymentAccount.md)
|
|
154
161
|
- [PaymentAttempt](docs/PaymentAttempt.md)
|
|
162
|
+
- [Pixel](docs/Pixel.md)
|
|
163
|
+
- [PixelsResponse](docs/PixelsResponse.md)
|
|
155
164
|
- [Platform](docs/Platform.md)
|
|
156
165
|
- [PlatformLogo](docs/PlatformLogo.md)
|
|
157
166
|
- [Price](docs/Price.md)
|