@teemill/integrations 0.12.7 → 0.14.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/.openapi-generator/VERSION +1 -1
- package/README.md +2 -2
- package/api.ts +31 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +31 -1
- package/dist/api.js +12 -12
- 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 +31 -1
- package/dist/esm/api.js +12 -12
- 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/index.ts +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.7.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/integrations@0.
|
|
1
|
+
## @teemill/integrations@0.14.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/integrations@0.
|
|
39
|
+
npm install @teemill/integrations@0.14.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -65,6 +65,12 @@ export interface AdminIntegrationListing {
|
|
|
65
65
|
* @memberof AdminIntegrationListing
|
|
66
66
|
*/
|
|
67
67
|
'content': string;
|
|
68
|
+
/**
|
|
69
|
+
* The html content of the pricing information
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof AdminIntegrationListing
|
|
72
|
+
*/
|
|
73
|
+
'pricing'?: string;
|
|
68
74
|
/**
|
|
69
75
|
* The author of the integration listing
|
|
70
76
|
* @type {string}
|
|
@@ -158,6 +164,12 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
158
164
|
* @memberof CreateAdminIntegrationListingRequest
|
|
159
165
|
*/
|
|
160
166
|
'content': string;
|
|
167
|
+
/**
|
|
168
|
+
* The html content of the pricing information
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
171
|
+
*/
|
|
172
|
+
'pricing'?: string;
|
|
161
173
|
/**
|
|
162
174
|
* The author of the integration listing
|
|
163
175
|
* @type {string}
|
|
@@ -269,6 +281,12 @@ export interface Integration {
|
|
|
269
281
|
* @memberof Integration
|
|
270
282
|
*/
|
|
271
283
|
'config'?: { [key: string]: string; };
|
|
284
|
+
/**
|
|
285
|
+
* The icon of the integration
|
|
286
|
+
* @type {any}
|
|
287
|
+
* @memberof Integration
|
|
288
|
+
*/
|
|
289
|
+
'icon'?: any;
|
|
272
290
|
}
|
|
273
291
|
/**
|
|
274
292
|
*
|
|
@@ -359,6 +377,12 @@ export interface IntegrationListing {
|
|
|
359
377
|
* @memberof IntegrationListing
|
|
360
378
|
*/
|
|
361
379
|
'content': string;
|
|
380
|
+
/**
|
|
381
|
+
* The html content of the pricing information
|
|
382
|
+
* @type {string}
|
|
383
|
+
* @memberof IntegrationListing
|
|
384
|
+
*/
|
|
385
|
+
'pricing'?: string;
|
|
362
386
|
/**
|
|
363
387
|
* The author of the integration listing
|
|
364
388
|
* @type {string}
|
|
@@ -521,6 +545,12 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
521
545
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
522
546
|
*/
|
|
523
547
|
'content'?: string;
|
|
548
|
+
/**
|
|
549
|
+
* The html content of the pricing information
|
|
550
|
+
* @type {string}
|
|
551
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
552
|
+
*/
|
|
553
|
+
'pricing'?: string;
|
|
524
554
|
/**
|
|
525
555
|
* The code of the integration
|
|
526
556
|
* @type {string}
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -55,6 +55,12 @@ export interface AdminIntegrationListing {
|
|
|
55
55
|
* @memberof AdminIntegrationListing
|
|
56
56
|
*/
|
|
57
57
|
'content': string;
|
|
58
|
+
/**
|
|
59
|
+
* The html content of the pricing information
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof AdminIntegrationListing
|
|
62
|
+
*/
|
|
63
|
+
'pricing'?: string;
|
|
58
64
|
/**
|
|
59
65
|
* The author of the integration listing
|
|
60
66
|
* @type {string}
|
|
@@ -148,6 +154,12 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
148
154
|
* @memberof CreateAdminIntegrationListingRequest
|
|
149
155
|
*/
|
|
150
156
|
'content': string;
|
|
157
|
+
/**
|
|
158
|
+
* The html content of the pricing information
|
|
159
|
+
* @type {string}
|
|
160
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
161
|
+
*/
|
|
162
|
+
'pricing'?: string;
|
|
151
163
|
/**
|
|
152
164
|
* The author of the integration listing
|
|
153
165
|
* @type {string}
|
|
@@ -261,6 +273,12 @@ export interface Integration {
|
|
|
261
273
|
'config'?: {
|
|
262
274
|
[key: string]: string;
|
|
263
275
|
};
|
|
276
|
+
/**
|
|
277
|
+
* The icon of the integration
|
|
278
|
+
* @type {any}
|
|
279
|
+
* @memberof Integration
|
|
280
|
+
*/
|
|
281
|
+
'icon'?: any;
|
|
264
282
|
}
|
|
265
283
|
/**
|
|
266
284
|
*
|
|
@@ -348,6 +366,12 @@ export interface IntegrationListing {
|
|
|
348
366
|
* @memberof IntegrationListing
|
|
349
367
|
*/
|
|
350
368
|
'content': string;
|
|
369
|
+
/**
|
|
370
|
+
* The html content of the pricing information
|
|
371
|
+
* @type {string}
|
|
372
|
+
* @memberof IntegrationListing
|
|
373
|
+
*/
|
|
374
|
+
'pricing'?: string;
|
|
351
375
|
/**
|
|
352
376
|
* The author of the integration listing
|
|
353
377
|
* @type {string}
|
|
@@ -510,6 +534,12 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
510
534
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
511
535
|
*/
|
|
512
536
|
'content'?: string;
|
|
537
|
+
/**
|
|
538
|
+
* The html content of the pricing information
|
|
539
|
+
* @type {string}
|
|
540
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
541
|
+
*/
|
|
542
|
+
'pricing'?: string;
|
|
513
543
|
/**
|
|
514
544
|
* The code of the integration
|
|
515
545
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Integrations API
|
|
6
6
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -82,7 +82,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
82
82
|
* @param {*} [options] Override http request option.
|
|
83
83
|
* @throws {RequiredError}
|
|
84
84
|
*/
|
|
85
|
-
deleteAdminIntegrationListing: (listing_1, ...
|
|
85
|
+
deleteAdminIntegrationListing: (listing_1, ...args_1) => __awaiter(this, [listing_1, ...args_1], void 0, function* (listing, options = {}) {
|
|
86
86
|
// verify required parameter 'listing' is not null or undefined
|
|
87
87
|
(0, common_1.assertParamExists)('deleteAdminIntegrationListing', 'listing', listing);
|
|
88
88
|
const localVarPath = `/v1/integrations/admin/listings/{listing}`
|
|
@@ -116,7 +116,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
116
116
|
* @param {*} [options] Override http request option.
|
|
117
117
|
* @throws {RequiredError}
|
|
118
118
|
*/
|
|
119
|
-
getAdminIntegrationListing: (
|
|
119
|
+
getAdminIntegrationListing: (listing_1, ...args_1) => __awaiter(this, [listing_1, ...args_1], void 0, function* (listing, options = {}) {
|
|
120
120
|
// verify required parameter 'listing' is not null or undefined
|
|
121
121
|
(0, common_1.assertParamExists)('getAdminIntegrationListing', 'listing', listing);
|
|
122
122
|
const localVarPath = `/v1/integrations/admin/listings/{listing}`
|
|
@@ -149,7 +149,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
149
149
|
* @param {*} [options] Override http request option.
|
|
150
150
|
* @throws {RequiredError}
|
|
151
151
|
*/
|
|
152
|
-
getIntegrationCategories: (...
|
|
152
|
+
getIntegrationCategories: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
153
153
|
const localVarPath = `/v1/integrations/categories`;
|
|
154
154
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
155
155
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -180,7 +180,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
180
180
|
* @param {*} [options] Override http request option.
|
|
181
181
|
* @throws {RequiredError}
|
|
182
182
|
*/
|
|
183
|
-
getIntegrationCategory: (category_1, ...
|
|
183
|
+
getIntegrationCategory: (category_1, ...args_1) => __awaiter(this, [category_1, ...args_1], void 0, function* (category, options = {}) {
|
|
184
184
|
// verify required parameter 'category' is not null or undefined
|
|
185
185
|
(0, common_1.assertParamExists)('getIntegrationCategory', 'category', category);
|
|
186
186
|
const localVarPath = `/v1/integrations/categories/{category}`
|
|
@@ -214,7 +214,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
214
214
|
* @param {*} [options] Override http request option.
|
|
215
215
|
* @throws {RequiredError}
|
|
216
216
|
*/
|
|
217
|
-
getIntegrationListing: (
|
|
217
|
+
getIntegrationListing: (listing_1, ...args_1) => __awaiter(this, [listing_1, ...args_1], void 0, function* (listing, options = {}) {
|
|
218
218
|
// verify required parameter 'listing' is not null or undefined
|
|
219
219
|
(0, common_1.assertParamExists)('getIntegrationListing', 'listing', listing);
|
|
220
220
|
const localVarPath = `/v1/integrations/listings/{listing}`
|
|
@@ -247,7 +247,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
247
247
|
* @param {*} [options] Override http request option.
|
|
248
248
|
* @throws {RequiredError}
|
|
249
249
|
*/
|
|
250
|
-
getIntegrationListings: (...
|
|
250
|
+
getIntegrationListings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
251
251
|
const localVarPath = `/v1/integrations/listings`;
|
|
252
252
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
253
253
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -279,7 +279,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
279
279
|
* @param {*} [options] Override http request option.
|
|
280
280
|
* @throws {RequiredError}
|
|
281
281
|
*/
|
|
282
|
-
getIntegrationProduct: (integration_1, product_1, ...
|
|
282
|
+
getIntegrationProduct: (integration_1, product_1, ...args_1) => __awaiter(this, [integration_1, product_1, ...args_1], void 0, function* (integration, product, options = {}) {
|
|
283
283
|
// verify required parameter 'integration' is not null or undefined
|
|
284
284
|
(0, common_1.assertParamExists)('getIntegrationProduct', 'integration', integration);
|
|
285
285
|
// verify required parameter 'product' is not null or undefined
|
|
@@ -316,7 +316,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
316
316
|
* @param {*} [options] Override http request option.
|
|
317
317
|
* @throws {RequiredError}
|
|
318
318
|
*/
|
|
319
|
-
getIntegrationProducts: (
|
|
319
|
+
getIntegrationProducts: (integration_1, ...args_1) => __awaiter(this, [integration_1, ...args_1], void 0, function* (integration, options = {}) {
|
|
320
320
|
// verify required parameter 'integration' is not null or undefined
|
|
321
321
|
(0, common_1.assertParamExists)('getIntegrationProducts', 'integration', integration);
|
|
322
322
|
const localVarPath = `/v1/integrations/{integration}/products`
|
|
@@ -349,7 +349,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
349
349
|
* @param {*} [options] Override http request option.
|
|
350
350
|
* @throws {RequiredError}
|
|
351
351
|
*/
|
|
352
|
-
getIntegrations: (...
|
|
352
|
+
getIntegrations: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
353
353
|
const localVarPath = `/v1/integrations`;
|
|
354
354
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
355
355
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -379,7 +379,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
379
379
|
* @param {*} [options] Override http request option.
|
|
380
380
|
* @throws {RequiredError}
|
|
381
381
|
*/
|
|
382
|
-
listAdminIntegrationListings: (...
|
|
382
|
+
listAdminIntegrationListings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
383
383
|
const localVarPath = `/v1/integrations/admin/listings`;
|
|
384
384
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
385
385
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -411,7 +411,7 @@ const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
411
411
|
* @param {*} [options] Override http request option.
|
|
412
412
|
* @throws {RequiredError}
|
|
413
413
|
*/
|
|
414
|
-
updateAdminIntegrationListing: (
|
|
414
|
+
updateAdminIntegrationListing: (listing_1, updateAdminIntegrationListingRequest_1, ...args_1) => __awaiter(this, [listing_1, updateAdminIntegrationListingRequest_1, ...args_1], void 0, function* (listing, updateAdminIntegrationListingRequest, options = {}) {
|
|
415
415
|
// verify required parameter 'listing' is not null or undefined
|
|
416
416
|
(0, common_1.assertParamExists)('updateAdminIntegrationListing', 'listing', listing);
|
|
417
417
|
// verify required parameter 'updateAdminIntegrationListingRequest' is not null or undefined
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Integrations API
|
|
6
6
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Integrations API
|
|
6
6
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Integrations API
|
|
6
6
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -55,6 +55,12 @@ export interface AdminIntegrationListing {
|
|
|
55
55
|
* @memberof AdminIntegrationListing
|
|
56
56
|
*/
|
|
57
57
|
'content': string;
|
|
58
|
+
/**
|
|
59
|
+
* The html content of the pricing information
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof AdminIntegrationListing
|
|
62
|
+
*/
|
|
63
|
+
'pricing'?: string;
|
|
58
64
|
/**
|
|
59
65
|
* The author of the integration listing
|
|
60
66
|
* @type {string}
|
|
@@ -148,6 +154,12 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
148
154
|
* @memberof CreateAdminIntegrationListingRequest
|
|
149
155
|
*/
|
|
150
156
|
'content': string;
|
|
157
|
+
/**
|
|
158
|
+
* The html content of the pricing information
|
|
159
|
+
* @type {string}
|
|
160
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
161
|
+
*/
|
|
162
|
+
'pricing'?: string;
|
|
151
163
|
/**
|
|
152
164
|
* The author of the integration listing
|
|
153
165
|
* @type {string}
|
|
@@ -261,6 +273,12 @@ export interface Integration {
|
|
|
261
273
|
'config'?: {
|
|
262
274
|
[key: string]: string;
|
|
263
275
|
};
|
|
276
|
+
/**
|
|
277
|
+
* The icon of the integration
|
|
278
|
+
* @type {any}
|
|
279
|
+
* @memberof Integration
|
|
280
|
+
*/
|
|
281
|
+
'icon'?: any;
|
|
264
282
|
}
|
|
265
283
|
/**
|
|
266
284
|
*
|
|
@@ -348,6 +366,12 @@ export interface IntegrationListing {
|
|
|
348
366
|
* @memberof IntegrationListing
|
|
349
367
|
*/
|
|
350
368
|
'content': string;
|
|
369
|
+
/**
|
|
370
|
+
* The html content of the pricing information
|
|
371
|
+
* @type {string}
|
|
372
|
+
* @memberof IntegrationListing
|
|
373
|
+
*/
|
|
374
|
+
'pricing'?: string;
|
|
351
375
|
/**
|
|
352
376
|
* The author of the integration listing
|
|
353
377
|
* @type {string}
|
|
@@ -510,6 +534,12 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
510
534
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
511
535
|
*/
|
|
512
536
|
'content'?: string;
|
|
537
|
+
/**
|
|
538
|
+
* The html content of the pricing information
|
|
539
|
+
* @type {string}
|
|
540
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
541
|
+
*/
|
|
542
|
+
'pricing'?: string;
|
|
513
543
|
/**
|
|
514
544
|
* The code of the integration
|
|
515
545
|
* @type {string}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -79,7 +79,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
79
79
|
* @param {*} [options] Override http request option.
|
|
80
80
|
* @throws {RequiredError}
|
|
81
81
|
*/
|
|
82
|
-
deleteAdminIntegrationListing: (listing_1, ...
|
|
82
|
+
deleteAdminIntegrationListing: (listing_1, ...args_1) => __awaiter(this, [listing_1, ...args_1], void 0, function* (listing, options = {}) {
|
|
83
83
|
// verify required parameter 'listing' is not null or undefined
|
|
84
84
|
assertParamExists('deleteAdminIntegrationListing', 'listing', listing);
|
|
85
85
|
const localVarPath = `/v1/integrations/admin/listings/{listing}`
|
|
@@ -113,7 +113,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
113
113
|
* @param {*} [options] Override http request option.
|
|
114
114
|
* @throws {RequiredError}
|
|
115
115
|
*/
|
|
116
|
-
getAdminIntegrationListing: (
|
|
116
|
+
getAdminIntegrationListing: (listing_1, ...args_1) => __awaiter(this, [listing_1, ...args_1], void 0, function* (listing, options = {}) {
|
|
117
117
|
// verify required parameter 'listing' is not null or undefined
|
|
118
118
|
assertParamExists('getAdminIntegrationListing', 'listing', listing);
|
|
119
119
|
const localVarPath = `/v1/integrations/admin/listings/{listing}`
|
|
@@ -146,7 +146,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
* @param {*} [options] Override http request option.
|
|
147
147
|
* @throws {RequiredError}
|
|
148
148
|
*/
|
|
149
|
-
getIntegrationCategories: (...
|
|
149
|
+
getIntegrationCategories: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
150
150
|
const localVarPath = `/v1/integrations/categories`;
|
|
151
151
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
152
152
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -177,7 +177,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
177
177
|
* @param {*} [options] Override http request option.
|
|
178
178
|
* @throws {RequiredError}
|
|
179
179
|
*/
|
|
180
|
-
getIntegrationCategory: (category_1, ...
|
|
180
|
+
getIntegrationCategory: (category_1, ...args_1) => __awaiter(this, [category_1, ...args_1], void 0, function* (category, options = {}) {
|
|
181
181
|
// verify required parameter 'category' is not null or undefined
|
|
182
182
|
assertParamExists('getIntegrationCategory', 'category', category);
|
|
183
183
|
const localVarPath = `/v1/integrations/categories/{category}`
|
|
@@ -211,7 +211,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
211
211
|
* @param {*} [options] Override http request option.
|
|
212
212
|
* @throws {RequiredError}
|
|
213
213
|
*/
|
|
214
|
-
getIntegrationListing: (
|
|
214
|
+
getIntegrationListing: (listing_1, ...args_1) => __awaiter(this, [listing_1, ...args_1], void 0, function* (listing, options = {}) {
|
|
215
215
|
// verify required parameter 'listing' is not null or undefined
|
|
216
216
|
assertParamExists('getIntegrationListing', 'listing', listing);
|
|
217
217
|
const localVarPath = `/v1/integrations/listings/{listing}`
|
|
@@ -244,7 +244,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
244
244
|
* @param {*} [options] Override http request option.
|
|
245
245
|
* @throws {RequiredError}
|
|
246
246
|
*/
|
|
247
|
-
getIntegrationListings: (...
|
|
247
|
+
getIntegrationListings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
248
248
|
const localVarPath = `/v1/integrations/listings`;
|
|
249
249
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
250
250
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -276,7 +276,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
276
276
|
* @param {*} [options] Override http request option.
|
|
277
277
|
* @throws {RequiredError}
|
|
278
278
|
*/
|
|
279
|
-
getIntegrationProduct: (integration_1, product_1, ...
|
|
279
|
+
getIntegrationProduct: (integration_1, product_1, ...args_1) => __awaiter(this, [integration_1, product_1, ...args_1], void 0, function* (integration, product, options = {}) {
|
|
280
280
|
// verify required parameter 'integration' is not null or undefined
|
|
281
281
|
assertParamExists('getIntegrationProduct', 'integration', integration);
|
|
282
282
|
// verify required parameter 'product' is not null or undefined
|
|
@@ -313,7 +313,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
314
314
|
* @throws {RequiredError}
|
|
315
315
|
*/
|
|
316
|
-
getIntegrationProducts: (
|
|
316
|
+
getIntegrationProducts: (integration_1, ...args_1) => __awaiter(this, [integration_1, ...args_1], void 0, function* (integration, options = {}) {
|
|
317
317
|
// verify required parameter 'integration' is not null or undefined
|
|
318
318
|
assertParamExists('getIntegrationProducts', 'integration', integration);
|
|
319
319
|
const localVarPath = `/v1/integrations/{integration}/products`
|
|
@@ -346,7 +346,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
346
346
|
* @param {*} [options] Override http request option.
|
|
347
347
|
* @throws {RequiredError}
|
|
348
348
|
*/
|
|
349
|
-
getIntegrations: (...
|
|
349
|
+
getIntegrations: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
350
350
|
const localVarPath = `/v1/integrations`;
|
|
351
351
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
352
352
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -376,7 +376,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
376
376
|
* @param {*} [options] Override http request option.
|
|
377
377
|
* @throws {RequiredError}
|
|
378
378
|
*/
|
|
379
|
-
listAdminIntegrationListings: (...
|
|
379
|
+
listAdminIntegrationListings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
380
380
|
const localVarPath = `/v1/integrations/admin/listings`;
|
|
381
381
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
382
382
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -408,7 +408,7 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
408
408
|
* @param {*} [options] Override http request option.
|
|
409
409
|
* @throws {RequiredError}
|
|
410
410
|
*/
|
|
411
|
-
updateAdminIntegrationListing: (
|
|
411
|
+
updateAdminIntegrationListing: (listing_1, updateAdminIntegrationListingRequest_1, ...args_1) => __awaiter(this, [listing_1, updateAdminIntegrationListingRequest_1, ...args_1], void 0, function* (listing, updateAdminIntegrationListingRequest, options = {}) {
|
|
412
412
|
// verify required parameter 'listing' is not null or undefined
|
|
413
413
|
assertParamExists('updateAdminIntegrationListing', 'listing', listing);
|
|
414
414
|
// verify required parameter 'updateAdminIntegrationListingRequest' is not null or undefined
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Integrations API
|
|
6
6
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|