@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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/platform@0.32.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.32.0 --save
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)