@teemill/integrations 0.11.1 → 0.12.2
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/FILES +3 -0
- package/README.md +2 -2
- package/dist/apis/IntegrationsApi.d.ts +8 -8
- package/dist/apis/IntegrationsApi.js +4 -4
- package/dist/esm/apis/IntegrationsApi.d.ts +8 -8
- package/dist/esm/apis/IntegrationsApi.js +5 -5
- package/dist/esm/models/AdminIntegrationListing.d.ts +101 -0
- package/dist/esm/models/AdminIntegrationListing.js +85 -0
- package/dist/esm/models/AdminIntegrationListingsResponse.d.ts +32 -0
- package/dist/esm/models/AdminIntegrationListingsResponse.js +41 -0
- package/dist/esm/models/ApiError.d.ts +1 -1
- package/dist/esm/models/ApiError.js +1 -1
- package/dist/esm/models/CreateAdminIntegrationListingRequest.d.ts +1 -1
- package/dist/esm/models/CreateAdminIntegrationListingRequest.js +1 -1
- package/dist/esm/models/CreateAdminIntegrationListingRequestGradient.d.ts +7 -1
- package/dist/esm/models/CreateAdminIntegrationListingRequestGradient.js +3 -1
- package/dist/esm/models/Icon.d.ts +43 -0
- package/dist/esm/models/Icon.js +48 -0
- package/dist/esm/models/Integration.d.ts +1 -1
- package/dist/esm/models/Integration.js +1 -1
- package/dist/esm/models/IntegrationCategoriesResponse.d.ts +1 -1
- package/dist/esm/models/IntegrationCategoriesResponse.js +1 -1
- package/dist/esm/models/IntegrationCategory.d.ts +1 -1
- package/dist/esm/models/IntegrationCategory.js +1 -1
- package/dist/esm/models/IntegrationListing.d.ts +4 -3
- package/dist/esm/models/IntegrationListing.js +4 -3
- package/dist/esm/models/IntegrationListingGradient.d.ts +7 -1
- package/dist/esm/models/IntegrationListingGradient.js +3 -1
- package/dist/esm/models/IntegrationListingsResponse.d.ts +1 -1
- package/dist/esm/models/IntegrationListingsResponse.js +1 -1
- package/dist/esm/models/IntegrationProduct.d.ts +1 -1
- package/dist/esm/models/IntegrationProduct.js +1 -1
- package/dist/esm/models/IntegrationProductsResponse.d.ts +1 -1
- package/dist/esm/models/IntegrationProductsResponse.js +1 -1
- package/dist/esm/models/IntegrationsResponse.d.ts +1 -1
- package/dist/esm/models/IntegrationsResponse.js +1 -1
- package/dist/esm/models/UpdateAdminIntegrationListingRequest.d.ts +1 -1
- package/dist/esm/models/UpdateAdminIntegrationListingRequest.js +1 -1
- package/dist/esm/models/index.d.ts +3 -0
- package/dist/esm/models/index.js +3 -0
- package/dist/esm/runtime.d.ts +1 -1
- package/dist/esm/runtime.js +1 -1
- package/dist/models/AdminIntegrationListing.d.ts +101 -0
- package/dist/models/AdminIntegrationListing.js +92 -0
- package/dist/models/AdminIntegrationListingsResponse.d.ts +32 -0
- package/dist/models/AdminIntegrationListingsResponse.js +48 -0
- package/dist/models/ApiError.d.ts +1 -1
- package/dist/models/ApiError.js +1 -1
- package/dist/models/CreateAdminIntegrationListingRequest.d.ts +1 -1
- package/dist/models/CreateAdminIntegrationListingRequest.js +1 -1
- package/dist/models/CreateAdminIntegrationListingRequestGradient.d.ts +7 -1
- package/dist/models/CreateAdminIntegrationListingRequestGradient.js +3 -1
- package/dist/models/Icon.d.ts +43 -0
- package/dist/models/Icon.js +55 -0
- package/dist/models/Integration.d.ts +1 -1
- package/dist/models/Integration.js +1 -1
- package/dist/models/IntegrationCategoriesResponse.d.ts +1 -1
- package/dist/models/IntegrationCategoriesResponse.js +1 -1
- package/dist/models/IntegrationCategory.d.ts +1 -1
- package/dist/models/IntegrationCategory.js +1 -1
- package/dist/models/IntegrationListing.d.ts +4 -3
- package/dist/models/IntegrationListing.js +4 -3
- package/dist/models/IntegrationListingGradient.d.ts +7 -1
- package/dist/models/IntegrationListingGradient.js +3 -1
- package/dist/models/IntegrationListingsResponse.d.ts +1 -1
- package/dist/models/IntegrationListingsResponse.js +1 -1
- package/dist/models/IntegrationProduct.d.ts +1 -1
- package/dist/models/IntegrationProduct.js +1 -1
- package/dist/models/IntegrationProductsResponse.d.ts +1 -1
- package/dist/models/IntegrationProductsResponse.js +1 -1
- package/dist/models/IntegrationsResponse.d.ts +1 -1
- package/dist/models/IntegrationsResponse.js +1 -1
- package/dist/models/UpdateAdminIntegrationListingRequest.d.ts +1 -1
- package/dist/models/UpdateAdminIntegrationListingRequest.js +1 -1
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
- package/src/apis/IntegrationsApi.ts +16 -10
- package/src/models/AdminIntegrationListing.ts +183 -0
- package/src/models/AdminIntegrationListingsResponse.ts +68 -0
- package/src/models/ApiError.ts +1 -1
- package/src/models/CreateAdminIntegrationListingRequest.ts +1 -1
- package/src/models/CreateAdminIntegrationListingRequestGradient.ts +9 -1
- package/src/models/Icon.ts +79 -0
- package/src/models/Integration.ts +1 -1
- package/src/models/IntegrationCategoriesResponse.ts +1 -1
- package/src/models/IntegrationCategory.ts +1 -1
- package/src/models/IntegrationListing.ts +11 -5
- package/src/models/IntegrationListingGradient.ts +9 -1
- package/src/models/IntegrationListingsResponse.ts +1 -1
- package/src/models/IntegrationProduct.ts +1 -1
- package/src/models/IntegrationProductsResponse.ts +1 -1
- package/src/models/IntegrationsResponse.ts +1 -1
- package/src/models/UpdateAdminIntegrationListingRequest.ts +1 -1
- package/src/models/index.ts +3 -0
- package/src/runtime.ts +1 -1
package/dist/models/ApiError.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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -27,6 +27,12 @@ export interface CreateAdminIntegrationListingRequestGradient {
|
|
|
27
27
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
28
28
|
*/
|
|
29
29
|
to?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
34
|
+
*/
|
|
35
|
+
angle?: number;
|
|
30
36
|
}
|
|
31
37
|
/**
|
|
32
38
|
* Check if a given object implements the CreateAdminIntegrationListingRequestGradient interface.
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -32,6 +32,7 @@ function CreateAdminIntegrationListingRequestGradientFromJSONTyped(json, ignoreD
|
|
|
32
32
|
return {
|
|
33
33
|
'from': json['from'] == null ? undefined : json['from'],
|
|
34
34
|
'to': json['to'] == null ? undefined : json['to'],
|
|
35
|
+
'angle': json['angle'] == null ? undefined : json['angle'],
|
|
35
36
|
};
|
|
36
37
|
}
|
|
37
38
|
exports.CreateAdminIntegrationListingRequestGradientFromJSONTyped = CreateAdminIntegrationListingRequestGradientFromJSONTyped;
|
|
@@ -42,6 +43,7 @@ function CreateAdminIntegrationListingRequestGradientToJSON(value) {
|
|
|
42
43
|
return {
|
|
43
44
|
'from': value['from'],
|
|
44
45
|
'to': value['to'],
|
|
46
|
+
'angle': value['angle'],
|
|
45
47
|
};
|
|
46
48
|
}
|
|
47
49
|
exports.CreateAdminIntegrationListingRequestGradientToJSON = CreateAdminIntegrationListingRequestGradientToJSON;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Integrations API
|
|
3
|
+
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.12.2
|
|
6
|
+
* Contact: hello@teemill.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface Icon
|
|
16
|
+
*/
|
|
17
|
+
export interface Icon {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof Icon
|
|
22
|
+
*/
|
|
23
|
+
prefix: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof Icon
|
|
28
|
+
*/
|
|
29
|
+
iconName: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {object}
|
|
33
|
+
* @memberof Icon
|
|
34
|
+
*/
|
|
35
|
+
data: object;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the Icon interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfIcon(value: object): value is Icon;
|
|
41
|
+
export declare function IconFromJSON(json: any): Icon;
|
|
42
|
+
export declare function IconFromJSONTyped(json: any, ignoreDiscriminator: boolean): Icon;
|
|
43
|
+
export declare function IconToJSON(value?: Icon | null): any;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Integrations API
|
|
6
|
+
* Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.12.2
|
|
9
|
+
* Contact: hello@teemill.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.IconToJSON = exports.IconFromJSONTyped = exports.IconFromJSON = exports.instanceOfIcon = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the Icon interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfIcon(value) {
|
|
21
|
+
if (!('prefix' in value) || value['prefix'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('iconName' in value) || value['iconName'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('data' in value) || value['data'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
exports.instanceOfIcon = instanceOfIcon;
|
|
30
|
+
function IconFromJSON(json) {
|
|
31
|
+
return IconFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
exports.IconFromJSON = IconFromJSON;
|
|
34
|
+
function IconFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'prefix': json['prefix'],
|
|
40
|
+
'iconName': json['iconName'],
|
|
41
|
+
'data': json['data'],
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
exports.IconFromJSONTyped = IconFromJSONTyped;
|
|
45
|
+
function IconToJSON(value) {
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'prefix': value['prefix'],
|
|
51
|
+
'iconName': value['iconName'],
|
|
52
|
+
'data': value['data'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.IconToJSON = IconToJSON;
|
|
@@ -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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { IntegrationCategory } from './IntegrationCategory';
|
|
13
13
|
import type { IntegrationListingGradient } from './IntegrationListingGradient';
|
|
14
|
+
import type { Icon } from './Icon';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
16
17
|
* @export
|
|
@@ -61,10 +62,10 @@ export interface IntegrationListing {
|
|
|
61
62
|
author: string;
|
|
62
63
|
/**
|
|
63
64
|
*
|
|
64
|
-
* @type {
|
|
65
|
+
* @type {Icon}
|
|
65
66
|
* @memberof IntegrationListing
|
|
66
67
|
*/
|
|
67
|
-
icon:
|
|
68
|
+
icon: Icon;
|
|
68
69
|
/**
|
|
69
70
|
*
|
|
70
71
|
* @type {IntegrationListingGradient}
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -16,6 +16,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.IntegrationListingToJSON = exports.IntegrationListingFromJSONTyped = exports.IntegrationListingFromJSON = exports.instanceOfIntegrationListing = void 0;
|
|
17
17
|
const IntegrationCategory_1 = require("./IntegrationCategory");
|
|
18
18
|
const IntegrationListingGradient_1 = require("./IntegrationListingGradient");
|
|
19
|
+
const Icon_1 = require("./Icon");
|
|
19
20
|
/**
|
|
20
21
|
* Check if a given object implements the IntegrationListing interface.
|
|
21
22
|
*/
|
|
@@ -59,7 +60,7 @@ function IntegrationListingFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
59
60
|
'description': json['description'],
|
|
60
61
|
'content': json['content'],
|
|
61
62
|
'author': json['author'],
|
|
62
|
-
'icon': json['icon'],
|
|
63
|
+
'icon': (0, Icon_1.IconFromJSON)(json['icon']),
|
|
63
64
|
'gradient': (0, IntegrationListingGradient_1.IntegrationListingGradientFromJSON)(json['gradient']),
|
|
64
65
|
'dependencies': json['dependencies'],
|
|
65
66
|
'categories': (json['categories'].map(IntegrationCategory_1.IntegrationCategoryFromJSON)),
|
|
@@ -77,7 +78,7 @@ function IntegrationListingToJSON(value) {
|
|
|
77
78
|
'description': value['description'],
|
|
78
79
|
'content': value['content'],
|
|
79
80
|
'author': value['author'],
|
|
80
|
-
'icon': value['icon'],
|
|
81
|
+
'icon': (0, Icon_1.IconToJSON)(value['icon']),
|
|
81
82
|
'gradient': (0, IntegrationListingGradient_1.IntegrationListingGradientToJSON)(value['gradient']),
|
|
82
83
|
'dependencies': value['dependencies'],
|
|
83
84
|
'categories': (value['categories'].map(IntegrationCategory_1.IntegrationCategoryToJSON)),
|
|
@@ -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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -27,6 +27,12 @@ export interface IntegrationListingGradient {
|
|
|
27
27
|
* @memberof IntegrationListingGradient
|
|
28
28
|
*/
|
|
29
29
|
to?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof IntegrationListingGradient
|
|
34
|
+
*/
|
|
35
|
+
angle?: string;
|
|
30
36
|
}
|
|
31
37
|
/**
|
|
32
38
|
* Check if a given object implements the IntegrationListingGradient interface.
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -32,6 +32,7 @@ function IntegrationListingGradientFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
32
|
return {
|
|
33
33
|
'from': json['from'] == null ? undefined : json['from'],
|
|
34
34
|
'to': json['to'] == null ? undefined : json['to'],
|
|
35
|
+
'angle': json['angle'] == null ? undefined : json['angle'],
|
|
35
36
|
};
|
|
36
37
|
}
|
|
37
38
|
exports.IntegrationListingGradientFromJSONTyped = IntegrationListingGradientFromJSONTyped;
|
|
@@ -42,6 +43,7 @@ function IntegrationListingGradientToJSON(value) {
|
|
|
42
43
|
return {
|
|
43
44
|
'from': value['from'],
|
|
44
45
|
'to': value['to'],
|
|
46
|
+
'angle': value['angle'],
|
|
45
47
|
};
|
|
46
48
|
}
|
|
47
49
|
exports.IntegrationListingGradientToJSON = IntegrationListingGradientToJSON;
|
|
@@ -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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* 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.12.2
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.12.2
|
|
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/models/index.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
export * from './AdminIntegrationListing';
|
|
2
|
+
export * from './AdminIntegrationListingsResponse';
|
|
1
3
|
export * from './ApiError';
|
|
2
4
|
export * from './CreateAdminIntegrationListingRequest';
|
|
3
5
|
export * from './CreateAdminIntegrationListingRequestGradient';
|
|
6
|
+
export * from './Icon';
|
|
4
7
|
export * from './Integration';
|
|
5
8
|
export * from './IntegrationCategoriesResponse';
|
|
6
9
|
export * from './IntegrationCategory';
|
package/dist/models/index.js
CHANGED
|
@@ -16,9 +16,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
/* tslint:disable */
|
|
18
18
|
/* eslint-disable */
|
|
19
|
+
__exportStar(require("./AdminIntegrationListing"), exports);
|
|
20
|
+
__exportStar(require("./AdminIntegrationListingsResponse"), exports);
|
|
19
21
|
__exportStar(require("./ApiError"), exports);
|
|
20
22
|
__exportStar(require("./CreateAdminIntegrationListingRequest"), exports);
|
|
21
23
|
__exportStar(require("./CreateAdminIntegrationListingRequestGradient"), exports);
|
|
24
|
+
__exportStar(require("./Icon"), exports);
|
|
22
25
|
__exportStar(require("./Integration"), exports);
|
|
23
26
|
__exportStar(require("./IntegrationCategoriesResponse"), exports);
|
|
24
27
|
__exportStar(require("./IntegrationCategory"), exports);
|
package/dist/runtime.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.12.2
|
|
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/runtime.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.12.2
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/package.json
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.12.2
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
17
|
import type {
|
|
18
|
+
AdminIntegrationListing,
|
|
19
|
+
AdminIntegrationListingsResponse,
|
|
18
20
|
ApiError,
|
|
19
21
|
CreateAdminIntegrationListingRequest,
|
|
20
22
|
IntegrationCategoriesResponse,
|
|
@@ -26,6 +28,10 @@ import type {
|
|
|
26
28
|
UpdateAdminIntegrationListingRequest,
|
|
27
29
|
} from '../models/index';
|
|
28
30
|
import {
|
|
31
|
+
AdminIntegrationListingFromJSON,
|
|
32
|
+
AdminIntegrationListingToJSON,
|
|
33
|
+
AdminIntegrationListingsResponseFromJSON,
|
|
34
|
+
AdminIntegrationListingsResponseToJSON,
|
|
29
35
|
ApiErrorFromJSON,
|
|
30
36
|
ApiErrorToJSON,
|
|
31
37
|
CreateAdminIntegrationListingRequestFromJSON,
|
|
@@ -89,7 +95,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
89
95
|
* Create a new integration listing
|
|
90
96
|
* Create integration listing
|
|
91
97
|
*/
|
|
92
|
-
async createAdminIntegrationListingRaw(requestParameters: CreateAdminIntegrationListingOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
98
|
+
async createAdminIntegrationListingRaw(requestParameters: CreateAdminIntegrationListingOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AdminIntegrationListing>> {
|
|
93
99
|
if (requestParameters.createAdminIntegrationListingRequest === null || requestParameters.createAdminIntegrationListingRequest === undefined) {
|
|
94
100
|
throw new runtime.RequiredError('createAdminIntegrationListingRequest','Required parameter requestParameters.createAdminIntegrationListingRequest was null or undefined when calling createAdminIntegrationListing.');
|
|
95
101
|
}
|
|
@@ -117,7 +123,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
117
123
|
body: CreateAdminIntegrationListingRequestToJSON(requestParameters.createAdminIntegrationListingRequest),
|
|
118
124
|
}, initOverrides);
|
|
119
125
|
|
|
120
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
126
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => AdminIntegrationListingFromJSON(jsonValue));
|
|
121
127
|
}
|
|
122
128
|
|
|
123
129
|
/**
|
|
@@ -127,7 +133,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
127
133
|
async createAdminIntegrationListing(
|
|
128
134
|
createAdminIntegrationListingRequest: CreateAdminIntegrationListingRequest,
|
|
129
135
|
initOverrides?: RequestInit | runtime.InitOverrideFunction
|
|
130
|
-
): Promise<
|
|
136
|
+
): Promise<AdminIntegrationListing> {
|
|
131
137
|
const response = await this.createAdminIntegrationListingRaw(
|
|
132
138
|
{
|
|
133
139
|
createAdminIntegrationListingRequest: createAdminIntegrationListingRequest,
|
|
@@ -190,7 +196,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
190
196
|
* Retrieves a specific integration listing by its slug.
|
|
191
197
|
* Retrieve integration listing
|
|
192
198
|
*/
|
|
193
|
-
async getAdminIntegrationListingRaw(requestParameters: GetAdminIntegrationListingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
199
|
+
async getAdminIntegrationListingRaw(requestParameters: GetAdminIntegrationListingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AdminIntegrationListing>> {
|
|
194
200
|
if (requestParameters.listing === null || requestParameters.listing === undefined) {
|
|
195
201
|
throw new runtime.RequiredError('listing','Required parameter requestParameters.listing was null or undefined when calling getAdminIntegrationListing.');
|
|
196
202
|
}
|
|
@@ -215,7 +221,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
215
221
|
query: queryParameters,
|
|
216
222
|
}, initOverrides);
|
|
217
223
|
|
|
218
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
224
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => AdminIntegrationListingFromJSON(jsonValue));
|
|
219
225
|
}
|
|
220
226
|
|
|
221
227
|
/**
|
|
@@ -225,7 +231,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
225
231
|
async getAdminIntegrationListing(
|
|
226
232
|
listing: string,
|
|
227
233
|
initOverrides?: RequestInit | runtime.InitOverrideFunction
|
|
228
|
-
): Promise<
|
|
234
|
+
): Promise<AdminIntegrationListing> {
|
|
229
235
|
const response = await this.getAdminIntegrationListingRaw(
|
|
230
236
|
{
|
|
231
237
|
listing: listing,
|
|
@@ -576,7 +582,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
576
582
|
* List all integration listings
|
|
577
583
|
* List integration listings
|
|
578
584
|
*/
|
|
579
|
-
async listAdminIntegrationListingsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
585
|
+
async listAdminIntegrationListingsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AdminIntegrationListingsResponse>> {
|
|
580
586
|
const queryParameters: any = {};
|
|
581
587
|
|
|
582
588
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
@@ -597,7 +603,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
597
603
|
query: queryParameters,
|
|
598
604
|
}, initOverrides);
|
|
599
605
|
|
|
600
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
606
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => AdminIntegrationListingsResponseFromJSON(jsonValue));
|
|
601
607
|
}
|
|
602
608
|
|
|
603
609
|
/**
|
|
@@ -607,7 +613,7 @@ export class IntegrationsApi extends runtime.BaseAPI {
|
|
|
607
613
|
async listAdminIntegrationListings(
|
|
608
614
|
|
|
609
615
|
initOverrides?: RequestInit | runtime.InitOverrideFunction
|
|
610
|
-
): Promise<
|
|
616
|
+
): Promise<AdminIntegrationListingsResponse> {
|
|
611
617
|
const response = await this.listAdminIntegrationListingsRaw(
|
|
612
618
|
|
|
613
619
|
initOverrides
|