@teemill/integrations 0.12.5 → 0.12.7
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 +2 -2
- package/api.ts +35 -35
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +36 -36
- package/dist/api.js +1 -1
- 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 +36 -36
- package/dist/esm/api.js +1 -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/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/integrations@0.12.
|
|
1
|
+
## @teemill/integrations@0.12.7
|
|
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.12.
|
|
39
|
+
npm install @teemill/integrations@0.12.7 --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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -79,10 +79,10 @@ export interface AdminIntegrationListing {
|
|
|
79
79
|
'icon': Icon;
|
|
80
80
|
/**
|
|
81
81
|
*
|
|
82
|
-
* @type {
|
|
82
|
+
* @type {IntegrationListingGradient}
|
|
83
83
|
* @memberof AdminIntegrationListing
|
|
84
84
|
*/
|
|
85
|
-
'gradient':
|
|
85
|
+
'gradient': IntegrationListingGradient;
|
|
86
86
|
/**
|
|
87
87
|
*
|
|
88
88
|
* @type {Integration}
|
|
@@ -102,31 +102,6 @@ export interface AdminIntegrationListing {
|
|
|
102
102
|
*/
|
|
103
103
|
'categories': Array<IntegrationCategory>;
|
|
104
104
|
}
|
|
105
|
-
/**
|
|
106
|
-
* The gradient that is used to display the listing
|
|
107
|
-
* @export
|
|
108
|
-
* @interface AdminIntegrationListingGradient
|
|
109
|
-
*/
|
|
110
|
-
export interface AdminIntegrationListingGradient {
|
|
111
|
-
/**
|
|
112
|
-
*
|
|
113
|
-
* @type {string}
|
|
114
|
-
* @memberof AdminIntegrationListingGradient
|
|
115
|
-
*/
|
|
116
|
-
'from'?: string;
|
|
117
|
-
/**
|
|
118
|
-
*
|
|
119
|
-
* @type {string}
|
|
120
|
-
* @memberof AdminIntegrationListingGradient
|
|
121
|
-
*/
|
|
122
|
-
'to'?: string;
|
|
123
|
-
/**
|
|
124
|
-
*
|
|
125
|
-
* @type {string}
|
|
126
|
-
* @memberof AdminIntegrationListingGradient
|
|
127
|
-
*/
|
|
128
|
-
'angle'?: string;
|
|
129
|
-
}
|
|
130
105
|
/**
|
|
131
106
|
*
|
|
132
107
|
* @export
|
|
@@ -231,19 +206,19 @@ export interface CreateAdminIntegrationListingRequestGradient {
|
|
|
231
206
|
* @type {string}
|
|
232
207
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
233
208
|
*/
|
|
234
|
-
'from'
|
|
209
|
+
'from': string;
|
|
235
210
|
/**
|
|
236
211
|
*
|
|
237
212
|
* @type {string}
|
|
238
213
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
239
214
|
*/
|
|
240
|
-
'to'
|
|
215
|
+
'to': string;
|
|
241
216
|
/**
|
|
242
217
|
*
|
|
243
218
|
* @type {number}
|
|
244
219
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
245
220
|
*/
|
|
246
|
-
'angle'
|
|
221
|
+
'angle': number;
|
|
247
222
|
}
|
|
248
223
|
/**
|
|
249
224
|
*
|
|
@@ -566,10 +541,10 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
566
541
|
'slug'?: string;
|
|
567
542
|
/**
|
|
568
543
|
*
|
|
569
|
-
* @type {
|
|
544
|
+
* @type {UpdateAdminIntegrationListingRequestGradient}
|
|
570
545
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
571
546
|
*/
|
|
572
|
-
'gradient'?:
|
|
547
|
+
'gradient'?: UpdateAdminIntegrationListingRequestGradient;
|
|
573
548
|
/**
|
|
574
549
|
* The icon of the integration listing
|
|
575
550
|
* @type {string}
|
|
@@ -583,6 +558,31 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
583
558
|
*/
|
|
584
559
|
'categories'?: Array<string>;
|
|
585
560
|
}
|
|
561
|
+
/**
|
|
562
|
+
* The gradient that is used to display the listing
|
|
563
|
+
* @export
|
|
564
|
+
* @interface UpdateAdminIntegrationListingRequestGradient
|
|
565
|
+
*/
|
|
566
|
+
export interface UpdateAdminIntegrationListingRequestGradient {
|
|
567
|
+
/**
|
|
568
|
+
*
|
|
569
|
+
* @type {string}
|
|
570
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
571
|
+
*/
|
|
572
|
+
'from'?: string;
|
|
573
|
+
/**
|
|
574
|
+
*
|
|
575
|
+
* @type {string}
|
|
576
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
577
|
+
*/
|
|
578
|
+
'to'?: string;
|
|
579
|
+
/**
|
|
580
|
+
*
|
|
581
|
+
* @type {number}
|
|
582
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
583
|
+
*/
|
|
584
|
+
'angle'?: number;
|
|
585
|
+
}
|
|
586
586
|
|
|
587
587
|
/**
|
|
588
588
|
* IntegrationsApi - axios parameter creator
|
|
@@ -1236,7 +1236,7 @@ export const IntegrationsApiFp = function(configuration?: Configuration) {
|
|
|
1236
1236
|
* @param {*} [options] Override http request option.
|
|
1237
1237
|
* @throws {RequiredError}
|
|
1238
1238
|
*/
|
|
1239
|
-
async updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1239
|
+
async updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminIntegrationListing>> {
|
|
1240
1240
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAdminIntegrationListing(listing, updateAdminIntegrationListingRequest, options);
|
|
1241
1241
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1242
1242
|
const localVarOperationServerBasePath = operationServerMap['IntegrationsApi.updateAdminIntegrationListing']?.[localVarOperationServerIndex]?.url;
|
|
@@ -1365,7 +1365,7 @@ export const IntegrationsApiFactory = function (configuration?: Configuration, b
|
|
|
1365
1365
|
* @param {*} [options] Override http request option.
|
|
1366
1366
|
* @throws {RequiredError}
|
|
1367
1367
|
*/
|
|
1368
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1368
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<AdminIntegrationListing> {
|
|
1369
1369
|
return localVarFp.updateAdminIntegrationListing(requestParameters.listing, requestParameters.updateAdminIntegrationListingRequest, options).then((request) => request(axios, basePath));
|
|
1370
1370
|
},
|
|
1371
1371
|
};
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -69,10 +69,10 @@ export interface AdminIntegrationListing {
|
|
|
69
69
|
'icon': Icon;
|
|
70
70
|
/**
|
|
71
71
|
*
|
|
72
|
-
* @type {
|
|
72
|
+
* @type {IntegrationListingGradient}
|
|
73
73
|
* @memberof AdminIntegrationListing
|
|
74
74
|
*/
|
|
75
|
-
'gradient':
|
|
75
|
+
'gradient': IntegrationListingGradient;
|
|
76
76
|
/**
|
|
77
77
|
*
|
|
78
78
|
* @type {Integration}
|
|
@@ -92,31 +92,6 @@ export interface AdminIntegrationListing {
|
|
|
92
92
|
*/
|
|
93
93
|
'categories': Array<IntegrationCategory>;
|
|
94
94
|
}
|
|
95
|
-
/**
|
|
96
|
-
* The gradient that is used to display the listing
|
|
97
|
-
* @export
|
|
98
|
-
* @interface AdminIntegrationListingGradient
|
|
99
|
-
*/
|
|
100
|
-
export interface AdminIntegrationListingGradient {
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @type {string}
|
|
104
|
-
* @memberof AdminIntegrationListingGradient
|
|
105
|
-
*/
|
|
106
|
-
'from'?: string;
|
|
107
|
-
/**
|
|
108
|
-
*
|
|
109
|
-
* @type {string}
|
|
110
|
-
* @memberof AdminIntegrationListingGradient
|
|
111
|
-
*/
|
|
112
|
-
'to'?: string;
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @type {string}
|
|
116
|
-
* @memberof AdminIntegrationListingGradient
|
|
117
|
-
*/
|
|
118
|
-
'angle'?: string;
|
|
119
|
-
}
|
|
120
95
|
/**
|
|
121
96
|
*
|
|
122
97
|
* @export
|
|
@@ -221,19 +196,19 @@ export interface CreateAdminIntegrationListingRequestGradient {
|
|
|
221
196
|
* @type {string}
|
|
222
197
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
223
198
|
*/
|
|
224
|
-
'from'
|
|
199
|
+
'from': string;
|
|
225
200
|
/**
|
|
226
201
|
*
|
|
227
202
|
* @type {string}
|
|
228
203
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
229
204
|
*/
|
|
230
|
-
'to'
|
|
205
|
+
'to': string;
|
|
231
206
|
/**
|
|
232
207
|
*
|
|
233
208
|
* @type {number}
|
|
234
209
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
235
210
|
*/
|
|
236
|
-
'angle'
|
|
211
|
+
'angle': number;
|
|
237
212
|
}
|
|
238
213
|
/**
|
|
239
214
|
*
|
|
@@ -555,10 +530,10 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
555
530
|
'slug'?: string;
|
|
556
531
|
/**
|
|
557
532
|
*
|
|
558
|
-
* @type {
|
|
533
|
+
* @type {UpdateAdminIntegrationListingRequestGradient}
|
|
559
534
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
560
535
|
*/
|
|
561
|
-
'gradient'?:
|
|
536
|
+
'gradient'?: UpdateAdminIntegrationListingRequestGradient;
|
|
562
537
|
/**
|
|
563
538
|
* The icon of the integration listing
|
|
564
539
|
* @type {string}
|
|
@@ -572,6 +547,31 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
572
547
|
*/
|
|
573
548
|
'categories'?: Array<string>;
|
|
574
549
|
}
|
|
550
|
+
/**
|
|
551
|
+
* The gradient that is used to display the listing
|
|
552
|
+
* @export
|
|
553
|
+
* @interface UpdateAdminIntegrationListingRequestGradient
|
|
554
|
+
*/
|
|
555
|
+
export interface UpdateAdminIntegrationListingRequestGradient {
|
|
556
|
+
/**
|
|
557
|
+
*
|
|
558
|
+
* @type {string}
|
|
559
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
560
|
+
*/
|
|
561
|
+
'from'?: string;
|
|
562
|
+
/**
|
|
563
|
+
*
|
|
564
|
+
* @type {string}
|
|
565
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
566
|
+
*/
|
|
567
|
+
'to'?: string;
|
|
568
|
+
/**
|
|
569
|
+
*
|
|
570
|
+
* @type {number}
|
|
571
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
572
|
+
*/
|
|
573
|
+
'angle'?: number;
|
|
574
|
+
}
|
|
575
575
|
/**
|
|
576
576
|
* IntegrationsApi - axios parameter creator
|
|
577
577
|
* @export
|
|
@@ -770,7 +770,7 @@ export declare const IntegrationsApiFp: (configuration?: Configuration) => {
|
|
|
770
770
|
* @param {*} [options] Override http request option.
|
|
771
771
|
* @throws {RequiredError}
|
|
772
772
|
*/
|
|
773
|
-
updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
773
|
+
updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminIntegrationListing>>;
|
|
774
774
|
};
|
|
775
775
|
/**
|
|
776
776
|
* IntegrationsApi - factory interface
|
|
@@ -868,7 +868,7 @@ export declare const IntegrationsApiFactory: (configuration?: Configuration, bas
|
|
|
868
868
|
* @param {*} [options] Override http request option.
|
|
869
869
|
* @throws {RequiredError}
|
|
870
870
|
*/
|
|
871
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
871
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<AdminIntegrationListing>;
|
|
872
872
|
};
|
|
873
873
|
/**
|
|
874
874
|
* Request parameters for createAdminIntegrationListing operation in IntegrationsApi.
|
|
@@ -1096,5 +1096,5 @@ export declare class IntegrationsApi extends BaseAPI {
|
|
|
1096
1096
|
* @throws {RequiredError}
|
|
1097
1097
|
* @memberof IntegrationsApi
|
|
1098
1098
|
*/
|
|
1099
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1099
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any>>;
|
|
1100
1100
|
}
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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/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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -69,10 +69,10 @@ export interface AdminIntegrationListing {
|
|
|
69
69
|
'icon': Icon;
|
|
70
70
|
/**
|
|
71
71
|
*
|
|
72
|
-
* @type {
|
|
72
|
+
* @type {IntegrationListingGradient}
|
|
73
73
|
* @memberof AdminIntegrationListing
|
|
74
74
|
*/
|
|
75
|
-
'gradient':
|
|
75
|
+
'gradient': IntegrationListingGradient;
|
|
76
76
|
/**
|
|
77
77
|
*
|
|
78
78
|
* @type {Integration}
|
|
@@ -92,31 +92,6 @@ export interface AdminIntegrationListing {
|
|
|
92
92
|
*/
|
|
93
93
|
'categories': Array<IntegrationCategory>;
|
|
94
94
|
}
|
|
95
|
-
/**
|
|
96
|
-
* The gradient that is used to display the listing
|
|
97
|
-
* @export
|
|
98
|
-
* @interface AdminIntegrationListingGradient
|
|
99
|
-
*/
|
|
100
|
-
export interface AdminIntegrationListingGradient {
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @type {string}
|
|
104
|
-
* @memberof AdminIntegrationListingGradient
|
|
105
|
-
*/
|
|
106
|
-
'from'?: string;
|
|
107
|
-
/**
|
|
108
|
-
*
|
|
109
|
-
* @type {string}
|
|
110
|
-
* @memberof AdminIntegrationListingGradient
|
|
111
|
-
*/
|
|
112
|
-
'to'?: string;
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @type {string}
|
|
116
|
-
* @memberof AdminIntegrationListingGradient
|
|
117
|
-
*/
|
|
118
|
-
'angle'?: string;
|
|
119
|
-
}
|
|
120
95
|
/**
|
|
121
96
|
*
|
|
122
97
|
* @export
|
|
@@ -221,19 +196,19 @@ export interface CreateAdminIntegrationListingRequestGradient {
|
|
|
221
196
|
* @type {string}
|
|
222
197
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
223
198
|
*/
|
|
224
|
-
'from'
|
|
199
|
+
'from': string;
|
|
225
200
|
/**
|
|
226
201
|
*
|
|
227
202
|
* @type {string}
|
|
228
203
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
229
204
|
*/
|
|
230
|
-
'to'
|
|
205
|
+
'to': string;
|
|
231
206
|
/**
|
|
232
207
|
*
|
|
233
208
|
* @type {number}
|
|
234
209
|
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
235
210
|
*/
|
|
236
|
-
'angle'
|
|
211
|
+
'angle': number;
|
|
237
212
|
}
|
|
238
213
|
/**
|
|
239
214
|
*
|
|
@@ -555,10 +530,10 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
555
530
|
'slug'?: string;
|
|
556
531
|
/**
|
|
557
532
|
*
|
|
558
|
-
* @type {
|
|
533
|
+
* @type {UpdateAdminIntegrationListingRequestGradient}
|
|
559
534
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
560
535
|
*/
|
|
561
|
-
'gradient'?:
|
|
536
|
+
'gradient'?: UpdateAdminIntegrationListingRequestGradient;
|
|
562
537
|
/**
|
|
563
538
|
* The icon of the integration listing
|
|
564
539
|
* @type {string}
|
|
@@ -572,6 +547,31 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
572
547
|
*/
|
|
573
548
|
'categories'?: Array<string>;
|
|
574
549
|
}
|
|
550
|
+
/**
|
|
551
|
+
* The gradient that is used to display the listing
|
|
552
|
+
* @export
|
|
553
|
+
* @interface UpdateAdminIntegrationListingRequestGradient
|
|
554
|
+
*/
|
|
555
|
+
export interface UpdateAdminIntegrationListingRequestGradient {
|
|
556
|
+
/**
|
|
557
|
+
*
|
|
558
|
+
* @type {string}
|
|
559
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
560
|
+
*/
|
|
561
|
+
'from'?: string;
|
|
562
|
+
/**
|
|
563
|
+
*
|
|
564
|
+
* @type {string}
|
|
565
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
566
|
+
*/
|
|
567
|
+
'to'?: string;
|
|
568
|
+
/**
|
|
569
|
+
*
|
|
570
|
+
* @type {number}
|
|
571
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
572
|
+
*/
|
|
573
|
+
'angle'?: number;
|
|
574
|
+
}
|
|
575
575
|
/**
|
|
576
576
|
* IntegrationsApi - axios parameter creator
|
|
577
577
|
* @export
|
|
@@ -770,7 +770,7 @@ export declare const IntegrationsApiFp: (configuration?: Configuration) => {
|
|
|
770
770
|
* @param {*} [options] Override http request option.
|
|
771
771
|
* @throws {RequiredError}
|
|
772
772
|
*/
|
|
773
|
-
updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
773
|
+
updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminIntegrationListing>>;
|
|
774
774
|
};
|
|
775
775
|
/**
|
|
776
776
|
* IntegrationsApi - factory interface
|
|
@@ -868,7 +868,7 @@ export declare const IntegrationsApiFactory: (configuration?: Configuration, bas
|
|
|
868
868
|
* @param {*} [options] Override http request option.
|
|
869
869
|
* @throws {RequiredError}
|
|
870
870
|
*/
|
|
871
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
871
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<AdminIntegrationListing>;
|
|
872
872
|
};
|
|
873
873
|
/**
|
|
874
874
|
* Request parameters for createAdminIntegrationListing operation in IntegrationsApi.
|
|
@@ -1096,5 +1096,5 @@ export declare class IntegrationsApi extends BaseAPI {
|
|
|
1096
1096
|
* @throws {RequiredError}
|
|
1097
1097
|
* @memberof IntegrationsApi
|
|
1098
1098
|
*/
|
|
1099
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1099
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any>>;
|
|
1100
1100
|
}
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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/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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 0.12.7
|
|
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.12.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.7
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|