@teemill/integrations 0.17.2 → 0.17.3
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 +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage PodOS Integrations
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.17.
|
|
5
|
+
* The version of the OpenAPI document: 0.17.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -13,332 +13,154 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AdminIntegrationListing
|
|
20
|
-
*/
|
|
21
16
|
export interface AdminIntegrationListing {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof AdminIntegrationListing
|
|
26
|
-
*/
|
|
27
17
|
'id'?: number;
|
|
28
18
|
/**
|
|
29
19
|
* The slug of the integration listing that is used in the URL
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof AdminIntegrationListing
|
|
32
20
|
*/
|
|
33
21
|
'slug': string;
|
|
34
22
|
/**
|
|
35
23
|
* The code of the integration
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof AdminIntegrationListing
|
|
38
24
|
*/
|
|
39
25
|
'code': string;
|
|
40
26
|
/**
|
|
41
27
|
* The name of the integration listing
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof AdminIntegrationListing
|
|
44
28
|
*/
|
|
45
29
|
'name': string;
|
|
46
30
|
/**
|
|
47
31
|
* The description of the integration listing
|
|
48
|
-
* @type {string}
|
|
49
|
-
* @memberof AdminIntegrationListing
|
|
50
32
|
*/
|
|
51
33
|
'description': string;
|
|
52
34
|
/**
|
|
53
35
|
* The html content of the integration listing
|
|
54
|
-
* @type {string}
|
|
55
|
-
* @memberof AdminIntegrationListing
|
|
56
36
|
*/
|
|
57
37
|
'content': string;
|
|
58
38
|
/**
|
|
59
39
|
* The html content of the pricing information
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof AdminIntegrationListing
|
|
62
40
|
*/
|
|
63
41
|
'pricing'?: string;
|
|
64
42
|
/**
|
|
65
43
|
* The author of the integration listing
|
|
66
|
-
* @type {string}
|
|
67
|
-
* @memberof AdminIntegrationListing
|
|
68
44
|
*/
|
|
69
45
|
'author': string;
|
|
70
|
-
/**
|
|
71
|
-
*
|
|
72
|
-
* @type {Icon}
|
|
73
|
-
* @memberof AdminIntegrationListing
|
|
74
|
-
*/
|
|
75
46
|
'icon': Icon;
|
|
76
|
-
/**
|
|
77
|
-
*
|
|
78
|
-
* @type {IntegrationListingGradient}
|
|
79
|
-
* @memberof AdminIntegrationListing
|
|
80
|
-
*/
|
|
81
47
|
'gradient': IntegrationListingGradient;
|
|
82
|
-
/**
|
|
83
|
-
*
|
|
84
|
-
* @type {Integration}
|
|
85
|
-
* @memberof AdminIntegrationListing
|
|
86
|
-
*/
|
|
87
48
|
'integration': Integration;
|
|
88
49
|
/**
|
|
89
50
|
* The dependencies that this integration listing requires
|
|
90
|
-
* @type {Array<string>}
|
|
91
|
-
* @memberof AdminIntegrationListing
|
|
92
51
|
*/
|
|
93
52
|
'dependencies': Array<string>;
|
|
94
53
|
/**
|
|
95
54
|
* The categories that this listing belongs to
|
|
96
|
-
* @type {Array<IntegrationCategory>}
|
|
97
|
-
* @memberof AdminIntegrationListing
|
|
98
55
|
*/
|
|
99
56
|
'categories': Array<IntegrationCategory>;
|
|
100
57
|
/**
|
|
101
58
|
* The string identifier displayed in the UI menu
|
|
102
|
-
* @type {string}
|
|
103
|
-
* @memberof AdminIntegrationListing
|
|
104
59
|
*/
|
|
105
60
|
'menuTitle'?: string;
|
|
106
61
|
/**
|
|
107
62
|
* The order of the listing in the UI menu
|
|
108
|
-
* @type {number}
|
|
109
|
-
* @memberof AdminIntegrationListing
|
|
110
63
|
*/
|
|
111
64
|
'menuSortOrder': number;
|
|
112
65
|
}
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @export
|
|
116
|
-
* @interface AdminIntegrationListingsResponse
|
|
117
|
-
*/
|
|
118
66
|
export interface AdminIntegrationListingsResponse {
|
|
119
|
-
/**
|
|
120
|
-
*
|
|
121
|
-
* @type {Array<AdminIntegrationListing>}
|
|
122
|
-
* @memberof AdminIntegrationListingsResponse
|
|
123
|
-
*/
|
|
124
67
|
'listings': Array<AdminIntegrationListing>;
|
|
125
68
|
}
|
|
126
|
-
/**
|
|
127
|
-
*
|
|
128
|
-
* @export
|
|
129
|
-
* @interface ApiError
|
|
130
|
-
*/
|
|
131
69
|
export interface ApiError {
|
|
132
|
-
/**
|
|
133
|
-
*
|
|
134
|
-
* @type {string}
|
|
135
|
-
* @memberof ApiError
|
|
136
|
-
*/
|
|
137
70
|
'code'?: string;
|
|
138
|
-
/**
|
|
139
|
-
*
|
|
140
|
-
* @type {string}
|
|
141
|
-
* @memberof ApiError
|
|
142
|
-
*/
|
|
143
71
|
'message': string;
|
|
144
72
|
}
|
|
145
|
-
/**
|
|
146
|
-
*
|
|
147
|
-
* @export
|
|
148
|
-
* @interface CreateAdminIntegrationListingRequest
|
|
149
|
-
*/
|
|
150
73
|
export interface CreateAdminIntegrationListingRequest {
|
|
151
74
|
/**
|
|
152
75
|
* The name of the integration listing
|
|
153
|
-
* @type {string}
|
|
154
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
155
76
|
*/
|
|
156
77
|
'name': string;
|
|
157
78
|
/**
|
|
158
79
|
* The description of the integration listing
|
|
159
|
-
* @type {string}
|
|
160
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
161
80
|
*/
|
|
162
81
|
'description': string;
|
|
163
82
|
/**
|
|
164
83
|
* The html content of the integration listing
|
|
165
|
-
* @type {string}
|
|
166
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
167
84
|
*/
|
|
168
85
|
'content': string;
|
|
169
86
|
/**
|
|
170
87
|
* The html content of the pricing information
|
|
171
|
-
* @type {string}
|
|
172
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
173
88
|
*/
|
|
174
89
|
'pricing'?: string;
|
|
175
90
|
/**
|
|
176
91
|
* The author of the integration listing
|
|
177
|
-
* @type {string}
|
|
178
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
179
92
|
*/
|
|
180
93
|
'author': string;
|
|
181
94
|
/**
|
|
182
95
|
* The code of the integration
|
|
183
|
-
* @type {string}
|
|
184
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
185
96
|
*/
|
|
186
97
|
'integration': string;
|
|
187
98
|
/**
|
|
188
99
|
* The slug of the integration listing that is used in the URL
|
|
189
|
-
* @type {string}
|
|
190
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
191
100
|
*/
|
|
192
101
|
'slug': string;
|
|
193
|
-
/**
|
|
194
|
-
*
|
|
195
|
-
* @type {CreateAdminIntegrationListingRequestGradient}
|
|
196
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
197
|
-
*/
|
|
198
102
|
'gradient': CreateAdminIntegrationListingRequestGradient;
|
|
199
103
|
/**
|
|
200
104
|
* The icon of the integration listing
|
|
201
|
-
* @type {string}
|
|
202
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
203
105
|
*/
|
|
204
106
|
'icon': string;
|
|
205
107
|
/**
|
|
206
108
|
* The categories that this listing belongs to
|
|
207
|
-
* @type {Array<string>}
|
|
208
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
209
109
|
*/
|
|
210
110
|
'categories': Array<string>;
|
|
211
111
|
/**
|
|
212
112
|
* The string identifier displayed in the UI menu
|
|
213
|
-
* @type {string}
|
|
214
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
215
113
|
*/
|
|
216
114
|
'menuTitle'?: string;
|
|
217
115
|
/**
|
|
218
116
|
* The order of the listing in the UI menu
|
|
219
|
-
* @type {number}
|
|
220
|
-
* @memberof CreateAdminIntegrationListingRequest
|
|
221
117
|
*/
|
|
222
118
|
'menuSortOrder': number;
|
|
223
119
|
}
|
|
224
120
|
/**
|
|
225
121
|
* The gradient that is used to display the listing
|
|
226
|
-
* @export
|
|
227
|
-
* @interface CreateAdminIntegrationListingRequestGradient
|
|
228
122
|
*/
|
|
229
123
|
export interface CreateAdminIntegrationListingRequestGradient {
|
|
230
|
-
/**
|
|
231
|
-
*
|
|
232
|
-
* @type {string}
|
|
233
|
-
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
234
|
-
*/
|
|
235
124
|
'from': string;
|
|
236
|
-
/**
|
|
237
|
-
*
|
|
238
|
-
* @type {string}
|
|
239
|
-
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
240
|
-
*/
|
|
241
125
|
'to': string;
|
|
242
|
-
/**
|
|
243
|
-
*
|
|
244
|
-
* @type {number}
|
|
245
|
-
* @memberof CreateAdminIntegrationListingRequestGradient
|
|
246
|
-
*/
|
|
247
126
|
'angle': number;
|
|
248
127
|
}
|
|
249
|
-
/**
|
|
250
|
-
*
|
|
251
|
-
* @export
|
|
252
|
-
* @interface Icon
|
|
253
|
-
*/
|
|
254
128
|
export interface Icon {
|
|
255
|
-
/**
|
|
256
|
-
*
|
|
257
|
-
* @type {string}
|
|
258
|
-
* @memberof Icon
|
|
259
|
-
*/
|
|
260
129
|
'prefix': string;
|
|
261
|
-
/**
|
|
262
|
-
*
|
|
263
|
-
* @type {string}
|
|
264
|
-
* @memberof Icon
|
|
265
|
-
*/
|
|
266
130
|
'iconName': string;
|
|
267
|
-
/**
|
|
268
|
-
*
|
|
269
|
-
* @type {Array<any>}
|
|
270
|
-
* @memberof Icon
|
|
271
|
-
*/
|
|
272
131
|
'icon': Array<any>;
|
|
273
132
|
}
|
|
274
|
-
/**
|
|
275
|
-
*
|
|
276
|
-
* @export
|
|
277
|
-
* @interface Integration
|
|
278
|
-
*/
|
|
279
133
|
export interface Integration {
|
|
280
|
-
/**
|
|
281
|
-
*
|
|
282
|
-
* @type {number}
|
|
283
|
-
* @memberof Integration
|
|
284
|
-
*/
|
|
285
134
|
'id'?: number;
|
|
286
135
|
/**
|
|
287
136
|
* The code of the integration
|
|
288
|
-
* @type {string}
|
|
289
|
-
* @memberof Integration
|
|
290
137
|
*/
|
|
291
138
|
'code'?: string;
|
|
292
139
|
/**
|
|
293
140
|
* The configuration of the integration
|
|
294
|
-
* @type {{ [key: string]: string; }}
|
|
295
|
-
* @memberof Integration
|
|
296
141
|
*/
|
|
297
142
|
'config'?: {
|
|
298
143
|
[key: string]: string;
|
|
299
144
|
};
|
|
300
145
|
/**
|
|
301
146
|
* The icon of the integration
|
|
302
|
-
* @type {any}
|
|
303
|
-
* @memberof Integration
|
|
304
147
|
*/
|
|
305
148
|
'icon'?: any;
|
|
306
149
|
}
|
|
307
|
-
/**
|
|
308
|
-
*
|
|
309
|
-
* @export
|
|
310
|
-
* @interface IntegrationCategoriesResponse
|
|
311
|
-
*/
|
|
312
150
|
export interface IntegrationCategoriesResponse {
|
|
313
|
-
/**
|
|
314
|
-
*
|
|
315
|
-
* @type {Array<IntegrationCategory>}
|
|
316
|
-
* @memberof IntegrationCategoriesResponse
|
|
317
|
-
*/
|
|
318
151
|
'categories': Array<IntegrationCategory>;
|
|
319
152
|
}
|
|
320
|
-
/**
|
|
321
|
-
*
|
|
322
|
-
* @export
|
|
323
|
-
* @interface IntegrationCategory
|
|
324
|
-
*/
|
|
325
153
|
export interface IntegrationCategory {
|
|
326
154
|
/**
|
|
327
155
|
* The name of the category
|
|
328
|
-
* @type {string}
|
|
329
|
-
* @memberof IntegrationCategory
|
|
330
156
|
*/
|
|
331
157
|
'name': string;
|
|
332
158
|
/**
|
|
333
159
|
* The slug of the category that is used in the URL
|
|
334
|
-
* @type {string}
|
|
335
|
-
* @memberof IntegrationCategory
|
|
336
160
|
*/
|
|
337
161
|
'slug': string;
|
|
338
162
|
/**
|
|
339
163
|
* The type of category, used to determine how it is displayed
|
|
340
|
-
* @type {string}
|
|
341
|
-
* @memberof IntegrationCategory
|
|
342
164
|
*/
|
|
343
165
|
'type': IntegrationCategoryTypeEnum;
|
|
344
166
|
}
|
|
@@ -348,311 +170,155 @@ export declare const IntegrationCategoryTypeEnum: {
|
|
|
348
170
|
readonly Column: "column";
|
|
349
171
|
};
|
|
350
172
|
export type IntegrationCategoryTypeEnum = typeof IntegrationCategoryTypeEnum[keyof typeof IntegrationCategoryTypeEnum];
|
|
351
|
-
/**
|
|
352
|
-
*
|
|
353
|
-
* @export
|
|
354
|
-
* @interface IntegrationListing
|
|
355
|
-
*/
|
|
356
173
|
export interface IntegrationListing {
|
|
357
|
-
/**
|
|
358
|
-
*
|
|
359
|
-
* @type {number}
|
|
360
|
-
* @memberof IntegrationListing
|
|
361
|
-
*/
|
|
362
174
|
'id'?: number;
|
|
363
175
|
/**
|
|
364
176
|
* The slug of the integration listing that is used in the URL
|
|
365
|
-
* @type {string}
|
|
366
|
-
* @memberof IntegrationListing
|
|
367
177
|
*/
|
|
368
178
|
'slug': string;
|
|
369
179
|
/**
|
|
370
180
|
* The code of the integration
|
|
371
|
-
* @type {string}
|
|
372
|
-
* @memberof IntegrationListing
|
|
373
181
|
*/
|
|
374
182
|
'code': string;
|
|
375
183
|
/**
|
|
376
184
|
* The name of the integration listing
|
|
377
|
-
* @type {string}
|
|
378
|
-
* @memberof IntegrationListing
|
|
379
185
|
*/
|
|
380
186
|
'name': string;
|
|
381
187
|
/**
|
|
382
188
|
* The description of the integration listing
|
|
383
|
-
* @type {string}
|
|
384
|
-
* @memberof IntegrationListing
|
|
385
189
|
*/
|
|
386
190
|
'description': string;
|
|
387
191
|
/**
|
|
388
192
|
* The html content of the integration listing
|
|
389
|
-
* @type {string}
|
|
390
|
-
* @memberof IntegrationListing
|
|
391
193
|
*/
|
|
392
194
|
'content': string;
|
|
393
195
|
/**
|
|
394
196
|
* The html content of the pricing information
|
|
395
|
-
* @type {string}
|
|
396
|
-
* @memberof IntegrationListing
|
|
397
197
|
*/
|
|
398
198
|
'pricing'?: string;
|
|
399
199
|
/**
|
|
400
200
|
* The author of the integration listing
|
|
401
|
-
* @type {string}
|
|
402
|
-
* @memberof IntegrationListing
|
|
403
201
|
*/
|
|
404
202
|
'author': string;
|
|
405
|
-
/**
|
|
406
|
-
*
|
|
407
|
-
* @type {Icon}
|
|
408
|
-
* @memberof IntegrationListing
|
|
409
|
-
*/
|
|
410
203
|
'icon': Icon;
|
|
411
|
-
/**
|
|
412
|
-
*
|
|
413
|
-
* @type {IntegrationListingGradient}
|
|
414
|
-
* @memberof IntegrationListing
|
|
415
|
-
*/
|
|
416
204
|
'gradient': IntegrationListingGradient;
|
|
417
205
|
/**
|
|
418
206
|
* The dependencies that this integration listing requires
|
|
419
|
-
* @type {Array<string>}
|
|
420
|
-
* @memberof IntegrationListing
|
|
421
207
|
*/
|
|
422
208
|
'dependencies': Array<string>;
|
|
423
209
|
/**
|
|
424
210
|
* The categories that this listing belongs to
|
|
425
|
-
* @type {Array<IntegrationCategory>}
|
|
426
|
-
* @memberof IntegrationListing
|
|
427
211
|
*/
|
|
428
212
|
'categories': Array<IntegrationCategory>;
|
|
429
213
|
/**
|
|
430
214
|
* The string identifier displayed in the UI menu
|
|
431
|
-
* @type {string}
|
|
432
|
-
* @memberof IntegrationListing
|
|
433
215
|
*/
|
|
434
216
|
'menuTitle'?: string;
|
|
435
217
|
/**
|
|
436
218
|
* The order of the listing in the UI menu
|
|
437
|
-
* @type {number}
|
|
438
|
-
* @memberof IntegrationListing
|
|
439
219
|
*/
|
|
440
220
|
'menuSortOrder': number;
|
|
441
221
|
}
|
|
442
222
|
/**
|
|
443
223
|
* The gradient that is used to display the listing
|
|
444
|
-
* @export
|
|
445
|
-
* @interface IntegrationListingGradient
|
|
446
224
|
*/
|
|
447
225
|
export interface IntegrationListingGradient {
|
|
448
|
-
/**
|
|
449
|
-
*
|
|
450
|
-
* @type {string}
|
|
451
|
-
* @memberof IntegrationListingGradient
|
|
452
|
-
*/
|
|
453
226
|
'from'?: string;
|
|
454
|
-
/**
|
|
455
|
-
*
|
|
456
|
-
* @type {string}
|
|
457
|
-
* @memberof IntegrationListingGradient
|
|
458
|
-
*/
|
|
459
227
|
'to'?: string;
|
|
460
|
-
/**
|
|
461
|
-
*
|
|
462
|
-
* @type {number}
|
|
463
|
-
* @memberof IntegrationListingGradient
|
|
464
|
-
*/
|
|
465
228
|
'angle'?: number;
|
|
466
229
|
}
|
|
467
|
-
/**
|
|
468
|
-
*
|
|
469
|
-
* @export
|
|
470
|
-
* @interface IntegrationListingsResponse
|
|
471
|
-
*/
|
|
472
230
|
export interface IntegrationListingsResponse {
|
|
473
|
-
/**
|
|
474
|
-
*
|
|
475
|
-
* @type {Array<IntegrationListing>}
|
|
476
|
-
* @memberof IntegrationListingsResponse
|
|
477
|
-
*/
|
|
478
231
|
'listings': Array<IntegrationListing>;
|
|
479
232
|
}
|
|
480
|
-
/**
|
|
481
|
-
*
|
|
482
|
-
* @export
|
|
483
|
-
* @interface IntegrationProduct
|
|
484
|
-
*/
|
|
485
233
|
export interface IntegrationProduct {
|
|
486
234
|
/**
|
|
487
235
|
* The ID of the product
|
|
488
|
-
* @type {number}
|
|
489
|
-
* @memberof IntegrationProduct
|
|
490
236
|
*/
|
|
491
237
|
'id'?: number;
|
|
492
238
|
/**
|
|
493
239
|
* The SKU of the product
|
|
494
|
-
* @type {string}
|
|
495
|
-
* @memberof IntegrationProduct
|
|
496
240
|
*/
|
|
497
241
|
'sku': string;
|
|
498
242
|
/**
|
|
499
243
|
* The name of the product
|
|
500
|
-
* @type {string}
|
|
501
|
-
* @memberof IntegrationProduct
|
|
502
244
|
*/
|
|
503
245
|
'name': string;
|
|
504
246
|
/**
|
|
505
247
|
* The slug of the product that is used in the URL
|
|
506
|
-
* @type {string}
|
|
507
|
-
* @memberof IntegrationProduct
|
|
508
248
|
*/
|
|
509
249
|
'slug': string;
|
|
510
250
|
/**
|
|
511
251
|
* The user facing description of the product
|
|
512
|
-
* @type {string}
|
|
513
|
-
* @memberof IntegrationProduct
|
|
514
252
|
*/
|
|
515
253
|
'description': string;
|
|
516
254
|
/**
|
|
517
255
|
* The price of the product in GBP
|
|
518
|
-
* @type {number}
|
|
519
|
-
* @memberof IntegrationProduct
|
|
520
256
|
*/
|
|
521
257
|
'price': number;
|
|
522
258
|
}
|
|
523
|
-
/**
|
|
524
|
-
*
|
|
525
|
-
* @export
|
|
526
|
-
* @interface IntegrationProductsResponse
|
|
527
|
-
*/
|
|
528
259
|
export interface IntegrationProductsResponse {
|
|
529
|
-
/**
|
|
530
|
-
*
|
|
531
|
-
* @type {Array<IntegrationProduct>}
|
|
532
|
-
* @memberof IntegrationProductsResponse
|
|
533
|
-
*/
|
|
534
260
|
'products': Array<IntegrationProduct>;
|
|
535
261
|
}
|
|
536
|
-
/**
|
|
537
|
-
*
|
|
538
|
-
* @export
|
|
539
|
-
* @interface IntegrationsResponse
|
|
540
|
-
*/
|
|
541
262
|
export interface IntegrationsResponse {
|
|
542
|
-
/**
|
|
543
|
-
*
|
|
544
|
-
* @type {Array<Integration>}
|
|
545
|
-
* @memberof IntegrationsResponse
|
|
546
|
-
*/
|
|
547
263
|
'integrations': Array<Integration>;
|
|
548
264
|
}
|
|
549
|
-
/**
|
|
550
|
-
*
|
|
551
|
-
* @export
|
|
552
|
-
* @interface UpdateAdminIntegrationListingRequest
|
|
553
|
-
*/
|
|
554
265
|
export interface UpdateAdminIntegrationListingRequest {
|
|
555
266
|
/**
|
|
556
267
|
* The name of the integration listing
|
|
557
|
-
* @type {string}
|
|
558
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
559
268
|
*/
|
|
560
269
|
'name'?: string;
|
|
561
270
|
/**
|
|
562
271
|
* The description of the integration listing
|
|
563
|
-
* @type {string}
|
|
564
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
565
272
|
*/
|
|
566
273
|
'description'?: string;
|
|
567
274
|
/**
|
|
568
275
|
* The html content of the integration listing
|
|
569
|
-
* @type {string}
|
|
570
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
571
276
|
*/
|
|
572
277
|
'content'?: string;
|
|
573
278
|
/**
|
|
574
279
|
* The html content of the pricing information
|
|
575
|
-
* @type {string}
|
|
576
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
577
280
|
*/
|
|
578
281
|
'pricing'?: string;
|
|
579
282
|
/**
|
|
580
283
|
* The code of the integration
|
|
581
|
-
* @type {string}
|
|
582
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
583
284
|
*/
|
|
584
285
|
'integration'?: string;
|
|
585
286
|
/**
|
|
586
287
|
* The author of the integration listing
|
|
587
|
-
* @type {string}
|
|
588
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
589
288
|
*/
|
|
590
289
|
'author'?: string;
|
|
591
290
|
/**
|
|
592
291
|
* The slug of the integration listing that is used in the URL
|
|
593
|
-
* @type {string}
|
|
594
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
595
292
|
*/
|
|
596
293
|
'slug'?: string;
|
|
597
|
-
/**
|
|
598
|
-
*
|
|
599
|
-
* @type {UpdateAdminIntegrationListingRequestGradient}
|
|
600
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
601
|
-
*/
|
|
602
294
|
'gradient'?: UpdateAdminIntegrationListingRequestGradient;
|
|
603
295
|
/**
|
|
604
296
|
* The icon of the integration listing
|
|
605
|
-
* @type {string}
|
|
606
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
607
297
|
*/
|
|
608
298
|
'icon'?: string;
|
|
609
299
|
/**
|
|
610
300
|
* The categories that this listing belongs to
|
|
611
|
-
* @type {Array<string>}
|
|
612
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
613
301
|
*/
|
|
614
302
|
'categories'?: Array<string>;
|
|
615
303
|
/**
|
|
616
304
|
* The string identifier displayed in the UI menu
|
|
617
|
-
* @type {string}
|
|
618
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
619
305
|
*/
|
|
620
306
|
'menuTitle'?: string;
|
|
621
307
|
/**
|
|
622
308
|
* The order of the listing in the UI menu
|
|
623
|
-
* @type {number}
|
|
624
|
-
* @memberof UpdateAdminIntegrationListingRequest
|
|
625
309
|
*/
|
|
626
310
|
'menuSortOrder'?: number;
|
|
627
311
|
}
|
|
628
312
|
/**
|
|
629
313
|
* The gradient that is used to display the listing
|
|
630
|
-
* @export
|
|
631
|
-
* @interface UpdateAdminIntegrationListingRequestGradient
|
|
632
314
|
*/
|
|
633
315
|
export interface UpdateAdminIntegrationListingRequestGradient {
|
|
634
|
-
/**
|
|
635
|
-
*
|
|
636
|
-
* @type {string}
|
|
637
|
-
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
638
|
-
*/
|
|
639
316
|
'from'?: string;
|
|
640
|
-
/**
|
|
641
|
-
*
|
|
642
|
-
* @type {string}
|
|
643
|
-
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
644
|
-
*/
|
|
645
317
|
'to'?: string;
|
|
646
|
-
/**
|
|
647
|
-
*
|
|
648
|
-
* @type {number}
|
|
649
|
-
* @memberof UpdateAdminIntegrationListingRequestGradient
|
|
650
|
-
*/
|
|
651
318
|
'angle'?: number;
|
|
652
319
|
}
|
|
653
320
|
/**
|
|
654
321
|
* IntegrationsApi - axios parameter creator
|
|
655
|
-
* @export
|
|
656
322
|
*/
|
|
657
323
|
export declare const IntegrationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
658
324
|
/**
|
|
@@ -754,7 +420,6 @@ export declare const IntegrationsApiAxiosParamCreator: (configuration?: Configur
|
|
|
754
420
|
};
|
|
755
421
|
/**
|
|
756
422
|
* IntegrationsApi - functional programming interface
|
|
757
|
-
* @export
|
|
758
423
|
*/
|
|
759
424
|
export declare const IntegrationsApiFp: (configuration?: Configuration) => {
|
|
760
425
|
/**
|
|
@@ -856,7 +521,6 @@ export declare const IntegrationsApiFp: (configuration?: Configuration) => {
|
|
|
856
521
|
};
|
|
857
522
|
/**
|
|
858
523
|
* IntegrationsApi - factory interface
|
|
859
|
-
* @export
|
|
860
524
|
*/
|
|
861
525
|
export declare const IntegrationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
862
526
|
/**
|
|
@@ -955,144 +619,93 @@ export declare const IntegrationsApiFactory: (configuration?: Configuration, bas
|
|
|
955
619
|
};
|
|
956
620
|
/**
|
|
957
621
|
* Request parameters for createAdminIntegrationListing operation in IntegrationsApi.
|
|
958
|
-
* @export
|
|
959
|
-
* @interface IntegrationsApiCreateAdminIntegrationListingRequest
|
|
960
622
|
*/
|
|
961
623
|
export interface IntegrationsApiCreateAdminIntegrationListingRequest {
|
|
962
624
|
/**
|
|
963
625
|
* Create a new integration listing
|
|
964
|
-
* @type {CreateAdminIntegrationListingRequest}
|
|
965
|
-
* @memberof IntegrationsApiCreateAdminIntegrationListing
|
|
966
626
|
*/
|
|
967
627
|
readonly createAdminIntegrationListingRequest: CreateAdminIntegrationListingRequest;
|
|
968
628
|
}
|
|
969
629
|
/**
|
|
970
630
|
* Request parameters for deleteAdminIntegrationListing operation in IntegrationsApi.
|
|
971
|
-
* @export
|
|
972
|
-
* @interface IntegrationsApiDeleteAdminIntegrationListingRequest
|
|
973
631
|
*/
|
|
974
632
|
export interface IntegrationsApiDeleteAdminIntegrationListingRequest {
|
|
975
633
|
/**
|
|
976
634
|
* Integration listing unique identifier
|
|
977
|
-
* @type {string}
|
|
978
|
-
* @memberof IntegrationsApiDeleteAdminIntegrationListing
|
|
979
635
|
*/
|
|
980
636
|
readonly listing: string;
|
|
981
637
|
}
|
|
982
638
|
/**
|
|
983
639
|
* Request parameters for getAdminIntegrationListing operation in IntegrationsApi.
|
|
984
|
-
* @export
|
|
985
|
-
* @interface IntegrationsApiGetAdminIntegrationListingRequest
|
|
986
640
|
*/
|
|
987
641
|
export interface IntegrationsApiGetAdminIntegrationListingRequest {
|
|
988
642
|
/**
|
|
989
643
|
* Integration listing unique identifier
|
|
990
|
-
* @type {string}
|
|
991
|
-
* @memberof IntegrationsApiGetAdminIntegrationListing
|
|
992
644
|
*/
|
|
993
645
|
readonly listing: string;
|
|
994
646
|
}
|
|
995
647
|
/**
|
|
996
648
|
* Request parameters for getIntegrationCategory operation in IntegrationsApi.
|
|
997
|
-
* @export
|
|
998
|
-
* @interface IntegrationsApiGetIntegrationCategoryRequest
|
|
999
649
|
*/
|
|
1000
650
|
export interface IntegrationsApiGetIntegrationCategoryRequest {
|
|
1001
651
|
/**
|
|
1002
652
|
* Categories unique identifier
|
|
1003
|
-
* @type {string}
|
|
1004
|
-
* @memberof IntegrationsApiGetIntegrationCategory
|
|
1005
653
|
*/
|
|
1006
654
|
readonly category: string;
|
|
1007
655
|
}
|
|
1008
656
|
/**
|
|
1009
657
|
* Request parameters for getIntegrationListing operation in IntegrationsApi.
|
|
1010
|
-
* @export
|
|
1011
|
-
* @interface IntegrationsApiGetIntegrationListingRequest
|
|
1012
658
|
*/
|
|
1013
659
|
export interface IntegrationsApiGetIntegrationListingRequest {
|
|
1014
660
|
/**
|
|
1015
661
|
* Integration listing unique identifier
|
|
1016
|
-
* @type {string}
|
|
1017
|
-
* @memberof IntegrationsApiGetIntegrationListing
|
|
1018
662
|
*/
|
|
1019
663
|
readonly listing: string;
|
|
1020
664
|
}
|
|
1021
665
|
/**
|
|
1022
666
|
* Request parameters for getIntegrationListings operation in IntegrationsApi.
|
|
1023
|
-
* @export
|
|
1024
|
-
* @interface IntegrationsApiGetIntegrationListingsRequest
|
|
1025
667
|
*/
|
|
1026
668
|
export interface IntegrationsApiGetIntegrationListingsRequest {
|
|
1027
|
-
/**
|
|
1028
|
-
*
|
|
1029
|
-
* @type {string}
|
|
1030
|
-
* @memberof IntegrationsApiGetIntegrationListings
|
|
1031
|
-
*/
|
|
1032
669
|
readonly project: string;
|
|
1033
670
|
}
|
|
1034
671
|
/**
|
|
1035
672
|
* Request parameters for getIntegrationProduct operation in IntegrationsApi.
|
|
1036
|
-
* @export
|
|
1037
|
-
* @interface IntegrationsApiGetIntegrationProductRequest
|
|
1038
673
|
*/
|
|
1039
674
|
export interface IntegrationsApiGetIntegrationProductRequest {
|
|
1040
675
|
/**
|
|
1041
676
|
* Integrations unique identifier
|
|
1042
|
-
* @type {number}
|
|
1043
|
-
* @memberof IntegrationsApiGetIntegrationProduct
|
|
1044
677
|
*/
|
|
1045
678
|
readonly integration: number;
|
|
1046
679
|
/**
|
|
1047
680
|
* Products unique identifier
|
|
1048
|
-
* @type {string}
|
|
1049
|
-
* @memberof IntegrationsApiGetIntegrationProduct
|
|
1050
681
|
*/
|
|
1051
682
|
readonly product: string;
|
|
1052
683
|
}
|
|
1053
684
|
/**
|
|
1054
685
|
* Request parameters for getIntegrationProducts operation in IntegrationsApi.
|
|
1055
|
-
* @export
|
|
1056
|
-
* @interface IntegrationsApiGetIntegrationProductsRequest
|
|
1057
686
|
*/
|
|
1058
687
|
export interface IntegrationsApiGetIntegrationProductsRequest {
|
|
1059
688
|
/**
|
|
1060
689
|
* Integrations unique identifier
|
|
1061
|
-
* @type {number}
|
|
1062
|
-
* @memberof IntegrationsApiGetIntegrationProducts
|
|
1063
690
|
*/
|
|
1064
691
|
readonly integration: number;
|
|
1065
|
-
/**
|
|
1066
|
-
*
|
|
1067
|
-
* @type {string}
|
|
1068
|
-
* @memberof IntegrationsApiGetIntegrationProducts
|
|
1069
|
-
*/
|
|
1070
692
|
readonly project?: string;
|
|
1071
693
|
}
|
|
1072
694
|
/**
|
|
1073
695
|
* Request parameters for updateAdminIntegrationListing operation in IntegrationsApi.
|
|
1074
|
-
* @export
|
|
1075
|
-
* @interface IntegrationsApiUpdateAdminIntegrationListingRequest
|
|
1076
696
|
*/
|
|
1077
697
|
export interface IntegrationsApiUpdateAdminIntegrationListingRequest {
|
|
1078
698
|
/**
|
|
1079
699
|
* Integration listing unique identifier
|
|
1080
|
-
* @type {string}
|
|
1081
|
-
* @memberof IntegrationsApiUpdateAdminIntegrationListing
|
|
1082
700
|
*/
|
|
1083
701
|
readonly listing: string;
|
|
1084
702
|
/**
|
|
1085
703
|
* Update an integration listing
|
|
1086
|
-
* @type {UpdateAdminIntegrationListingRequest}
|
|
1087
|
-
* @memberof IntegrationsApiUpdateAdminIntegrationListing
|
|
1088
704
|
*/
|
|
1089
705
|
readonly updateAdminIntegrationListingRequest: UpdateAdminIntegrationListingRequest;
|
|
1090
706
|
}
|
|
1091
707
|
/**
|
|
1092
708
|
* IntegrationsApi - object-oriented interface
|
|
1093
|
-
* @export
|
|
1094
|
-
* @class IntegrationsApi
|
|
1095
|
-
* @extends {BaseAPI}
|
|
1096
709
|
*/
|
|
1097
710
|
export declare class IntegrationsApi extends BaseAPI {
|
|
1098
711
|
/**
|
|
@@ -1101,103 +714,91 @@ export declare class IntegrationsApi extends BaseAPI {
|
|
|
1101
714
|
* @param {IntegrationsApiCreateAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
1102
715
|
* @param {*} [options] Override http request option.
|
|
1103
716
|
* @throws {RequiredError}
|
|
1104
|
-
* @memberof IntegrationsApi
|
|
1105
717
|
*/
|
|
1106
|
-
createAdminIntegrationListing(requestParameters: IntegrationsApiCreateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any>>;
|
|
718
|
+
createAdminIntegrationListing(requestParameters: IntegrationsApiCreateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any, {}>>;
|
|
1107
719
|
/**
|
|
1108
720
|
* Delete an integration listing
|
|
1109
721
|
* @summary Delete integration listing
|
|
1110
722
|
* @param {IntegrationsApiDeleteAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
1111
723
|
* @param {*} [options] Override http request option.
|
|
1112
724
|
* @throws {RequiredError}
|
|
1113
|
-
* @memberof IntegrationsApi
|
|
1114
725
|
*/
|
|
1115
|
-
deleteAdminIntegrationListing(requestParameters: IntegrationsApiDeleteAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
726
|
+
deleteAdminIntegrationListing(requestParameters: IntegrationsApiDeleteAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1116
727
|
/**
|
|
1117
728
|
* Retrieves a specific integration listing by its slug.
|
|
1118
729
|
* @summary Retrieve integration listing
|
|
1119
730
|
* @param {IntegrationsApiGetAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
1120
731
|
* @param {*} [options] Override http request option.
|
|
1121
732
|
* @throws {RequiredError}
|
|
1122
|
-
* @memberof IntegrationsApi
|
|
1123
733
|
*/
|
|
1124
|
-
getAdminIntegrationListing(requestParameters: IntegrationsApiGetAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any>>;
|
|
734
|
+
getAdminIntegrationListing(requestParameters: IntegrationsApiGetAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any, {}>>;
|
|
1125
735
|
/**
|
|
1126
736
|
* List all integration categories
|
|
1127
737
|
* @summary List integration categories
|
|
1128
738
|
* @param {*} [options] Override http request option.
|
|
1129
739
|
* @throws {RequiredError}
|
|
1130
|
-
* @memberof IntegrationsApi
|
|
1131
740
|
*/
|
|
1132
|
-
getIntegrationCategories(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationCategoriesResponse, any>>;
|
|
741
|
+
getIntegrationCategories(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationCategoriesResponse, any, {}>>;
|
|
1133
742
|
/**
|
|
1134
743
|
* Get an integration category
|
|
1135
744
|
* @summary Get integration category
|
|
1136
745
|
* @param {IntegrationsApiGetIntegrationCategoryRequest} requestParameters Request parameters.
|
|
1137
746
|
* @param {*} [options] Override http request option.
|
|
1138
747
|
* @throws {RequiredError}
|
|
1139
|
-
* @memberof IntegrationsApi
|
|
1140
748
|
*/
|
|
1141
|
-
getIntegrationCategory(requestParameters: IntegrationsApiGetIntegrationCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationListingsResponse, any>>;
|
|
749
|
+
getIntegrationCategory(requestParameters: IntegrationsApiGetIntegrationCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationListingsResponse, any, {}>>;
|
|
1142
750
|
/**
|
|
1143
751
|
* Get an integration listing
|
|
1144
752
|
* @summary Get integration listing
|
|
1145
753
|
* @param {IntegrationsApiGetIntegrationListingRequest} requestParameters Request parameters.
|
|
1146
754
|
* @param {*} [options] Override http request option.
|
|
1147
755
|
* @throws {RequiredError}
|
|
1148
|
-
* @memberof IntegrationsApi
|
|
1149
756
|
*/
|
|
1150
|
-
getIntegrationListing(requestParameters: IntegrationsApiGetIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationListing, any>>;
|
|
757
|
+
getIntegrationListing(requestParameters: IntegrationsApiGetIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationListing, any, {}>>;
|
|
1151
758
|
/**
|
|
1152
759
|
* List all integration listings
|
|
1153
760
|
* @summary List integration listings
|
|
1154
761
|
* @param {IntegrationsApiGetIntegrationListingsRequest} requestParameters Request parameters.
|
|
1155
762
|
* @param {*} [options] Override http request option.
|
|
1156
763
|
* @throws {RequiredError}
|
|
1157
|
-
* @memberof IntegrationsApi
|
|
1158
764
|
*/
|
|
1159
|
-
getIntegrationListings(requestParameters: IntegrationsApiGetIntegrationListingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationListingsResponse, any>>;
|
|
765
|
+
getIntegrationListings(requestParameters: IntegrationsApiGetIntegrationListingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationListingsResponse, any, {}>>;
|
|
1160
766
|
/**
|
|
1161
767
|
* Get a product available for an integration
|
|
1162
768
|
* @summary Get integration product
|
|
1163
769
|
* @param {IntegrationsApiGetIntegrationProductRequest} requestParameters Request parameters.
|
|
1164
770
|
* @param {*} [options] Override http request option.
|
|
1165
771
|
* @throws {RequiredError}
|
|
1166
|
-
* @memberof IntegrationsApi
|
|
1167
772
|
*/
|
|
1168
|
-
getIntegrationProduct(requestParameters: IntegrationsApiGetIntegrationProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationProduct, any>>;
|
|
773
|
+
getIntegrationProduct(requestParameters: IntegrationsApiGetIntegrationProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationProduct, any, {}>>;
|
|
1169
774
|
/**
|
|
1170
775
|
* List all products available for an integration
|
|
1171
776
|
* @summary List integration products
|
|
1172
777
|
* @param {IntegrationsApiGetIntegrationProductsRequest} requestParameters Request parameters.
|
|
1173
778
|
* @param {*} [options] Override http request option.
|
|
1174
779
|
* @throws {RequiredError}
|
|
1175
|
-
* @memberof IntegrationsApi
|
|
1176
780
|
*/
|
|
1177
|
-
getIntegrationProducts(requestParameters: IntegrationsApiGetIntegrationProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationProductsResponse, any>>;
|
|
781
|
+
getIntegrationProducts(requestParameters: IntegrationsApiGetIntegrationProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationProductsResponse, any, {}>>;
|
|
1178
782
|
/**
|
|
1179
783
|
* List all integrations
|
|
1180
784
|
* @summary List integrations
|
|
1181
785
|
* @param {*} [options] Override http request option.
|
|
1182
786
|
* @throws {RequiredError}
|
|
1183
|
-
* @memberof IntegrationsApi
|
|
1184
787
|
*/
|
|
1185
|
-
getIntegrations(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any>>;
|
|
788
|
+
getIntegrations(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any, {}>>;
|
|
1186
789
|
/**
|
|
1187
790
|
* List all integration listings
|
|
1188
791
|
* @summary List integration listings
|
|
1189
792
|
* @param {*} [options] Override http request option.
|
|
1190
793
|
* @throws {RequiredError}
|
|
1191
|
-
* @memberof IntegrationsApi
|
|
1192
794
|
*/
|
|
1193
|
-
listAdminIntegrationListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListingsResponse, any>>;
|
|
795
|
+
listAdminIntegrationListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListingsResponse, any, {}>>;
|
|
1194
796
|
/**
|
|
1195
797
|
* Update an integration listing
|
|
1196
798
|
* @summary Update integration listing
|
|
1197
799
|
* @param {IntegrationsApiUpdateAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
1198
800
|
* @param {*} [options] Override http request option.
|
|
1199
801
|
* @throws {RequiredError}
|
|
1200
|
-
* @memberof IntegrationsApi
|
|
1201
802
|
*/
|
|
1202
|
-
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any>>;
|
|
803
|
+
updateAdminIntegrationListing(requestParameters: IntegrationsApiUpdateAdminIntegrationListingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminIntegrationListing, any, {}>>;
|
|
1203
804
|
}
|