@teemill/integrations 0.12.5 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +41 -35
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +42 -36
- 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 +42 -36
- 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
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/integrations@0.
|
|
1
|
+
## @teemill/integrations@0.13.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.13.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.13.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,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
|
*
|
|
@@ -294,6 +269,12 @@ export interface Integration {
|
|
|
294
269
|
* @memberof Integration
|
|
295
270
|
*/
|
|
296
271
|
'config'?: { [key: string]: string; };
|
|
272
|
+
/**
|
|
273
|
+
* The icon of the integration
|
|
274
|
+
* @type {any}
|
|
275
|
+
* @memberof Integration
|
|
276
|
+
*/
|
|
277
|
+
'icon'?: any;
|
|
297
278
|
}
|
|
298
279
|
/**
|
|
299
280
|
*
|
|
@@ -566,10 +547,10 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
566
547
|
'slug'?: string;
|
|
567
548
|
/**
|
|
568
549
|
*
|
|
569
|
-
* @type {
|
|
550
|
+
* @type {UpdateAdminIntegrationListingRequestGradient}
|
|
570
551
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
571
552
|
*/
|
|
572
|
-
'gradient'?:
|
|
553
|
+
'gradient'?: UpdateAdminIntegrationListingRequestGradient;
|
|
573
554
|
/**
|
|
574
555
|
* The icon of the integration listing
|
|
575
556
|
* @type {string}
|
|
@@ -583,6 +564,31 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
583
564
|
*/
|
|
584
565
|
'categories'?: Array<string>;
|
|
585
566
|
}
|
|
567
|
+
/**
|
|
568
|
+
* The gradient that is used to display the listing
|
|
569
|
+
* @export
|
|
570
|
+
* @interface UpdateAdminIntegrationListingRequestGradient
|
|
571
|
+
*/
|
|
572
|
+
export interface UpdateAdminIntegrationListingRequestGradient {
|
|
573
|
+
/**
|
|
574
|
+
*
|
|
575
|
+
* @type {string}
|
|
576
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
577
|
+
*/
|
|
578
|
+
'from'?: string;
|
|
579
|
+
/**
|
|
580
|
+
*
|
|
581
|
+
* @type {string}
|
|
582
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
583
|
+
*/
|
|
584
|
+
'to'?: string;
|
|
585
|
+
/**
|
|
586
|
+
*
|
|
587
|
+
* @type {number}
|
|
588
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
589
|
+
*/
|
|
590
|
+
'angle'?: number;
|
|
591
|
+
}
|
|
586
592
|
|
|
587
593
|
/**
|
|
588
594
|
* IntegrationsApi - axios parameter creator
|
|
@@ -1236,7 +1242,7 @@ export const IntegrationsApiFp = function(configuration?: Configuration) {
|
|
|
1236
1242
|
* @param {*} [options] Override http request option.
|
|
1237
1243
|
* @throws {RequiredError}
|
|
1238
1244
|
*/
|
|
1239
|
-
async updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1245
|
+
async updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminIntegrationListing>> {
|
|
1240
1246
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAdminIntegrationListing(listing, updateAdminIntegrationListingRequest, options);
|
|
1241
1247
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1242
1248
|
const localVarOperationServerBasePath = operationServerMap['IntegrationsApi.updateAdminIntegrationListing']?.[localVarOperationServerIndex]?.url;
|
|
@@ -1365,7 +1371,7 @@ export const IntegrationsApiFactory = function (configuration?: Configuration, b
|
|
|
1365
1371
|
* @param {*} [options] Override http request option.
|
|
1366
1372
|
* @throws {RequiredError}
|
|
1367
1373
|
*/
|
|
1368
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1374
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<AdminIntegrationListing> {
|
|
1369
1375
|
return localVarFp.updateAdminIntegrationListing(requestParameters.listing, requestParameters.updateAdminIntegrationListingRequest, options).then((request) => request(axios, basePath));
|
|
1370
1376
|
},
|
|
1371
1377
|
};
|
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.13.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.13.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.13.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.13.0
|
|
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
|
*
|
|
@@ -286,6 +261,12 @@ export interface Integration {
|
|
|
286
261
|
'config'?: {
|
|
287
262
|
[key: string]: string;
|
|
288
263
|
};
|
|
264
|
+
/**
|
|
265
|
+
* The icon of the integration
|
|
266
|
+
* @type {any}
|
|
267
|
+
* @memberof Integration
|
|
268
|
+
*/
|
|
269
|
+
'icon'?: any;
|
|
289
270
|
}
|
|
290
271
|
/**
|
|
291
272
|
*
|
|
@@ -555,10 +536,10 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
555
536
|
'slug'?: string;
|
|
556
537
|
/**
|
|
557
538
|
*
|
|
558
|
-
* @type {
|
|
539
|
+
* @type {UpdateAdminIntegrationListingRequestGradient}
|
|
559
540
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
560
541
|
*/
|
|
561
|
-
'gradient'?:
|
|
542
|
+
'gradient'?: UpdateAdminIntegrationListingRequestGradient;
|
|
562
543
|
/**
|
|
563
544
|
* The icon of the integration listing
|
|
564
545
|
* @type {string}
|
|
@@ -572,6 +553,31 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
572
553
|
*/
|
|
573
554
|
'categories'?: Array<string>;
|
|
574
555
|
}
|
|
556
|
+
/**
|
|
557
|
+
* The gradient that is used to display the listing
|
|
558
|
+
* @export
|
|
559
|
+
* @interface UpdateAdminIntegrationListingRequestGradient
|
|
560
|
+
*/
|
|
561
|
+
export interface UpdateAdminIntegrationListingRequestGradient {
|
|
562
|
+
/**
|
|
563
|
+
*
|
|
564
|
+
* @type {string}
|
|
565
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
566
|
+
*/
|
|
567
|
+
'from'?: string;
|
|
568
|
+
/**
|
|
569
|
+
*
|
|
570
|
+
* @type {string}
|
|
571
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
572
|
+
*/
|
|
573
|
+
'to'?: string;
|
|
574
|
+
/**
|
|
575
|
+
*
|
|
576
|
+
* @type {number}
|
|
577
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
578
|
+
*/
|
|
579
|
+
'angle'?: number;
|
|
580
|
+
}
|
|
575
581
|
/**
|
|
576
582
|
* IntegrationsApi - axios parameter creator
|
|
577
583
|
* @export
|
|
@@ -770,7 +776,7 @@ export declare const IntegrationsApiFp: (configuration?: Configuration) => {
|
|
|
770
776
|
* @param {*} [options] Override http request option.
|
|
771
777
|
* @throws {RequiredError}
|
|
772
778
|
*/
|
|
773
|
-
updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
779
|
+
updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminIntegrationListing>>;
|
|
774
780
|
};
|
|
775
781
|
/**
|
|
776
782
|
* IntegrationsApi - factory interface
|
|
@@ -868,7 +874,7 @@ export declare const IntegrationsApiFactory: (configuration?: Configuration, bas
|
|
|
868
874
|
* @param {*} [options] Override http request option.
|
|
869
875
|
* @throws {RequiredError}
|
|
870
876
|
*/
|
|
871
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
877
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<AdminIntegrationListing>;
|
|
872
878
|
};
|
|
873
879
|
/**
|
|
874
880
|
* Request parameters for createAdminIntegrationListing operation in IntegrationsApi.
|
|
@@ -1096,5 +1102,5 @@ export declare class IntegrationsApi extends BaseAPI {
|
|
|
1096
1102
|
* @throws {RequiredError}
|
|
1097
1103
|
* @memberof IntegrationsApi
|
|
1098
1104
|
*/
|
|
1099
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1105
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any>>;
|
|
1100
1106
|
}
|
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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.0
|
|
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
|
*
|
|
@@ -286,6 +261,12 @@ export interface Integration {
|
|
|
286
261
|
'config'?: {
|
|
287
262
|
[key: string]: string;
|
|
288
263
|
};
|
|
264
|
+
/**
|
|
265
|
+
* The icon of the integration
|
|
266
|
+
* @type {any}
|
|
267
|
+
* @memberof Integration
|
|
268
|
+
*/
|
|
269
|
+
'icon'?: any;
|
|
289
270
|
}
|
|
290
271
|
/**
|
|
291
272
|
*
|
|
@@ -555,10 +536,10 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
555
536
|
'slug'?: string;
|
|
556
537
|
/**
|
|
557
538
|
*
|
|
558
|
-
* @type {
|
|
539
|
+
* @type {UpdateAdminIntegrationListingRequestGradient}
|
|
559
540
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
560
541
|
*/
|
|
561
|
-
'gradient'?:
|
|
542
|
+
'gradient'?: UpdateAdminIntegrationListingRequestGradient;
|
|
562
543
|
/**
|
|
563
544
|
* The icon of the integration listing
|
|
564
545
|
* @type {string}
|
|
@@ -572,6 +553,31 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
572
553
|
*/
|
|
573
554
|
'categories'?: Array<string>;
|
|
574
555
|
}
|
|
556
|
+
/**
|
|
557
|
+
* The gradient that is used to display the listing
|
|
558
|
+
* @export
|
|
559
|
+
* @interface UpdateAdminIntegrationListingRequestGradient
|
|
560
|
+
*/
|
|
561
|
+
export interface UpdateAdminIntegrationListingRequestGradient {
|
|
562
|
+
/**
|
|
563
|
+
*
|
|
564
|
+
* @type {string}
|
|
565
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
566
|
+
*/
|
|
567
|
+
'from'?: string;
|
|
568
|
+
/**
|
|
569
|
+
*
|
|
570
|
+
* @type {string}
|
|
571
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
572
|
+
*/
|
|
573
|
+
'to'?: string;
|
|
574
|
+
/**
|
|
575
|
+
*
|
|
576
|
+
* @type {number}
|
|
577
|
+
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
578
|
+
*/
|
|
579
|
+
'angle'?: number;
|
|
580
|
+
}
|
|
575
581
|
/**
|
|
576
582
|
* IntegrationsApi - axios parameter creator
|
|
577
583
|
* @export
|
|
@@ -770,7 +776,7 @@ export declare const IntegrationsApiFp: (configuration?: Configuration) => {
|
|
|
770
776
|
* @param {*} [options] Override http request option.
|
|
771
777
|
* @throws {RequiredError}
|
|
772
778
|
*/
|
|
773
|
-
updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
779
|
+
updateAdminIntegrationListing(listing: string, updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminIntegrationListing>>;
|
|
774
780
|
};
|
|
775
781
|
/**
|
|
776
782
|
* IntegrationsApi - factory interface
|
|
@@ -868,7 +874,7 @@ export declare const IntegrationsApiFactory: (configuration?: Configuration, bas
|
|
|
868
874
|
* @param {*} [options] Override http request option.
|
|
869
875
|
* @throws {RequiredError}
|
|
870
876
|
*/
|
|
871
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
877
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): AxiosPromise<AdminIntegrationListing>;
|
|
872
878
|
};
|
|
873
879
|
/**
|
|
874
880
|
* Request parameters for createAdminIntegrationListing operation in IntegrationsApi.
|
|
@@ -1096,5 +1102,5 @@ export declare class IntegrationsApi extends BaseAPI {
|
|
|
1096
1102
|
* @throws {RequiredError}
|
|
1097
1103
|
* @memberof IntegrationsApi
|
|
1098
1104
|
*/
|
|
1099
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1105
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any>>;
|
|
1100
1106
|
}
|
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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|