@teemill/platform 0.22.2 → 0.22.3
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 +5 -5
- package/api.ts +4 -4
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +4 -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 +1 -1
- package/dist/esm/api.js +4 -4
- 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/PlatformApi.md +3 -3
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/platform@0.22.
|
|
1
|
+
## @teemill/platform@0.22.3
|
|
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.22.
|
|
39
|
+
npm install @teemill/platform@0.22.3 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -67,12 +67,12 @@ Class | Method | HTTP request | Description
|
|
|
67
67
|
*PaymentApi* | [**authorizeStripe**](docs/PaymentApi.md#authorizestripe) | **GET** /v1/platform/payment/stripe/authorize | Authorize Stripe
|
|
68
68
|
*PaymentApi* | [**deauthorizeStripe**](docs/PaymentApi.md#deauthorizestripe) | **DELETE** /v1/platform/payment/stripe/deauthorize | Deauthorize Stripe
|
|
69
69
|
*PaymentApi* | [**getStripePaymentAccount**](docs/PaymentApi.md#getstripepaymentaccount) | **GET** /v1/platform/payment/stripe | Get Stripe Payment Account
|
|
70
|
-
*PlatformApi* | [**createClientDomain**](docs/PlatformApi.md#createclientdomain) | **POST** /v1/platform/
|
|
70
|
+
*PlatformApi* | [**createClientDomain**](docs/PlatformApi.md#createclientdomain) | **POST** /v1/platform/client/domains | Create a platform client domain
|
|
71
71
|
*PlatformApi* | [**createDomain**](docs/PlatformApi.md#createdomain) | **POST** /v1/platform/domains | Create a platform domain
|
|
72
|
-
*PlatformApi* | [**deleteClientDomain**](docs/PlatformApi.md#deleteclientdomain) | **DELETE** /v1/platform/
|
|
72
|
+
*PlatformApi* | [**deleteClientDomain**](docs/PlatformApi.md#deleteclientdomain) | **DELETE** /v1/platform/client/domains/{domain} | Delete a platform client domain
|
|
73
73
|
*PlatformApi* | [**deleteDomain**](docs/PlatformApi.md#deletedomain) | **DELETE** /v1/platform/domains/{domain} | Delete a platform domain
|
|
74
74
|
*PlatformApi* | [**getPlatform**](docs/PlatformApi.md#getplatform) | **GET** /v1/platform | Get platform details
|
|
75
|
-
*PlatformApi* | [**listClientDomains**](docs/PlatformApi.md#listclientdomains) | **GET** /v1/platform/
|
|
75
|
+
*PlatformApi* | [**listClientDomains**](docs/PlatformApi.md#listclientdomains) | **GET** /v1/platform/client/domains | List platform client domains
|
|
76
76
|
*PlatformApi* | [**listDomains**](docs/PlatformApi.md#listdomains) | **GET** /v1/platform/domains | List platform domains
|
|
77
77
|
*PlatformApi* | [**updatePlatform**](docs/PlatformApi.md#updateplatform) | **PATCH** /v1/platform | Update platform
|
|
78
78
|
*ReviewsApi* | [**exportReviews**](docs/ReviewsApi.md#exportreviews) | **GET** /v1/platform/{platformId}/reviews/export | Export reviews
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4042,7 +4042,7 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4042
4042
|
createClientDomain: async (project: string, createDomainRequest?: CreateDomainRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4043
4043
|
// verify required parameter 'project' is not null or undefined
|
|
4044
4044
|
assertParamExists('createClientDomain', 'project', project)
|
|
4045
|
-
const localVarPath = `/v1/platform/
|
|
4045
|
+
const localVarPath = `/v1/platform/client/domains`;
|
|
4046
4046
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4047
4047
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4048
4048
|
let baseOptions;
|
|
@@ -4140,7 +4140,7 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4140
4140
|
assertParamExists('deleteClientDomain', 'project', project)
|
|
4141
4141
|
// verify required parameter 'domain' is not null or undefined
|
|
4142
4142
|
assertParamExists('deleteClientDomain', 'domain', domain)
|
|
4143
|
-
const localVarPath = `/v1/platform/
|
|
4143
|
+
const localVarPath = `/v1/platform/client/domains/{domain}`
|
|
4144
4144
|
.replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
|
|
4145
4145
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4146
4146
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -4277,7 +4277,7 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4277
4277
|
listClientDomains: async (project: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4278
4278
|
// verify required parameter 'project' is not null or undefined
|
|
4279
4279
|
assertParamExists('listClientDomains', 'project', project)
|
|
4280
|
-
const localVarPath = `/v1/platform/
|
|
4280
|
+
const localVarPath = `/v1/platform/client/domains`;
|
|
4281
4281
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4282
4282
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4283
4283
|
let baseOptions;
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Platform API
|
|
6
6
|
* Manage Your podOS platform
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.22.
|
|
8
|
+
* The version of the OpenAPI document: 0.22.3
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1691,7 +1691,7 @@ const PlatformApiAxiosParamCreator = function (configuration) {
|
|
|
1691
1691
|
createClientDomain: (project_1, createDomainRequest_1, ...args_1) => __awaiter(this, [project_1, createDomainRequest_1, ...args_1], void 0, function* (project, createDomainRequest, options = {}) {
|
|
1692
1692
|
// verify required parameter 'project' is not null or undefined
|
|
1693
1693
|
(0, common_1.assertParamExists)('createClientDomain', 'project', project);
|
|
1694
|
-
const localVarPath = `/v1/platform/
|
|
1694
|
+
const localVarPath = `/v1/platform/client/domains`;
|
|
1695
1695
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1696
1696
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1697
1697
|
let baseOptions;
|
|
@@ -1771,7 +1771,7 @@ const PlatformApiAxiosParamCreator = function (configuration) {
|
|
|
1771
1771
|
(0, common_1.assertParamExists)('deleteClientDomain', 'project', project);
|
|
1772
1772
|
// verify required parameter 'domain' is not null or undefined
|
|
1773
1773
|
(0, common_1.assertParamExists)('deleteClientDomain', 'domain', domain);
|
|
1774
|
-
const localVarPath = `/v1/platform/
|
|
1774
|
+
const localVarPath = `/v1/platform/client/domains/{domain}`
|
|
1775
1775
|
.replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
|
|
1776
1776
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1777
1777
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1884,7 +1884,7 @@ const PlatformApiAxiosParamCreator = function (configuration) {
|
|
|
1884
1884
|
listClientDomains: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
1885
1885
|
// verify required parameter 'project' is not null or undefined
|
|
1886
1886
|
(0, common_1.assertParamExists)('listClientDomains', 'project', project);
|
|
1887
|
-
const localVarPath = `/v1/platform/
|
|
1887
|
+
const localVarPath = `/v1/platform/client/domains`;
|
|
1888
1888
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1889
1889
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1890
1890
|
let baseOptions;
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1672,7 +1672,7 @@ export const PlatformApiAxiosParamCreator = function (configuration) {
|
|
|
1672
1672
|
createClientDomain: (project_1, createDomainRequest_1, ...args_1) => __awaiter(this, [project_1, createDomainRequest_1, ...args_1], void 0, function* (project, createDomainRequest, options = {}) {
|
|
1673
1673
|
// verify required parameter 'project' is not null or undefined
|
|
1674
1674
|
assertParamExists('createClientDomain', 'project', project);
|
|
1675
|
-
const localVarPath = `/v1/platform/
|
|
1675
|
+
const localVarPath = `/v1/platform/client/domains`;
|
|
1676
1676
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1677
1677
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1678
1678
|
let baseOptions;
|
|
@@ -1752,7 +1752,7 @@ export const PlatformApiAxiosParamCreator = function (configuration) {
|
|
|
1752
1752
|
assertParamExists('deleteClientDomain', 'project', project);
|
|
1753
1753
|
// verify required parameter 'domain' is not null or undefined
|
|
1754
1754
|
assertParamExists('deleteClientDomain', 'domain', domain);
|
|
1755
|
-
const localVarPath = `/v1/platform/
|
|
1755
|
+
const localVarPath = `/v1/platform/client/domains/{domain}`
|
|
1756
1756
|
.replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
|
|
1757
1757
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1758
1758
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1865,7 +1865,7 @@ export const PlatformApiAxiosParamCreator = function (configuration) {
|
|
|
1865
1865
|
listClientDomains: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
1866
1866
|
// verify required parameter 'project' is not null or undefined
|
|
1867
1867
|
assertParamExists('listClientDomains', 'project', project);
|
|
1868
|
-
const localVarPath = `/v1/platform/
|
|
1868
|
+
const localVarPath = `/v1/platform/client/domains`;
|
|
1869
1869
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1870
1870
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1871
1871
|
let baseOptions;
|
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/docs/PlatformApi.md
CHANGED
|
@@ -4,12 +4,12 @@ All URIs are relative to *https://localhost:8080*
|
|
|
4
4
|
|
|
5
5
|
|Method | HTTP request | Description|
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
|
-
|[**createClientDomain**](#createclientdomain) | **POST** /v1/platform/
|
|
7
|
+
|[**createClientDomain**](#createclientdomain) | **POST** /v1/platform/client/domains | Create a platform client domain|
|
|
8
8
|
|[**createDomain**](#createdomain) | **POST** /v1/platform/domains | Create a platform domain|
|
|
9
|
-
|[**deleteClientDomain**](#deleteclientdomain) | **DELETE** /v1/platform/
|
|
9
|
+
|[**deleteClientDomain**](#deleteclientdomain) | **DELETE** /v1/platform/client/domains/{domain} | Delete a platform client domain|
|
|
10
10
|
|[**deleteDomain**](#deletedomain) | **DELETE** /v1/platform/domains/{domain} | Delete a platform domain|
|
|
11
11
|
|[**getPlatform**](#getplatform) | **GET** /v1/platform | Get platform details|
|
|
12
|
-
|[**listClientDomains**](#listclientdomains) | **GET** /v1/platform/
|
|
12
|
+
|[**listClientDomains**](#listclientdomains) | **GET** /v1/platform/client/domains | List platform client domains|
|
|
13
13
|
|[**listDomains**](#listdomains) | **GET** /v1/platform/domains | List platform domains|
|
|
14
14
|
|[**updatePlatform**](#updateplatform) | **PATCH** /v1/platform | Update platform|
|
|
15
15
|
|
package/index.ts
CHANGED