@teemill/integrations 0.14.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/README.md +2 -2
- package/api.ts +51 -3
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +9 -4
- package/dist/api.d.ts +51 -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 +51 -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
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
|
|
@@ -107,6 +107,18 @@ export interface AdminIntegrationListing {
|
|
|
107
107
|
* @memberof AdminIntegrationListing
|
|
108
108
|
*/
|
|
109
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;
|
|
110
122
|
}
|
|
111
123
|
/**
|
|
112
124
|
*
|
|
@@ -206,6 +218,18 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
206
218
|
* @memberof CreateAdminIntegrationListingRequest
|
|
207
219
|
*/
|
|
208
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;
|
|
209
233
|
}
|
|
210
234
|
/**
|
|
211
235
|
* The gradient that is used to display the listing
|
|
@@ -413,6 +437,18 @@ export interface IntegrationListing {
|
|
|
413
437
|
* @memberof IntegrationListing
|
|
414
438
|
*/
|
|
415
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;
|
|
416
452
|
}
|
|
417
453
|
/**
|
|
418
454
|
* The gradient that is used to display the listing
|
|
@@ -587,6 +623,18 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
587
623
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
588
624
|
*/
|
|
589
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;
|
|
590
638
|
}
|
|
591
639
|
/**
|
|
592
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.14.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
|
|
@@ -97,6 +97,18 @@ export interface AdminIntegrationListing {
|
|
|
97
97
|
* @memberof AdminIntegrationListing
|
|
98
98
|
*/
|
|
99
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;
|
|
100
112
|
}
|
|
101
113
|
/**
|
|
102
114
|
*
|
|
@@ -196,6 +208,18 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
196
208
|
* @memberof CreateAdminIntegrationListingRequest
|
|
197
209
|
*/
|
|
198
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;
|
|
199
223
|
}
|
|
200
224
|
/**
|
|
201
225
|
* The gradient that is used to display the listing
|
|
@@ -402,6 +426,18 @@ export interface IntegrationListing {
|
|
|
402
426
|
* @memberof IntegrationListing
|
|
403
427
|
*/
|
|
404
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;
|
|
405
441
|
}
|
|
406
442
|
/**
|
|
407
443
|
* The gradient that is used to display the listing
|
|
@@ -576,6 +612,18 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
576
612
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
577
613
|
*/
|
|
578
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;
|
|
579
627
|
}
|
|
580
628
|
/**
|
|
581
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.14.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.14.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.14.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.14.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.14.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.14.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.14.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.14.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
|
|
@@ -97,6 +97,18 @@ export interface AdminIntegrationListing {
|
|
|
97
97
|
* @memberof AdminIntegrationListing
|
|
98
98
|
*/
|
|
99
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;
|
|
100
112
|
}
|
|
101
113
|
/**
|
|
102
114
|
*
|
|
@@ -196,6 +208,18 @@ export interface CreateAdminIntegrationListingRequest {
|
|
|
196
208
|
* @memberof CreateAdminIntegrationListingRequest
|
|
197
209
|
*/
|
|
198
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;
|
|
199
223
|
}
|
|
200
224
|
/**
|
|
201
225
|
* The gradient that is used to display the listing
|
|
@@ -402,6 +426,18 @@ export interface IntegrationListing {
|
|
|
402
426
|
* @memberof IntegrationListing
|
|
403
427
|
*/
|
|
404
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;
|
|
405
441
|
}
|
|
406
442
|
/**
|
|
407
443
|
* The gradient that is used to display the listing
|
|
@@ -576,6 +612,18 @@ export interface UpdateAdminIntegrationListingRequest {
|
|
|
576
612
|
* @memberof UpdateAdminIntegrationListingRequest
|
|
577
613
|
*/
|
|
578
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;
|
|
579
627
|
}
|
|
580
628
|
/**
|
|
581
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.14.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.14.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.14.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.14.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.14.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.14.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.14.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.14.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.14.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.14.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.14.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
|