@replit/connectors 0.18.0 → 0.19.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/CHANGELOG.md +13 -0
- package/package.json +1 -1
- package/resources/top-level.d.mts +209 -4
- package/resources/top-level.d.mts.map +1 -1
- package/resources/top-level.d.ts +209 -4
- package/resources/top-level.d.ts.map +1 -1
- package/src/resources/top-level.ts +412 -4
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -10,6 +10,10 @@ export interface Connector {
|
|
|
10
10
|
* Instructions for AI agents on how to use this connector effectively
|
|
11
11
|
*/
|
|
12
12
|
agent_instructions?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Whether a single user can have multiple connections
|
|
15
|
+
*/
|
|
16
|
+
allows_multiple_connections?: boolean;
|
|
13
17
|
/**
|
|
14
18
|
* Target audience segments for this connector
|
|
15
19
|
*/
|
|
@@ -22,11 +26,19 @@ export interface Connector {
|
|
|
22
26
|
description?: string;
|
|
23
27
|
display_name?: string;
|
|
24
28
|
has_openint_credentials?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Whether this connector uses shared (API key) authentication
|
|
31
|
+
*/
|
|
32
|
+
is_shared?: boolean;
|
|
25
33
|
/**
|
|
26
34
|
* Related URLs for the connector provider
|
|
27
35
|
*/
|
|
28
36
|
links?: Connector.Links;
|
|
29
37
|
logo_url?: string;
|
|
38
|
+
/**
|
|
39
|
+
* MCP server configuration, derived from connector metadata
|
|
40
|
+
*/
|
|
41
|
+
mcp?: Connector.Mcp;
|
|
30
42
|
openint_allowed_scopes?: Array<string>;
|
|
31
43
|
openint_default_scopes?: Array<string>;
|
|
32
44
|
/**
|
|
@@ -56,6 +68,13 @@ export declare namespace Connector {
|
|
|
56
68
|
api_docs_url?: string;
|
|
57
69
|
web_url?: string;
|
|
58
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* MCP server configuration, derived from connector metadata
|
|
73
|
+
*/
|
|
74
|
+
interface Mcp {
|
|
75
|
+
mcp_server_base_url: string;
|
|
76
|
+
url_pattern_to_catch: string;
|
|
77
|
+
}
|
|
59
78
|
/**
|
|
60
79
|
* Language-specific packages and code snippets
|
|
61
80
|
*/
|
|
@@ -187,6 +206,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
187
206
|
settings?: ConnectorAcmeApikeyDiscriminatedConnectionData.Settings;
|
|
188
207
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
189
208
|
status_message?: string | null;
|
|
209
|
+
toon_schema?: string;
|
|
190
210
|
updated_at?: string;
|
|
191
211
|
webhook_config?: string | number | boolean | {
|
|
192
212
|
[key: string]: unknown;
|
|
@@ -241,6 +261,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
241
261
|
settings?: ConnectorAcmeOauth2DiscriminatedConnectionData.Settings;
|
|
242
262
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
243
263
|
status_message?: string | null;
|
|
264
|
+
toon_schema?: string;
|
|
244
265
|
updated_at?: string;
|
|
245
266
|
webhook_config?: string | number | boolean | {
|
|
246
267
|
[key: string]: unknown;
|
|
@@ -331,6 +352,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
331
352
|
settings?: ConnectorAgentmailDiscriminatedConnectionData.Settings;
|
|
332
353
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
333
354
|
status_message?: string | null;
|
|
355
|
+
toon_schema?: string;
|
|
334
356
|
updated_at?: string;
|
|
335
357
|
webhook_config?: string | number | boolean | {
|
|
336
358
|
[key: string]: unknown;
|
|
@@ -385,6 +407,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
385
407
|
settings?: ConnectorAsanaDiscriminatedConnectionData.Settings;
|
|
386
408
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
387
409
|
status_message?: string | null;
|
|
410
|
+
toon_schema?: string;
|
|
388
411
|
updated_at?: string;
|
|
389
412
|
webhook_config?: string | number | boolean | {
|
|
390
413
|
[key: string]: unknown;
|
|
@@ -475,6 +498,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
475
498
|
settings?: ConnectorAshbyDiscriminatedConnectionData.Settings;
|
|
476
499
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
477
500
|
status_message?: string | null;
|
|
501
|
+
toon_schema?: string;
|
|
478
502
|
updated_at?: string;
|
|
479
503
|
webhook_config?: string | number | boolean | {
|
|
480
504
|
[key: string]: unknown;
|
|
@@ -529,6 +553,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
529
553
|
settings?: ConnectorBigqueryDiscriminatedConnectionData.Settings;
|
|
530
554
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
531
555
|
status_message?: string | null;
|
|
556
|
+
toon_schema?: string;
|
|
532
557
|
updated_at?: string;
|
|
533
558
|
webhook_config?: string | number | boolean | {
|
|
534
559
|
[key: string]: unknown;
|
|
@@ -624,6 +649,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
624
649
|
settings?: ConnectorBitbucketSourceControlDiscriminatedConnectionData.Settings;
|
|
625
650
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
626
651
|
status_message?: string | null;
|
|
652
|
+
toon_schema?: string;
|
|
627
653
|
updated_at?: string;
|
|
628
654
|
webhook_config?: string | number | boolean | {
|
|
629
655
|
[key: string]: unknown;
|
|
@@ -714,6 +740,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
714
740
|
settings?: ConnectorBitbucketDiscriminatedConnectionData.Settings;
|
|
715
741
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
716
742
|
status_message?: string | null;
|
|
743
|
+
toon_schema?: string;
|
|
717
744
|
updated_at?: string;
|
|
718
745
|
webhook_config?: string | number | boolean | {
|
|
719
746
|
[key: string]: unknown;
|
|
@@ -804,6 +831,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
804
831
|
settings?: ConnectorBoxDiscriminatedConnectionData.Settings;
|
|
805
832
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
806
833
|
status_message?: string | null;
|
|
834
|
+
toon_schema?: string;
|
|
807
835
|
updated_at?: string;
|
|
808
836
|
webhook_config?: string | number | boolean | {
|
|
809
837
|
[key: string]: unknown;
|
|
@@ -894,6 +922,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
894
922
|
settings?: ConnectorCalendlyDiscriminatedConnectionData.Settings;
|
|
895
923
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
896
924
|
status_message?: string | null;
|
|
925
|
+
toon_schema?: string;
|
|
897
926
|
updated_at?: string;
|
|
898
927
|
webhook_config?: string | number | boolean | {
|
|
899
928
|
[key: string]: unknown;
|
|
@@ -984,6 +1013,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
984
1013
|
settings?: ConnectorClickupDiscriminatedConnectionData.Settings;
|
|
985
1014
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
986
1015
|
status_message?: string | null;
|
|
1016
|
+
toon_schema?: string;
|
|
987
1017
|
updated_at?: string;
|
|
988
1018
|
webhook_config?: string | number | boolean | {
|
|
989
1019
|
[key: string]: unknown;
|
|
@@ -1074,6 +1104,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1074
1104
|
settings?: ConnectorConfluenceDiscriminatedConnectionData.Settings;
|
|
1075
1105
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1076
1106
|
status_message?: string | null;
|
|
1107
|
+
toon_schema?: string;
|
|
1077
1108
|
updated_at?: string;
|
|
1078
1109
|
webhook_config?: string | number | boolean | {
|
|
1079
1110
|
[key: string]: unknown;
|
|
@@ -1168,6 +1199,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1168
1199
|
settings?: ConnectorDatabricksDiscriminatedConnectionData.Settings;
|
|
1169
1200
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1170
1201
|
status_message?: string | null;
|
|
1202
|
+
toon_schema?: string;
|
|
1171
1203
|
updated_at?: string;
|
|
1172
1204
|
webhook_config?: string | number | boolean | {
|
|
1173
1205
|
[key: string]: unknown;
|
|
@@ -1269,6 +1301,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1269
1301
|
settings?: ConnectorDiscordDiscriminatedConnectionData.Settings;
|
|
1270
1302
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1271
1303
|
status_message?: string | null;
|
|
1304
|
+
toon_schema?: string;
|
|
1272
1305
|
updated_at?: string;
|
|
1273
1306
|
webhook_config?: string | number | boolean | {
|
|
1274
1307
|
[key: string]: unknown;
|
|
@@ -1359,6 +1392,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1359
1392
|
settings?: ConnectorDropboxDiscriminatedConnectionData.Settings;
|
|
1360
1393
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1361
1394
|
status_message?: string | null;
|
|
1395
|
+
toon_schema?: string;
|
|
1362
1396
|
updated_at?: string;
|
|
1363
1397
|
webhook_config?: string | number | boolean | {
|
|
1364
1398
|
[key: string]: unknown;
|
|
@@ -1449,6 +1483,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1449
1483
|
settings?: ConnectorElevenlabsDiscriminatedConnectionData.Settings;
|
|
1450
1484
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1451
1485
|
status_message?: string | null;
|
|
1486
|
+
toon_schema?: string;
|
|
1452
1487
|
updated_at?: string;
|
|
1453
1488
|
webhook_config?: string | number | boolean | {
|
|
1454
1489
|
[key: string]: unknown;
|
|
@@ -1503,6 +1538,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1503
1538
|
settings?: ConnectorFigmaDiscriminatedConnectionData.Settings;
|
|
1504
1539
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1505
1540
|
status_message?: string | null;
|
|
1541
|
+
toon_schema?: string;
|
|
1506
1542
|
updated_at?: string;
|
|
1507
1543
|
webhook_config?: string | number | boolean | {
|
|
1508
1544
|
[key: string]: unknown;
|
|
@@ -1593,6 +1629,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1593
1629
|
settings?: ConnectorGitHubSourceControlDiscriminatedConnectionData.Settings;
|
|
1594
1630
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1595
1631
|
status_message?: string | null;
|
|
1632
|
+
toon_schema?: string;
|
|
1596
1633
|
updated_at?: string;
|
|
1597
1634
|
webhook_config?: string | number | boolean | {
|
|
1598
1635
|
[key: string]: unknown;
|
|
@@ -1683,6 +1720,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1683
1720
|
settings?: ConnectorGitHubDiscriminatedConnectionData.Settings;
|
|
1684
1721
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1685
1722
|
status_message?: string | null;
|
|
1723
|
+
toon_schema?: string;
|
|
1686
1724
|
updated_at?: string;
|
|
1687
1725
|
webhook_config?: string | number | boolean | {
|
|
1688
1726
|
[key: string]: unknown;
|
|
@@ -1773,6 +1811,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1773
1811
|
settings?: ConnectorGitlabSourceControlDiscriminatedConnectionData.Settings;
|
|
1774
1812
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1775
1813
|
status_message?: string | null;
|
|
1814
|
+
toon_schema?: string;
|
|
1776
1815
|
updated_at?: string;
|
|
1777
1816
|
webhook_config?: string | number | boolean | {
|
|
1778
1817
|
[key: string]: unknown;
|
|
@@ -1863,6 +1902,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1863
1902
|
settings?: ConnectorGoogleCalendarDiscriminatedConnectionData.Settings;
|
|
1864
1903
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1865
1904
|
status_message?: string | null;
|
|
1905
|
+
toon_schema?: string;
|
|
1866
1906
|
updated_at?: string;
|
|
1867
1907
|
webhook_config?: string | number | boolean | {
|
|
1868
1908
|
[key: string]: unknown;
|
|
@@ -1953,6 +1993,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
1953
1993
|
settings?: ConnectorGoogleDocsDiscriminatedConnectionData.Settings;
|
|
1954
1994
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1955
1995
|
status_message?: string | null;
|
|
1996
|
+
toon_schema?: string;
|
|
1956
1997
|
updated_at?: string;
|
|
1957
1998
|
webhook_config?: string | number | boolean | {
|
|
1958
1999
|
[key: string]: unknown;
|
|
@@ -2043,6 +2084,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2043
2084
|
settings?: ConnectorGoogleDriveDiscriminatedConnectionData.Settings;
|
|
2044
2085
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2045
2086
|
status_message?: string | null;
|
|
2087
|
+
toon_schema?: string;
|
|
2046
2088
|
updated_at?: string;
|
|
2047
2089
|
webhook_config?: string | number | boolean | {
|
|
2048
2090
|
[key: string]: unknown;
|
|
@@ -2133,6 +2175,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2133
2175
|
settings?: ConnectorGoogleMailDiscriminatedConnectionData.Settings;
|
|
2134
2176
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2135
2177
|
status_message?: string | null;
|
|
2178
|
+
toon_schema?: string;
|
|
2136
2179
|
updated_at?: string;
|
|
2137
2180
|
webhook_config?: string | number | boolean | {
|
|
2138
2181
|
[key: string]: unknown;
|
|
@@ -2223,6 +2266,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2223
2266
|
settings?: ConnectorGoogleSheetDiscriminatedConnectionData.Settings;
|
|
2224
2267
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2225
2268
|
status_message?: string | null;
|
|
2269
|
+
toon_schema?: string;
|
|
2226
2270
|
updated_at?: string;
|
|
2227
2271
|
webhook_config?: string | number | boolean | {
|
|
2228
2272
|
[key: string]: unknown;
|
|
@@ -2313,6 +2357,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2313
2357
|
settings?: ConnectorGoogleSlidesDiscriminatedConnectionData.Settings;
|
|
2314
2358
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2315
2359
|
status_message?: string | null;
|
|
2360
|
+
toon_schema?: string;
|
|
2316
2361
|
updated_at?: string;
|
|
2317
2362
|
webhook_config?: string | number | boolean | {
|
|
2318
2363
|
[key: string]: unknown;
|
|
@@ -2403,6 +2448,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2403
2448
|
settings?: ConnectorHubspotDiscriminatedConnectionData.Settings;
|
|
2404
2449
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2405
2450
|
status_message?: string | null;
|
|
2451
|
+
toon_schema?: string;
|
|
2406
2452
|
updated_at?: string;
|
|
2407
2453
|
webhook_config?: string | number | boolean | {
|
|
2408
2454
|
[key: string]: unknown;
|
|
@@ -2501,6 +2547,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2501
2547
|
settings?: ConnectorInstagramDiscriminatedConnectionData.Settings;
|
|
2502
2548
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2503
2549
|
status_message?: string | null;
|
|
2550
|
+
toon_schema?: string;
|
|
2504
2551
|
updated_at?: string;
|
|
2505
2552
|
webhook_config?: string | number | boolean | {
|
|
2506
2553
|
[key: string]: unknown;
|
|
@@ -2591,6 +2638,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2591
2638
|
settings?: ConnectorJiraDiscriminatedConnectionData.Settings;
|
|
2592
2639
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2593
2640
|
status_message?: string | null;
|
|
2641
|
+
toon_schema?: string;
|
|
2594
2642
|
updated_at?: string;
|
|
2595
2643
|
webhook_config?: string | number | boolean | {
|
|
2596
2644
|
[key: string]: unknown;
|
|
@@ -2685,6 +2733,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2685
2733
|
settings?: ConnectorLinearDiscriminatedConnectionData.Settings;
|
|
2686
2734
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2687
2735
|
status_message?: string | null;
|
|
2736
|
+
toon_schema?: string;
|
|
2688
2737
|
updated_at?: string;
|
|
2689
2738
|
webhook_config?: string | number | boolean | {
|
|
2690
2739
|
[key: string]: unknown;
|
|
@@ -2775,6 +2824,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2775
2824
|
settings?: ConnectorMondayDiscriminatedConnectionData.Settings;
|
|
2776
2825
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2777
2826
|
status_message?: string | null;
|
|
2827
|
+
toon_schema?: string;
|
|
2778
2828
|
updated_at?: string;
|
|
2779
2829
|
webhook_config?: string | number | boolean | {
|
|
2780
2830
|
[key: string]: unknown;
|
|
@@ -2865,6 +2915,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2865
2915
|
settings?: ConnectorNotionDiscriminatedConnectionData.Settings;
|
|
2866
2916
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2867
2917
|
status_message?: string | null;
|
|
2918
|
+
toon_schema?: string;
|
|
2868
2919
|
updated_at?: string;
|
|
2869
2920
|
webhook_config?: string | number | boolean | {
|
|
2870
2921
|
[key: string]: unknown;
|
|
@@ -2955,6 +3006,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
2955
3006
|
settings?: ConnectorOnedriveDiscriminatedConnectionData.Settings;
|
|
2956
3007
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2957
3008
|
status_message?: string | null;
|
|
3009
|
+
toon_schema?: string;
|
|
2958
3010
|
updated_at?: string;
|
|
2959
3011
|
webhook_config?: string | number | boolean | {
|
|
2960
3012
|
[key: string]: unknown;
|
|
@@ -3045,6 +3097,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3045
3097
|
settings?: ConnectorOpenAIDiscriminatedConnectionData.Settings;
|
|
3046
3098
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3047
3099
|
status_message?: string | null;
|
|
3100
|
+
toon_schema?: string;
|
|
3048
3101
|
updated_at?: string;
|
|
3049
3102
|
webhook_config?: string | number | boolean | {
|
|
3050
3103
|
[key: string]: unknown;
|
|
@@ -3104,6 +3157,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3104
3157
|
settings?: ConnectorOutlookDiscriminatedConnectionData.Settings;
|
|
3105
3158
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3106
3159
|
status_message?: string | null;
|
|
3160
|
+
toon_schema?: string;
|
|
3107
3161
|
updated_at?: string;
|
|
3108
3162
|
webhook_config?: string | number | boolean | {
|
|
3109
3163
|
[key: string]: unknown;
|
|
@@ -3194,6 +3248,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3194
3248
|
settings?: ConnectorRevenuecatDiscriminatedConnectionData.Settings;
|
|
3195
3249
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3196
3250
|
status_message?: string | null;
|
|
3251
|
+
toon_schema?: string;
|
|
3197
3252
|
updated_at?: string;
|
|
3198
3253
|
webhook_config?: string | number | boolean | {
|
|
3199
3254
|
[key: string]: unknown;
|
|
@@ -3284,6 +3339,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3284
3339
|
settings?: ConnectorSalesforceDiscriminatedConnectionData.Settings;
|
|
3285
3340
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3286
3341
|
status_message?: string | null;
|
|
3342
|
+
toon_schema?: string;
|
|
3287
3343
|
updated_at?: string;
|
|
3288
3344
|
webhook_config?: string | number | boolean | {
|
|
3289
3345
|
[key: string]: unknown;
|
|
@@ -3378,6 +3434,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3378
3434
|
settings?: ConnectorSharepointDiscriminatedConnectionData.Settings;
|
|
3379
3435
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3380
3436
|
status_message?: string | null;
|
|
3437
|
+
toon_schema?: string;
|
|
3381
3438
|
updated_at?: string;
|
|
3382
3439
|
webhook_config?: string | number | boolean | {
|
|
3383
3440
|
[key: string]: unknown;
|
|
@@ -3468,6 +3525,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3468
3525
|
settings?: ConnectorSlackDeployedAgentDiscriminatedConnectionData.Settings;
|
|
3469
3526
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3470
3527
|
status_message?: string | null;
|
|
3528
|
+
toon_schema?: string;
|
|
3471
3529
|
updated_at?: string;
|
|
3472
3530
|
webhook_config?: string | number | boolean | {
|
|
3473
3531
|
[key: string]: unknown;
|
|
@@ -3558,6 +3616,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3558
3616
|
settings?: ConnectorSlackDiscriminatedConnectionData.Settings;
|
|
3559
3617
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3560
3618
|
status_message?: string | null;
|
|
3619
|
+
toon_schema?: string;
|
|
3561
3620
|
updated_at?: string;
|
|
3562
3621
|
webhook_config?: string | number | boolean | {
|
|
3563
3622
|
[key: string]: unknown;
|
|
@@ -3648,6 +3707,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3648
3707
|
settings?: ConnectorSnowflakeDiscriminatedConnectionData.Settings;
|
|
3649
3708
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3650
3709
|
status_message?: string | null;
|
|
3710
|
+
toon_schema?: string;
|
|
3651
3711
|
updated_at?: string;
|
|
3652
3712
|
webhook_config?: string | number | boolean | {
|
|
3653
3713
|
[key: string]: unknown;
|
|
@@ -3743,6 +3803,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3743
3803
|
settings?: ConnectorSpotifyDiscriminatedConnectionData.Settings;
|
|
3744
3804
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3745
3805
|
status_message?: string | null;
|
|
3806
|
+
toon_schema?: string;
|
|
3746
3807
|
updated_at?: string;
|
|
3747
3808
|
webhook_config?: string | number | boolean | {
|
|
3748
3809
|
[key: string]: unknown;
|
|
@@ -3833,6 +3894,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3833
3894
|
settings?: ConnectorSproutsocialDiscriminatedConnectionData.Settings;
|
|
3834
3895
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3835
3896
|
status_message?: string | null;
|
|
3897
|
+
toon_schema?: string;
|
|
3836
3898
|
updated_at?: string;
|
|
3837
3899
|
webhook_config?: string | number | boolean | {
|
|
3838
3900
|
[key: string]: unknown;
|
|
@@ -3888,6 +3950,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3888
3950
|
settings?: ConnectorStripeDiscriminatedConnectionData.Settings;
|
|
3889
3951
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3890
3952
|
status_message?: string | null;
|
|
3953
|
+
toon_schema?: string;
|
|
3891
3954
|
updated_at?: string;
|
|
3892
3955
|
webhook_config?: string | number | boolean | {
|
|
3893
3956
|
[key: string]: unknown;
|
|
@@ -3988,6 +4051,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3988
4051
|
settings?: ConnectorTodoistDiscriminatedConnectionData.Settings;
|
|
3989
4052
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3990
4053
|
status_message?: string | null;
|
|
4054
|
+
toon_schema?: string;
|
|
3991
4055
|
updated_at?: string;
|
|
3992
4056
|
webhook_config?: string | number | boolean | {
|
|
3993
4057
|
[key: string]: unknown;
|
|
@@ -4078,6 +4142,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4078
4142
|
settings?: ConnectorXDiscriminatedConnectionData.Settings;
|
|
4079
4143
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4080
4144
|
status_message?: string | null;
|
|
4145
|
+
toon_schema?: string;
|
|
4081
4146
|
updated_at?: string;
|
|
4082
4147
|
webhook_config?: string | number | boolean | {
|
|
4083
4148
|
[key: string]: unknown;
|
|
@@ -4132,6 +4197,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4132
4197
|
settings?: ConnectorYoutubeDiscriminatedConnectionData.Settings;
|
|
4133
4198
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4134
4199
|
status_message?: string | null;
|
|
4200
|
+
toon_schema?: string;
|
|
4135
4201
|
updated_at?: string;
|
|
4136
4202
|
webhook_config?: string | number | boolean | {
|
|
4137
4203
|
[key: string]: unknown;
|
|
@@ -4222,6 +4288,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4222
4288
|
settings?: ConnectorZendeskDiscriminatedConnectionData.Settings;
|
|
4223
4289
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4224
4290
|
status_message?: string | null;
|
|
4291
|
+
toon_schema?: string;
|
|
4225
4292
|
updated_at?: string;
|
|
4226
4293
|
webhook_config?: string | number | boolean | {
|
|
4227
4294
|
[key: string]: unknown;
|
|
@@ -4316,6 +4383,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4316
4383
|
settings?: ConnectorZoomDiscriminatedConnectionData.Settings;
|
|
4317
4384
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4318
4385
|
status_message?: string | null;
|
|
4386
|
+
toon_schema?: string;
|
|
4319
4387
|
updated_at?: string;
|
|
4320
4388
|
webhook_config?: string | number | boolean | {
|
|
4321
4389
|
[key: string]: unknown;
|
|
@@ -4406,6 +4474,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4406
4474
|
settings?: ConnectorApolloDiscriminatedConnectionData.Settings;
|
|
4407
4475
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4408
4476
|
status_message?: string | null;
|
|
4477
|
+
toon_schema?: string;
|
|
4409
4478
|
updated_at?: string;
|
|
4410
4479
|
webhook_config?: string | number | boolean | {
|
|
4411
4480
|
[key: string]: unknown;
|
|
@@ -4457,6 +4526,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4457
4526
|
settings?: ConnectorCustomMcpDiscriminatedConnectionData.Settings;
|
|
4458
4527
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4459
4528
|
status_message?: string | null;
|
|
4529
|
+
toon_schema?: string;
|
|
4460
4530
|
updated_at?: string;
|
|
4461
4531
|
webhook_config?: string | number | boolean | {
|
|
4462
4532
|
[key: string]: unknown;
|
|
@@ -4586,6 +4656,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4586
4656
|
settings?: ConnectorDatabricksM2mDiscriminatedConnectionData.Settings;
|
|
4587
4657
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4588
4658
|
status_message?: string | null;
|
|
4659
|
+
toon_schema?: string;
|
|
4589
4660
|
updated_at?: string;
|
|
4590
4661
|
webhook_config?: string | number | boolean | {
|
|
4591
4662
|
[key: string]: unknown;
|
|
@@ -4672,6 +4743,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4672
4743
|
settings?: unknown;
|
|
4673
4744
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4674
4745
|
status_message?: string | null;
|
|
4746
|
+
toon_schema?: string;
|
|
4675
4747
|
updated_at?: string;
|
|
4676
4748
|
webhook_config?: string | number | boolean | {
|
|
4677
4749
|
[key: string]: unknown;
|
|
@@ -4720,6 +4792,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4720
4792
|
settings?: ConnectorPlaidDiscriminatedConnectionData.Settings;
|
|
4721
4793
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4722
4794
|
status_message?: string | null;
|
|
4795
|
+
toon_schema?: string;
|
|
4723
4796
|
updated_at?: string;
|
|
4724
4797
|
webhook_config?: string | number | boolean | {
|
|
4725
4798
|
[key: string]: unknown;
|
|
@@ -4776,6 +4849,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4776
4849
|
settings?: ConnectorPostgresDiscriminatedConnectionData.Settings;
|
|
4777
4850
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4778
4851
|
status_message?: string | null;
|
|
4852
|
+
toon_schema?: string;
|
|
4779
4853
|
updated_at?: string;
|
|
4780
4854
|
webhook_config?: string | number | boolean | {
|
|
4781
4855
|
[key: string]: unknown;
|
|
@@ -4827,6 +4901,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4827
4901
|
settings?: ConnectorResendDiscriminatedConnectionData.Settings;
|
|
4828
4902
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4829
4903
|
status_message?: string | null;
|
|
4904
|
+
toon_schema?: string;
|
|
4830
4905
|
updated_at?: string;
|
|
4831
4906
|
webhook_config?: string | number | boolean | {
|
|
4832
4907
|
[key: string]: unknown;
|
|
@@ -4882,6 +4957,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4882
4957
|
settings?: ConnectorSendgridDiscriminatedConnectionData.Settings;
|
|
4883
4958
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4884
4959
|
status_message?: string | null;
|
|
4960
|
+
toon_schema?: string;
|
|
4885
4961
|
updated_at?: string;
|
|
4886
4962
|
webhook_config?: string | number | boolean | {
|
|
4887
4963
|
[key: string]: unknown;
|
|
@@ -4937,6 +5013,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4937
5013
|
settings?: ConnectorSlackAgentDiscriminatedConnectionData.Settings;
|
|
4938
5014
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4939
5015
|
status_message?: string | null;
|
|
5016
|
+
toon_schema?: string;
|
|
4940
5017
|
updated_at?: string;
|
|
4941
5018
|
webhook_config?: string | number | boolean | {
|
|
4942
5019
|
[key: string]: unknown;
|
|
@@ -4991,6 +5068,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
4991
5068
|
settings?: ConnectorSlackAgentBuilderDiscriminatedConnectionData.Settings;
|
|
4992
5069
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
4993
5070
|
status_message?: string | null;
|
|
5071
|
+
toon_schema?: string;
|
|
4994
5072
|
updated_at?: string;
|
|
4995
5073
|
webhook_config?: string | number | boolean | {
|
|
4996
5074
|
[key: string]: unknown;
|
|
@@ -5156,6 +5234,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
5156
5234
|
settings?: ConnectorStripeAgentSandboxDiscriminatedConnectionData.Settings;
|
|
5157
5235
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
5158
5236
|
status_message?: string | null;
|
|
5237
|
+
toon_schema?: string;
|
|
5159
5238
|
updated_at?: string;
|
|
5160
5239
|
webhook_config?: string | number | boolean | {
|
|
5161
5240
|
[key: string]: unknown;
|
|
@@ -5246,6 +5325,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
5246
5325
|
settings?: ConnectorTwilioDiscriminatedConnectionData.Settings;
|
|
5247
5326
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
5248
5327
|
status_message?: string | null;
|
|
5328
|
+
toon_schema?: string;
|
|
5249
5329
|
updated_at?: string;
|
|
5250
5330
|
webhook_config?: string | number | boolean | {
|
|
5251
5331
|
[key: string]: unknown;
|
|
@@ -5303,6 +5383,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
5303
5383
|
settings?: ConnectorWorkatoDiscriminatedConnectionData.Settings;
|
|
5304
5384
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
5305
5385
|
status_message?: string | null;
|
|
5386
|
+
toon_schema?: string;
|
|
5306
5387
|
updated_at?: string;
|
|
5307
5388
|
webhook_config?: string | number | boolean | {
|
|
5308
5389
|
[key: string]: unknown;
|
|
@@ -10036,6 +10117,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10036
10117
|
settings?: ConnectorAcmeApikeyDiscriminatedConnectionData.Settings;
|
|
10037
10118
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10038
10119
|
status_message?: string | null;
|
|
10120
|
+
toon_schema?: string;
|
|
10039
10121
|
updated_at?: string;
|
|
10040
10122
|
webhook_config?: string | number | boolean | {
|
|
10041
10123
|
[key: string]: unknown;
|
|
@@ -10090,6 +10172,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10090
10172
|
settings?: ConnectorAcmeOauth2DiscriminatedConnectionData.Settings;
|
|
10091
10173
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10092
10174
|
status_message?: string | null;
|
|
10175
|
+
toon_schema?: string;
|
|
10093
10176
|
updated_at?: string;
|
|
10094
10177
|
webhook_config?: string | number | boolean | {
|
|
10095
10178
|
[key: string]: unknown;
|
|
@@ -10180,6 +10263,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10180
10263
|
settings?: ConnectorAgentmailDiscriminatedConnectionData.Settings;
|
|
10181
10264
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10182
10265
|
status_message?: string | null;
|
|
10266
|
+
toon_schema?: string;
|
|
10183
10267
|
updated_at?: string;
|
|
10184
10268
|
webhook_config?: string | number | boolean | {
|
|
10185
10269
|
[key: string]: unknown;
|
|
@@ -10234,6 +10318,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10234
10318
|
settings?: ConnectorAsanaDiscriminatedConnectionData.Settings;
|
|
10235
10319
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10236
10320
|
status_message?: string | null;
|
|
10321
|
+
toon_schema?: string;
|
|
10237
10322
|
updated_at?: string;
|
|
10238
10323
|
webhook_config?: string | number | boolean | {
|
|
10239
10324
|
[key: string]: unknown;
|
|
@@ -10324,6 +10409,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10324
10409
|
settings?: ConnectorAshbyDiscriminatedConnectionData.Settings;
|
|
10325
10410
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10326
10411
|
status_message?: string | null;
|
|
10412
|
+
toon_schema?: string;
|
|
10327
10413
|
updated_at?: string;
|
|
10328
10414
|
webhook_config?: string | number | boolean | {
|
|
10329
10415
|
[key: string]: unknown;
|
|
@@ -10378,6 +10464,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10378
10464
|
settings?: ConnectorBigqueryDiscriminatedConnectionData.Settings;
|
|
10379
10465
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10380
10466
|
status_message?: string | null;
|
|
10467
|
+
toon_schema?: string;
|
|
10381
10468
|
updated_at?: string;
|
|
10382
10469
|
webhook_config?: string | number | boolean | {
|
|
10383
10470
|
[key: string]: unknown;
|
|
@@ -10473,6 +10560,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10473
10560
|
settings?: ConnectorBitbucketSourceControlDiscriminatedConnectionData.Settings;
|
|
10474
10561
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10475
10562
|
status_message?: string | null;
|
|
10563
|
+
toon_schema?: string;
|
|
10476
10564
|
updated_at?: string;
|
|
10477
10565
|
webhook_config?: string | number | boolean | {
|
|
10478
10566
|
[key: string]: unknown;
|
|
@@ -10563,6 +10651,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10563
10651
|
settings?: ConnectorBitbucketDiscriminatedConnectionData.Settings;
|
|
10564
10652
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10565
10653
|
status_message?: string | null;
|
|
10654
|
+
toon_schema?: string;
|
|
10566
10655
|
updated_at?: string;
|
|
10567
10656
|
webhook_config?: string | number | boolean | {
|
|
10568
10657
|
[key: string]: unknown;
|
|
@@ -10653,6 +10742,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10653
10742
|
settings?: ConnectorBoxDiscriminatedConnectionData.Settings;
|
|
10654
10743
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10655
10744
|
status_message?: string | null;
|
|
10745
|
+
toon_schema?: string;
|
|
10656
10746
|
updated_at?: string;
|
|
10657
10747
|
webhook_config?: string | number | boolean | {
|
|
10658
10748
|
[key: string]: unknown;
|
|
@@ -10743,6 +10833,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10743
10833
|
settings?: ConnectorCalendlyDiscriminatedConnectionData.Settings;
|
|
10744
10834
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10745
10835
|
status_message?: string | null;
|
|
10836
|
+
toon_schema?: string;
|
|
10746
10837
|
updated_at?: string;
|
|
10747
10838
|
webhook_config?: string | number | boolean | {
|
|
10748
10839
|
[key: string]: unknown;
|
|
@@ -10833,6 +10924,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10833
10924
|
settings?: ConnectorClickupDiscriminatedConnectionData.Settings;
|
|
10834
10925
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10835
10926
|
status_message?: string | null;
|
|
10927
|
+
toon_schema?: string;
|
|
10836
10928
|
updated_at?: string;
|
|
10837
10929
|
webhook_config?: string | number | boolean | {
|
|
10838
10930
|
[key: string]: unknown;
|
|
@@ -10923,6 +11015,7 @@ export declare namespace GetConnectionResponse {
|
|
|
10923
11015
|
settings?: ConnectorConfluenceDiscriminatedConnectionData.Settings;
|
|
10924
11016
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10925
11017
|
status_message?: string | null;
|
|
11018
|
+
toon_schema?: string;
|
|
10926
11019
|
updated_at?: string;
|
|
10927
11020
|
webhook_config?: string | number | boolean | {
|
|
10928
11021
|
[key: string]: unknown;
|
|
@@ -11017,6 +11110,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11017
11110
|
settings?: ConnectorDatabricksDiscriminatedConnectionData.Settings;
|
|
11018
11111
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11019
11112
|
status_message?: string | null;
|
|
11113
|
+
toon_schema?: string;
|
|
11020
11114
|
updated_at?: string;
|
|
11021
11115
|
webhook_config?: string | number | boolean | {
|
|
11022
11116
|
[key: string]: unknown;
|
|
@@ -11118,6 +11212,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11118
11212
|
settings?: ConnectorDiscordDiscriminatedConnectionData.Settings;
|
|
11119
11213
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11120
11214
|
status_message?: string | null;
|
|
11215
|
+
toon_schema?: string;
|
|
11121
11216
|
updated_at?: string;
|
|
11122
11217
|
webhook_config?: string | number | boolean | {
|
|
11123
11218
|
[key: string]: unknown;
|
|
@@ -11208,6 +11303,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11208
11303
|
settings?: ConnectorDropboxDiscriminatedConnectionData.Settings;
|
|
11209
11304
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11210
11305
|
status_message?: string | null;
|
|
11306
|
+
toon_schema?: string;
|
|
11211
11307
|
updated_at?: string;
|
|
11212
11308
|
webhook_config?: string | number | boolean | {
|
|
11213
11309
|
[key: string]: unknown;
|
|
@@ -11298,6 +11394,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11298
11394
|
settings?: ConnectorElevenlabsDiscriminatedConnectionData.Settings;
|
|
11299
11395
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11300
11396
|
status_message?: string | null;
|
|
11397
|
+
toon_schema?: string;
|
|
11301
11398
|
updated_at?: string;
|
|
11302
11399
|
webhook_config?: string | number | boolean | {
|
|
11303
11400
|
[key: string]: unknown;
|
|
@@ -11352,6 +11449,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11352
11449
|
settings?: ConnectorFigmaDiscriminatedConnectionData.Settings;
|
|
11353
11450
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11354
11451
|
status_message?: string | null;
|
|
11452
|
+
toon_schema?: string;
|
|
11355
11453
|
updated_at?: string;
|
|
11356
11454
|
webhook_config?: string | number | boolean | {
|
|
11357
11455
|
[key: string]: unknown;
|
|
@@ -11442,6 +11540,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11442
11540
|
settings?: ConnectorGitHubSourceControlDiscriminatedConnectionData.Settings;
|
|
11443
11541
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11444
11542
|
status_message?: string | null;
|
|
11543
|
+
toon_schema?: string;
|
|
11445
11544
|
updated_at?: string;
|
|
11446
11545
|
webhook_config?: string | number | boolean | {
|
|
11447
11546
|
[key: string]: unknown;
|
|
@@ -11532,6 +11631,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11532
11631
|
settings?: ConnectorGitHubDiscriminatedConnectionData.Settings;
|
|
11533
11632
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11534
11633
|
status_message?: string | null;
|
|
11634
|
+
toon_schema?: string;
|
|
11535
11635
|
updated_at?: string;
|
|
11536
11636
|
webhook_config?: string | number | boolean | {
|
|
11537
11637
|
[key: string]: unknown;
|
|
@@ -11622,6 +11722,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11622
11722
|
settings?: ConnectorGitlabSourceControlDiscriminatedConnectionData.Settings;
|
|
11623
11723
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11624
11724
|
status_message?: string | null;
|
|
11725
|
+
toon_schema?: string;
|
|
11625
11726
|
updated_at?: string;
|
|
11626
11727
|
webhook_config?: string | number | boolean | {
|
|
11627
11728
|
[key: string]: unknown;
|
|
@@ -11712,6 +11813,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11712
11813
|
settings?: ConnectorGoogleCalendarDiscriminatedConnectionData.Settings;
|
|
11713
11814
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11714
11815
|
status_message?: string | null;
|
|
11816
|
+
toon_schema?: string;
|
|
11715
11817
|
updated_at?: string;
|
|
11716
11818
|
webhook_config?: string | number | boolean | {
|
|
11717
11819
|
[key: string]: unknown;
|
|
@@ -11802,6 +11904,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11802
11904
|
settings?: ConnectorGoogleDocsDiscriminatedConnectionData.Settings;
|
|
11803
11905
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11804
11906
|
status_message?: string | null;
|
|
11907
|
+
toon_schema?: string;
|
|
11805
11908
|
updated_at?: string;
|
|
11806
11909
|
webhook_config?: string | number | boolean | {
|
|
11807
11910
|
[key: string]: unknown;
|
|
@@ -11892,6 +11995,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11892
11995
|
settings?: ConnectorGoogleDriveDiscriminatedConnectionData.Settings;
|
|
11893
11996
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11894
11997
|
status_message?: string | null;
|
|
11998
|
+
toon_schema?: string;
|
|
11895
11999
|
updated_at?: string;
|
|
11896
12000
|
webhook_config?: string | number | boolean | {
|
|
11897
12001
|
[key: string]: unknown;
|
|
@@ -11982,6 +12086,7 @@ export declare namespace GetConnectionResponse {
|
|
|
11982
12086
|
settings?: ConnectorGoogleMailDiscriminatedConnectionData.Settings;
|
|
11983
12087
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11984
12088
|
status_message?: string | null;
|
|
12089
|
+
toon_schema?: string;
|
|
11985
12090
|
updated_at?: string;
|
|
11986
12091
|
webhook_config?: string | number | boolean | {
|
|
11987
12092
|
[key: string]: unknown;
|
|
@@ -12072,6 +12177,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12072
12177
|
settings?: ConnectorGoogleSheetDiscriminatedConnectionData.Settings;
|
|
12073
12178
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12074
12179
|
status_message?: string | null;
|
|
12180
|
+
toon_schema?: string;
|
|
12075
12181
|
updated_at?: string;
|
|
12076
12182
|
webhook_config?: string | number | boolean | {
|
|
12077
12183
|
[key: string]: unknown;
|
|
@@ -12162,6 +12268,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12162
12268
|
settings?: ConnectorGoogleSlidesDiscriminatedConnectionData.Settings;
|
|
12163
12269
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12164
12270
|
status_message?: string | null;
|
|
12271
|
+
toon_schema?: string;
|
|
12165
12272
|
updated_at?: string;
|
|
12166
12273
|
webhook_config?: string | number | boolean | {
|
|
12167
12274
|
[key: string]: unknown;
|
|
@@ -12252,6 +12359,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12252
12359
|
settings?: ConnectorHubspotDiscriminatedConnectionData.Settings;
|
|
12253
12360
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12254
12361
|
status_message?: string | null;
|
|
12362
|
+
toon_schema?: string;
|
|
12255
12363
|
updated_at?: string;
|
|
12256
12364
|
webhook_config?: string | number | boolean | {
|
|
12257
12365
|
[key: string]: unknown;
|
|
@@ -12350,6 +12458,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12350
12458
|
settings?: ConnectorInstagramDiscriminatedConnectionData.Settings;
|
|
12351
12459
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12352
12460
|
status_message?: string | null;
|
|
12461
|
+
toon_schema?: string;
|
|
12353
12462
|
updated_at?: string;
|
|
12354
12463
|
webhook_config?: string | number | boolean | {
|
|
12355
12464
|
[key: string]: unknown;
|
|
@@ -12440,6 +12549,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12440
12549
|
settings?: ConnectorJiraDiscriminatedConnectionData.Settings;
|
|
12441
12550
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12442
12551
|
status_message?: string | null;
|
|
12552
|
+
toon_schema?: string;
|
|
12443
12553
|
updated_at?: string;
|
|
12444
12554
|
webhook_config?: string | number | boolean | {
|
|
12445
12555
|
[key: string]: unknown;
|
|
@@ -12534,6 +12644,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12534
12644
|
settings?: ConnectorLinearDiscriminatedConnectionData.Settings;
|
|
12535
12645
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12536
12646
|
status_message?: string | null;
|
|
12647
|
+
toon_schema?: string;
|
|
12537
12648
|
updated_at?: string;
|
|
12538
12649
|
webhook_config?: string | number | boolean | {
|
|
12539
12650
|
[key: string]: unknown;
|
|
@@ -12624,6 +12735,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12624
12735
|
settings?: ConnectorMondayDiscriminatedConnectionData.Settings;
|
|
12625
12736
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12626
12737
|
status_message?: string | null;
|
|
12738
|
+
toon_schema?: string;
|
|
12627
12739
|
updated_at?: string;
|
|
12628
12740
|
webhook_config?: string | number | boolean | {
|
|
12629
12741
|
[key: string]: unknown;
|
|
@@ -12714,6 +12826,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12714
12826
|
settings?: ConnectorNotionDiscriminatedConnectionData.Settings;
|
|
12715
12827
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12716
12828
|
status_message?: string | null;
|
|
12829
|
+
toon_schema?: string;
|
|
12717
12830
|
updated_at?: string;
|
|
12718
12831
|
webhook_config?: string | number | boolean | {
|
|
12719
12832
|
[key: string]: unknown;
|
|
@@ -12804,6 +12917,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12804
12917
|
settings?: ConnectorOnedriveDiscriminatedConnectionData.Settings;
|
|
12805
12918
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12806
12919
|
status_message?: string | null;
|
|
12920
|
+
toon_schema?: string;
|
|
12807
12921
|
updated_at?: string;
|
|
12808
12922
|
webhook_config?: string | number | boolean | {
|
|
12809
12923
|
[key: string]: unknown;
|
|
@@ -12894,6 +13008,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12894
13008
|
settings?: ConnectorOpenAIDiscriminatedConnectionData.Settings;
|
|
12895
13009
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12896
13010
|
status_message?: string | null;
|
|
13011
|
+
toon_schema?: string;
|
|
12897
13012
|
updated_at?: string;
|
|
12898
13013
|
webhook_config?: string | number | boolean | {
|
|
12899
13014
|
[key: string]: unknown;
|
|
@@ -12953,6 +13068,7 @@ export declare namespace GetConnectionResponse {
|
|
|
12953
13068
|
settings?: ConnectorOutlookDiscriminatedConnectionData.Settings;
|
|
12954
13069
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12955
13070
|
status_message?: string | null;
|
|
13071
|
+
toon_schema?: string;
|
|
12956
13072
|
updated_at?: string;
|
|
12957
13073
|
webhook_config?: string | number | boolean | {
|
|
12958
13074
|
[key: string]: unknown;
|
|
@@ -13043,6 +13159,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13043
13159
|
settings?: ConnectorRevenuecatDiscriminatedConnectionData.Settings;
|
|
13044
13160
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13045
13161
|
status_message?: string | null;
|
|
13162
|
+
toon_schema?: string;
|
|
13046
13163
|
updated_at?: string;
|
|
13047
13164
|
webhook_config?: string | number | boolean | {
|
|
13048
13165
|
[key: string]: unknown;
|
|
@@ -13133,6 +13250,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13133
13250
|
settings?: ConnectorSalesforceDiscriminatedConnectionData.Settings;
|
|
13134
13251
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13135
13252
|
status_message?: string | null;
|
|
13253
|
+
toon_schema?: string;
|
|
13136
13254
|
updated_at?: string;
|
|
13137
13255
|
webhook_config?: string | number | boolean | {
|
|
13138
13256
|
[key: string]: unknown;
|
|
@@ -13227,6 +13345,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13227
13345
|
settings?: ConnectorSharepointDiscriminatedConnectionData.Settings;
|
|
13228
13346
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13229
13347
|
status_message?: string | null;
|
|
13348
|
+
toon_schema?: string;
|
|
13230
13349
|
updated_at?: string;
|
|
13231
13350
|
webhook_config?: string | number | boolean | {
|
|
13232
13351
|
[key: string]: unknown;
|
|
@@ -13317,6 +13436,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13317
13436
|
settings?: ConnectorSlackDeployedAgentDiscriminatedConnectionData.Settings;
|
|
13318
13437
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13319
13438
|
status_message?: string | null;
|
|
13439
|
+
toon_schema?: string;
|
|
13320
13440
|
updated_at?: string;
|
|
13321
13441
|
webhook_config?: string | number | boolean | {
|
|
13322
13442
|
[key: string]: unknown;
|
|
@@ -13407,6 +13527,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13407
13527
|
settings?: ConnectorSlackDiscriminatedConnectionData.Settings;
|
|
13408
13528
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13409
13529
|
status_message?: string | null;
|
|
13530
|
+
toon_schema?: string;
|
|
13410
13531
|
updated_at?: string;
|
|
13411
13532
|
webhook_config?: string | number | boolean | {
|
|
13412
13533
|
[key: string]: unknown;
|
|
@@ -13497,6 +13618,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13497
13618
|
settings?: ConnectorSnowflakeDiscriminatedConnectionData.Settings;
|
|
13498
13619
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13499
13620
|
status_message?: string | null;
|
|
13621
|
+
toon_schema?: string;
|
|
13500
13622
|
updated_at?: string;
|
|
13501
13623
|
webhook_config?: string | number | boolean | {
|
|
13502
13624
|
[key: string]: unknown;
|
|
@@ -13592,6 +13714,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13592
13714
|
settings?: ConnectorSpotifyDiscriminatedConnectionData.Settings;
|
|
13593
13715
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13594
13716
|
status_message?: string | null;
|
|
13717
|
+
toon_schema?: string;
|
|
13595
13718
|
updated_at?: string;
|
|
13596
13719
|
webhook_config?: string | number | boolean | {
|
|
13597
13720
|
[key: string]: unknown;
|
|
@@ -13682,6 +13805,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13682
13805
|
settings?: ConnectorSproutsocialDiscriminatedConnectionData.Settings;
|
|
13683
13806
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13684
13807
|
status_message?: string | null;
|
|
13808
|
+
toon_schema?: string;
|
|
13685
13809
|
updated_at?: string;
|
|
13686
13810
|
webhook_config?: string | number | boolean | {
|
|
13687
13811
|
[key: string]: unknown;
|
|
@@ -13737,6 +13861,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13737
13861
|
settings?: ConnectorStripeDiscriminatedConnectionData.Settings;
|
|
13738
13862
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13739
13863
|
status_message?: string | null;
|
|
13864
|
+
toon_schema?: string;
|
|
13740
13865
|
updated_at?: string;
|
|
13741
13866
|
webhook_config?: string | number | boolean | {
|
|
13742
13867
|
[key: string]: unknown;
|
|
@@ -13837,6 +13962,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13837
13962
|
settings?: ConnectorTodoistDiscriminatedConnectionData.Settings;
|
|
13838
13963
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13839
13964
|
status_message?: string | null;
|
|
13965
|
+
toon_schema?: string;
|
|
13840
13966
|
updated_at?: string;
|
|
13841
13967
|
webhook_config?: string | number | boolean | {
|
|
13842
13968
|
[key: string]: unknown;
|
|
@@ -13927,6 +14053,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13927
14053
|
settings?: ConnectorXDiscriminatedConnectionData.Settings;
|
|
13928
14054
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13929
14055
|
status_message?: string | null;
|
|
14056
|
+
toon_schema?: string;
|
|
13930
14057
|
updated_at?: string;
|
|
13931
14058
|
webhook_config?: string | number | boolean | {
|
|
13932
14059
|
[key: string]: unknown;
|
|
@@ -13981,6 +14108,7 @@ export declare namespace GetConnectionResponse {
|
|
|
13981
14108
|
settings?: ConnectorYoutubeDiscriminatedConnectionData.Settings;
|
|
13982
14109
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13983
14110
|
status_message?: string | null;
|
|
14111
|
+
toon_schema?: string;
|
|
13984
14112
|
updated_at?: string;
|
|
13985
14113
|
webhook_config?: string | number | boolean | {
|
|
13986
14114
|
[key: string]: unknown;
|
|
@@ -14071,6 +14199,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14071
14199
|
settings?: ConnectorZendeskDiscriminatedConnectionData.Settings;
|
|
14072
14200
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14073
14201
|
status_message?: string | null;
|
|
14202
|
+
toon_schema?: string;
|
|
14074
14203
|
updated_at?: string;
|
|
14075
14204
|
webhook_config?: string | number | boolean | {
|
|
14076
14205
|
[key: string]: unknown;
|
|
@@ -14165,6 +14294,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14165
14294
|
settings?: ConnectorZoomDiscriminatedConnectionData.Settings;
|
|
14166
14295
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14167
14296
|
status_message?: string | null;
|
|
14297
|
+
toon_schema?: string;
|
|
14168
14298
|
updated_at?: string;
|
|
14169
14299
|
webhook_config?: string | number | boolean | {
|
|
14170
14300
|
[key: string]: unknown;
|
|
@@ -14255,6 +14385,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14255
14385
|
settings?: ConnectorApolloDiscriminatedConnectionData.Settings;
|
|
14256
14386
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14257
14387
|
status_message?: string | null;
|
|
14388
|
+
toon_schema?: string;
|
|
14258
14389
|
updated_at?: string;
|
|
14259
14390
|
webhook_config?: string | number | boolean | {
|
|
14260
14391
|
[key: string]: unknown;
|
|
@@ -14306,6 +14437,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14306
14437
|
settings?: ConnectorCustomMcpDiscriminatedConnectionData.Settings;
|
|
14307
14438
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14308
14439
|
status_message?: string | null;
|
|
14440
|
+
toon_schema?: string;
|
|
14309
14441
|
updated_at?: string;
|
|
14310
14442
|
webhook_config?: string | number | boolean | {
|
|
14311
14443
|
[key: string]: unknown;
|
|
@@ -14435,6 +14567,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14435
14567
|
settings?: ConnectorDatabricksM2mDiscriminatedConnectionData.Settings;
|
|
14436
14568
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14437
14569
|
status_message?: string | null;
|
|
14570
|
+
toon_schema?: string;
|
|
14438
14571
|
updated_at?: string;
|
|
14439
14572
|
webhook_config?: string | number | boolean | {
|
|
14440
14573
|
[key: string]: unknown;
|
|
@@ -14521,6 +14654,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14521
14654
|
settings?: unknown;
|
|
14522
14655
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14523
14656
|
status_message?: string | null;
|
|
14657
|
+
toon_schema?: string;
|
|
14524
14658
|
updated_at?: string;
|
|
14525
14659
|
webhook_config?: string | number | boolean | {
|
|
14526
14660
|
[key: string]: unknown;
|
|
@@ -14569,6 +14703,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14569
14703
|
settings?: ConnectorPlaidDiscriminatedConnectionData.Settings;
|
|
14570
14704
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14571
14705
|
status_message?: string | null;
|
|
14706
|
+
toon_schema?: string;
|
|
14572
14707
|
updated_at?: string;
|
|
14573
14708
|
webhook_config?: string | number | boolean | {
|
|
14574
14709
|
[key: string]: unknown;
|
|
@@ -14625,6 +14760,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14625
14760
|
settings?: ConnectorPostgresDiscriminatedConnectionData.Settings;
|
|
14626
14761
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14627
14762
|
status_message?: string | null;
|
|
14763
|
+
toon_schema?: string;
|
|
14628
14764
|
updated_at?: string;
|
|
14629
14765
|
webhook_config?: string | number | boolean | {
|
|
14630
14766
|
[key: string]: unknown;
|
|
@@ -14676,6 +14812,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14676
14812
|
settings?: ConnectorResendDiscriminatedConnectionData.Settings;
|
|
14677
14813
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14678
14814
|
status_message?: string | null;
|
|
14815
|
+
toon_schema?: string;
|
|
14679
14816
|
updated_at?: string;
|
|
14680
14817
|
webhook_config?: string | number | boolean | {
|
|
14681
14818
|
[key: string]: unknown;
|
|
@@ -14731,6 +14868,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14731
14868
|
settings?: ConnectorSendgridDiscriminatedConnectionData.Settings;
|
|
14732
14869
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14733
14870
|
status_message?: string | null;
|
|
14871
|
+
toon_schema?: string;
|
|
14734
14872
|
updated_at?: string;
|
|
14735
14873
|
webhook_config?: string | number | boolean | {
|
|
14736
14874
|
[key: string]: unknown;
|
|
@@ -14786,6 +14924,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14786
14924
|
settings?: ConnectorSlackAgentDiscriminatedConnectionData.Settings;
|
|
14787
14925
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14788
14926
|
status_message?: string | null;
|
|
14927
|
+
toon_schema?: string;
|
|
14789
14928
|
updated_at?: string;
|
|
14790
14929
|
webhook_config?: string | number | boolean | {
|
|
14791
14930
|
[key: string]: unknown;
|
|
@@ -14840,6 +14979,7 @@ export declare namespace GetConnectionResponse {
|
|
|
14840
14979
|
settings?: ConnectorSlackAgentBuilderDiscriminatedConnectionData.Settings;
|
|
14841
14980
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14842
14981
|
status_message?: string | null;
|
|
14982
|
+
toon_schema?: string;
|
|
14843
14983
|
updated_at?: string;
|
|
14844
14984
|
webhook_config?: string | number | boolean | {
|
|
14845
14985
|
[key: string]: unknown;
|
|
@@ -15005,6 +15145,7 @@ export declare namespace GetConnectionResponse {
|
|
|
15005
15145
|
settings?: ConnectorStripeAgentSandboxDiscriminatedConnectionData.Settings;
|
|
15006
15146
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15007
15147
|
status_message?: string | null;
|
|
15148
|
+
toon_schema?: string;
|
|
15008
15149
|
updated_at?: string;
|
|
15009
15150
|
webhook_config?: string | number | boolean | {
|
|
15010
15151
|
[key: string]: unknown;
|
|
@@ -15095,6 +15236,7 @@ export declare namespace GetConnectionResponse {
|
|
|
15095
15236
|
settings?: ConnectorTwilioDiscriminatedConnectionData.Settings;
|
|
15096
15237
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15097
15238
|
status_message?: string | null;
|
|
15239
|
+
toon_schema?: string;
|
|
15098
15240
|
updated_at?: string;
|
|
15099
15241
|
webhook_config?: string | number | boolean | {
|
|
15100
15242
|
[key: string]: unknown;
|
|
@@ -15152,6 +15294,7 @@ export declare namespace GetConnectionResponse {
|
|
|
15152
15294
|
settings?: ConnectorWorkatoDiscriminatedConnectionData.Settings;
|
|
15153
15295
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15154
15296
|
status_message?: string | null;
|
|
15297
|
+
toon_schema?: string;
|
|
15155
15298
|
updated_at?: string;
|
|
15156
15299
|
webhook_config?: string | number | boolean | {
|
|
15157
15300
|
[key: string]: unknown;
|
|
@@ -15224,6 +15367,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15224
15367
|
settings?: ConnectorAcmeApikeyDiscriminatedConnectionData.Settings;
|
|
15225
15368
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15226
15369
|
status_message?: string | null;
|
|
15370
|
+
toon_schema?: string;
|
|
15227
15371
|
updated_at?: string;
|
|
15228
15372
|
webhook_config?: string | number | boolean | {
|
|
15229
15373
|
[key: string]: unknown;
|
|
@@ -15278,6 +15422,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15278
15422
|
settings?: ConnectorAcmeOauth2DiscriminatedConnectionData.Settings;
|
|
15279
15423
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15280
15424
|
status_message?: string | null;
|
|
15425
|
+
toon_schema?: string;
|
|
15281
15426
|
updated_at?: string;
|
|
15282
15427
|
webhook_config?: string | number | boolean | {
|
|
15283
15428
|
[key: string]: unknown;
|
|
@@ -15368,6 +15513,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15368
15513
|
settings?: ConnectorAgentmailDiscriminatedConnectionData.Settings;
|
|
15369
15514
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15370
15515
|
status_message?: string | null;
|
|
15516
|
+
toon_schema?: string;
|
|
15371
15517
|
updated_at?: string;
|
|
15372
15518
|
webhook_config?: string | number | boolean | {
|
|
15373
15519
|
[key: string]: unknown;
|
|
@@ -15422,6 +15568,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15422
15568
|
settings?: ConnectorAsanaDiscriminatedConnectionData.Settings;
|
|
15423
15569
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15424
15570
|
status_message?: string | null;
|
|
15571
|
+
toon_schema?: string;
|
|
15425
15572
|
updated_at?: string;
|
|
15426
15573
|
webhook_config?: string | number | boolean | {
|
|
15427
15574
|
[key: string]: unknown;
|
|
@@ -15512,6 +15659,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15512
15659
|
settings?: ConnectorAshbyDiscriminatedConnectionData.Settings;
|
|
15513
15660
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15514
15661
|
status_message?: string | null;
|
|
15662
|
+
toon_schema?: string;
|
|
15515
15663
|
updated_at?: string;
|
|
15516
15664
|
webhook_config?: string | number | boolean | {
|
|
15517
15665
|
[key: string]: unknown;
|
|
@@ -15566,6 +15714,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15566
15714
|
settings?: ConnectorBigqueryDiscriminatedConnectionData.Settings;
|
|
15567
15715
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15568
15716
|
status_message?: string | null;
|
|
15717
|
+
toon_schema?: string;
|
|
15569
15718
|
updated_at?: string;
|
|
15570
15719
|
webhook_config?: string | number | boolean | {
|
|
15571
15720
|
[key: string]: unknown;
|
|
@@ -15661,6 +15810,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15661
15810
|
settings?: ConnectorBitbucketSourceControlDiscriminatedConnectionData.Settings;
|
|
15662
15811
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15663
15812
|
status_message?: string | null;
|
|
15813
|
+
toon_schema?: string;
|
|
15664
15814
|
updated_at?: string;
|
|
15665
15815
|
webhook_config?: string | number | boolean | {
|
|
15666
15816
|
[key: string]: unknown;
|
|
@@ -15751,6 +15901,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15751
15901
|
settings?: ConnectorBitbucketDiscriminatedConnectionData.Settings;
|
|
15752
15902
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15753
15903
|
status_message?: string | null;
|
|
15904
|
+
toon_schema?: string;
|
|
15754
15905
|
updated_at?: string;
|
|
15755
15906
|
webhook_config?: string | number | boolean | {
|
|
15756
15907
|
[key: string]: unknown;
|
|
@@ -15841,6 +15992,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15841
15992
|
settings?: ConnectorBoxDiscriminatedConnectionData.Settings;
|
|
15842
15993
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15843
15994
|
status_message?: string | null;
|
|
15995
|
+
toon_schema?: string;
|
|
15844
15996
|
updated_at?: string;
|
|
15845
15997
|
webhook_config?: string | number | boolean | {
|
|
15846
15998
|
[key: string]: unknown;
|
|
@@ -15931,6 +16083,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
15931
16083
|
settings?: ConnectorCalendlyDiscriminatedConnectionData.Settings;
|
|
15932
16084
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
15933
16085
|
status_message?: string | null;
|
|
16086
|
+
toon_schema?: string;
|
|
15934
16087
|
updated_at?: string;
|
|
15935
16088
|
webhook_config?: string | number | boolean | {
|
|
15936
16089
|
[key: string]: unknown;
|
|
@@ -16021,6 +16174,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16021
16174
|
settings?: ConnectorClickupDiscriminatedConnectionData.Settings;
|
|
16022
16175
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16023
16176
|
status_message?: string | null;
|
|
16177
|
+
toon_schema?: string;
|
|
16024
16178
|
updated_at?: string;
|
|
16025
16179
|
webhook_config?: string | number | boolean | {
|
|
16026
16180
|
[key: string]: unknown;
|
|
@@ -16111,6 +16265,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16111
16265
|
settings?: ConnectorConfluenceDiscriminatedConnectionData.Settings;
|
|
16112
16266
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16113
16267
|
status_message?: string | null;
|
|
16268
|
+
toon_schema?: string;
|
|
16114
16269
|
updated_at?: string;
|
|
16115
16270
|
webhook_config?: string | number | boolean | {
|
|
16116
16271
|
[key: string]: unknown;
|
|
@@ -16205,6 +16360,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16205
16360
|
settings?: ConnectorDatabricksDiscriminatedConnectionData.Settings;
|
|
16206
16361
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16207
16362
|
status_message?: string | null;
|
|
16363
|
+
toon_schema?: string;
|
|
16208
16364
|
updated_at?: string;
|
|
16209
16365
|
webhook_config?: string | number | boolean | {
|
|
16210
16366
|
[key: string]: unknown;
|
|
@@ -16306,6 +16462,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16306
16462
|
settings?: ConnectorDiscordDiscriminatedConnectionData.Settings;
|
|
16307
16463
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16308
16464
|
status_message?: string | null;
|
|
16465
|
+
toon_schema?: string;
|
|
16309
16466
|
updated_at?: string;
|
|
16310
16467
|
webhook_config?: string | number | boolean | {
|
|
16311
16468
|
[key: string]: unknown;
|
|
@@ -16396,6 +16553,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16396
16553
|
settings?: ConnectorDropboxDiscriminatedConnectionData.Settings;
|
|
16397
16554
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16398
16555
|
status_message?: string | null;
|
|
16556
|
+
toon_schema?: string;
|
|
16399
16557
|
updated_at?: string;
|
|
16400
16558
|
webhook_config?: string | number | boolean | {
|
|
16401
16559
|
[key: string]: unknown;
|
|
@@ -16486,6 +16644,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16486
16644
|
settings?: ConnectorElevenlabsDiscriminatedConnectionData.Settings;
|
|
16487
16645
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16488
16646
|
status_message?: string | null;
|
|
16647
|
+
toon_schema?: string;
|
|
16489
16648
|
updated_at?: string;
|
|
16490
16649
|
webhook_config?: string | number | boolean | {
|
|
16491
16650
|
[key: string]: unknown;
|
|
@@ -16540,6 +16699,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16540
16699
|
settings?: ConnectorFigmaDiscriminatedConnectionData.Settings;
|
|
16541
16700
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16542
16701
|
status_message?: string | null;
|
|
16702
|
+
toon_schema?: string;
|
|
16543
16703
|
updated_at?: string;
|
|
16544
16704
|
webhook_config?: string | number | boolean | {
|
|
16545
16705
|
[key: string]: unknown;
|
|
@@ -16630,6 +16790,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16630
16790
|
settings?: ConnectorGitHubSourceControlDiscriminatedConnectionData.Settings;
|
|
16631
16791
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16632
16792
|
status_message?: string | null;
|
|
16793
|
+
toon_schema?: string;
|
|
16633
16794
|
updated_at?: string;
|
|
16634
16795
|
webhook_config?: string | number | boolean | {
|
|
16635
16796
|
[key: string]: unknown;
|
|
@@ -16720,6 +16881,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16720
16881
|
settings?: ConnectorGitHubDiscriminatedConnectionData.Settings;
|
|
16721
16882
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16722
16883
|
status_message?: string | null;
|
|
16884
|
+
toon_schema?: string;
|
|
16723
16885
|
updated_at?: string;
|
|
16724
16886
|
webhook_config?: string | number | boolean | {
|
|
16725
16887
|
[key: string]: unknown;
|
|
@@ -16810,6 +16972,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16810
16972
|
settings?: ConnectorGitlabSourceControlDiscriminatedConnectionData.Settings;
|
|
16811
16973
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16812
16974
|
status_message?: string | null;
|
|
16975
|
+
toon_schema?: string;
|
|
16813
16976
|
updated_at?: string;
|
|
16814
16977
|
webhook_config?: string | number | boolean | {
|
|
16815
16978
|
[key: string]: unknown;
|
|
@@ -16900,6 +17063,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16900
17063
|
settings?: ConnectorGoogleCalendarDiscriminatedConnectionData.Settings;
|
|
16901
17064
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16902
17065
|
status_message?: string | null;
|
|
17066
|
+
toon_schema?: string;
|
|
16903
17067
|
updated_at?: string;
|
|
16904
17068
|
webhook_config?: string | number | boolean | {
|
|
16905
17069
|
[key: string]: unknown;
|
|
@@ -16990,6 +17154,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
16990
17154
|
settings?: ConnectorGoogleDocsDiscriminatedConnectionData.Settings;
|
|
16991
17155
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
16992
17156
|
status_message?: string | null;
|
|
17157
|
+
toon_schema?: string;
|
|
16993
17158
|
updated_at?: string;
|
|
16994
17159
|
webhook_config?: string | number | boolean | {
|
|
16995
17160
|
[key: string]: unknown;
|
|
@@ -17080,6 +17245,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17080
17245
|
settings?: ConnectorGoogleDriveDiscriminatedConnectionData.Settings;
|
|
17081
17246
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17082
17247
|
status_message?: string | null;
|
|
17248
|
+
toon_schema?: string;
|
|
17083
17249
|
updated_at?: string;
|
|
17084
17250
|
webhook_config?: string | number | boolean | {
|
|
17085
17251
|
[key: string]: unknown;
|
|
@@ -17170,6 +17336,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17170
17336
|
settings?: ConnectorGoogleMailDiscriminatedConnectionData.Settings;
|
|
17171
17337
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17172
17338
|
status_message?: string | null;
|
|
17339
|
+
toon_schema?: string;
|
|
17173
17340
|
updated_at?: string;
|
|
17174
17341
|
webhook_config?: string | number | boolean | {
|
|
17175
17342
|
[key: string]: unknown;
|
|
@@ -17260,6 +17427,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17260
17427
|
settings?: ConnectorGoogleSheetDiscriminatedConnectionData.Settings;
|
|
17261
17428
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17262
17429
|
status_message?: string | null;
|
|
17430
|
+
toon_schema?: string;
|
|
17263
17431
|
updated_at?: string;
|
|
17264
17432
|
webhook_config?: string | number | boolean | {
|
|
17265
17433
|
[key: string]: unknown;
|
|
@@ -17350,6 +17518,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17350
17518
|
settings?: ConnectorGoogleSlidesDiscriminatedConnectionData.Settings;
|
|
17351
17519
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17352
17520
|
status_message?: string | null;
|
|
17521
|
+
toon_schema?: string;
|
|
17353
17522
|
updated_at?: string;
|
|
17354
17523
|
webhook_config?: string | number | boolean | {
|
|
17355
17524
|
[key: string]: unknown;
|
|
@@ -17440,6 +17609,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17440
17609
|
settings?: ConnectorHubspotDiscriminatedConnectionData.Settings;
|
|
17441
17610
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17442
17611
|
status_message?: string | null;
|
|
17612
|
+
toon_schema?: string;
|
|
17443
17613
|
updated_at?: string;
|
|
17444
17614
|
webhook_config?: string | number | boolean | {
|
|
17445
17615
|
[key: string]: unknown;
|
|
@@ -17538,6 +17708,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17538
17708
|
settings?: ConnectorInstagramDiscriminatedConnectionData.Settings;
|
|
17539
17709
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17540
17710
|
status_message?: string | null;
|
|
17711
|
+
toon_schema?: string;
|
|
17541
17712
|
updated_at?: string;
|
|
17542
17713
|
webhook_config?: string | number | boolean | {
|
|
17543
17714
|
[key: string]: unknown;
|
|
@@ -17628,6 +17799,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17628
17799
|
settings?: ConnectorJiraDiscriminatedConnectionData.Settings;
|
|
17629
17800
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17630
17801
|
status_message?: string | null;
|
|
17802
|
+
toon_schema?: string;
|
|
17631
17803
|
updated_at?: string;
|
|
17632
17804
|
webhook_config?: string | number | boolean | {
|
|
17633
17805
|
[key: string]: unknown;
|
|
@@ -17722,6 +17894,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17722
17894
|
settings?: ConnectorLinearDiscriminatedConnectionData.Settings;
|
|
17723
17895
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17724
17896
|
status_message?: string | null;
|
|
17897
|
+
toon_schema?: string;
|
|
17725
17898
|
updated_at?: string;
|
|
17726
17899
|
webhook_config?: string | number | boolean | {
|
|
17727
17900
|
[key: string]: unknown;
|
|
@@ -17812,6 +17985,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17812
17985
|
settings?: ConnectorMondayDiscriminatedConnectionData.Settings;
|
|
17813
17986
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17814
17987
|
status_message?: string | null;
|
|
17988
|
+
toon_schema?: string;
|
|
17815
17989
|
updated_at?: string;
|
|
17816
17990
|
webhook_config?: string | number | boolean | {
|
|
17817
17991
|
[key: string]: unknown;
|
|
@@ -17902,6 +18076,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17902
18076
|
settings?: ConnectorNotionDiscriminatedConnectionData.Settings;
|
|
17903
18077
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17904
18078
|
status_message?: string | null;
|
|
18079
|
+
toon_schema?: string;
|
|
17905
18080
|
updated_at?: string;
|
|
17906
18081
|
webhook_config?: string | number | boolean | {
|
|
17907
18082
|
[key: string]: unknown;
|
|
@@ -17992,6 +18167,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
17992
18167
|
settings?: ConnectorOnedriveDiscriminatedConnectionData.Settings;
|
|
17993
18168
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
17994
18169
|
status_message?: string | null;
|
|
18170
|
+
toon_schema?: string;
|
|
17995
18171
|
updated_at?: string;
|
|
17996
18172
|
webhook_config?: string | number | boolean | {
|
|
17997
18173
|
[key: string]: unknown;
|
|
@@ -18082,6 +18258,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18082
18258
|
settings?: ConnectorOpenAIDiscriminatedConnectionData.Settings;
|
|
18083
18259
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18084
18260
|
status_message?: string | null;
|
|
18261
|
+
toon_schema?: string;
|
|
18085
18262
|
updated_at?: string;
|
|
18086
18263
|
webhook_config?: string | number | boolean | {
|
|
18087
18264
|
[key: string]: unknown;
|
|
@@ -18141,6 +18318,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18141
18318
|
settings?: ConnectorOutlookDiscriminatedConnectionData.Settings;
|
|
18142
18319
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18143
18320
|
status_message?: string | null;
|
|
18321
|
+
toon_schema?: string;
|
|
18144
18322
|
updated_at?: string;
|
|
18145
18323
|
webhook_config?: string | number | boolean | {
|
|
18146
18324
|
[key: string]: unknown;
|
|
@@ -18231,6 +18409,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18231
18409
|
settings?: ConnectorRevenuecatDiscriminatedConnectionData.Settings;
|
|
18232
18410
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18233
18411
|
status_message?: string | null;
|
|
18412
|
+
toon_schema?: string;
|
|
18234
18413
|
updated_at?: string;
|
|
18235
18414
|
webhook_config?: string | number | boolean | {
|
|
18236
18415
|
[key: string]: unknown;
|
|
@@ -18321,6 +18500,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18321
18500
|
settings?: ConnectorSalesforceDiscriminatedConnectionData.Settings;
|
|
18322
18501
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18323
18502
|
status_message?: string | null;
|
|
18503
|
+
toon_schema?: string;
|
|
18324
18504
|
updated_at?: string;
|
|
18325
18505
|
webhook_config?: string | number | boolean | {
|
|
18326
18506
|
[key: string]: unknown;
|
|
@@ -18415,6 +18595,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18415
18595
|
settings?: ConnectorSharepointDiscriminatedConnectionData.Settings;
|
|
18416
18596
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18417
18597
|
status_message?: string | null;
|
|
18598
|
+
toon_schema?: string;
|
|
18418
18599
|
updated_at?: string;
|
|
18419
18600
|
webhook_config?: string | number | boolean | {
|
|
18420
18601
|
[key: string]: unknown;
|
|
@@ -18505,6 +18686,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18505
18686
|
settings?: ConnectorSlackDeployedAgentDiscriminatedConnectionData.Settings;
|
|
18506
18687
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18507
18688
|
status_message?: string | null;
|
|
18689
|
+
toon_schema?: string;
|
|
18508
18690
|
updated_at?: string;
|
|
18509
18691
|
webhook_config?: string | number | boolean | {
|
|
18510
18692
|
[key: string]: unknown;
|
|
@@ -18595,6 +18777,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18595
18777
|
settings?: ConnectorSlackDiscriminatedConnectionData.Settings;
|
|
18596
18778
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18597
18779
|
status_message?: string | null;
|
|
18780
|
+
toon_schema?: string;
|
|
18598
18781
|
updated_at?: string;
|
|
18599
18782
|
webhook_config?: string | number | boolean | {
|
|
18600
18783
|
[key: string]: unknown;
|
|
@@ -18685,6 +18868,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18685
18868
|
settings?: ConnectorSnowflakeDiscriminatedConnectionData.Settings;
|
|
18686
18869
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18687
18870
|
status_message?: string | null;
|
|
18871
|
+
toon_schema?: string;
|
|
18688
18872
|
updated_at?: string;
|
|
18689
18873
|
webhook_config?: string | number | boolean | {
|
|
18690
18874
|
[key: string]: unknown;
|
|
@@ -18780,6 +18964,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18780
18964
|
settings?: ConnectorSpotifyDiscriminatedConnectionData.Settings;
|
|
18781
18965
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18782
18966
|
status_message?: string | null;
|
|
18967
|
+
toon_schema?: string;
|
|
18783
18968
|
updated_at?: string;
|
|
18784
18969
|
webhook_config?: string | number | boolean | {
|
|
18785
18970
|
[key: string]: unknown;
|
|
@@ -18870,6 +19055,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18870
19055
|
settings?: ConnectorSproutsocialDiscriminatedConnectionData.Settings;
|
|
18871
19056
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18872
19057
|
status_message?: string | null;
|
|
19058
|
+
toon_schema?: string;
|
|
18873
19059
|
updated_at?: string;
|
|
18874
19060
|
webhook_config?: string | number | boolean | {
|
|
18875
19061
|
[key: string]: unknown;
|
|
@@ -18925,6 +19111,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
18925
19111
|
settings?: ConnectorStripeDiscriminatedConnectionData.Settings;
|
|
18926
19112
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18927
19113
|
status_message?: string | null;
|
|
19114
|
+
toon_schema?: string;
|
|
18928
19115
|
updated_at?: string;
|
|
18929
19116
|
webhook_config?: string | number | boolean | {
|
|
18930
19117
|
[key: string]: unknown;
|
|
@@ -19025,6 +19212,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19025
19212
|
settings?: ConnectorTodoistDiscriminatedConnectionData.Settings;
|
|
19026
19213
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19027
19214
|
status_message?: string | null;
|
|
19215
|
+
toon_schema?: string;
|
|
19028
19216
|
updated_at?: string;
|
|
19029
19217
|
webhook_config?: string | number | boolean | {
|
|
19030
19218
|
[key: string]: unknown;
|
|
@@ -19115,6 +19303,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19115
19303
|
settings?: ConnectorXDiscriminatedConnectionData.Settings;
|
|
19116
19304
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19117
19305
|
status_message?: string | null;
|
|
19306
|
+
toon_schema?: string;
|
|
19118
19307
|
updated_at?: string;
|
|
19119
19308
|
webhook_config?: string | number | boolean | {
|
|
19120
19309
|
[key: string]: unknown;
|
|
@@ -19169,6 +19358,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19169
19358
|
settings?: ConnectorYoutubeDiscriminatedConnectionData.Settings;
|
|
19170
19359
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19171
19360
|
status_message?: string | null;
|
|
19361
|
+
toon_schema?: string;
|
|
19172
19362
|
updated_at?: string;
|
|
19173
19363
|
webhook_config?: string | number | boolean | {
|
|
19174
19364
|
[key: string]: unknown;
|
|
@@ -19259,6 +19449,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19259
19449
|
settings?: ConnectorZendeskDiscriminatedConnectionData.Settings;
|
|
19260
19450
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19261
19451
|
status_message?: string | null;
|
|
19452
|
+
toon_schema?: string;
|
|
19262
19453
|
updated_at?: string;
|
|
19263
19454
|
webhook_config?: string | number | boolean | {
|
|
19264
19455
|
[key: string]: unknown;
|
|
@@ -19353,6 +19544,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19353
19544
|
settings?: ConnectorZoomDiscriminatedConnectionData.Settings;
|
|
19354
19545
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19355
19546
|
status_message?: string | null;
|
|
19547
|
+
toon_schema?: string;
|
|
19356
19548
|
updated_at?: string;
|
|
19357
19549
|
webhook_config?: string | number | boolean | {
|
|
19358
19550
|
[key: string]: unknown;
|
|
@@ -19443,6 +19635,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19443
19635
|
settings?: ConnectorApolloDiscriminatedConnectionData.Settings;
|
|
19444
19636
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19445
19637
|
status_message?: string | null;
|
|
19638
|
+
toon_schema?: string;
|
|
19446
19639
|
updated_at?: string;
|
|
19447
19640
|
webhook_config?: string | number | boolean | {
|
|
19448
19641
|
[key: string]: unknown;
|
|
@@ -19494,6 +19687,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19494
19687
|
settings?: ConnectorCustomMcpDiscriminatedConnectionData.Settings;
|
|
19495
19688
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19496
19689
|
status_message?: string | null;
|
|
19690
|
+
toon_schema?: string;
|
|
19497
19691
|
updated_at?: string;
|
|
19498
19692
|
webhook_config?: string | number | boolean | {
|
|
19499
19693
|
[key: string]: unknown;
|
|
@@ -19623,6 +19817,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19623
19817
|
settings?: ConnectorDatabricksM2mDiscriminatedConnectionData.Settings;
|
|
19624
19818
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19625
19819
|
status_message?: string | null;
|
|
19820
|
+
toon_schema?: string;
|
|
19626
19821
|
updated_at?: string;
|
|
19627
19822
|
webhook_config?: string | number | boolean | {
|
|
19628
19823
|
[key: string]: unknown;
|
|
@@ -19709,6 +19904,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19709
19904
|
settings?: unknown;
|
|
19710
19905
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19711
19906
|
status_message?: string | null;
|
|
19907
|
+
toon_schema?: string;
|
|
19712
19908
|
updated_at?: string;
|
|
19713
19909
|
webhook_config?: string | number | boolean | {
|
|
19714
19910
|
[key: string]: unknown;
|
|
@@ -19757,6 +19953,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19757
19953
|
settings?: ConnectorPlaidDiscriminatedConnectionData.Settings;
|
|
19758
19954
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19759
19955
|
status_message?: string | null;
|
|
19956
|
+
toon_schema?: string;
|
|
19760
19957
|
updated_at?: string;
|
|
19761
19958
|
webhook_config?: string | number | boolean | {
|
|
19762
19959
|
[key: string]: unknown;
|
|
@@ -19813,6 +20010,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19813
20010
|
settings?: ConnectorPostgresDiscriminatedConnectionData.Settings;
|
|
19814
20011
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19815
20012
|
status_message?: string | null;
|
|
20013
|
+
toon_schema?: string;
|
|
19816
20014
|
updated_at?: string;
|
|
19817
20015
|
webhook_config?: string | number | boolean | {
|
|
19818
20016
|
[key: string]: unknown;
|
|
@@ -19864,6 +20062,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19864
20062
|
settings?: ConnectorResendDiscriminatedConnectionData.Settings;
|
|
19865
20063
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19866
20064
|
status_message?: string | null;
|
|
20065
|
+
toon_schema?: string;
|
|
19867
20066
|
updated_at?: string;
|
|
19868
20067
|
webhook_config?: string | number | boolean | {
|
|
19869
20068
|
[key: string]: unknown;
|
|
@@ -19919,6 +20118,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19919
20118
|
settings?: ConnectorSendgridDiscriminatedConnectionData.Settings;
|
|
19920
20119
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19921
20120
|
status_message?: string | null;
|
|
20121
|
+
toon_schema?: string;
|
|
19922
20122
|
updated_at?: string;
|
|
19923
20123
|
webhook_config?: string | number | boolean | {
|
|
19924
20124
|
[key: string]: unknown;
|
|
@@ -19974,6 +20174,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
19974
20174
|
settings?: ConnectorSlackAgentDiscriminatedConnectionData.Settings;
|
|
19975
20175
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19976
20176
|
status_message?: string | null;
|
|
20177
|
+
toon_schema?: string;
|
|
19977
20178
|
updated_at?: string;
|
|
19978
20179
|
webhook_config?: string | number | boolean | {
|
|
19979
20180
|
[key: string]: unknown;
|
|
@@ -20028,6 +20229,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
20028
20229
|
settings?: ConnectorSlackAgentBuilderDiscriminatedConnectionData.Settings;
|
|
20029
20230
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20030
20231
|
status_message?: string | null;
|
|
20232
|
+
toon_schema?: string;
|
|
20031
20233
|
updated_at?: string;
|
|
20032
20234
|
webhook_config?: string | number | boolean | {
|
|
20033
20235
|
[key: string]: unknown;
|
|
@@ -20193,6 +20395,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
20193
20395
|
settings?: ConnectorStripeAgentSandboxDiscriminatedConnectionData.Settings;
|
|
20194
20396
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20195
20397
|
status_message?: string | null;
|
|
20398
|
+
toon_schema?: string;
|
|
20196
20399
|
updated_at?: string;
|
|
20197
20400
|
webhook_config?: string | number | boolean | {
|
|
20198
20401
|
[key: string]: unknown;
|
|
@@ -20283,6 +20486,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
20283
20486
|
settings?: ConnectorTwilioDiscriminatedConnectionData.Settings;
|
|
20284
20487
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20285
20488
|
status_message?: string | null;
|
|
20489
|
+
toon_schema?: string;
|
|
20286
20490
|
updated_at?: string;
|
|
20287
20491
|
webhook_config?: string | number | boolean | {
|
|
20288
20492
|
[key: string]: unknown;
|
|
@@ -20340,6 +20544,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
20340
20544
|
settings?: ConnectorWorkatoDiscriminatedConnectionData.Settings;
|
|
20341
20545
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20342
20546
|
status_message?: string | null;
|
|
20547
|
+
toon_schema?: string;
|
|
20343
20548
|
updated_at?: string;
|
|
20344
20549
|
webhook_config?: string | number | boolean | {
|
|
20345
20550
|
[key: string]: unknown;
|
|
@@ -34260,10 +34465,10 @@ export interface DeleteAssignmentParams {
|
|
|
34260
34465
|
id: string;
|
|
34261
34466
|
}
|
|
34262
34467
|
export interface GetConectorConfigParams {
|
|
34263
|
-
expand?: Array<'connector' | 'connector.schemas' | 'connection_count'>;
|
|
34468
|
+
expand?: Array<'connector' | 'connector.schemas' | 'connector.agent_instructions' | 'connector.packages' | 'connection_count'>;
|
|
34264
34469
|
}
|
|
34265
34470
|
export interface GetConnectionParams {
|
|
34266
|
-
expand?: Array<'connector'>;
|
|
34471
|
+
expand?: Array<'connector' | 'toon_schema'>;
|
|
34267
34472
|
include_secrets?: boolean;
|
|
34268
34473
|
/**
|
|
34269
34474
|
* Controls credential refresh: none (never), force (always), or auto (when
|
|
@@ -34287,7 +34492,7 @@ export interface ListConnectionsParams extends OffsetPaginationParams {
|
|
|
34287
34492
|
/**
|
|
34288
34493
|
* Expand the response with additional optionals
|
|
34289
34494
|
*/
|
|
34290
|
-
expand?: Array<'connector'>;
|
|
34495
|
+
expand?: Array<'connector' | 'toon_schema'>;
|
|
34291
34496
|
include_secrets?: boolean;
|
|
34292
34497
|
/**
|
|
34293
34498
|
* Limit the number of items returned
|
|
@@ -34321,7 +34526,7 @@ export interface ListConnectorsParams extends OffsetPaginationParams {
|
|
|
34321
34526
|
}
|
|
34322
34527
|
export interface ListConnnectorConfigsParams extends OffsetPaginationParams {
|
|
34323
34528
|
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'ashby' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'custom-mcp' | 'databricks' | 'databricks-m2m' | 'discord' | 'dropbox' | 'elevenlabs' | 'figma' | 'github' | 'github-source-control' | 'gitlab-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'mobile-maps' | 'monday' | 'notion' | 'onedrive' | 'openai' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'revenuecat' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'sproutsocial' | 'stripe' | 'stripe-agent-sandbox' | 'todoist' | 'twilio' | 'workato' | 'x' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
34324
|
-
expand?: Array<'connector' | 'connector.schemas' | 'connection_count'>;
|
|
34529
|
+
expand?: Array<'connector' | 'connector.schemas' | 'connector.agent_instructions' | 'connector.packages' | 'connection_count'>;
|
|
34325
34530
|
/**
|
|
34326
34531
|
* Include disabled connector configs in the response. By default, disabled configs
|
|
34327
34532
|
* are filtered out.
|