@teemill/integrations 0.17.2 → 0.17.4
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 +1 -400
- package/base.ts +1 -25
- package/common.ts +1 -2
- package/configuration.ts +1 -18
- package/dist/api.d.ts +13 -412
- package/dist/api.js +1 -19
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -18
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +13 -412
- package/dist/esm/api.js +1 -19
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -18
- 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 +2 -2
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage PodOS Integrations
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.17.
|
|
7
|
+
* The version of the OpenAPI document: 0.17.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -23,330 +23,152 @@ import type { RequestArgs } from './base';
|
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';
|
|
25
25
|
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @export
|
|
29
|
-
* @interface AdminIntegrationListing
|
|
30
|
-
*/
|
|
31
26
|
export interface AdminIntegrationListing {
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {number}
|
|
35
|
-
* @memberof AdminIntegrationListing
|
|
36
|
-
*/
|
|
37
27
|
'id'?: number;
|
|
38
28
|
/**
|
|
39
29
|
* The slug of the integration listing that is used in the URL
|
|
40
|
-
* @type {string}
|
|
41
|
-
* @memberof AdminIntegrationListing
|
|
42
30
|
*/
|
|
43
31
|
'slug': string;
|
|
44
32
|
/**
|
|
45
33
|
* The code of the integration
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @memberof AdminIntegrationListing
|
|
48
34
|
*/
|
|
49
35
|
'code': string;
|
|
50
36
|
/**
|
|
51
37
|
* The name of the integration listing
|
|
52
|
-
* @type {string}
|
|
53
|
-
* @memberof AdminIntegrationListing
|
|
54
38
|
*/
|
|
55
39
|
'name': string;
|
|
56
40
|
/**
|
|
57
41
|
* The description of the integration listing
|
|
58
|
-
* @type {string}
|
|
59
|
-
* @memberof AdminIntegrationListing
|
|
60
42
|
*/
|
|
61
43
|
'description': string;
|
|
62
44
|
/**
|
|
63
45
|
* The html content of the integration listing
|
|
64
|
-
* @type {string}
|
|
65
|
-
* @memberof AdminIntegrationListing
|
|
66
46
|
*/
|
|
67
47
|
'content': string;
|
|
68
48
|
/**
|
|
69
49
|
* The html content of the pricing information
|
|
70
|
-
* @type {string}
|
|
71
|
-
* @memberof AdminIntegrationListing
|
|
72
50
|
*/
|
|
73
51
|
'pricing'?: string;
|
|
74
52
|
/**
|
|
75
53
|
* The author of the integration listing
|
|
76
|
-
* @type {string}
|
|
77
|
-
* @memberof AdminIntegrationListing
|
|
78
54
|
*/
|
|
79
55
|
'author': string;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @type {Icon}
|
|
83
|
-
* @memberof AdminIntegrationListing
|
|
84
|
-
*/
|
|
85
56
|
'icon': Icon;
|
|
86
|
-
/**
|
|
87
|
-
*
|
|
88
|
-
* @type {IntegrationListingGradient}
|
|
89
|
-
* @memberof AdminIntegrationListing
|
|
90
|
-
*/
|
|
91
57
|
'gradient': IntegrationListingGradient;
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @type {Integration}
|
|
95
|
-
* @memberof AdminIntegrationListing
|
|
96
|
-
*/
|
|
97
58
|
'integration': Integration;
|
|
98
59
|
/**
|
|
99
60
|
* The dependencies that this integration listing requires
|
|
100
|
-
* @type {Array<string>}
|
|
101
|
-
* @memberof AdminIntegrationListing
|
|
102
61
|
*/
|
|
103
62
|
'dependencies': Array<string>;
|
|
104
63
|
/**
|
|
105
64
|
* The categories that this listing belongs to
|
|
106
|
-
* @type {Array<IntegrationCategory>}
|
|
107
|
-
* @memberof AdminIntegrationListing
|
|
108
65
|
*/
|
|
109
66
|
'categories': Array<IntegrationCategory>;
|
|
110
67
|
/**
|
|
111
68
|
* The string identifier displayed in the UI menu
|
|
112
|
-
* @type {string}
|
|
113
|
-
* @memberof AdminIntegrationListing
|
|
114
69
|
*/
|
|
115
70
|
'menuTitle'?: string;
|
|
116
71
|
/**
|
|
117
72
|
* The order of the listing in the UI menu
|
|
118
|
-
* @type {number}
|
|
119
|
-
* @memberof AdminIntegrationListing
|
|
120
73
|
*/
|
|
121
74
|
'menuSortOrder': number;
|
|
122
75
|
}
|
|
123
|
-
/**
|
|
124
|
-
*
|
|
125
|
-
* @export
|
|
126
|
-
* @interface AdminIntegrationListingsResponse
|
|
127
|
-
*/
|
|
128
76
|
export interface AdminIntegrationListingsResponse {
|
|
129
|
-
/**
|
|
130
|
-
*
|
|
131
|
-
* @type {Array<AdminIntegrationListing>}
|
|
132
|
-
* @memberof AdminIntegrationListingsResponse
|
|
133
|
-
*/
|
|
134
77
|
'listings': Array<AdminIntegrationListing>;
|
|
135
78
|
}
|
|
136
|
-
/**
|
|
137
|
-
*
|
|
138
|
-
* @export
|
|
139
|
-
* @interface ApiError
|
|
140
|
-
*/
|
|
141
79
|
export interface ApiError {
|
|
142
|
-
/**
|
|
143
|
-
*
|
|
144
|
-
* @type {string}
|
|
145
|
-
* @memberof ApiError
|
|
146
|
-
*/
|
|
147
80
|
'code'?: string;
|
|
148
|
-
/**
|
|
149
|
-
*
|
|
150
|
-
* @type {string}
|
|
151
|
-
* @memberof ApiError
|
|
152
|
-
*/
|
|
153
81
|
'message': string;
|
|
154
82
|
}
|
|
155
|
-
/**
|
|
156
|
-
*
|
|
157
|
-
* @export
|
|
158
|
-
* @interface CreateAdminIntegrationListingRequest
|
|
159
|
-
*/
|
|
160
83
|
export interface CreateAdminIntegrationListingRequest {
|
|
161
84
|
/**
|
|
162
85
|
* The name of the integration listing
|
|
163
|
-
* @type {string}
|
|
164
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
165
86
|
*/
|
|
166
87
|
'name': string;
|
|
167
88
|
/**
|
|
168
89
|
* The description of the integration listing
|
|
169
|
-
* @type {string}
|
|
170
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
171
90
|
*/
|
|
172
91
|
'description': string;
|
|
173
92
|
/**
|
|
174
93
|
* The html content of the integration listing
|
|
175
|
-
* @type {string}
|
|
176
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
177
94
|
*/
|
|
178
95
|
'content': string;
|
|
179
96
|
/**
|
|
180
97
|
* The html content of the pricing information
|
|
181
|
-
* @type {string}
|
|
182
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
183
98
|
*/
|
|
184
99
|
'pricing'?: string;
|
|
185
100
|
/**
|
|
186
101
|
* The author of the integration listing
|
|
187
|
-
* @type {string}
|
|
188
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
189
102
|
*/
|
|
190
103
|
'author': string;
|
|
191
104
|
/**
|
|
192
105
|
* The code of the integration
|
|
193
|
-
* @type {string}
|
|
194
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
195
106
|
*/
|
|
196
107
|
'integration': string;
|
|
197
108
|
/**
|
|
198
109
|
* The slug of the integration listing that is used in the URL
|
|
199
|
-
* @type {string}
|
|
200
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
201
110
|
*/
|
|
202
111
|
'slug': string;
|
|
203
|
-
/**
|
|
204
|
-
*
|
|
205
|
-
* @type {CreateAdminIntegrationListingRequestGradient}
|
|
206
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
207
|
-
*/
|
|
208
112
|
'gradient': CreateAdminIntegrationListingRequestGradient;
|
|
209
113
|
/**
|
|
210
114
|
* The icon of the integration listing
|
|
211
|
-
* @type {string}
|
|
212
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
213
115
|
*/
|
|
214
116
|
'icon': string;
|
|
215
117
|
/**
|
|
216
118
|
* The categories that this listing belongs to
|
|
217
|
-
* @type {Array<string>}
|
|
218
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
219
119
|
*/
|
|
220
120
|
'categories': Array<string>;
|
|
221
121
|
/**
|
|
222
122
|
* The string identifier displayed in the UI menu
|
|
223
|
-
* @type {string}
|
|
224
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
225
123
|
*/
|
|
226
124
|
'menuTitle'?: string;
|
|
227
125
|
/**
|
|
228
126
|
* The order of the listing in the UI menu
|
|
229
|
-
* @type {number}
|
|
230
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
231
127
|
*/
|
|
232
128
|
'menuSortOrder': number;
|
|
233
129
|
}
|
|
234
130
|
/**
|
|
235
131
|
* The gradient that is used to display the listing
|
|
236
|
-
* @export
|
|
237
|
-
* @interface CreateAdminIntegrationListingRequestGradient
|
|
238
132
|
*/
|
|
239
133
|
export interface CreateAdminIntegrationListingRequestGradient {
|
|
240
|
-
/**
|
|
241
|
-
*
|
|
242
|
-
* @type {string}
|
|
243
|
-
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
244
|
-
*/
|
|
245
134
|
'from': string;
|
|
246
|
-
/**
|
|
247
|
-
*
|
|
248
|
-
* @type {string}
|
|
249
|
-
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
250
|
-
*/
|
|
251
135
|
'to': string;
|
|
252
|
-
/**
|
|
253
|
-
*
|
|
254
|
-
* @type {number}
|
|
255
|
-
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
256
|
-
*/
|
|
257
136
|
'angle': number;
|
|
258
137
|
}
|
|
259
|
-
/**
|
|
260
|
-
*
|
|
261
|
-
* @export
|
|
262
|
-
* @interface Icon
|
|
263
|
-
*/
|
|
264
138
|
export interface Icon {
|
|
265
|
-
/**
|
|
266
|
-
*
|
|
267
|
-
* @type {string}
|
|
268
|
-
* @memberof Icon
|
|
269
|
-
*/
|
|
270
139
|
'prefix': string;
|
|
271
|
-
/**
|
|
272
|
-
*
|
|
273
|
-
* @type {string}
|
|
274
|
-
* @memberof Icon
|
|
275
|
-
*/
|
|
276
140
|
'iconName': string;
|
|
277
|
-
/**
|
|
278
|
-
*
|
|
279
|
-
* @type {Array<any>}
|
|
280
|
-
* @memberof Icon
|
|
281
|
-
*/
|
|
282
141
|
'icon': Array<any>;
|
|
283
142
|
}
|
|
284
|
-
/**
|
|
285
|
-
*
|
|
286
|
-
* @export
|
|
287
|
-
* @interface Integration
|
|
288
|
-
*/
|
|
289
143
|
export interface Integration {
|
|
290
|
-
/**
|
|
291
|
-
*
|
|
292
|
-
* @type {number}
|
|
293
|
-
* @memberof Integration
|
|
294
|
-
*/
|
|
295
144
|
'id'?: number;
|
|
296
145
|
/**
|
|
297
146
|
* The code of the integration
|
|
298
|
-
* @type {string}
|
|
299
|
-
* @memberof Integration
|
|
300
147
|
*/
|
|
301
148
|
'code'?: string;
|
|
302
149
|
/**
|
|
303
150
|
* The configuration of the integration
|
|
304
|
-
* @type {{ [key: string]: string; }}
|
|
305
|
-
* @memberof Integration
|
|
306
151
|
*/
|
|
307
152
|
'config'?: { [key: string]: string; };
|
|
308
153
|
/**
|
|
309
154
|
* The icon of the integration
|
|
310
|
-
* @type {any}
|
|
311
|
-
* @memberof Integration
|
|
312
155
|
*/
|
|
313
156
|
'icon'?: any;
|
|
314
157
|
}
|
|
315
|
-
/**
|
|
316
|
-
*
|
|
317
|
-
* @export
|
|
318
|
-
* @interface IntegrationCategoriesResponse
|
|
319
|
-
*/
|
|
320
158
|
export interface IntegrationCategoriesResponse {
|
|
321
|
-
/**
|
|
322
|
-
*
|
|
323
|
-
* @type {Array<IntegrationCategory>}
|
|
324
|
-
* @memberof IntegrationCategoriesResponse
|
|
325
|
-
*/
|
|
326
159
|
'categories': Array<IntegrationCategory>;
|
|
327
160
|
}
|
|
328
|
-
/**
|
|
329
|
-
*
|
|
330
|
-
* @export
|
|
331
|
-
* @interface IntegrationCategory
|
|
332
|
-
*/
|
|
333
161
|
export interface IntegrationCategory {
|
|
334
162
|
/**
|
|
335
163
|
* The name of the category
|
|
336
|
-
* @type {string}
|
|
337
|
-
* @memberof IntegrationCategory
|
|
338
164
|
*/
|
|
339
165
|
'name': string;
|
|
340
166
|
/**
|
|
341
167
|
* The slug of the category that is used in the URL
|
|
342
|
-
* @type {string}
|
|
343
|
-
* @memberof IntegrationCategory
|
|
344
168
|
*/
|
|
345
169
|
'slug': string;
|
|
346
170
|
/**
|
|
347
171
|
* The type of category, used to determine how it is displayed
|
|
348
|
-
* @type {string}
|
|
349
|
-
* @memberof IntegrationCategory
|
|
350
172
|
*/
|
|
351
173
|
'type': IntegrationCategoryTypeEnum;
|
|
352
174
|
}
|
|
@@ -359,312 +181,156 @@ export const IntegrationCategoryTypeEnum = {
|
|
|
359
181
|
|
|
360
182
|
export type IntegrationCategoryTypeEnum = typeof IntegrationCategoryTypeEnum[keyof typeof IntegrationCategoryTypeEnum];
|
|
361
183
|
|
|
362
|
-
/**
|
|
363
|
-
*
|
|
364
|
-
* @export
|
|
365
|
-
* @interface IntegrationListing
|
|
366
|
-
*/
|
|
367
184
|
export interface IntegrationListing {
|
|
368
|
-
/**
|
|
369
|
-
*
|
|
370
|
-
* @type {number}
|
|
371
|
-
* @memberof IntegrationListing
|
|
372
|
-
*/
|
|
373
185
|
'id'?: number;
|
|
374
186
|
/**
|
|
375
187
|
* The slug of the integration listing that is used in the URL
|
|
376
|
-
* @type {string}
|
|
377
|
-
* @memberof IntegrationListing
|
|
378
188
|
*/
|
|
379
189
|
'slug': string;
|
|
380
190
|
/**
|
|
381
191
|
* The code of the integration
|
|
382
|
-
* @type {string}
|
|
383
|
-
* @memberof IntegrationListing
|
|
384
192
|
*/
|
|
385
193
|
'code': string;
|
|
386
194
|
/**
|
|
387
195
|
* The name of the integration listing
|
|
388
|
-
* @type {string}
|
|
389
|
-
* @memberof IntegrationListing
|
|
390
196
|
*/
|
|
391
197
|
'name': string;
|
|
392
198
|
/**
|
|
393
199
|
* The description of the integration listing
|
|
394
|
-
* @type {string}
|
|
395
|
-
* @memberof IntegrationListing
|
|
396
200
|
*/
|
|
397
201
|
'description': string;
|
|
398
202
|
/**
|
|
399
203
|
* The html content of the integration listing
|
|
400
|
-
* @type {string}
|
|
401
|
-
* @memberof IntegrationListing
|
|
402
204
|
*/
|
|
403
205
|
'content': string;
|
|
404
206
|
/**
|
|
405
207
|
* The html content of the pricing information
|
|
406
|
-
* @type {string}
|
|
407
|
-
* @memberof IntegrationListing
|
|
408
208
|
*/
|
|
409
209
|
'pricing'?: string;
|
|
410
210
|
/**
|
|
411
211
|
* The author of the integration listing
|
|
412
|
-
* @type {string}
|
|
413
|
-
* @memberof IntegrationListing
|
|
414
212
|
*/
|
|
415
213
|
'author': string;
|
|
416
|
-
/**
|
|
417
|
-
*
|
|
418
|
-
* @type {Icon}
|
|
419
|
-
* @memberof IntegrationListing
|
|
420
|
-
*/
|
|
421
214
|
'icon': Icon;
|
|
422
|
-
/**
|
|
423
|
-
*
|
|
424
|
-
* @type {IntegrationListingGradient}
|
|
425
|
-
* @memberof IntegrationListing
|
|
426
|
-
*/
|
|
427
215
|
'gradient': IntegrationListingGradient;
|
|
428
216
|
/**
|
|
429
217
|
* The dependencies that this integration listing requires
|
|
430
|
-
* @type {Array<string>}
|
|
431
|
-
* @memberof IntegrationListing
|
|
432
218
|
*/
|
|
433
219
|
'dependencies': Array<string>;
|
|
434
220
|
/**
|
|
435
221
|
* The categories that this listing belongs to
|
|
436
|
-
* @type {Array<IntegrationCategory>}
|
|
437
|
-
* @memberof IntegrationListing
|
|
438
222
|
*/
|
|
439
223
|
'categories': Array<IntegrationCategory>;
|
|
440
224
|
/**
|
|
441
225
|
* The string identifier displayed in the UI menu
|
|
442
|
-
* @type {string}
|
|
443
|
-
* @memberof IntegrationListing
|
|
444
226
|
*/
|
|
445
227
|
'menuTitle'?: string;
|
|
446
228
|
/**
|
|
447
229
|
* The order of the listing in the UI menu
|
|
448
|
-
* @type {number}
|
|
449
|
-
* @memberof IntegrationListing
|
|
450
230
|
*/
|
|
451
231
|
'menuSortOrder': number;
|
|
452
232
|
}
|
|
453
233
|
/**
|
|
454
234
|
* The gradient that is used to display the listing
|
|
455
|
-
* @export
|
|
456
|
-
* @interface IntegrationListingGradient
|
|
457
235
|
*/
|
|
458
236
|
export interface IntegrationListingGradient {
|
|
459
|
-
/**
|
|
460
|
-
*
|
|
461
|
-
* @type {string}
|
|
462
|
-
* @memberof IntegrationListingGradient
|
|
463
|
-
*/
|
|
464
237
|
'from'?: string;
|
|
465
|
-
/**
|
|
466
|
-
*
|
|
467
|
-
* @type {string}
|
|
468
|
-
* @memberof IntegrationListingGradient
|
|
469
|
-
*/
|
|
470
238
|
'to'?: string;
|
|
471
|
-
/**
|
|
472
|
-
*
|
|
473
|
-
* @type {number}
|
|
474
|
-
* @memberof IntegrationListingGradient
|
|
475
|
-
*/
|
|
476
239
|
'angle'?: number;
|
|
477
240
|
}
|
|
478
|
-
/**
|
|
479
|
-
*
|
|
480
|
-
* @export
|
|
481
|
-
* @interface IntegrationListingsResponse
|
|
482
|
-
*/
|
|
483
241
|
export interface IntegrationListingsResponse {
|
|
484
|
-
/**
|
|
485
|
-
*
|
|
486
|
-
* @type {Array<IntegrationListing>}
|
|
487
|
-
* @memberof IntegrationListingsResponse
|
|
488
|
-
*/
|
|
489
242
|
'listings': Array<IntegrationListing>;
|
|
490
243
|
}
|
|
491
|
-
/**
|
|
492
|
-
*
|
|
493
|
-
* @export
|
|
494
|
-
* @interface IntegrationProduct
|
|
495
|
-
*/
|
|
496
244
|
export interface IntegrationProduct {
|
|
497
245
|
/**
|
|
498
246
|
* The ID of the product
|
|
499
|
-
* @type {number}
|
|
500
|
-
* @memberof IntegrationProduct
|
|
501
247
|
*/
|
|
502
248
|
'id'?: number;
|
|
503
249
|
/**
|
|
504
250
|
* The SKU of the product
|
|
505
|
-
* @type {string}
|
|
506
|
-
* @memberof IntegrationProduct
|
|
507
251
|
*/
|
|
508
252
|
'sku': string;
|
|
509
253
|
/**
|
|
510
254
|
* The name of the product
|
|
511
|
-
* @type {string}
|
|
512
|
-
* @memberof IntegrationProduct
|
|
513
255
|
*/
|
|
514
256
|
'name': string;
|
|
515
257
|
/**
|
|
516
258
|
* The slug of the product that is used in the URL
|
|
517
|
-
* @type {string}
|
|
518
|
-
* @memberof IntegrationProduct
|
|
519
259
|
*/
|
|
520
260
|
'slug': string;
|
|
521
261
|
/**
|
|
522
262
|
* The user facing description of the product
|
|
523
|
-
* @type {string}
|
|
524
|
-
* @memberof IntegrationProduct
|
|
525
263
|
*/
|
|
526
264
|
'description': string;
|
|
527
265
|
/**
|
|
528
266
|
* The price of the product in GBP
|
|
529
|
-
* @type {number}
|
|
530
|
-
* @memberof IntegrationProduct
|
|
531
267
|
*/
|
|
532
268
|
'price': number;
|
|
533
269
|
}
|
|
534
|
-
/**
|
|
535
|
-
*
|
|
536
|
-
* @export
|
|
537
|
-
* @interface IntegrationProductsResponse
|
|
538
|
-
*/
|
|
539
270
|
export interface IntegrationProductsResponse {
|
|
540
|
-
/**
|
|
541
|
-
*
|
|
542
|
-
* @type {Array<IntegrationProduct>}
|
|
543
|
-
* @memberof IntegrationProductsResponse
|
|
544
|
-
*/
|
|
545
271
|
'products': Array<IntegrationProduct>;
|
|
546
272
|
}
|
|
547
|
-
/**
|
|
548
|
-
*
|
|
549
|
-
* @export
|
|
550
|
-
* @interface IntegrationsResponse
|
|
551
|
-
*/
|
|
552
273
|
export interface IntegrationsResponse {
|
|
553
|
-
/**
|
|
554
|
-
*
|
|
555
|
-
* @type {Array<Integration>}
|
|
556
|
-
* @memberof IntegrationsResponse
|
|
557
|
-
*/
|
|
558
274
|
'integrations': Array<Integration>;
|
|
559
275
|
}
|
|
560
|
-
/**
|
|
561
|
-
*
|
|
562
|
-
* @export
|
|
563
|
-
* @interface UpdateAdminIntegrationListingRequest
|
|
564
|
-
*/
|
|
565
276
|
export interface UpdateAdminIntegrationListingRequest {
|
|
566
277
|
/**
|
|
567
278
|
* The name of the integration listing
|
|
568
|
-
* @type {string}
|
|
569
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
570
279
|
*/
|
|
571
280
|
'name'?: string;
|
|
572
281
|
/**
|
|
573
282
|
* The description of the integration listing
|
|
574
|
-
* @type {string}
|
|
575
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
576
283
|
*/
|
|
577
284
|
'description'?: string;
|
|
578
285
|
/**
|
|
579
286
|
* The html content of the integration listing
|
|
580
|
-
* @type {string}
|
|
581
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
582
287
|
*/
|
|
583
288
|
'content'?: string;
|
|
584
289
|
/**
|
|
585
290
|
* The html content of the pricing information
|
|
586
|
-
* @type {string}
|
|
587
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
588
291
|
*/
|
|
589
292
|
'pricing'?: string;
|
|
590
293
|
/**
|
|
591
294
|
* The code of the integration
|
|
592
|
-
* @type {string}
|
|
593
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
594
295
|
*/
|
|
595
296
|
'integration'?: string;
|
|
596
297
|
/**
|
|
597
298
|
* The author of the integration listing
|
|
598
|
-
* @type {string}
|
|
599
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
600
299
|
*/
|
|
601
300
|
'author'?: string;
|
|
602
301
|
/**
|
|
603
302
|
* The slug of the integration listing that is used in the URL
|
|
604
|
-
* @type {string}
|
|
605
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
606
303
|
*/
|
|
607
304
|
'slug'?: string;
|
|
608
|
-
/**
|
|
609
|
-
*
|
|
610
|
-
* @type {UpdateAdminIntegrationListingRequestGradient}
|
|
611
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
612
|
-
*/
|
|
613
305
|
'gradient'?: UpdateAdminIntegrationListingRequestGradient;
|
|
614
306
|
/**
|
|
615
307
|
* The icon of the integration listing
|
|
616
|
-
* @type {string}
|
|
617
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
618
308
|
*/
|
|
619
309
|
'icon'?: string;
|
|
620
310
|
/**
|
|
621
311
|
* The categories that this listing belongs to
|
|
622
|
-
* @type {Array<string>}
|
|
623
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
624
312
|
*/
|
|
625
313
|
'categories'?: Array<string>;
|
|
626
314
|
/**
|
|
627
315
|
* The string identifier displayed in the UI menu
|
|
628
|
-
* @type {string}
|
|
629
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
630
316
|
*/
|
|
631
317
|
'menuTitle'?: string;
|
|
632
318
|
/**
|
|
633
319
|
* The order of the listing in the UI menu
|
|
634
|
-
* @type {number}
|
|
635
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
636
320
|
*/
|
|
637
321
|
'menuSortOrder'?: number;
|
|
638
322
|
}
|
|
639
323
|
/**
|
|
640
324
|
* The gradient that is used to display the listing
|
|
641
|
-
* @export
|
|
642
|
-
* @interface UpdateAdminIntegrationListingRequestGradient
|
|
643
325
|
*/
|
|
644
326
|
export interface UpdateAdminIntegrationListingRequestGradient {
|
|
645
|
-
/**
|
|
646
|
-
*
|
|
647
|
-
* @type {string}
|
|
648
|
-
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
649
|
-
*/
|
|
650
327
|
'from'?: string;
|
|
651
|
-
/**
|
|
652
|
-
*
|
|
653
|
-
* @type {string}
|
|
654
|
-
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
655
|
-
*/
|
|
656
328
|
'to'?: string;
|
|
657
|
-
/**
|
|
658
|
-
*
|
|
659
|
-
* @type {number}
|
|
660
|
-
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
661
|
-
*/
|
|
662
329
|
'angle'?: number;
|
|
663
330
|
}
|
|
664
331
|
|
|
665
332
|
/**
|
|
666
333
|
* IntegrationsApi - axios parameter creator
|
|
667
|
-
* @export
|
|
668
334
|
*/
|
|
669
335
|
export const IntegrationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
670
336
|
return {
|
|
@@ -1173,7 +839,6 @@ export const IntegrationsApiAxiosParamCreator = function (configuration?: Config
|
|
|
1173
839
|
|
|
1174
840
|
/**
|
|
1175
841
|
* IntegrationsApi - functional programming interface
|
|
1176
|
-
* @export
|
|
1177
842
|
*/
|
|
1178
843
|
export const IntegrationsApiFp = function(configuration?: Configuration) {
|
|
1179
844
|
const localVarAxiosParamCreator = IntegrationsApiAxiosParamCreator(configuration)
|
|
@@ -1339,7 +1004,6 @@ export const IntegrationsApiFp = function(configuration?: Configuration) {
|
|
|
1339
1004
|
|
|
1340
1005
|
/**
|
|
1341
1006
|
* IntegrationsApi - factory interface
|
|
1342
|
-
* @export
|
|
1343
1007
|
*/
|
|
1344
1008
|
export const IntegrationsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
1345
1009
|
const localVarFp = IntegrationsApiFp(configuration)
|
|
@@ -1466,156 +1130,105 @@ export const IntegrationsApiFactory = function (configuration?: Configuration, b
|
|
|
1466
1130
|
|
|
1467
1131
|
/**
|
|
1468
1132
|
* Request parameters for createAdminIntegrationListing operation in IntegrationsApi.
|
|
1469
|
-
* @export
|
|
1470
|
-
* @interface IntegrationsApiCreateAdminIntegrationListingRequest
|
|
1471
1133
|
*/
|
|
1472
1134
|
export interface IntegrationsApiCreateAdminIntegrationListingRequest {
|
|
1473
1135
|
/**
|
|
1474
1136
|
* Create a new integration listing
|
|
1475
|
-
* @type {CreateAdminIntegrationListingRequest}
|
|
1476
|
-
* @memberof IntegrationsApiCreateAdminIntegrationListing
|
|
1477
1137
|
*/
|
|
1478
1138
|
readonly createAdminIntegrationListingRequest: CreateAdminIntegrationListingRequest
|
|
1479
1139
|
}
|
|
1480
1140
|
|
|
1481
1141
|
/**
|
|
1482
1142
|
* Request parameters for deleteAdminIntegrationListing operation in IntegrationsApi.
|
|
1483
|
-
* @export
|
|
1484
|
-
* @interface IntegrationsApiDeleteAdminIntegrationListingRequest
|
|
1485
1143
|
*/
|
|
1486
1144
|
export interface IntegrationsApiDeleteAdminIntegrationListingRequest {
|
|
1487
1145
|
/**
|
|
1488
1146
|
* Integration listing unique identifier
|
|
1489
|
-
* @type {string}
|
|
1490
|
-
* @memberof IntegrationsApiDeleteAdminIntegrationListing
|
|
1491
1147
|
*/
|
|
1492
1148
|
readonly listing: string
|
|
1493
1149
|
}
|
|
1494
1150
|
|
|
1495
1151
|
/**
|
|
1496
1152
|
* Request parameters for getAdminIntegrationListing operation in IntegrationsApi.
|
|
1497
|
-
* @export
|
|
1498
|
-
* @interface IntegrationsApiGetAdminIntegrationListingRequest
|
|
1499
1153
|
*/
|
|
1500
1154
|
export interface IntegrationsApiGetAdminIntegrationListingRequest {
|
|
1501
1155
|
/**
|
|
1502
1156
|
* Integration listing unique identifier
|
|
1503
|
-
* @type {string}
|
|
1504
|
-
* @memberof IntegrationsApiGetAdminIntegrationListing
|
|
1505
1157
|
*/
|
|
1506
1158
|
readonly listing: string
|
|
1507
1159
|
}
|
|
1508
1160
|
|
|
1509
1161
|
/**
|
|
1510
1162
|
* Request parameters for getIntegrationCategory operation in IntegrationsApi.
|
|
1511
|
-
* @export
|
|
1512
|
-
* @interface IntegrationsApiGetIntegrationCategoryRequest
|
|
1513
1163
|
*/
|
|
1514
1164
|
export interface IntegrationsApiGetIntegrationCategoryRequest {
|
|
1515
1165
|
/**
|
|
1516
1166
|
* Categories unique identifier
|
|
1517
|
-
* @type {string}
|
|
1518
|
-
* @memberof IntegrationsApiGetIntegrationCategory
|
|
1519
1167
|
*/
|
|
1520
1168
|
readonly category: string
|
|
1521
1169
|
}
|
|
1522
1170
|
|
|
1523
1171
|
/**
|
|
1524
1172
|
* Request parameters for getIntegrationListing operation in IntegrationsApi.
|
|
1525
|
-
* @export
|
|
1526
|
-
* @interface IntegrationsApiGetIntegrationListingRequest
|
|
1527
1173
|
*/
|
|
1528
1174
|
export interface IntegrationsApiGetIntegrationListingRequest {
|
|
1529
1175
|
/**
|
|
1530
1176
|
* Integration listing unique identifier
|
|
1531
|
-
* @type {string}
|
|
1532
|
-
* @memberof IntegrationsApiGetIntegrationListing
|
|
1533
1177
|
*/
|
|
1534
1178
|
readonly listing: string
|
|
1535
1179
|
}
|
|
1536
1180
|
|
|
1537
1181
|
/**
|
|
1538
1182
|
* Request parameters for getIntegrationListings operation in IntegrationsApi.
|
|
1539
|
-
* @export
|
|
1540
|
-
* @interface IntegrationsApiGetIntegrationListingsRequest
|
|
1541
1183
|
*/
|
|
1542
1184
|
export interface IntegrationsApiGetIntegrationListingsRequest {
|
|
1543
|
-
/**
|
|
1544
|
-
*
|
|
1545
|
-
* @type {string}
|
|
1546
|
-
* @memberof IntegrationsApiGetIntegrationListings
|
|
1547
|
-
*/
|
|
1548
1185
|
readonly project: string
|
|
1549
1186
|
}
|
|
1550
1187
|
|
|
1551
1188
|
/**
|
|
1552
1189
|
* Request parameters for getIntegrationProduct operation in IntegrationsApi.
|
|
1553
|
-
* @export
|
|
1554
|
-
* @interface IntegrationsApiGetIntegrationProductRequest
|
|
1555
1190
|
*/
|
|
1556
1191
|
export interface IntegrationsApiGetIntegrationProductRequest {
|
|
1557
1192
|
/**
|
|
1558
1193
|
* Integrations unique identifier
|
|
1559
|
-
* @type {number}
|
|
1560
|
-
* @memberof IntegrationsApiGetIntegrationProduct
|
|
1561
1194
|
*/
|
|
1562
1195
|
readonly integration: number
|
|
1563
1196
|
|
|
1564
1197
|
/**
|
|
1565
1198
|
* Products unique identifier
|
|
1566
|
-
* @type {string}
|
|
1567
|
-
* @memberof IntegrationsApiGetIntegrationProduct
|
|
1568
1199
|
*/
|
|
1569
1200
|
readonly product: string
|
|
1570
1201
|
}
|
|
1571
1202
|
|
|
1572
1203
|
/**
|
|
1573
1204
|
* Request parameters for getIntegrationProducts operation in IntegrationsApi.
|
|
1574
|
-
* @export
|
|
1575
|
-
* @interface IntegrationsApiGetIntegrationProductsRequest
|
|
1576
1205
|
*/
|
|
1577
1206
|
export interface IntegrationsApiGetIntegrationProductsRequest {
|
|
1578
1207
|
/**
|
|
1579
1208
|
* Integrations unique identifier
|
|
1580
|
-
* @type {number}
|
|
1581
|
-
* @memberof IntegrationsApiGetIntegrationProducts
|
|
1582
1209
|
*/
|
|
1583
1210
|
readonly integration: number
|
|
1584
1211
|
|
|
1585
|
-
/**
|
|
1586
|
-
*
|
|
1587
|
-
* @type {string}
|
|
1588
|
-
* @memberof IntegrationsApiGetIntegrationProducts
|
|
1589
|
-
*/
|
|
1590
1212
|
readonly project?: string
|
|
1591
1213
|
}
|
|
1592
1214
|
|
|
1593
1215
|
/**
|
|
1594
1216
|
* Request parameters for updateAdminIntegrationListing operation in IntegrationsApi.
|
|
1595
|
-
* @export
|
|
1596
|
-
* @interface IntegrationsApiUpdateAdminIntegrationListingRequest
|
|
1597
1217
|
*/
|
|
1598
1218
|
export interface IntegrationsApiUpdateAdminIntegrationListingRequest {
|
|
1599
1219
|
/**
|
|
1600
1220
|
* Integration listing unique identifier
|
|
1601
|
-
* @type {string}
|
|
1602
|
-
* @memberof IntegrationsApiUpdateAdminIntegrationListing
|
|
1603
1221
|
*/
|
|
1604
1222
|
readonly listing: string
|
|
1605
1223
|
|
|
1606
1224
|
/**
|
|
1607
1225
|
* Update an integration listing
|
|
1608
|
-
* @type {UpdateAdminIntegrationListingRequest}
|
|
1609
|
-
* @memberof IntegrationsApiUpdateAdminIntegrationListing
|
|
1610
1226
|
*/
|
|
1611
1227
|
readonly updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest
|
|
1612
1228
|
}
|
|
1613
1229
|
|
|
1614
1230
|
/**
|
|
1615
1231
|
* IntegrationsApi - object-oriented interface
|
|
1616
|
-
* @export
|
|
1617
|
-
* @class IntegrationsApi
|
|
1618
|
-
* @extends {BaseAPI}
|
|
1619
1232
|
*/
|
|
1620
1233
|
export class IntegrationsApi extends BaseAPI {
|
|
1621
1234
|
/**
|
|
@@ -1624,7 +1237,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1624
1237
|
* @param {IntegrationsApiCreateAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
1625
1238
|
* @param {*} [options] Override http request option.
|
|
1626
1239
|
* @throws {RequiredError}
|
|
1627
|
-
* @memberof IntegrationsApi
|
|
1628
1240
|
*/
|
|
1629
1241
|
public createAdminIntegrationListing(requestParameters: IntegrationsApiCreateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig) {
|
|
1630
1242
|
return IntegrationsApiFp(this.configuration).createAdminIntegrationListing(requestParameters.createAdminIntegrationListingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1636,7 +1248,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1636
1248
|
* @param {IntegrationsApiDeleteAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
1637
1249
|
* @param {*} [options] Override http request option.
|
|
1638
1250
|
* @throws {RequiredError}
|
|
1639
|
-
* @memberof IntegrationsApi
|
|
1640
1251
|
*/
|
|
1641
1252
|
public deleteAdminIntegrationListing(requestParameters: IntegrationsApiDeleteAdminIntegrationListingRequest, options?: RawAxiosRequestConfig) {
|
|
1642
1253
|
return IntegrationsApiFp(this.configuration).deleteAdminIntegrationListing(requestParameters.listing, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1648,7 +1259,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1648
1259
|
* @param {IntegrationsApiGetAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
1649
1260
|
* @param {*} [options] Override http request option.
|
|
1650
1261
|
* @throws {RequiredError}
|
|
1651
|
-
* @memberof IntegrationsApi
|
|
1652
1262
|
*/
|
|
1653
1263
|
public getAdminIntegrationListing(requestParameters: IntegrationsApiGetAdminIntegrationListingRequest, options?: RawAxiosRequestConfig) {
|
|
1654
1264
|
return IntegrationsApiFp(this.configuration).getAdminIntegrationListing(requestParameters.listing, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1659,7 +1269,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1659
1269
|
* @summary List integration categories
|
|
1660
1270
|
* @param {*} [options] Override http request option.
|
|
1661
1271
|
* @throws {RequiredError}
|
|
1662
|
-
* @memberof IntegrationsApi
|
|
1663
1272
|
*/
|
|
1664
1273
|
public getIntegrationCategories(options?: RawAxiosRequestConfig) {
|
|
1665
1274
|
return IntegrationsApiFp(this.configuration).getIntegrationCategories(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1671,7 +1280,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1671
1280
|
* @param {IntegrationsApiGetIntegrationCategoryRequest} requestParameters Request parameters.
|
|
1672
1281
|
* @param {*} [options] Override http request option.
|
|
1673
1282
|
* @throws {RequiredError}
|
|
1674
|
-
* @memberof IntegrationsApi
|
|
1675
1283
|
*/
|
|
1676
1284
|
public getIntegrationCategory(requestParameters: IntegrationsApiGetIntegrationCategoryRequest, options?: RawAxiosRequestConfig) {
|
|
1677
1285
|
return IntegrationsApiFp(this.configuration).getIntegrationCategory(requestParameters.category, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1683,7 +1291,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1683
1291
|
* @param {IntegrationsApiGetIntegrationListingRequest} requestParameters Request parameters.
|
|
1684
1292
|
* @param {*} [options] Override http request option.
|
|
1685
1293
|
* @throws {RequiredError}
|
|
1686
|
-
* @memberof IntegrationsApi
|
|
1687
1294
|
*/
|
|
1688
1295
|
public getIntegrationListing(requestParameters: IntegrationsApiGetIntegrationListingRequest, options?: RawAxiosRequestConfig) {
|
|
1689
1296
|
return IntegrationsApiFp(this.configuration).getIntegrationListing(requestParameters.listing, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1695,7 +1302,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1695
1302
|
* @param {IntegrationsApiGetIntegrationListingsRequest} requestParameters Request parameters.
|
|
1696
1303
|
* @param {*} [options] Override http request option.
|
|
1697
1304
|
* @throws {RequiredError}
|
|
1698
|
-
* @memberof IntegrationsApi
|
|
1699
1305
|
*/
|
|
1700
1306
|
public getIntegrationListings(requestParameters: IntegrationsApiGetIntegrationListingsRequest, options?: RawAxiosRequestConfig) {
|
|
1701
1307
|
return IntegrationsApiFp(this.configuration).getIntegrationListings(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1707,7 +1313,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1707
1313
|
* @param {IntegrationsApiGetIntegrationProductRequest} requestParameters Request parameters.
|
|
1708
1314
|
* @param {*} [options] Override http request option.
|
|
1709
1315
|
* @throws {RequiredError}
|
|
1710
|
-
* @memberof IntegrationsApi
|
|
1711
1316
|
*/
|
|
1712
1317
|
public getIntegrationProduct(requestParameters: IntegrationsApiGetIntegrationProductRequest, options?: RawAxiosRequestConfig) {
|
|
1713
1318
|
return IntegrationsApiFp(this.configuration).getIntegrationProduct(requestParameters.integration, requestParameters.product, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1719,7 +1324,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1719
1324
|
* @param {IntegrationsApiGetIntegrationProductsRequest} requestParameters Request parameters.
|
|
1720
1325
|
* @param {*} [options] Override http request option.
|
|
1721
1326
|
* @throws {RequiredError}
|
|
1722
|
-
* @memberof IntegrationsApi
|
|
1723
1327
|
*/
|
|
1724
1328
|
public getIntegrationProducts(requestParameters: IntegrationsApiGetIntegrationProductsRequest, options?: RawAxiosRequestConfig) {
|
|
1725
1329
|
return IntegrationsApiFp(this.configuration).getIntegrationProducts(requestParameters.integration, requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1730,7 +1334,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1730
1334
|
* @summary List integrations
|
|
1731
1335
|
* @param {*} [options] Override http request option.
|
|
1732
1336
|
* @throws {RequiredError}
|
|
1733
|
-
* @memberof IntegrationsApi
|
|
1734
1337
|
*/
|
|
1735
1338
|
public getIntegrations(options?: RawAxiosRequestConfig) {
|
|
1736
1339
|
return IntegrationsApiFp(this.configuration).getIntegrations(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1741,7 +1344,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1741
1344
|
* @summary List integration listings
|
|
1742
1345
|
* @param {*} [options] Override http request option.
|
|
1743
1346
|
* @throws {RequiredError}
|
|
1744
|
-
* @memberof IntegrationsApi
|
|
1745
1347
|
*/
|
|
1746
1348
|
public listAdminIntegrationListings(options?: RawAxiosRequestConfig) {
|
|
1747
1349
|
return IntegrationsApiFp(this.configuration).listAdminIntegrationListings(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1753,7 +1355,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
1753
1355
|
* @param {IntegrationsApiUpdateAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
1754
1356
|
* @param {*} [options] Override http request option.
|
|
1755
1357
|
* @throws {RequiredError}
|
|
1756
|
-
* @memberof IntegrationsApi
|
|
1757
1358
|
*/
|
|
1758
1359
|
public updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig) {
|
|
1759
1360
|
return IntegrationsApiFp(this.configuration).updateAdminIntegrationListing(requestParameters.listing, requestParameters.updateAdminIntegrationListingRequest, options).then((request) => request(this.axios, this.basePath));
|