@teemill/integrations 0.13.0 → 0.15.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/.openapi-generator/VERSION +1 -1
- package/README.md +2 -2
- package/api.ts +75 -3
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +9 -4
- package/dist/api.d.ts +75 -3
- package/dist/api.js +3 -3
- package/dist/base.d.ts +3 -3
- package/dist/base.js +3 -3
- package/dist/common.d.ts +4 -4
- package/dist/common.js +3 -3
- package/dist/configuration.d.ts +3 -3
- package/dist/configuration.js +5 -4
- package/dist/esm/api.d.ts +75 -3
- package/dist/esm/api.js +3 -3
- package/dist/esm/base.d.ts +3 -3
- package/dist/esm/base.js +3 -3
- package/dist/esm/common.d.ts +4 -4
- package/dist/esm/common.js +3 -3
- package/dist/esm/configuration.d.ts +3 -3
- package/dist/esm/configuration.js +5 -4
- package/dist/esm/index.d.ts +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/index.ts +3 -3
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.7.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/integrations@0.
|
|
1
|
+
## @teemill/integrations@0.15.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.15.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -65,6 +65,12 @@ export interface AdminIntegrationListing {
|
|
|
65
65
|
* @memberof AdminIntegrationListing
|
|
66
66
|
*/
|
|
67
67
|
'content': string;
|
|
68
|
+
/**
|
|
69
|
+
* The html content of the pricing information
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof AdminIntegrationListing
|
|
72
|
+
*/
|
|
73
|
+
'pricing'?: string;
|
|
68
74
|
/**
|
|
69
75
|
* The author of the integration listing
|
|
70
76
|
* @type {string}
|
|
@@ -101,6 +107,18 @@ export interface AdminIntegrationListing {
|
|
|
101
107
|
* @memberof AdminIntegrationListing
|
|
102
108
|
*/
|
|
103
109
|
'categories': Array<IntegrationCategory>;
|
|
110
|
+
/**
|
|
111
|
+
* The string identifier displayed in the UI menu
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof AdminIntegrationListing
|
|
114
|
+
*/
|
|
115
|
+
'menuTitle'?: string;
|
|
116
|
+
/**
|
|
117
|
+
* The order of the listing in the UI menu
|
|
118
|
+
* @type {number}
|
|
119
|
+
* @memberof AdminIntegrationListing
|
|
120
|
+
*/
|
|
121
|
+
'menuSortOrder': number;
|
|
104
122
|
}
|
|
105
123
|
/**
|
|
106
124
|
*
|
|
@@ -158,6 +176,12 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
158
176
|
* @memberof CreateAdminIntegrationListingRequest
|
|
159
177
|
*/
|
|
160
178
|
'content': string;
|
|
179
|
+
/**
|
|
180
|
+
* The html content of the pricing information
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
183
|
+
*/
|
|
184
|
+
'pricing'?: string;
|
|
161
185
|
/**
|
|
162
186
|
* The author of the integration listing
|
|
163
187
|
* @type {string}
|
|
@@ -194,6 +218,18 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
194
218
|
* @memberof CreateAdminIntegrationListingRequest
|
|
195
219
|
*/
|
|
196
220
|
'categories': Array<string>;
|
|
221
|
+
/**
|
|
222
|
+
* The string identifier displayed in the UI menu
|
|
223
|
+
* @type {string}
|
|
224
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
225
|
+
*/
|
|
226
|
+
'menuTitle'?: string;
|
|
227
|
+
/**
|
|
228
|
+
* The order of the listing in the UI menu
|
|
229
|
+
* @type {number}
|
|
230
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
231
|
+
*/
|
|
232
|
+
'menuSortOrder': number;
|
|
197
233
|
}
|
|
198
234
|
/**
|
|
199
235
|
* The gradient that is used to display the listing
|
|
@@ -365,6 +401,12 @@ export interface IntegrationListing {
|
|
|
365
401
|
* @memberof IntegrationListing
|
|
366
402
|
*/
|
|
367
403
|
'content': string;
|
|
404
|
+
/**
|
|
405
|
+
* The html content of the pricing information
|
|
406
|
+
* @type {string}
|
|
407
|
+
* @memberof IntegrationListing
|
|
408
|
+
*/
|
|
409
|
+
'pricing'?: string;
|
|
368
410
|
/**
|
|
369
411
|
* The author of the integration listing
|
|
370
412
|
* @type {string}
|
|
@@ -395,6 +437,18 @@ export interface IntegrationListing {
|
|
|
395
437
|
* @memberof IntegrationListing
|
|
396
438
|
*/
|
|
397
439
|
'categories': Array<IntegrationCategory>;
|
|
440
|
+
/**
|
|
441
|
+
* The string identifier displayed in the UI menu
|
|
442
|
+
* @type {string}
|
|
443
|
+
* @memberof IntegrationListing
|
|
444
|
+
*/
|
|
445
|
+
'menuTitle'?: string;
|
|
446
|
+
/**
|
|
447
|
+
* The order of the listing in the UI menu
|
|
448
|
+
* @type {number}
|
|
449
|
+
* @memberof IntegrationListing
|
|
450
|
+
*/
|
|
451
|
+
'menuSortOrder': number;
|
|
398
452
|
}
|
|
399
453
|
/**
|
|
400
454
|
* The gradient that is used to display the listing
|
|
@@ -527,6 +581,12 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
527
581
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
528
582
|
*/
|
|
529
583
|
'content'?: string;
|
|
584
|
+
/**
|
|
585
|
+
* The html content of the pricing information
|
|
586
|
+
* @type {string}
|
|
587
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
588
|
+
*/
|
|
589
|
+
'pricing'?: string;
|
|
530
590
|
/**
|
|
531
591
|
* The code of the integration
|
|
532
592
|
* @type {string}
|
|
@@ -563,6 +623,18 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
563
623
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
564
624
|
*/
|
|
565
625
|
'categories'?: Array<string>;
|
|
626
|
+
/**
|
|
627
|
+
* The string identifier displayed in the UI menu
|
|
628
|
+
* @type {string}
|
|
629
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
630
|
+
*/
|
|
631
|
+
'menuTitle'?: string;
|
|
632
|
+
/**
|
|
633
|
+
* The order of the listing in the UI menu
|
|
634
|
+
* @type {number}
|
|
635
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
636
|
+
*/
|
|
637
|
+
'menuSortOrder'?: number;
|
|
566
638
|
}
|
|
567
639
|
/**
|
|
568
640
|
* The gradient that is used to display the listing
|
package/base.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/common.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/configuration.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -89,7 +89,12 @@ export class Configuration {
|
|
|
89
89
|
this.accessToken = param.accessToken;
|
|
90
90
|
this.basePath = param.basePath;
|
|
91
91
|
this.serverIndex = param.serverIndex;
|
|
92
|
-
this.baseOptions =
|
|
92
|
+
this.baseOptions = {
|
|
93
|
+
...param.baseOptions,
|
|
94
|
+
headers: {
|
|
95
|
+
...param.baseOptions?.headers,
|
|
96
|
+
},
|
|
97
|
+
};
|
|
93
98
|
this.formDataCtor = param.formDataCtor;
|
|
94
99
|
}
|
|
95
100
|
|
package/dist/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -55,6 +55,12 @@ export interface AdminIntegrationListing {
|
|
|
55
55
|
* @memberof AdminIntegrationListing
|
|
56
56
|
*/
|
|
57
57
|
'content': string;
|
|
58
|
+
/**
|
|
59
|
+
* The html content of the pricing information
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof AdminIntegrationListing
|
|
62
|
+
*/
|
|
63
|
+
'pricing'?: string;
|
|
58
64
|
/**
|
|
59
65
|
* The author of the integration listing
|
|
60
66
|
* @type {string}
|
|
@@ -91,6 +97,18 @@ export interface AdminIntegrationListing {
|
|
|
91
97
|
* @memberof AdminIntegrationListing
|
|
92
98
|
*/
|
|
93
99
|
'categories': Array<IntegrationCategory>;
|
|
100
|
+
/**
|
|
101
|
+
* The string identifier displayed in the UI menu
|
|
102
|
+
* @type {string}
|
|
103
|
+
* @memberof AdminIntegrationListing
|
|
104
|
+
*/
|
|
105
|
+
'menuTitle'?: string;
|
|
106
|
+
/**
|
|
107
|
+
* The order of the listing in the UI menu
|
|
108
|
+
* @type {number}
|
|
109
|
+
* @memberof AdminIntegrationListing
|
|
110
|
+
*/
|
|
111
|
+
'menuSortOrder': number;
|
|
94
112
|
}
|
|
95
113
|
/**
|
|
96
114
|
*
|
|
@@ -148,6 +166,12 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
148
166
|
* @memberof CreateAdminIntegrationListingRequest
|
|
149
167
|
*/
|
|
150
168
|
'content': string;
|
|
169
|
+
/**
|
|
170
|
+
* The html content of the pricing information
|
|
171
|
+
* @type {string}
|
|
172
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
173
|
+
*/
|
|
174
|
+
'pricing'?: string;
|
|
151
175
|
/**
|
|
152
176
|
* The author of the integration listing
|
|
153
177
|
* @type {string}
|
|
@@ -184,6 +208,18 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
184
208
|
* @memberof CreateAdminIntegrationListingRequest
|
|
185
209
|
*/
|
|
186
210
|
'categories': Array<string>;
|
|
211
|
+
/**
|
|
212
|
+
* The string identifier displayed in the UI menu
|
|
213
|
+
* @type {string}
|
|
214
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
215
|
+
*/
|
|
216
|
+
'menuTitle'?: string;
|
|
217
|
+
/**
|
|
218
|
+
* The order of the listing in the UI menu
|
|
219
|
+
* @type {number}
|
|
220
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
221
|
+
*/
|
|
222
|
+
'menuSortOrder': number;
|
|
187
223
|
}
|
|
188
224
|
/**
|
|
189
225
|
* The gradient that is used to display the listing
|
|
@@ -354,6 +390,12 @@ export interface IntegrationListing {
|
|
|
354
390
|
* @memberof IntegrationListing
|
|
355
391
|
*/
|
|
356
392
|
'content': string;
|
|
393
|
+
/**
|
|
394
|
+
* The html content of the pricing information
|
|
395
|
+
* @type {string}
|
|
396
|
+
* @memberof IntegrationListing
|
|
397
|
+
*/
|
|
398
|
+
'pricing'?: string;
|
|
357
399
|
/**
|
|
358
400
|
* The author of the integration listing
|
|
359
401
|
* @type {string}
|
|
@@ -384,6 +426,18 @@ export interface IntegrationListing {
|
|
|
384
426
|
* @memberof IntegrationListing
|
|
385
427
|
*/
|
|
386
428
|
'categories': Array<IntegrationCategory>;
|
|
429
|
+
/**
|
|
430
|
+
* The string identifier displayed in the UI menu
|
|
431
|
+
* @type {string}
|
|
432
|
+
* @memberof IntegrationListing
|
|
433
|
+
*/
|
|
434
|
+
'menuTitle'?: string;
|
|
435
|
+
/**
|
|
436
|
+
* The order of the listing in the UI menu
|
|
437
|
+
* @type {number}
|
|
438
|
+
* @memberof IntegrationListing
|
|
439
|
+
*/
|
|
440
|
+
'menuSortOrder': number;
|
|
387
441
|
}
|
|
388
442
|
/**
|
|
389
443
|
* The gradient that is used to display the listing
|
|
@@ -516,6 +570,12 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
516
570
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
517
571
|
*/
|
|
518
572
|
'content'?: string;
|
|
573
|
+
/**
|
|
574
|
+
* The html content of the pricing information
|
|
575
|
+
* @type {string}
|
|
576
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
577
|
+
*/
|
|
578
|
+
'pricing'?: string;
|
|
519
579
|
/**
|
|
520
580
|
* The code of the integration
|
|
521
581
|
* @type {string}
|
|
@@ -552,6 +612,18 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
552
612
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
553
613
|
*/
|
|
554
614
|
'categories'?: Array<string>;
|
|
615
|
+
/**
|
|
616
|
+
* The string identifier displayed in the UI menu
|
|
617
|
+
* @type {string}
|
|
618
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
619
|
+
*/
|
|
620
|
+
'menuTitle'?: string;
|
|
621
|
+
/**
|
|
622
|
+
* The order of the listing in the UI menu
|
|
623
|
+
* @type {number}
|
|
624
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
625
|
+
*/
|
|
626
|
+
'menuSortOrder'?: number;
|
|
555
627
|
}
|
|
556
628
|
/**
|
|
557
629
|
* The gradient that is used to display the listing
|
package/dist/api.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Integrations API
|
|
6
|
-
* Manage
|
|
6
|
+
* Manage PodOS Integrations
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.15.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.13.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/base.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/base.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Integrations API
|
|
6
|
-
* Manage
|
|
6
|
+
* Manage PodOS Integrations
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.15.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.13.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/common.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -62,4 +62,4 @@ export declare const toPathString: (url: URL) => string;
|
|
|
62
62
|
*
|
|
63
63
|
* @export
|
|
64
64
|
*/
|
|
65
|
-
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T
|
|
65
|
+
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
|
package/dist/common.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Integrations API
|
|
6
|
-
* Manage
|
|
6
|
+
* Manage PodOS Integrations
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.15.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.13.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/configuration.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Integrations API
|
|
6
|
-
* Manage
|
|
6
|
+
* Manage PodOS Integrations
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.15.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.13.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -16,13 +16,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.Configuration = void 0;
|
|
17
17
|
class Configuration {
|
|
18
18
|
constructor(param = {}) {
|
|
19
|
+
var _a;
|
|
19
20
|
this.apiKey = param.apiKey;
|
|
20
21
|
this.username = param.username;
|
|
21
22
|
this.password = param.password;
|
|
22
23
|
this.accessToken = param.accessToken;
|
|
23
24
|
this.basePath = param.basePath;
|
|
24
25
|
this.serverIndex = param.serverIndex;
|
|
25
|
-
this.baseOptions = param.baseOptions;
|
|
26
|
+
this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
|
|
26
27
|
this.formDataCtor = param.formDataCtor;
|
|
27
28
|
}
|
|
28
29
|
/**
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -55,6 +55,12 @@ export interface AdminIntegrationListing {
|
|
|
55
55
|
* @memberof AdminIntegrationListing
|
|
56
56
|
*/
|
|
57
57
|
'content': string;
|
|
58
|
+
/**
|
|
59
|
+
* The html content of the pricing information
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof AdminIntegrationListing
|
|
62
|
+
*/
|
|
63
|
+
'pricing'?: string;
|
|
58
64
|
/**
|
|
59
65
|
* The author of the integration listing
|
|
60
66
|
* @type {string}
|
|
@@ -91,6 +97,18 @@ export interface AdminIntegrationListing {
|
|
|
91
97
|
* @memberof AdminIntegrationListing
|
|
92
98
|
*/
|
|
93
99
|
'categories': Array<IntegrationCategory>;
|
|
100
|
+
/**
|
|
101
|
+
* The string identifier displayed in the UI menu
|
|
102
|
+
* @type {string}
|
|
103
|
+
* @memberof AdminIntegrationListing
|
|
104
|
+
*/
|
|
105
|
+
'menuTitle'?: string;
|
|
106
|
+
/**
|
|
107
|
+
* The order of the listing in the UI menu
|
|
108
|
+
* @type {number}
|
|
109
|
+
* @memberof AdminIntegrationListing
|
|
110
|
+
*/
|
|
111
|
+
'menuSortOrder': number;
|
|
94
112
|
}
|
|
95
113
|
/**
|
|
96
114
|
*
|
|
@@ -148,6 +166,12 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
148
166
|
* @memberof CreateAdminIntegrationListingRequest
|
|
149
167
|
*/
|
|
150
168
|
'content': string;
|
|
169
|
+
/**
|
|
170
|
+
* The html content of the pricing information
|
|
171
|
+
* @type {string}
|
|
172
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
173
|
+
*/
|
|
174
|
+
'pricing'?: string;
|
|
151
175
|
/**
|
|
152
176
|
* The author of the integration listing
|
|
153
177
|
* @type {string}
|
|
@@ -184,6 +208,18 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
184
208
|
* @memberof CreateAdminIntegrationListingRequest
|
|
185
209
|
*/
|
|
186
210
|
'categories': Array<string>;
|
|
211
|
+
/**
|
|
212
|
+
* The string identifier displayed in the UI menu
|
|
213
|
+
* @type {string}
|
|
214
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
215
|
+
*/
|
|
216
|
+
'menuTitle'?: string;
|
|
217
|
+
/**
|
|
218
|
+
* The order of the listing in the UI menu
|
|
219
|
+
* @type {number}
|
|
220
|
+
* @memberof CreateAdminIntegrationListingRequest
|
|
221
|
+
*/
|
|
222
|
+
'menuSortOrder': number;
|
|
187
223
|
}
|
|
188
224
|
/**
|
|
189
225
|
* The gradient that is used to display the listing
|
|
@@ -354,6 +390,12 @@ export interface IntegrationListing {
|
|
|
354
390
|
* @memberof IntegrationListing
|
|
355
391
|
*/
|
|
356
392
|
'content': string;
|
|
393
|
+
/**
|
|
394
|
+
* The html content of the pricing information
|
|
395
|
+
* @type {string}
|
|
396
|
+
* @memberof IntegrationListing
|
|
397
|
+
*/
|
|
398
|
+
'pricing'?: string;
|
|
357
399
|
/**
|
|
358
400
|
* The author of the integration listing
|
|
359
401
|
* @type {string}
|
|
@@ -384,6 +426,18 @@ export interface IntegrationListing {
|
|
|
384
426
|
* @memberof IntegrationListing
|
|
385
427
|
*/
|
|
386
428
|
'categories': Array<IntegrationCategory>;
|
|
429
|
+
/**
|
|
430
|
+
* The string identifier displayed in the UI menu
|
|
431
|
+
* @type {string}
|
|
432
|
+
* @memberof IntegrationListing
|
|
433
|
+
*/
|
|
434
|
+
'menuTitle'?: string;
|
|
435
|
+
/**
|
|
436
|
+
* The order of the listing in the UI menu
|
|
437
|
+
* @type {number}
|
|
438
|
+
* @memberof IntegrationListing
|
|
439
|
+
*/
|
|
440
|
+
'menuSortOrder': number;
|
|
387
441
|
}
|
|
388
442
|
/**
|
|
389
443
|
* The gradient that is used to display the listing
|
|
@@ -516,6 +570,12 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
516
570
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
517
571
|
*/
|
|
518
572
|
'content'?: string;
|
|
573
|
+
/**
|
|
574
|
+
* The html content of the pricing information
|
|
575
|
+
* @type {string}
|
|
576
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
577
|
+
*/
|
|
578
|
+
'pricing'?: string;
|
|
519
579
|
/**
|
|
520
580
|
* The code of the integration
|
|
521
581
|
* @type {string}
|
|
@@ -552,6 +612,18 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
552
612
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
553
613
|
*/
|
|
554
614
|
'categories'?: Array<string>;
|
|
615
|
+
/**
|
|
616
|
+
* The string identifier displayed in the UI menu
|
|
617
|
+
* @type {string}
|
|
618
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
619
|
+
*/
|
|
620
|
+
'menuTitle'?: string;
|
|
621
|
+
/**
|
|
622
|
+
* The order of the listing in the UI menu
|
|
623
|
+
* @type {number}
|
|
624
|
+
* @memberof UpdateAdminIntegrationListingRequest
|
|
625
|
+
*/
|
|
626
|
+
'menuSortOrder'?: number;
|
|
555
627
|
}
|
|
556
628
|
/**
|
|
557
629
|
* The gradient that is used to display the listing
|
package/dist/esm/api.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.13.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/base.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.13.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -62,4 +62,4 @@ export declare const toPathString: (url: URL) => string;
|
|
|
62
62
|
*
|
|
63
63
|
* @export
|
|
64
64
|
*/
|
|
65
|
-
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T
|
|
65
|
+
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
|
package/dist/esm/common.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.13.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.13.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -13,13 +13,14 @@
|
|
|
13
13
|
*/
|
|
14
14
|
export class Configuration {
|
|
15
15
|
constructor(param = {}) {
|
|
16
|
+
var _a;
|
|
16
17
|
this.apiKey = param.apiKey;
|
|
17
18
|
this.username = param.username;
|
|
18
19
|
this.password = param.password;
|
|
19
20
|
this.accessToken = param.accessToken;
|
|
20
21
|
this.basePath = param.basePath;
|
|
21
22
|
this.serverIndex = param.serverIndex;
|
|
22
|
-
this.baseOptions = param.baseOptions;
|
|
23
|
+
this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
|
|
23
24
|
this.formDataCtor = param.formDataCtor;
|
|
24
25
|
}
|
|
25
26
|
/**
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.13.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Integrations API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Integrations
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.13.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/index.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Integrations API
|
|
6
|
-
* Manage
|
|
6
|
+
* Manage PodOS Integrations
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.15.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.13.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/index.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Integrations API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Integrations
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|