@replit/connectors 0.5.0 → 0.6.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 +8 -0
- package/package.json +1 -1
- package/resources/top-level.d.mts +1113 -30
- package/resources/top-level.d.mts.map +1 -1
- package/resources/top-level.d.ts +1113 -30
- package/resources/top-level.d.ts.map +1 -1
- package/src/resources/top-level.ts +1331 -33
- 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
|
@@ -19,6 +19,7 @@ export interface Connector {
|
|
|
19
19
|
schemas?: Connector.Schemas;
|
|
20
20
|
scopes?: Array<Connector.Scope>;
|
|
21
21
|
stage?: 'alpha' | 'beta' | 'ga' | 'hidden';
|
|
22
|
+
webhook_registration_input?: unknown;
|
|
22
23
|
}
|
|
23
24
|
export declare namespace Connector {
|
|
24
25
|
interface Schemas {
|
|
@@ -29,6 +30,7 @@ export declare namespace Connector {
|
|
|
29
30
|
integration_data?: unknown;
|
|
30
31
|
pre_connect_input?: unknown;
|
|
31
32
|
webhook_events?: unknown;
|
|
33
|
+
webhook_registration_input?: unknown;
|
|
32
34
|
}
|
|
33
35
|
interface Scope {
|
|
34
36
|
scope: string;
|
|
@@ -105,6 +107,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
105
107
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
106
108
|
status_message?: string | null;
|
|
107
109
|
updated_at?: string;
|
|
110
|
+
webhook_config?: string | number | boolean | {
|
|
111
|
+
[key: string]: unknown;
|
|
112
|
+
} | Array<unknown> | null;
|
|
113
|
+
webhook_configured_at?: string | null;
|
|
114
|
+
webhook_identifier?: string | null;
|
|
108
115
|
}
|
|
109
116
|
namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
110
117
|
interface Settings {
|
|
@@ -135,6 +142,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
135
142
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
136
143
|
status_message?: string | null;
|
|
137
144
|
updated_at?: string;
|
|
145
|
+
webhook_config?: string | number | boolean | {
|
|
146
|
+
[key: string]: unknown;
|
|
147
|
+
} | Array<unknown> | null;
|
|
148
|
+
webhook_configured_at?: string | null;
|
|
149
|
+
webhook_identifier?: string | null;
|
|
138
150
|
}
|
|
139
151
|
namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
140
152
|
interface Settings {
|
|
@@ -204,6 +216,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
204
216
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
205
217
|
status_message?: string | null;
|
|
206
218
|
updated_at?: string;
|
|
219
|
+
webhook_config?: string | number | boolean | {
|
|
220
|
+
[key: string]: unknown;
|
|
221
|
+
} | Array<unknown> | null;
|
|
222
|
+
webhook_configured_at?: string | null;
|
|
223
|
+
webhook_identifier?: string | null;
|
|
207
224
|
}
|
|
208
225
|
namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
209
226
|
interface Settings {
|
|
@@ -234,6 +251,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
234
251
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
235
252
|
status_message?: string | null;
|
|
236
253
|
updated_at?: string;
|
|
254
|
+
webhook_config?: string | number | boolean | {
|
|
255
|
+
[key: string]: unknown;
|
|
256
|
+
} | Array<unknown> | null;
|
|
257
|
+
webhook_configured_at?: string | null;
|
|
258
|
+
webhook_identifier?: string | null;
|
|
237
259
|
}
|
|
238
260
|
namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
239
261
|
interface Settings {
|
|
@@ -303,10 +325,20 @@ export declare namespace CreateConnectionResponse {
|
|
|
303
325
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
304
326
|
status_message?: string | null;
|
|
305
327
|
updated_at?: string;
|
|
328
|
+
webhook_config?: string | number | boolean | {
|
|
329
|
+
[key: string]: unknown;
|
|
330
|
+
} | Array<unknown> | null;
|
|
331
|
+
webhook_configured_at?: string | null;
|
|
332
|
+
webhook_identifier?: string | null;
|
|
306
333
|
}
|
|
307
334
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
308
335
|
interface Settings {
|
|
309
336
|
oauth: Settings.OAuth;
|
|
337
|
+
/**
|
|
338
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
339
|
+
* API calls to BigQuery.
|
|
340
|
+
*/
|
|
341
|
+
project_id: string;
|
|
310
342
|
/**
|
|
311
343
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
312
344
|
* for backward compatibility until we remove the oauth field
|
|
@@ -372,6 +404,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
372
404
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
373
405
|
status_message?: string | null;
|
|
374
406
|
updated_at?: string;
|
|
407
|
+
webhook_config?: string | number | boolean | {
|
|
408
|
+
[key: string]: unknown;
|
|
409
|
+
} | Array<unknown> | null;
|
|
410
|
+
webhook_configured_at?: string | null;
|
|
411
|
+
webhook_identifier?: string | null;
|
|
375
412
|
}
|
|
376
413
|
namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
377
414
|
interface Settings {
|
|
@@ -441,6 +478,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
441
478
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
442
479
|
status_message?: string | null;
|
|
443
480
|
updated_at?: string;
|
|
481
|
+
webhook_config?: string | number | boolean | {
|
|
482
|
+
[key: string]: unknown;
|
|
483
|
+
} | Array<unknown> | null;
|
|
484
|
+
webhook_configured_at?: string | null;
|
|
485
|
+
webhook_identifier?: string | null;
|
|
444
486
|
}
|
|
445
487
|
namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
446
488
|
interface Settings {
|
|
@@ -510,6 +552,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
510
552
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
511
553
|
status_message?: string | null;
|
|
512
554
|
updated_at?: string;
|
|
555
|
+
webhook_config?: string | number | boolean | {
|
|
556
|
+
[key: string]: unknown;
|
|
557
|
+
} | Array<unknown> | null;
|
|
558
|
+
webhook_configured_at?: string | null;
|
|
559
|
+
webhook_identifier?: string | null;
|
|
513
560
|
}
|
|
514
561
|
namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
515
562
|
interface Settings {
|
|
@@ -579,6 +626,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
579
626
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
580
627
|
status_message?: string | null;
|
|
581
628
|
updated_at?: string;
|
|
629
|
+
webhook_config?: string | number | boolean | {
|
|
630
|
+
[key: string]: unknown;
|
|
631
|
+
} | Array<unknown> | null;
|
|
632
|
+
webhook_configured_at?: string | null;
|
|
633
|
+
webhook_identifier?: string | null;
|
|
582
634
|
}
|
|
583
635
|
namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
584
636
|
interface Settings {
|
|
@@ -648,6 +700,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
648
700
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
649
701
|
status_message?: string | null;
|
|
650
702
|
updated_at?: string;
|
|
703
|
+
webhook_config?: string | number | boolean | {
|
|
704
|
+
[key: string]: unknown;
|
|
705
|
+
} | Array<unknown> | null;
|
|
706
|
+
webhook_configured_at?: string | null;
|
|
707
|
+
webhook_identifier?: string | null;
|
|
651
708
|
}
|
|
652
709
|
namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
653
710
|
interface Settings {
|
|
@@ -717,6 +774,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
717
774
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
718
775
|
status_message?: string | null;
|
|
719
776
|
updated_at?: string;
|
|
777
|
+
webhook_config?: string | number | boolean | {
|
|
778
|
+
[key: string]: unknown;
|
|
779
|
+
} | Array<unknown> | null;
|
|
780
|
+
webhook_configured_at?: string | null;
|
|
781
|
+
webhook_identifier?: string | null;
|
|
720
782
|
}
|
|
721
783
|
namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
722
784
|
interface Settings {
|
|
@@ -790,16 +852,26 @@ export declare namespace CreateConnectionResponse {
|
|
|
790
852
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
791
853
|
status_message?: string | null;
|
|
792
854
|
updated_at?: string;
|
|
855
|
+
webhook_config?: string | number | boolean | {
|
|
856
|
+
[key: string]: unknown;
|
|
857
|
+
} | Array<unknown> | null;
|
|
858
|
+
webhook_configured_at?: string | null;
|
|
859
|
+
webhook_identifier?: string | null;
|
|
793
860
|
}
|
|
794
861
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
795
862
|
interface Settings {
|
|
796
863
|
/**
|
|
797
|
-
*
|
|
798
|
-
*
|
|
799
|
-
* .cloud.databricks.com
|
|
864
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
865
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
800
866
|
*/
|
|
801
|
-
|
|
867
|
+
http_path: string;
|
|
802
868
|
oauth: Settings.OAuth;
|
|
869
|
+
/**
|
|
870
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
871
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
872
|
+
* Server hostname value.
|
|
873
|
+
*/
|
|
874
|
+
server_hostname: string;
|
|
803
875
|
/**
|
|
804
876
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
805
877
|
* for backward compatibility until we remove the oauth field
|
|
@@ -865,6 +937,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
865
937
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
866
938
|
status_message?: string | null;
|
|
867
939
|
updated_at?: string;
|
|
940
|
+
webhook_config?: string | number | boolean | {
|
|
941
|
+
[key: string]: unknown;
|
|
942
|
+
} | Array<unknown> | null;
|
|
943
|
+
webhook_configured_at?: string | null;
|
|
944
|
+
webhook_identifier?: string | null;
|
|
868
945
|
}
|
|
869
946
|
namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
870
947
|
interface Settings {
|
|
@@ -934,6 +1011,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
934
1011
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
935
1012
|
status_message?: string | null;
|
|
936
1013
|
updated_at?: string;
|
|
1014
|
+
webhook_config?: string | number | boolean | {
|
|
1015
|
+
[key: string]: unknown;
|
|
1016
|
+
} | Array<unknown> | null;
|
|
1017
|
+
webhook_configured_at?: string | null;
|
|
1018
|
+
webhook_identifier?: string | null;
|
|
937
1019
|
}
|
|
938
1020
|
namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
939
1021
|
interface Settings {
|
|
@@ -1003,6 +1085,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1003
1085
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1004
1086
|
status_message?: string | null;
|
|
1005
1087
|
updated_at?: string;
|
|
1088
|
+
webhook_config?: string | number | boolean | {
|
|
1089
|
+
[key: string]: unknown;
|
|
1090
|
+
} | Array<unknown> | null;
|
|
1091
|
+
webhook_configured_at?: string | null;
|
|
1092
|
+
webhook_identifier?: string | null;
|
|
1006
1093
|
}
|
|
1007
1094
|
namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
1008
1095
|
interface Settings {
|
|
@@ -1072,6 +1159,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1072
1159
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1073
1160
|
status_message?: string | null;
|
|
1074
1161
|
updated_at?: string;
|
|
1162
|
+
webhook_config?: string | number | boolean | {
|
|
1163
|
+
[key: string]: unknown;
|
|
1164
|
+
} | Array<unknown> | null;
|
|
1165
|
+
webhook_configured_at?: string | null;
|
|
1166
|
+
webhook_identifier?: string | null;
|
|
1075
1167
|
}
|
|
1076
1168
|
namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
1077
1169
|
interface Settings {
|
|
@@ -1141,6 +1233,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1141
1233
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1142
1234
|
status_message?: string | null;
|
|
1143
1235
|
updated_at?: string;
|
|
1236
|
+
webhook_config?: string | number | boolean | {
|
|
1237
|
+
[key: string]: unknown;
|
|
1238
|
+
} | Array<unknown> | null;
|
|
1239
|
+
webhook_configured_at?: string | null;
|
|
1240
|
+
webhook_identifier?: string | null;
|
|
1144
1241
|
}
|
|
1145
1242
|
namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
1146
1243
|
interface Settings {
|
|
@@ -1210,6 +1307,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1210
1307
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1211
1308
|
status_message?: string | null;
|
|
1212
1309
|
updated_at?: string;
|
|
1310
|
+
webhook_config?: string | number | boolean | {
|
|
1311
|
+
[key: string]: unknown;
|
|
1312
|
+
} | Array<unknown> | null;
|
|
1313
|
+
webhook_configured_at?: string | null;
|
|
1314
|
+
webhook_identifier?: string | null;
|
|
1213
1315
|
}
|
|
1214
1316
|
namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
1215
1317
|
interface Settings {
|
|
@@ -1279,6 +1381,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1279
1381
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1280
1382
|
status_message?: string | null;
|
|
1281
1383
|
updated_at?: string;
|
|
1384
|
+
webhook_config?: string | number | boolean | {
|
|
1385
|
+
[key: string]: unknown;
|
|
1386
|
+
} | Array<unknown> | null;
|
|
1387
|
+
webhook_configured_at?: string | null;
|
|
1388
|
+
webhook_identifier?: string | null;
|
|
1282
1389
|
}
|
|
1283
1390
|
namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
1284
1391
|
interface Settings {
|
|
@@ -1348,6 +1455,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1348
1455
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1349
1456
|
status_message?: string | null;
|
|
1350
1457
|
updated_at?: string;
|
|
1458
|
+
webhook_config?: string | number | boolean | {
|
|
1459
|
+
[key: string]: unknown;
|
|
1460
|
+
} | Array<unknown> | null;
|
|
1461
|
+
webhook_configured_at?: string | null;
|
|
1462
|
+
webhook_identifier?: string | null;
|
|
1351
1463
|
}
|
|
1352
1464
|
namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
1353
1465
|
interface Settings {
|
|
@@ -1417,6 +1529,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1417
1529
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1418
1530
|
status_message?: string | null;
|
|
1419
1531
|
updated_at?: string;
|
|
1532
|
+
webhook_config?: string | number | boolean | {
|
|
1533
|
+
[key: string]: unknown;
|
|
1534
|
+
} | Array<unknown> | null;
|
|
1535
|
+
webhook_configured_at?: string | null;
|
|
1536
|
+
webhook_identifier?: string | null;
|
|
1420
1537
|
}
|
|
1421
1538
|
namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
1422
1539
|
interface Settings {
|
|
@@ -1486,6 +1603,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1486
1603
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1487
1604
|
status_message?: string | null;
|
|
1488
1605
|
updated_at?: string;
|
|
1606
|
+
webhook_config?: string | number | boolean | {
|
|
1607
|
+
[key: string]: unknown;
|
|
1608
|
+
} | Array<unknown> | null;
|
|
1609
|
+
webhook_configured_at?: string | null;
|
|
1610
|
+
webhook_identifier?: string | null;
|
|
1489
1611
|
}
|
|
1490
1612
|
namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
1491
1613
|
interface Settings {
|
|
@@ -1555,6 +1677,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1555
1677
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1556
1678
|
status_message?: string | null;
|
|
1557
1679
|
updated_at?: string;
|
|
1680
|
+
webhook_config?: string | number | boolean | {
|
|
1681
|
+
[key: string]: unknown;
|
|
1682
|
+
} | Array<unknown> | null;
|
|
1683
|
+
webhook_configured_at?: string | null;
|
|
1684
|
+
webhook_identifier?: string | null;
|
|
1558
1685
|
}
|
|
1559
1686
|
namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
1560
1687
|
interface Settings {
|
|
@@ -1624,6 +1751,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1624
1751
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1625
1752
|
status_message?: string | null;
|
|
1626
1753
|
updated_at?: string;
|
|
1754
|
+
webhook_config?: string | number | boolean | {
|
|
1755
|
+
[key: string]: unknown;
|
|
1756
|
+
} | Array<unknown> | null;
|
|
1757
|
+
webhook_configured_at?: string | null;
|
|
1758
|
+
webhook_identifier?: string | null;
|
|
1627
1759
|
}
|
|
1628
1760
|
namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
1629
1761
|
interface Settings {
|
|
@@ -1693,6 +1825,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1693
1825
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1694
1826
|
status_message?: string | null;
|
|
1695
1827
|
updated_at?: string;
|
|
1828
|
+
webhook_config?: string | number | boolean | {
|
|
1829
|
+
[key: string]: unknown;
|
|
1830
|
+
} | Array<unknown> | null;
|
|
1831
|
+
webhook_configured_at?: string | null;
|
|
1832
|
+
webhook_identifier?: string | null;
|
|
1696
1833
|
}
|
|
1697
1834
|
namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
1698
1835
|
interface Settings {
|
|
@@ -1762,6 +1899,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1762
1899
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1763
1900
|
status_message?: string | null;
|
|
1764
1901
|
updated_at?: string;
|
|
1902
|
+
webhook_config?: string | number | boolean | {
|
|
1903
|
+
[key: string]: unknown;
|
|
1904
|
+
} | Array<unknown> | null;
|
|
1905
|
+
webhook_configured_at?: string | null;
|
|
1906
|
+
webhook_identifier?: string | null;
|
|
1765
1907
|
}
|
|
1766
1908
|
namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
1767
1909
|
interface Settings {
|
|
@@ -1835,6 +1977,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1835
1977
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1836
1978
|
status_message?: string | null;
|
|
1837
1979
|
updated_at?: string;
|
|
1980
|
+
webhook_config?: string | number | boolean | {
|
|
1981
|
+
[key: string]: unknown;
|
|
1982
|
+
} | Array<unknown> | null;
|
|
1983
|
+
webhook_configured_at?: string | null;
|
|
1984
|
+
webhook_identifier?: string | null;
|
|
1838
1985
|
}
|
|
1839
1986
|
namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
1840
1987
|
interface Settings {
|
|
@@ -1904,6 +2051,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1904
2051
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1905
2052
|
status_message?: string | null;
|
|
1906
2053
|
updated_at?: string;
|
|
2054
|
+
webhook_config?: string | number | boolean | {
|
|
2055
|
+
[key: string]: unknown;
|
|
2056
|
+
} | Array<unknown> | null;
|
|
2057
|
+
webhook_configured_at?: string | null;
|
|
2058
|
+
webhook_identifier?: string | null;
|
|
1907
2059
|
}
|
|
1908
2060
|
namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
1909
2061
|
interface Settings {
|
|
@@ -1973,6 +2125,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1973
2125
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1974
2126
|
status_message?: string | null;
|
|
1975
2127
|
updated_at?: string;
|
|
2128
|
+
webhook_config?: string | number | boolean | {
|
|
2129
|
+
[key: string]: unknown;
|
|
2130
|
+
} | Array<unknown> | null;
|
|
2131
|
+
webhook_configured_at?: string | null;
|
|
2132
|
+
webhook_identifier?: string | null;
|
|
1976
2133
|
}
|
|
1977
2134
|
namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
1978
2135
|
interface Settings {
|
|
@@ -2042,6 +2199,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2042
2199
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2043
2200
|
status_message?: string | null;
|
|
2044
2201
|
updated_at?: string;
|
|
2202
|
+
webhook_config?: string | number | boolean | {
|
|
2203
|
+
[key: string]: unknown;
|
|
2204
|
+
} | Array<unknown> | null;
|
|
2205
|
+
webhook_configured_at?: string | null;
|
|
2206
|
+
webhook_identifier?: string | null;
|
|
2045
2207
|
}
|
|
2046
2208
|
namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
2047
2209
|
interface Settings {
|
|
@@ -2111,6 +2273,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2111
2273
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2112
2274
|
status_message?: string | null;
|
|
2113
2275
|
updated_at?: string;
|
|
2276
|
+
webhook_config?: string | number | boolean | {
|
|
2277
|
+
[key: string]: unknown;
|
|
2278
|
+
} | Array<unknown> | null;
|
|
2279
|
+
webhook_configured_at?: string | null;
|
|
2280
|
+
webhook_identifier?: string | null;
|
|
2114
2281
|
}
|
|
2115
2282
|
namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
2116
2283
|
interface Settings {
|
|
@@ -2180,6 +2347,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2180
2347
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2181
2348
|
status_message?: string | null;
|
|
2182
2349
|
updated_at?: string;
|
|
2350
|
+
webhook_config?: string | number | boolean | {
|
|
2351
|
+
[key: string]: unknown;
|
|
2352
|
+
} | Array<unknown> | null;
|
|
2353
|
+
webhook_configured_at?: string | null;
|
|
2354
|
+
webhook_identifier?: string | null;
|
|
2183
2355
|
}
|
|
2184
2356
|
namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
2185
2357
|
interface Settings {
|
|
@@ -2253,6 +2425,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2253
2425
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2254
2426
|
status_message?: string | null;
|
|
2255
2427
|
updated_at?: string;
|
|
2428
|
+
webhook_config?: string | number | boolean | {
|
|
2429
|
+
[key: string]: unknown;
|
|
2430
|
+
} | Array<unknown> | null;
|
|
2431
|
+
webhook_configured_at?: string | null;
|
|
2432
|
+
webhook_identifier?: string | null;
|
|
2256
2433
|
}
|
|
2257
2434
|
namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
2258
2435
|
interface Settings {
|
|
@@ -2322,6 +2499,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2322
2499
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2323
2500
|
status_message?: string | null;
|
|
2324
2501
|
updated_at?: string;
|
|
2502
|
+
webhook_config?: string | number | boolean | {
|
|
2503
|
+
[key: string]: unknown;
|
|
2504
|
+
} | Array<unknown> | null;
|
|
2505
|
+
webhook_configured_at?: string | null;
|
|
2506
|
+
webhook_identifier?: string | null;
|
|
2325
2507
|
}
|
|
2326
2508
|
namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
2327
2509
|
interface Settings {
|
|
@@ -2391,6 +2573,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2391
2573
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2392
2574
|
status_message?: string | null;
|
|
2393
2575
|
updated_at?: string;
|
|
2576
|
+
webhook_config?: string | number | boolean | {
|
|
2577
|
+
[key: string]: unknown;
|
|
2578
|
+
} | Array<unknown> | null;
|
|
2579
|
+
webhook_configured_at?: string | null;
|
|
2580
|
+
webhook_identifier?: string | null;
|
|
2394
2581
|
}
|
|
2395
2582
|
namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
2396
2583
|
interface Settings {
|
|
@@ -2460,6 +2647,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2460
2647
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2461
2648
|
status_message?: string | null;
|
|
2462
2649
|
updated_at?: string;
|
|
2650
|
+
webhook_config?: string | number | boolean | {
|
|
2651
|
+
[key: string]: unknown;
|
|
2652
|
+
} | Array<unknown> | null;
|
|
2653
|
+
webhook_configured_at?: string | null;
|
|
2654
|
+
webhook_identifier?: string | null;
|
|
2463
2655
|
}
|
|
2464
2656
|
namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
2465
2657
|
interface Settings {
|
|
@@ -2534,6 +2726,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2534
2726
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2535
2727
|
status_message?: string | null;
|
|
2536
2728
|
updated_at?: string;
|
|
2729
|
+
webhook_config?: string | number | boolean | {
|
|
2730
|
+
[key: string]: unknown;
|
|
2731
|
+
} | Array<unknown> | null;
|
|
2732
|
+
webhook_configured_at?: string | null;
|
|
2733
|
+
webhook_identifier?: string | null;
|
|
2537
2734
|
}
|
|
2538
2735
|
namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
2539
2736
|
interface Settings {
|
|
@@ -2603,6 +2800,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2603
2800
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2604
2801
|
status_message?: string | null;
|
|
2605
2802
|
updated_at?: string;
|
|
2803
|
+
webhook_config?: string | number | boolean | {
|
|
2804
|
+
[key: string]: unknown;
|
|
2805
|
+
} | Array<unknown> | null;
|
|
2806
|
+
webhook_configured_at?: string | null;
|
|
2807
|
+
webhook_identifier?: string | null;
|
|
2606
2808
|
}
|
|
2607
2809
|
namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
2608
2810
|
interface Settings {
|
|
@@ -2672,6 +2874,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2672
2874
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2673
2875
|
status_message?: string | null;
|
|
2674
2876
|
updated_at?: string;
|
|
2877
|
+
webhook_config?: string | number | boolean | {
|
|
2878
|
+
[key: string]: unknown;
|
|
2879
|
+
} | Array<unknown> | null;
|
|
2880
|
+
webhook_configured_at?: string | null;
|
|
2881
|
+
webhook_identifier?: string | null;
|
|
2675
2882
|
}
|
|
2676
2883
|
namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
2677
2884
|
interface Settings {
|
|
@@ -2745,6 +2952,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2745
2952
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2746
2953
|
status_message?: string | null;
|
|
2747
2954
|
updated_at?: string;
|
|
2955
|
+
webhook_config?: string | number | boolean | {
|
|
2956
|
+
[key: string]: unknown;
|
|
2957
|
+
} | Array<unknown> | null;
|
|
2958
|
+
webhook_configured_at?: string | null;
|
|
2959
|
+
webhook_identifier?: string | null;
|
|
2748
2960
|
}
|
|
2749
2961
|
namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
2750
2962
|
interface Settings {
|
|
@@ -2814,6 +3026,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2814
3026
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2815
3027
|
status_message?: string | null;
|
|
2816
3028
|
updated_at?: string;
|
|
3029
|
+
webhook_config?: string | number | boolean | {
|
|
3030
|
+
[key: string]: unknown;
|
|
3031
|
+
} | Array<unknown> | null;
|
|
3032
|
+
webhook_configured_at?: string | null;
|
|
3033
|
+
webhook_identifier?: string | null;
|
|
2817
3034
|
}
|
|
2818
3035
|
namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
2819
3036
|
interface Settings {
|
|
@@ -2844,6 +3061,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2844
3061
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2845
3062
|
status_message?: string | null;
|
|
2846
3063
|
updated_at?: string;
|
|
3064
|
+
webhook_config?: string | number | boolean | {
|
|
3065
|
+
[key: string]: unknown;
|
|
3066
|
+
} | Array<unknown> | null;
|
|
3067
|
+
webhook_configured_at?: string | null;
|
|
3068
|
+
webhook_identifier?: string | null;
|
|
2847
3069
|
}
|
|
2848
3070
|
namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
2849
3071
|
interface Settings {
|
|
@@ -2879,6 +3101,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2879
3101
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2880
3102
|
status_message?: string | null;
|
|
2881
3103
|
updated_at?: string;
|
|
3104
|
+
webhook_config?: string | number | boolean | {
|
|
3105
|
+
[key: string]: unknown;
|
|
3106
|
+
} | Array<unknown> | null;
|
|
3107
|
+
webhook_configured_at?: string | null;
|
|
3108
|
+
webhook_identifier?: string | null;
|
|
2882
3109
|
}
|
|
2883
3110
|
namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
2884
3111
|
interface Settings {
|
|
@@ -2909,6 +3136,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2909
3136
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2910
3137
|
status_message?: string | null;
|
|
2911
3138
|
updated_at?: string;
|
|
3139
|
+
webhook_config?: string | number | boolean | {
|
|
3140
|
+
[key: string]: unknown;
|
|
3141
|
+
} | Array<unknown> | null;
|
|
3142
|
+
webhook_configured_at?: string | null;
|
|
3143
|
+
webhook_identifier?: string | null;
|
|
2912
3144
|
}
|
|
2913
3145
|
namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
2914
3146
|
interface Settings {
|
|
@@ -2943,6 +3175,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2943
3175
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2944
3176
|
status_message?: string | null;
|
|
2945
3177
|
updated_at?: string;
|
|
3178
|
+
webhook_config?: string | number | boolean | {
|
|
3179
|
+
[key: string]: unknown;
|
|
3180
|
+
} | Array<unknown> | null;
|
|
3181
|
+
webhook_configured_at?: string | null;
|
|
3182
|
+
webhook_identifier?: string | null;
|
|
2946
3183
|
}
|
|
2947
3184
|
namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
2948
3185
|
interface Settings {
|
|
@@ -2977,6 +3214,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2977
3214
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2978
3215
|
status_message?: string | null;
|
|
2979
3216
|
updated_at?: string;
|
|
3217
|
+
webhook_config?: string | number | boolean | {
|
|
3218
|
+
[key: string]: unknown;
|
|
3219
|
+
} | Array<unknown> | null;
|
|
3220
|
+
webhook_configured_at?: string | null;
|
|
3221
|
+
webhook_identifier?: string | null;
|
|
2980
3222
|
}
|
|
2981
3223
|
namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
2982
3224
|
interface Settings {
|
|
@@ -3010,6 +3252,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3010
3252
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3011
3253
|
status_message?: string | null;
|
|
3012
3254
|
updated_at?: string;
|
|
3255
|
+
webhook_config?: string | number | boolean | {
|
|
3256
|
+
[key: string]: unknown;
|
|
3257
|
+
} | Array<unknown> | null;
|
|
3258
|
+
webhook_configured_at?: string | null;
|
|
3259
|
+
webhook_identifier?: string | null;
|
|
3013
3260
|
}
|
|
3014
3261
|
namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
3015
3262
|
interface Settings {
|
|
@@ -3154,6 +3401,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3154
3401
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3155
3402
|
status_message?: string | null;
|
|
3156
3403
|
updated_at?: string;
|
|
3404
|
+
webhook_config?: string | number | boolean | {
|
|
3405
|
+
[key: string]: unknown;
|
|
3406
|
+
} | Array<unknown> | null;
|
|
3407
|
+
webhook_configured_at?: string | null;
|
|
3408
|
+
webhook_identifier?: string | null;
|
|
3157
3409
|
}
|
|
3158
3410
|
namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
3159
3411
|
interface Settings {
|
|
@@ -3223,6 +3475,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3223
3475
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3224
3476
|
status_message?: string | null;
|
|
3225
3477
|
updated_at?: string;
|
|
3478
|
+
webhook_config?: string | number | boolean | {
|
|
3479
|
+
[key: string]: unknown;
|
|
3480
|
+
} | Array<unknown> | null;
|
|
3481
|
+
webhook_configured_at?: string | null;
|
|
3482
|
+
webhook_identifier?: string | null;
|
|
3226
3483
|
}
|
|
3227
3484
|
namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
3228
3485
|
interface Settings {
|
|
@@ -3292,6 +3549,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3292
3549
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3293
3550
|
status_message?: string | null;
|
|
3294
3551
|
updated_at?: string;
|
|
3552
|
+
webhook_config?: string | number | boolean | {
|
|
3553
|
+
[key: string]: unknown;
|
|
3554
|
+
} | Array<unknown> | null;
|
|
3555
|
+
webhook_configured_at?: string | null;
|
|
3556
|
+
webhook_identifier?: string | null;
|
|
3295
3557
|
}
|
|
3296
3558
|
namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
3297
3559
|
interface Settings {
|
|
@@ -3328,6 +3590,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3328
3590
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3329
3591
|
status_message?: string | null;
|
|
3330
3592
|
updated_at?: string;
|
|
3593
|
+
webhook_config?: string | number | boolean | {
|
|
3594
|
+
[key: string]: unknown;
|
|
3595
|
+
} | Array<unknown> | null;
|
|
3596
|
+
webhook_configured_at?: string | null;
|
|
3597
|
+
webhook_identifier?: string | null;
|
|
3331
3598
|
}
|
|
3332
3599
|
namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
3333
3600
|
interface Settings {
|
|
@@ -7375,6 +7642,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7375
7642
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7376
7643
|
status_message?: string | null;
|
|
7377
7644
|
updated_at?: string;
|
|
7645
|
+
webhook_config?: string | number | boolean | {
|
|
7646
|
+
[key: string]: unknown;
|
|
7647
|
+
} | Array<unknown> | null;
|
|
7648
|
+
webhook_configured_at?: string | null;
|
|
7649
|
+
webhook_identifier?: string | null;
|
|
7378
7650
|
}
|
|
7379
7651
|
namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
7380
7652
|
interface Settings {
|
|
@@ -7405,6 +7677,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7405
7677
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7406
7678
|
status_message?: string | null;
|
|
7407
7679
|
updated_at?: string;
|
|
7680
|
+
webhook_config?: string | number | boolean | {
|
|
7681
|
+
[key: string]: unknown;
|
|
7682
|
+
} | Array<unknown> | null;
|
|
7683
|
+
webhook_configured_at?: string | null;
|
|
7684
|
+
webhook_identifier?: string | null;
|
|
7408
7685
|
}
|
|
7409
7686
|
namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
7410
7687
|
interface Settings {
|
|
@@ -7474,6 +7751,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7474
7751
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7475
7752
|
status_message?: string | null;
|
|
7476
7753
|
updated_at?: string;
|
|
7754
|
+
webhook_config?: string | number | boolean | {
|
|
7755
|
+
[key: string]: unknown;
|
|
7756
|
+
} | Array<unknown> | null;
|
|
7757
|
+
webhook_configured_at?: string | null;
|
|
7758
|
+
webhook_identifier?: string | null;
|
|
7477
7759
|
}
|
|
7478
7760
|
namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
7479
7761
|
interface Settings {
|
|
@@ -7504,6 +7786,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7504
7786
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7505
7787
|
status_message?: string | null;
|
|
7506
7788
|
updated_at?: string;
|
|
7789
|
+
webhook_config?: string | number | boolean | {
|
|
7790
|
+
[key: string]: unknown;
|
|
7791
|
+
} | Array<unknown> | null;
|
|
7792
|
+
webhook_configured_at?: string | null;
|
|
7793
|
+
webhook_identifier?: string | null;
|
|
7507
7794
|
}
|
|
7508
7795
|
namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
7509
7796
|
interface Settings {
|
|
@@ -7573,10 +7860,20 @@ export declare namespace GetConnectionResponse {
|
|
|
7573
7860
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7574
7861
|
status_message?: string | null;
|
|
7575
7862
|
updated_at?: string;
|
|
7863
|
+
webhook_config?: string | number | boolean | {
|
|
7864
|
+
[key: string]: unknown;
|
|
7865
|
+
} | Array<unknown> | null;
|
|
7866
|
+
webhook_configured_at?: string | null;
|
|
7867
|
+
webhook_identifier?: string | null;
|
|
7576
7868
|
}
|
|
7577
7869
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
7578
7870
|
interface Settings {
|
|
7579
7871
|
oauth: Settings.OAuth;
|
|
7872
|
+
/**
|
|
7873
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
7874
|
+
* API calls to BigQuery.
|
|
7875
|
+
*/
|
|
7876
|
+
project_id: string;
|
|
7580
7877
|
/**
|
|
7581
7878
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
7582
7879
|
* for backward compatibility until we remove the oauth field
|
|
@@ -7642,6 +7939,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7642
7939
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7643
7940
|
status_message?: string | null;
|
|
7644
7941
|
updated_at?: string;
|
|
7942
|
+
webhook_config?: string | number | boolean | {
|
|
7943
|
+
[key: string]: unknown;
|
|
7944
|
+
} | Array<unknown> | null;
|
|
7945
|
+
webhook_configured_at?: string | null;
|
|
7946
|
+
webhook_identifier?: string | null;
|
|
7645
7947
|
}
|
|
7646
7948
|
namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
7647
7949
|
interface Settings {
|
|
@@ -7711,6 +8013,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7711
8013
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7712
8014
|
status_message?: string | null;
|
|
7713
8015
|
updated_at?: string;
|
|
8016
|
+
webhook_config?: string | number | boolean | {
|
|
8017
|
+
[key: string]: unknown;
|
|
8018
|
+
} | Array<unknown> | null;
|
|
8019
|
+
webhook_configured_at?: string | null;
|
|
8020
|
+
webhook_identifier?: string | null;
|
|
7714
8021
|
}
|
|
7715
8022
|
namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
7716
8023
|
interface Settings {
|
|
@@ -7780,6 +8087,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7780
8087
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7781
8088
|
status_message?: string | null;
|
|
7782
8089
|
updated_at?: string;
|
|
8090
|
+
webhook_config?: string | number | boolean | {
|
|
8091
|
+
[key: string]: unknown;
|
|
8092
|
+
} | Array<unknown> | null;
|
|
8093
|
+
webhook_configured_at?: string | null;
|
|
8094
|
+
webhook_identifier?: string | null;
|
|
7783
8095
|
}
|
|
7784
8096
|
namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
7785
8097
|
interface Settings {
|
|
@@ -7849,6 +8161,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7849
8161
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7850
8162
|
status_message?: string | null;
|
|
7851
8163
|
updated_at?: string;
|
|
8164
|
+
webhook_config?: string | number | boolean | {
|
|
8165
|
+
[key: string]: unknown;
|
|
8166
|
+
} | Array<unknown> | null;
|
|
8167
|
+
webhook_configured_at?: string | null;
|
|
8168
|
+
webhook_identifier?: string | null;
|
|
7852
8169
|
}
|
|
7853
8170
|
namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
7854
8171
|
interface Settings {
|
|
@@ -7918,6 +8235,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7918
8235
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7919
8236
|
status_message?: string | null;
|
|
7920
8237
|
updated_at?: string;
|
|
8238
|
+
webhook_config?: string | number | boolean | {
|
|
8239
|
+
[key: string]: unknown;
|
|
8240
|
+
} | Array<unknown> | null;
|
|
8241
|
+
webhook_configured_at?: string | null;
|
|
8242
|
+
webhook_identifier?: string | null;
|
|
7921
8243
|
}
|
|
7922
8244
|
namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
7923
8245
|
interface Settings {
|
|
@@ -7987,6 +8309,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7987
8309
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7988
8310
|
status_message?: string | null;
|
|
7989
8311
|
updated_at?: string;
|
|
8312
|
+
webhook_config?: string | number | boolean | {
|
|
8313
|
+
[key: string]: unknown;
|
|
8314
|
+
} | Array<unknown> | null;
|
|
8315
|
+
webhook_configured_at?: string | null;
|
|
8316
|
+
webhook_identifier?: string | null;
|
|
7990
8317
|
}
|
|
7991
8318
|
namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
7992
8319
|
interface Settings {
|
|
@@ -8060,16 +8387,26 @@ export declare namespace GetConnectionResponse {
|
|
|
8060
8387
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8061
8388
|
status_message?: string | null;
|
|
8062
8389
|
updated_at?: string;
|
|
8390
|
+
webhook_config?: string | number | boolean | {
|
|
8391
|
+
[key: string]: unknown;
|
|
8392
|
+
} | Array<unknown> | null;
|
|
8393
|
+
webhook_configured_at?: string | null;
|
|
8394
|
+
webhook_identifier?: string | null;
|
|
8063
8395
|
}
|
|
8064
8396
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
8065
8397
|
interface Settings {
|
|
8066
8398
|
/**
|
|
8067
|
-
*
|
|
8068
|
-
*
|
|
8069
|
-
* .cloud.databricks.com
|
|
8399
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
8400
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
8070
8401
|
*/
|
|
8071
|
-
|
|
8402
|
+
http_path: string;
|
|
8072
8403
|
oauth: Settings.OAuth;
|
|
8404
|
+
/**
|
|
8405
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
8406
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
8407
|
+
* Server hostname value.
|
|
8408
|
+
*/
|
|
8409
|
+
server_hostname: string;
|
|
8073
8410
|
/**
|
|
8074
8411
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
8075
8412
|
* for backward compatibility until we remove the oauth field
|
|
@@ -8135,6 +8472,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8135
8472
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8136
8473
|
status_message?: string | null;
|
|
8137
8474
|
updated_at?: string;
|
|
8475
|
+
webhook_config?: string | number | boolean | {
|
|
8476
|
+
[key: string]: unknown;
|
|
8477
|
+
} | Array<unknown> | null;
|
|
8478
|
+
webhook_configured_at?: string | null;
|
|
8479
|
+
webhook_identifier?: string | null;
|
|
8138
8480
|
}
|
|
8139
8481
|
namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
8140
8482
|
interface Settings {
|
|
@@ -8204,6 +8546,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8204
8546
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8205
8547
|
status_message?: string | null;
|
|
8206
8548
|
updated_at?: string;
|
|
8549
|
+
webhook_config?: string | number | boolean | {
|
|
8550
|
+
[key: string]: unknown;
|
|
8551
|
+
} | Array<unknown> | null;
|
|
8552
|
+
webhook_configured_at?: string | null;
|
|
8553
|
+
webhook_identifier?: string | null;
|
|
8207
8554
|
}
|
|
8208
8555
|
namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
8209
8556
|
interface Settings {
|
|
@@ -8273,6 +8620,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8273
8620
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8274
8621
|
status_message?: string | null;
|
|
8275
8622
|
updated_at?: string;
|
|
8623
|
+
webhook_config?: string | number | boolean | {
|
|
8624
|
+
[key: string]: unknown;
|
|
8625
|
+
} | Array<unknown> | null;
|
|
8626
|
+
webhook_configured_at?: string | null;
|
|
8627
|
+
webhook_identifier?: string | null;
|
|
8276
8628
|
}
|
|
8277
8629
|
namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
8278
8630
|
interface Settings {
|
|
@@ -8342,6 +8694,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8342
8694
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8343
8695
|
status_message?: string | null;
|
|
8344
8696
|
updated_at?: string;
|
|
8697
|
+
webhook_config?: string | number | boolean | {
|
|
8698
|
+
[key: string]: unknown;
|
|
8699
|
+
} | Array<unknown> | null;
|
|
8700
|
+
webhook_configured_at?: string | null;
|
|
8701
|
+
webhook_identifier?: string | null;
|
|
8345
8702
|
}
|
|
8346
8703
|
namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
8347
8704
|
interface Settings {
|
|
@@ -8411,6 +8768,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8411
8768
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8412
8769
|
status_message?: string | null;
|
|
8413
8770
|
updated_at?: string;
|
|
8771
|
+
webhook_config?: string | number | boolean | {
|
|
8772
|
+
[key: string]: unknown;
|
|
8773
|
+
} | Array<unknown> | null;
|
|
8774
|
+
webhook_configured_at?: string | null;
|
|
8775
|
+
webhook_identifier?: string | null;
|
|
8414
8776
|
}
|
|
8415
8777
|
namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
8416
8778
|
interface Settings {
|
|
@@ -8480,6 +8842,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8480
8842
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8481
8843
|
status_message?: string | null;
|
|
8482
8844
|
updated_at?: string;
|
|
8845
|
+
webhook_config?: string | number | boolean | {
|
|
8846
|
+
[key: string]: unknown;
|
|
8847
|
+
} | Array<unknown> | null;
|
|
8848
|
+
webhook_configured_at?: string | null;
|
|
8849
|
+
webhook_identifier?: string | null;
|
|
8483
8850
|
}
|
|
8484
8851
|
namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
8485
8852
|
interface Settings {
|
|
@@ -8549,6 +8916,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8549
8916
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8550
8917
|
status_message?: string | null;
|
|
8551
8918
|
updated_at?: string;
|
|
8919
|
+
webhook_config?: string | number | boolean | {
|
|
8920
|
+
[key: string]: unknown;
|
|
8921
|
+
} | Array<unknown> | null;
|
|
8922
|
+
webhook_configured_at?: string | null;
|
|
8923
|
+
webhook_identifier?: string | null;
|
|
8552
8924
|
}
|
|
8553
8925
|
namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
8554
8926
|
interface Settings {
|
|
@@ -8618,6 +8990,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8618
8990
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8619
8991
|
status_message?: string | null;
|
|
8620
8992
|
updated_at?: string;
|
|
8993
|
+
webhook_config?: string | number | boolean | {
|
|
8994
|
+
[key: string]: unknown;
|
|
8995
|
+
} | Array<unknown> | null;
|
|
8996
|
+
webhook_configured_at?: string | null;
|
|
8997
|
+
webhook_identifier?: string | null;
|
|
8621
8998
|
}
|
|
8622
8999
|
namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
8623
9000
|
interface Settings {
|
|
@@ -8687,6 +9064,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8687
9064
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8688
9065
|
status_message?: string | null;
|
|
8689
9066
|
updated_at?: string;
|
|
9067
|
+
webhook_config?: string | number | boolean | {
|
|
9068
|
+
[key: string]: unknown;
|
|
9069
|
+
} | Array<unknown> | null;
|
|
9070
|
+
webhook_configured_at?: string | null;
|
|
9071
|
+
webhook_identifier?: string | null;
|
|
8690
9072
|
}
|
|
8691
9073
|
namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
8692
9074
|
interface Settings {
|
|
@@ -8756,6 +9138,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8756
9138
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8757
9139
|
status_message?: string | null;
|
|
8758
9140
|
updated_at?: string;
|
|
9141
|
+
webhook_config?: string | number | boolean | {
|
|
9142
|
+
[key: string]: unknown;
|
|
9143
|
+
} | Array<unknown> | null;
|
|
9144
|
+
webhook_configured_at?: string | null;
|
|
9145
|
+
webhook_identifier?: string | null;
|
|
8759
9146
|
}
|
|
8760
9147
|
namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
8761
9148
|
interface Settings {
|
|
@@ -8825,6 +9212,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8825
9212
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8826
9213
|
status_message?: string | null;
|
|
8827
9214
|
updated_at?: string;
|
|
9215
|
+
webhook_config?: string | number | boolean | {
|
|
9216
|
+
[key: string]: unknown;
|
|
9217
|
+
} | Array<unknown> | null;
|
|
9218
|
+
webhook_configured_at?: string | null;
|
|
9219
|
+
webhook_identifier?: string | null;
|
|
8828
9220
|
}
|
|
8829
9221
|
namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
8830
9222
|
interface Settings {
|
|
@@ -8894,6 +9286,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8894
9286
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8895
9287
|
status_message?: string | null;
|
|
8896
9288
|
updated_at?: string;
|
|
9289
|
+
webhook_config?: string | number | boolean | {
|
|
9290
|
+
[key: string]: unknown;
|
|
9291
|
+
} | Array<unknown> | null;
|
|
9292
|
+
webhook_configured_at?: string | null;
|
|
9293
|
+
webhook_identifier?: string | null;
|
|
8897
9294
|
}
|
|
8898
9295
|
namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
8899
9296
|
interface Settings {
|
|
@@ -8963,6 +9360,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8963
9360
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8964
9361
|
status_message?: string | null;
|
|
8965
9362
|
updated_at?: string;
|
|
9363
|
+
webhook_config?: string | number | boolean | {
|
|
9364
|
+
[key: string]: unknown;
|
|
9365
|
+
} | Array<unknown> | null;
|
|
9366
|
+
webhook_configured_at?: string | null;
|
|
9367
|
+
webhook_identifier?: string | null;
|
|
8966
9368
|
}
|
|
8967
9369
|
namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
8968
9370
|
interface Settings {
|
|
@@ -9032,6 +9434,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9032
9434
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9033
9435
|
status_message?: string | null;
|
|
9034
9436
|
updated_at?: string;
|
|
9437
|
+
webhook_config?: string | number | boolean | {
|
|
9438
|
+
[key: string]: unknown;
|
|
9439
|
+
} | Array<unknown> | null;
|
|
9440
|
+
webhook_configured_at?: string | null;
|
|
9441
|
+
webhook_identifier?: string | null;
|
|
9035
9442
|
}
|
|
9036
9443
|
namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
9037
9444
|
interface Settings {
|
|
@@ -9105,6 +9512,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9105
9512
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9106
9513
|
status_message?: string | null;
|
|
9107
9514
|
updated_at?: string;
|
|
9515
|
+
webhook_config?: string | number | boolean | {
|
|
9516
|
+
[key: string]: unknown;
|
|
9517
|
+
} | Array<unknown> | null;
|
|
9518
|
+
webhook_configured_at?: string | null;
|
|
9519
|
+
webhook_identifier?: string | null;
|
|
9108
9520
|
}
|
|
9109
9521
|
namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
9110
9522
|
interface Settings {
|
|
@@ -9174,6 +9586,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9174
9586
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9175
9587
|
status_message?: string | null;
|
|
9176
9588
|
updated_at?: string;
|
|
9589
|
+
webhook_config?: string | number | boolean | {
|
|
9590
|
+
[key: string]: unknown;
|
|
9591
|
+
} | Array<unknown> | null;
|
|
9592
|
+
webhook_configured_at?: string | null;
|
|
9593
|
+
webhook_identifier?: string | null;
|
|
9177
9594
|
}
|
|
9178
9595
|
namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
9179
9596
|
interface Settings {
|
|
@@ -9243,6 +9660,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9243
9660
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9244
9661
|
status_message?: string | null;
|
|
9245
9662
|
updated_at?: string;
|
|
9663
|
+
webhook_config?: string | number | boolean | {
|
|
9664
|
+
[key: string]: unknown;
|
|
9665
|
+
} | Array<unknown> | null;
|
|
9666
|
+
webhook_configured_at?: string | null;
|
|
9667
|
+
webhook_identifier?: string | null;
|
|
9246
9668
|
}
|
|
9247
9669
|
namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
9248
9670
|
interface Settings {
|
|
@@ -9312,6 +9734,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9312
9734
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9313
9735
|
status_message?: string | null;
|
|
9314
9736
|
updated_at?: string;
|
|
9737
|
+
webhook_config?: string | number | boolean | {
|
|
9738
|
+
[key: string]: unknown;
|
|
9739
|
+
} | Array<unknown> | null;
|
|
9740
|
+
webhook_configured_at?: string | null;
|
|
9741
|
+
webhook_identifier?: string | null;
|
|
9315
9742
|
}
|
|
9316
9743
|
namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
9317
9744
|
interface Settings {
|
|
@@ -9381,6 +9808,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9381
9808
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9382
9809
|
status_message?: string | null;
|
|
9383
9810
|
updated_at?: string;
|
|
9811
|
+
webhook_config?: string | number | boolean | {
|
|
9812
|
+
[key: string]: unknown;
|
|
9813
|
+
} | Array<unknown> | null;
|
|
9814
|
+
webhook_configured_at?: string | null;
|
|
9815
|
+
webhook_identifier?: string | null;
|
|
9384
9816
|
}
|
|
9385
9817
|
namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
9386
9818
|
interface Settings {
|
|
@@ -9450,6 +9882,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9450
9882
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9451
9883
|
status_message?: string | null;
|
|
9452
9884
|
updated_at?: string;
|
|
9885
|
+
webhook_config?: string | number | boolean | {
|
|
9886
|
+
[key: string]: unknown;
|
|
9887
|
+
} | Array<unknown> | null;
|
|
9888
|
+
webhook_configured_at?: string | null;
|
|
9889
|
+
webhook_identifier?: string | null;
|
|
9453
9890
|
}
|
|
9454
9891
|
namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
9455
9892
|
interface Settings {
|
|
@@ -9523,6 +9960,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9523
9960
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9524
9961
|
status_message?: string | null;
|
|
9525
9962
|
updated_at?: string;
|
|
9963
|
+
webhook_config?: string | number | boolean | {
|
|
9964
|
+
[key: string]: unknown;
|
|
9965
|
+
} | Array<unknown> | null;
|
|
9966
|
+
webhook_configured_at?: string | null;
|
|
9967
|
+
webhook_identifier?: string | null;
|
|
9526
9968
|
}
|
|
9527
9969
|
namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
9528
9970
|
interface Settings {
|
|
@@ -9592,6 +10034,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9592
10034
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9593
10035
|
status_message?: string | null;
|
|
9594
10036
|
updated_at?: string;
|
|
10037
|
+
webhook_config?: string | number | boolean | {
|
|
10038
|
+
[key: string]: unknown;
|
|
10039
|
+
} | Array<unknown> | null;
|
|
10040
|
+
webhook_configured_at?: string | null;
|
|
10041
|
+
webhook_identifier?: string | null;
|
|
9595
10042
|
}
|
|
9596
10043
|
namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
9597
10044
|
interface Settings {
|
|
@@ -9661,6 +10108,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9661
10108
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9662
10109
|
status_message?: string | null;
|
|
9663
10110
|
updated_at?: string;
|
|
10111
|
+
webhook_config?: string | number | boolean | {
|
|
10112
|
+
[key: string]: unknown;
|
|
10113
|
+
} | Array<unknown> | null;
|
|
10114
|
+
webhook_configured_at?: string | null;
|
|
10115
|
+
webhook_identifier?: string | null;
|
|
9664
10116
|
}
|
|
9665
10117
|
namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
9666
10118
|
interface Settings {
|
|
@@ -9730,6 +10182,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9730
10182
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9731
10183
|
status_message?: string | null;
|
|
9732
10184
|
updated_at?: string;
|
|
10185
|
+
webhook_config?: string | number | boolean | {
|
|
10186
|
+
[key: string]: unknown;
|
|
10187
|
+
} | Array<unknown> | null;
|
|
10188
|
+
webhook_configured_at?: string | null;
|
|
10189
|
+
webhook_identifier?: string | null;
|
|
9733
10190
|
}
|
|
9734
10191
|
namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
9735
10192
|
interface Settings {
|
|
@@ -9804,6 +10261,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9804
10261
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9805
10262
|
status_message?: string | null;
|
|
9806
10263
|
updated_at?: string;
|
|
10264
|
+
webhook_config?: string | number | boolean | {
|
|
10265
|
+
[key: string]: unknown;
|
|
10266
|
+
} | Array<unknown> | null;
|
|
10267
|
+
webhook_configured_at?: string | null;
|
|
10268
|
+
webhook_identifier?: string | null;
|
|
9807
10269
|
}
|
|
9808
10270
|
namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
9809
10271
|
interface Settings {
|
|
@@ -9873,6 +10335,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9873
10335
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9874
10336
|
status_message?: string | null;
|
|
9875
10337
|
updated_at?: string;
|
|
10338
|
+
webhook_config?: string | number | boolean | {
|
|
10339
|
+
[key: string]: unknown;
|
|
10340
|
+
} | Array<unknown> | null;
|
|
10341
|
+
webhook_configured_at?: string | null;
|
|
10342
|
+
webhook_identifier?: string | null;
|
|
9876
10343
|
}
|
|
9877
10344
|
namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
9878
10345
|
interface Settings {
|
|
@@ -9942,6 +10409,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9942
10409
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9943
10410
|
status_message?: string | null;
|
|
9944
10411
|
updated_at?: string;
|
|
10412
|
+
webhook_config?: string | number | boolean | {
|
|
10413
|
+
[key: string]: unknown;
|
|
10414
|
+
} | Array<unknown> | null;
|
|
10415
|
+
webhook_configured_at?: string | null;
|
|
10416
|
+
webhook_identifier?: string | null;
|
|
9945
10417
|
}
|
|
9946
10418
|
namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
9947
10419
|
interface Settings {
|
|
@@ -10015,6 +10487,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10015
10487
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10016
10488
|
status_message?: string | null;
|
|
10017
10489
|
updated_at?: string;
|
|
10490
|
+
webhook_config?: string | number | boolean | {
|
|
10491
|
+
[key: string]: unknown;
|
|
10492
|
+
} | Array<unknown> | null;
|
|
10493
|
+
webhook_configured_at?: string | null;
|
|
10494
|
+
webhook_identifier?: string | null;
|
|
10018
10495
|
}
|
|
10019
10496
|
namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
10020
10497
|
interface Settings {
|
|
@@ -10084,6 +10561,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10084
10561
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10085
10562
|
status_message?: string | null;
|
|
10086
10563
|
updated_at?: string;
|
|
10564
|
+
webhook_config?: string | number | boolean | {
|
|
10565
|
+
[key: string]: unknown;
|
|
10566
|
+
} | Array<unknown> | null;
|
|
10567
|
+
webhook_configured_at?: string | null;
|
|
10568
|
+
webhook_identifier?: string | null;
|
|
10087
10569
|
}
|
|
10088
10570
|
namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
10089
10571
|
interface Settings {
|
|
@@ -10114,6 +10596,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10114
10596
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10115
10597
|
status_message?: string | null;
|
|
10116
10598
|
updated_at?: string;
|
|
10599
|
+
webhook_config?: string | number | boolean | {
|
|
10600
|
+
[key: string]: unknown;
|
|
10601
|
+
} | Array<unknown> | null;
|
|
10602
|
+
webhook_configured_at?: string | null;
|
|
10603
|
+
webhook_identifier?: string | null;
|
|
10117
10604
|
}
|
|
10118
10605
|
namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
10119
10606
|
interface Settings {
|
|
@@ -10149,6 +10636,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10149
10636
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10150
10637
|
status_message?: string | null;
|
|
10151
10638
|
updated_at?: string;
|
|
10639
|
+
webhook_config?: string | number | boolean | {
|
|
10640
|
+
[key: string]: unknown;
|
|
10641
|
+
} | Array<unknown> | null;
|
|
10642
|
+
webhook_configured_at?: string | null;
|
|
10643
|
+
webhook_identifier?: string | null;
|
|
10152
10644
|
}
|
|
10153
10645
|
namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
10154
10646
|
interface Settings {
|
|
@@ -10179,6 +10671,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10179
10671
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10180
10672
|
status_message?: string | null;
|
|
10181
10673
|
updated_at?: string;
|
|
10674
|
+
webhook_config?: string | number | boolean | {
|
|
10675
|
+
[key: string]: unknown;
|
|
10676
|
+
} | Array<unknown> | null;
|
|
10677
|
+
webhook_configured_at?: string | null;
|
|
10678
|
+
webhook_identifier?: string | null;
|
|
10182
10679
|
}
|
|
10183
10680
|
namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
10184
10681
|
interface Settings {
|
|
@@ -10213,6 +10710,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10213
10710
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10214
10711
|
status_message?: string | null;
|
|
10215
10712
|
updated_at?: string;
|
|
10713
|
+
webhook_config?: string | number | boolean | {
|
|
10714
|
+
[key: string]: unknown;
|
|
10715
|
+
} | Array<unknown> | null;
|
|
10716
|
+
webhook_configured_at?: string | null;
|
|
10717
|
+
webhook_identifier?: string | null;
|
|
10216
10718
|
}
|
|
10217
10719
|
namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
10218
10720
|
interface Settings {
|
|
@@ -10247,6 +10749,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10247
10749
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10248
10750
|
status_message?: string | null;
|
|
10249
10751
|
updated_at?: string;
|
|
10752
|
+
webhook_config?: string | number | boolean | {
|
|
10753
|
+
[key: string]: unknown;
|
|
10754
|
+
} | Array<unknown> | null;
|
|
10755
|
+
webhook_configured_at?: string | null;
|
|
10756
|
+
webhook_identifier?: string | null;
|
|
10250
10757
|
}
|
|
10251
10758
|
namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
10252
10759
|
interface Settings {
|
|
@@ -10280,6 +10787,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10280
10787
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10281
10788
|
status_message?: string | null;
|
|
10282
10789
|
updated_at?: string;
|
|
10790
|
+
webhook_config?: string | number | boolean | {
|
|
10791
|
+
[key: string]: unknown;
|
|
10792
|
+
} | Array<unknown> | null;
|
|
10793
|
+
webhook_configured_at?: string | null;
|
|
10794
|
+
webhook_identifier?: string | null;
|
|
10283
10795
|
}
|
|
10284
10796
|
namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
10285
10797
|
interface Settings {
|
|
@@ -10424,6 +10936,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10424
10936
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10425
10937
|
status_message?: string | null;
|
|
10426
10938
|
updated_at?: string;
|
|
10939
|
+
webhook_config?: string | number | boolean | {
|
|
10940
|
+
[key: string]: unknown;
|
|
10941
|
+
} | Array<unknown> | null;
|
|
10942
|
+
webhook_configured_at?: string | null;
|
|
10943
|
+
webhook_identifier?: string | null;
|
|
10427
10944
|
}
|
|
10428
10945
|
namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
10429
10946
|
interface Settings {
|
|
@@ -10493,6 +11010,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10493
11010
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10494
11011
|
status_message?: string | null;
|
|
10495
11012
|
updated_at?: string;
|
|
11013
|
+
webhook_config?: string | number | boolean | {
|
|
11014
|
+
[key: string]: unknown;
|
|
11015
|
+
} | Array<unknown> | null;
|
|
11016
|
+
webhook_configured_at?: string | null;
|
|
11017
|
+
webhook_identifier?: string | null;
|
|
10496
11018
|
}
|
|
10497
11019
|
namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
10498
11020
|
interface Settings {
|
|
@@ -10562,6 +11084,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10562
11084
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10563
11085
|
status_message?: string | null;
|
|
10564
11086
|
updated_at?: string;
|
|
11087
|
+
webhook_config?: string | number | boolean | {
|
|
11088
|
+
[key: string]: unknown;
|
|
11089
|
+
} | Array<unknown> | null;
|
|
11090
|
+
webhook_configured_at?: string | null;
|
|
11091
|
+
webhook_identifier?: string | null;
|
|
10565
11092
|
}
|
|
10566
11093
|
namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
10567
11094
|
interface Settings {
|
|
@@ -10598,6 +11125,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10598
11125
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10599
11126
|
status_message?: string | null;
|
|
10600
11127
|
updated_at?: string;
|
|
11128
|
+
webhook_config?: string | number | boolean | {
|
|
11129
|
+
[key: string]: unknown;
|
|
11130
|
+
} | Array<unknown> | null;
|
|
11131
|
+
webhook_configured_at?: string | null;
|
|
11132
|
+
webhook_identifier?: string | null;
|
|
10601
11133
|
}
|
|
10602
11134
|
namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
10603
11135
|
interface Settings {
|
|
@@ -10653,6 +11185,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10653
11185
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10654
11186
|
status_message?: string | null;
|
|
10655
11187
|
updated_at?: string;
|
|
11188
|
+
webhook_config?: string | number | boolean | {
|
|
11189
|
+
[key: string]: unknown;
|
|
11190
|
+
} | Array<unknown> | null;
|
|
11191
|
+
webhook_configured_at?: string | null;
|
|
11192
|
+
webhook_identifier?: string | null;
|
|
10656
11193
|
}
|
|
10657
11194
|
namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
10658
11195
|
interface Settings {
|
|
@@ -10683,6 +11220,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10683
11220
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10684
11221
|
status_message?: string | null;
|
|
10685
11222
|
updated_at?: string;
|
|
11223
|
+
webhook_config?: string | number | boolean | {
|
|
11224
|
+
[key: string]: unknown;
|
|
11225
|
+
} | Array<unknown> | null;
|
|
11226
|
+
webhook_configured_at?: string | null;
|
|
11227
|
+
webhook_identifier?: string | null;
|
|
10686
11228
|
}
|
|
10687
11229
|
namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
10688
11230
|
interface Settings {
|
|
@@ -10752,6 +11294,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10752
11294
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10753
11295
|
status_message?: string | null;
|
|
10754
11296
|
updated_at?: string;
|
|
11297
|
+
webhook_config?: string | number | boolean | {
|
|
11298
|
+
[key: string]: unknown;
|
|
11299
|
+
} | Array<unknown> | null;
|
|
11300
|
+
webhook_configured_at?: string | null;
|
|
11301
|
+
webhook_identifier?: string | null;
|
|
10755
11302
|
}
|
|
10756
11303
|
namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
10757
11304
|
interface Settings {
|
|
@@ -10782,6 +11329,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10782
11329
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10783
11330
|
status_message?: string | null;
|
|
10784
11331
|
updated_at?: string;
|
|
11332
|
+
webhook_config?: string | number | boolean | {
|
|
11333
|
+
[key: string]: unknown;
|
|
11334
|
+
} | Array<unknown> | null;
|
|
11335
|
+
webhook_configured_at?: string | null;
|
|
11336
|
+
webhook_identifier?: string | null;
|
|
10785
11337
|
}
|
|
10786
11338
|
namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
10787
11339
|
interface Settings {
|
|
@@ -10851,10 +11403,20 @@ export declare namespace ListConnectionsResponse {
|
|
|
10851
11403
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10852
11404
|
status_message?: string | null;
|
|
10853
11405
|
updated_at?: string;
|
|
11406
|
+
webhook_config?: string | number | boolean | {
|
|
11407
|
+
[key: string]: unknown;
|
|
11408
|
+
} | Array<unknown> | null;
|
|
11409
|
+
webhook_configured_at?: string | null;
|
|
11410
|
+
webhook_identifier?: string | null;
|
|
10854
11411
|
}
|
|
10855
11412
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
10856
11413
|
interface Settings {
|
|
10857
11414
|
oauth: Settings.OAuth;
|
|
11415
|
+
/**
|
|
11416
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
11417
|
+
* API calls to BigQuery.
|
|
11418
|
+
*/
|
|
11419
|
+
project_id: string;
|
|
10858
11420
|
/**
|
|
10859
11421
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
10860
11422
|
* for backward compatibility until we remove the oauth field
|
|
@@ -10920,6 +11482,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10920
11482
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10921
11483
|
status_message?: string | null;
|
|
10922
11484
|
updated_at?: string;
|
|
11485
|
+
webhook_config?: string | number | boolean | {
|
|
11486
|
+
[key: string]: unknown;
|
|
11487
|
+
} | Array<unknown> | null;
|
|
11488
|
+
webhook_configured_at?: string | null;
|
|
11489
|
+
webhook_identifier?: string | null;
|
|
10923
11490
|
}
|
|
10924
11491
|
namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
10925
11492
|
interface Settings {
|
|
@@ -10989,6 +11556,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10989
11556
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10990
11557
|
status_message?: string | null;
|
|
10991
11558
|
updated_at?: string;
|
|
11559
|
+
webhook_config?: string | number | boolean | {
|
|
11560
|
+
[key: string]: unknown;
|
|
11561
|
+
} | Array<unknown> | null;
|
|
11562
|
+
webhook_configured_at?: string | null;
|
|
11563
|
+
webhook_identifier?: string | null;
|
|
10992
11564
|
}
|
|
10993
11565
|
namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
10994
11566
|
interface Settings {
|
|
@@ -11058,6 +11630,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11058
11630
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11059
11631
|
status_message?: string | null;
|
|
11060
11632
|
updated_at?: string;
|
|
11633
|
+
webhook_config?: string | number | boolean | {
|
|
11634
|
+
[key: string]: unknown;
|
|
11635
|
+
} | Array<unknown> | null;
|
|
11636
|
+
webhook_configured_at?: string | null;
|
|
11637
|
+
webhook_identifier?: string | null;
|
|
11061
11638
|
}
|
|
11062
11639
|
namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
11063
11640
|
interface Settings {
|
|
@@ -11127,6 +11704,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11127
11704
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11128
11705
|
status_message?: string | null;
|
|
11129
11706
|
updated_at?: string;
|
|
11707
|
+
webhook_config?: string | number | boolean | {
|
|
11708
|
+
[key: string]: unknown;
|
|
11709
|
+
} | Array<unknown> | null;
|
|
11710
|
+
webhook_configured_at?: string | null;
|
|
11711
|
+
webhook_identifier?: string | null;
|
|
11130
11712
|
}
|
|
11131
11713
|
namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
11132
11714
|
interface Settings {
|
|
@@ -11196,6 +11778,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11196
11778
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11197
11779
|
status_message?: string | null;
|
|
11198
11780
|
updated_at?: string;
|
|
11781
|
+
webhook_config?: string | number | boolean | {
|
|
11782
|
+
[key: string]: unknown;
|
|
11783
|
+
} | Array<unknown> | null;
|
|
11784
|
+
webhook_configured_at?: string | null;
|
|
11785
|
+
webhook_identifier?: string | null;
|
|
11199
11786
|
}
|
|
11200
11787
|
namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
11201
11788
|
interface Settings {
|
|
@@ -11265,6 +11852,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11265
11852
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11266
11853
|
status_message?: string | null;
|
|
11267
11854
|
updated_at?: string;
|
|
11855
|
+
webhook_config?: string | number | boolean | {
|
|
11856
|
+
[key: string]: unknown;
|
|
11857
|
+
} | Array<unknown> | null;
|
|
11858
|
+
webhook_configured_at?: string | null;
|
|
11859
|
+
webhook_identifier?: string | null;
|
|
11268
11860
|
}
|
|
11269
11861
|
namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
11270
11862
|
interface Settings {
|
|
@@ -11338,16 +11930,26 @@ export declare namespace ListConnectionsResponse {
|
|
|
11338
11930
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11339
11931
|
status_message?: string | null;
|
|
11340
11932
|
updated_at?: string;
|
|
11933
|
+
webhook_config?: string | number | boolean | {
|
|
11934
|
+
[key: string]: unknown;
|
|
11935
|
+
} | Array<unknown> | null;
|
|
11936
|
+
webhook_configured_at?: string | null;
|
|
11937
|
+
webhook_identifier?: string | null;
|
|
11341
11938
|
}
|
|
11342
11939
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
11343
11940
|
interface Settings {
|
|
11344
11941
|
/**
|
|
11345
|
-
*
|
|
11346
|
-
*
|
|
11347
|
-
* .cloud.databricks.com
|
|
11942
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
11943
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
11348
11944
|
*/
|
|
11349
|
-
|
|
11945
|
+
http_path: string;
|
|
11350
11946
|
oauth: Settings.OAuth;
|
|
11947
|
+
/**
|
|
11948
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
11949
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
11950
|
+
* Server hostname value.
|
|
11951
|
+
*/
|
|
11952
|
+
server_hostname: string;
|
|
11351
11953
|
/**
|
|
11352
11954
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
11353
11955
|
* for backward compatibility until we remove the oauth field
|
|
@@ -11413,6 +12015,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11413
12015
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11414
12016
|
status_message?: string | null;
|
|
11415
12017
|
updated_at?: string;
|
|
12018
|
+
webhook_config?: string | number | boolean | {
|
|
12019
|
+
[key: string]: unknown;
|
|
12020
|
+
} | Array<unknown> | null;
|
|
12021
|
+
webhook_configured_at?: string | null;
|
|
12022
|
+
webhook_identifier?: string | null;
|
|
11416
12023
|
}
|
|
11417
12024
|
namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
11418
12025
|
interface Settings {
|
|
@@ -11482,6 +12089,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11482
12089
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11483
12090
|
status_message?: string | null;
|
|
11484
12091
|
updated_at?: string;
|
|
12092
|
+
webhook_config?: string | number | boolean | {
|
|
12093
|
+
[key: string]: unknown;
|
|
12094
|
+
} | Array<unknown> | null;
|
|
12095
|
+
webhook_configured_at?: string | null;
|
|
12096
|
+
webhook_identifier?: string | null;
|
|
11485
12097
|
}
|
|
11486
12098
|
namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
11487
12099
|
interface Settings {
|
|
@@ -11551,6 +12163,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11551
12163
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11552
12164
|
status_message?: string | null;
|
|
11553
12165
|
updated_at?: string;
|
|
12166
|
+
webhook_config?: string | number | boolean | {
|
|
12167
|
+
[key: string]: unknown;
|
|
12168
|
+
} | Array<unknown> | null;
|
|
12169
|
+
webhook_configured_at?: string | null;
|
|
12170
|
+
webhook_identifier?: string | null;
|
|
11554
12171
|
}
|
|
11555
12172
|
namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
11556
12173
|
interface Settings {
|
|
@@ -11620,6 +12237,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11620
12237
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11621
12238
|
status_message?: string | null;
|
|
11622
12239
|
updated_at?: string;
|
|
12240
|
+
webhook_config?: string | number | boolean | {
|
|
12241
|
+
[key: string]: unknown;
|
|
12242
|
+
} | Array<unknown> | null;
|
|
12243
|
+
webhook_configured_at?: string | null;
|
|
12244
|
+
webhook_identifier?: string | null;
|
|
11623
12245
|
}
|
|
11624
12246
|
namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
11625
12247
|
interface Settings {
|
|
@@ -11689,6 +12311,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11689
12311
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11690
12312
|
status_message?: string | null;
|
|
11691
12313
|
updated_at?: string;
|
|
12314
|
+
webhook_config?: string | number | boolean | {
|
|
12315
|
+
[key: string]: unknown;
|
|
12316
|
+
} | Array<unknown> | null;
|
|
12317
|
+
webhook_configured_at?: string | null;
|
|
12318
|
+
webhook_identifier?: string | null;
|
|
11692
12319
|
}
|
|
11693
12320
|
namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
11694
12321
|
interface Settings {
|
|
@@ -11758,6 +12385,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11758
12385
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11759
12386
|
status_message?: string | null;
|
|
11760
12387
|
updated_at?: string;
|
|
12388
|
+
webhook_config?: string | number | boolean | {
|
|
12389
|
+
[key: string]: unknown;
|
|
12390
|
+
} | Array<unknown> | null;
|
|
12391
|
+
webhook_configured_at?: string | null;
|
|
12392
|
+
webhook_identifier?: string | null;
|
|
11761
12393
|
}
|
|
11762
12394
|
namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
11763
12395
|
interface Settings {
|
|
@@ -11827,6 +12459,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11827
12459
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11828
12460
|
status_message?: string | null;
|
|
11829
12461
|
updated_at?: string;
|
|
12462
|
+
webhook_config?: string | number | boolean | {
|
|
12463
|
+
[key: string]: unknown;
|
|
12464
|
+
} | Array<unknown> | null;
|
|
12465
|
+
webhook_configured_at?: string | null;
|
|
12466
|
+
webhook_identifier?: string | null;
|
|
11830
12467
|
}
|
|
11831
12468
|
namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
11832
12469
|
interface Settings {
|
|
@@ -11896,6 +12533,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11896
12533
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11897
12534
|
status_message?: string | null;
|
|
11898
12535
|
updated_at?: string;
|
|
12536
|
+
webhook_config?: string | number | boolean | {
|
|
12537
|
+
[key: string]: unknown;
|
|
12538
|
+
} | Array<unknown> | null;
|
|
12539
|
+
webhook_configured_at?: string | null;
|
|
12540
|
+
webhook_identifier?: string | null;
|
|
11899
12541
|
}
|
|
11900
12542
|
namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
11901
12543
|
interface Settings {
|
|
@@ -11965,6 +12607,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11965
12607
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11966
12608
|
status_message?: string | null;
|
|
11967
12609
|
updated_at?: string;
|
|
12610
|
+
webhook_config?: string | number | boolean | {
|
|
12611
|
+
[key: string]: unknown;
|
|
12612
|
+
} | Array<unknown> | null;
|
|
12613
|
+
webhook_configured_at?: string | null;
|
|
12614
|
+
webhook_identifier?: string | null;
|
|
11968
12615
|
}
|
|
11969
12616
|
namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
11970
12617
|
interface Settings {
|
|
@@ -12034,6 +12681,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12034
12681
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12035
12682
|
status_message?: string | null;
|
|
12036
12683
|
updated_at?: string;
|
|
12684
|
+
webhook_config?: string | number | boolean | {
|
|
12685
|
+
[key: string]: unknown;
|
|
12686
|
+
} | Array<unknown> | null;
|
|
12687
|
+
webhook_configured_at?: string | null;
|
|
12688
|
+
webhook_identifier?: string | null;
|
|
12037
12689
|
}
|
|
12038
12690
|
namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
12039
12691
|
interface Settings {
|
|
@@ -12103,6 +12755,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12103
12755
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12104
12756
|
status_message?: string | null;
|
|
12105
12757
|
updated_at?: string;
|
|
12758
|
+
webhook_config?: string | number | boolean | {
|
|
12759
|
+
[key: string]: unknown;
|
|
12760
|
+
} | Array<unknown> | null;
|
|
12761
|
+
webhook_configured_at?: string | null;
|
|
12762
|
+
webhook_identifier?: string | null;
|
|
12106
12763
|
}
|
|
12107
12764
|
namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
12108
12765
|
interface Settings {
|
|
@@ -12172,6 +12829,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12172
12829
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12173
12830
|
status_message?: string | null;
|
|
12174
12831
|
updated_at?: string;
|
|
12832
|
+
webhook_config?: string | number | boolean | {
|
|
12833
|
+
[key: string]: unknown;
|
|
12834
|
+
} | Array<unknown> | null;
|
|
12835
|
+
webhook_configured_at?: string | null;
|
|
12836
|
+
webhook_identifier?: string | null;
|
|
12175
12837
|
}
|
|
12176
12838
|
namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
12177
12839
|
interface Settings {
|
|
@@ -12241,6 +12903,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12241
12903
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12242
12904
|
status_message?: string | null;
|
|
12243
12905
|
updated_at?: string;
|
|
12906
|
+
webhook_config?: string | number | boolean | {
|
|
12907
|
+
[key: string]: unknown;
|
|
12908
|
+
} | Array<unknown> | null;
|
|
12909
|
+
webhook_configured_at?: string | null;
|
|
12910
|
+
webhook_identifier?: string | null;
|
|
12244
12911
|
}
|
|
12245
12912
|
namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
12246
12913
|
interface Settings {
|
|
@@ -12310,6 +12977,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12310
12977
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12311
12978
|
status_message?: string | null;
|
|
12312
12979
|
updated_at?: string;
|
|
12980
|
+
webhook_config?: string | number | boolean | {
|
|
12981
|
+
[key: string]: unknown;
|
|
12982
|
+
} | Array<unknown> | null;
|
|
12983
|
+
webhook_configured_at?: string | null;
|
|
12984
|
+
webhook_identifier?: string | null;
|
|
12313
12985
|
}
|
|
12314
12986
|
namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
12315
12987
|
interface Settings {
|
|
@@ -12383,6 +13055,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12383
13055
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12384
13056
|
status_message?: string | null;
|
|
12385
13057
|
updated_at?: string;
|
|
13058
|
+
webhook_config?: string | number | boolean | {
|
|
13059
|
+
[key: string]: unknown;
|
|
13060
|
+
} | Array<unknown> | null;
|
|
13061
|
+
webhook_configured_at?: string | null;
|
|
13062
|
+
webhook_identifier?: string | null;
|
|
12386
13063
|
}
|
|
12387
13064
|
namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
12388
13065
|
interface Settings {
|
|
@@ -12452,6 +13129,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12452
13129
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12453
13130
|
status_message?: string | null;
|
|
12454
13131
|
updated_at?: string;
|
|
13132
|
+
webhook_config?: string | number | boolean | {
|
|
13133
|
+
[key: string]: unknown;
|
|
13134
|
+
} | Array<unknown> | null;
|
|
13135
|
+
webhook_configured_at?: string | null;
|
|
13136
|
+
webhook_identifier?: string | null;
|
|
12455
13137
|
}
|
|
12456
13138
|
namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
12457
13139
|
interface Settings {
|
|
@@ -12521,6 +13203,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12521
13203
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12522
13204
|
status_message?: string | null;
|
|
12523
13205
|
updated_at?: string;
|
|
13206
|
+
webhook_config?: string | number | boolean | {
|
|
13207
|
+
[key: string]: unknown;
|
|
13208
|
+
} | Array<unknown> | null;
|
|
13209
|
+
webhook_configured_at?: string | null;
|
|
13210
|
+
webhook_identifier?: string | null;
|
|
12524
13211
|
}
|
|
12525
13212
|
namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
12526
13213
|
interface Settings {
|
|
@@ -12590,6 +13277,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12590
13277
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12591
13278
|
status_message?: string | null;
|
|
12592
13279
|
updated_at?: string;
|
|
13280
|
+
webhook_config?: string | number | boolean | {
|
|
13281
|
+
[key: string]: unknown;
|
|
13282
|
+
} | Array<unknown> | null;
|
|
13283
|
+
webhook_configured_at?: string | null;
|
|
13284
|
+
webhook_identifier?: string | null;
|
|
12593
13285
|
}
|
|
12594
13286
|
namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
12595
13287
|
interface Settings {
|
|
@@ -12659,6 +13351,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12659
13351
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12660
13352
|
status_message?: string | null;
|
|
12661
13353
|
updated_at?: string;
|
|
13354
|
+
webhook_config?: string | number | boolean | {
|
|
13355
|
+
[key: string]: unknown;
|
|
13356
|
+
} | Array<unknown> | null;
|
|
13357
|
+
webhook_configured_at?: string | null;
|
|
13358
|
+
webhook_identifier?: string | null;
|
|
12662
13359
|
}
|
|
12663
13360
|
namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
12664
13361
|
interface Settings {
|
|
@@ -12728,6 +13425,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12728
13425
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12729
13426
|
status_message?: string | null;
|
|
12730
13427
|
updated_at?: string;
|
|
13428
|
+
webhook_config?: string | number | boolean | {
|
|
13429
|
+
[key: string]: unknown;
|
|
13430
|
+
} | Array<unknown> | null;
|
|
13431
|
+
webhook_configured_at?: string | null;
|
|
13432
|
+
webhook_identifier?: string | null;
|
|
12731
13433
|
}
|
|
12732
13434
|
namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
12733
13435
|
interface Settings {
|
|
@@ -12801,6 +13503,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12801
13503
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12802
13504
|
status_message?: string | null;
|
|
12803
13505
|
updated_at?: string;
|
|
13506
|
+
webhook_config?: string | number | boolean | {
|
|
13507
|
+
[key: string]: unknown;
|
|
13508
|
+
} | Array<unknown> | null;
|
|
13509
|
+
webhook_configured_at?: string | null;
|
|
13510
|
+
webhook_identifier?: string | null;
|
|
12804
13511
|
}
|
|
12805
13512
|
namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
12806
13513
|
interface Settings {
|
|
@@ -12870,6 +13577,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12870
13577
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12871
13578
|
status_message?: string | null;
|
|
12872
13579
|
updated_at?: string;
|
|
13580
|
+
webhook_config?: string | number | boolean | {
|
|
13581
|
+
[key: string]: unknown;
|
|
13582
|
+
} | Array<unknown> | null;
|
|
13583
|
+
webhook_configured_at?: string | null;
|
|
13584
|
+
webhook_identifier?: string | null;
|
|
12873
13585
|
}
|
|
12874
13586
|
namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
12875
13587
|
interface Settings {
|
|
@@ -12939,6 +13651,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12939
13651
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12940
13652
|
status_message?: string | null;
|
|
12941
13653
|
updated_at?: string;
|
|
13654
|
+
webhook_config?: string | number | boolean | {
|
|
13655
|
+
[key: string]: unknown;
|
|
13656
|
+
} | Array<unknown> | null;
|
|
13657
|
+
webhook_configured_at?: string | null;
|
|
13658
|
+
webhook_identifier?: string | null;
|
|
12942
13659
|
}
|
|
12943
13660
|
namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
12944
13661
|
interface Settings {
|
|
@@ -13008,6 +13725,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13008
13725
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13009
13726
|
status_message?: string | null;
|
|
13010
13727
|
updated_at?: string;
|
|
13728
|
+
webhook_config?: string | number | boolean | {
|
|
13729
|
+
[key: string]: unknown;
|
|
13730
|
+
} | Array<unknown> | null;
|
|
13731
|
+
webhook_configured_at?: string | null;
|
|
13732
|
+
webhook_identifier?: string | null;
|
|
13011
13733
|
}
|
|
13012
13734
|
namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
13013
13735
|
interface Settings {
|
|
@@ -13082,6 +13804,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13082
13804
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13083
13805
|
status_message?: string | null;
|
|
13084
13806
|
updated_at?: string;
|
|
13807
|
+
webhook_config?: string | number | boolean | {
|
|
13808
|
+
[key: string]: unknown;
|
|
13809
|
+
} | Array<unknown> | null;
|
|
13810
|
+
webhook_configured_at?: string | null;
|
|
13811
|
+
webhook_identifier?: string | null;
|
|
13085
13812
|
}
|
|
13086
13813
|
namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
13087
13814
|
interface Settings {
|
|
@@ -13151,6 +13878,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13151
13878
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13152
13879
|
status_message?: string | null;
|
|
13153
13880
|
updated_at?: string;
|
|
13881
|
+
webhook_config?: string | number | boolean | {
|
|
13882
|
+
[key: string]: unknown;
|
|
13883
|
+
} | Array<unknown> | null;
|
|
13884
|
+
webhook_configured_at?: string | null;
|
|
13885
|
+
webhook_identifier?: string | null;
|
|
13154
13886
|
}
|
|
13155
13887
|
namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
13156
13888
|
interface Settings {
|
|
@@ -13220,6 +13952,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13220
13952
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13221
13953
|
status_message?: string | null;
|
|
13222
13954
|
updated_at?: string;
|
|
13955
|
+
webhook_config?: string | number | boolean | {
|
|
13956
|
+
[key: string]: unknown;
|
|
13957
|
+
} | Array<unknown> | null;
|
|
13958
|
+
webhook_configured_at?: string | null;
|
|
13959
|
+
webhook_identifier?: string | null;
|
|
13223
13960
|
}
|
|
13224
13961
|
namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
13225
13962
|
interface Settings {
|
|
@@ -13293,6 +14030,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13293
14030
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13294
14031
|
status_message?: string | null;
|
|
13295
14032
|
updated_at?: string;
|
|
14033
|
+
webhook_config?: string | number | boolean | {
|
|
14034
|
+
[key: string]: unknown;
|
|
14035
|
+
} | Array<unknown> | null;
|
|
14036
|
+
webhook_configured_at?: string | null;
|
|
14037
|
+
webhook_identifier?: string | null;
|
|
13296
14038
|
}
|
|
13297
14039
|
namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
13298
14040
|
interface Settings {
|
|
@@ -13362,6 +14104,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13362
14104
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13363
14105
|
status_message?: string | null;
|
|
13364
14106
|
updated_at?: string;
|
|
14107
|
+
webhook_config?: string | number | boolean | {
|
|
14108
|
+
[key: string]: unknown;
|
|
14109
|
+
} | Array<unknown> | null;
|
|
14110
|
+
webhook_configured_at?: string | null;
|
|
14111
|
+
webhook_identifier?: string | null;
|
|
13365
14112
|
}
|
|
13366
14113
|
namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
13367
14114
|
interface Settings {
|
|
@@ -13392,6 +14139,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13392
14139
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13393
14140
|
status_message?: string | null;
|
|
13394
14141
|
updated_at?: string;
|
|
14142
|
+
webhook_config?: string | number | boolean | {
|
|
14143
|
+
[key: string]: unknown;
|
|
14144
|
+
} | Array<unknown> | null;
|
|
14145
|
+
webhook_configured_at?: string | null;
|
|
14146
|
+
webhook_identifier?: string | null;
|
|
13395
14147
|
}
|
|
13396
14148
|
namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
13397
14149
|
interface Settings {
|
|
@@ -13427,6 +14179,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13427
14179
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13428
14180
|
status_message?: string | null;
|
|
13429
14181
|
updated_at?: string;
|
|
14182
|
+
webhook_config?: string | number | boolean | {
|
|
14183
|
+
[key: string]: unknown;
|
|
14184
|
+
} | Array<unknown> | null;
|
|
14185
|
+
webhook_configured_at?: string | null;
|
|
14186
|
+
webhook_identifier?: string | null;
|
|
13430
14187
|
}
|
|
13431
14188
|
namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
13432
14189
|
interface Settings {
|
|
@@ -13457,6 +14214,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13457
14214
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13458
14215
|
status_message?: string | null;
|
|
13459
14216
|
updated_at?: string;
|
|
14217
|
+
webhook_config?: string | number | boolean | {
|
|
14218
|
+
[key: string]: unknown;
|
|
14219
|
+
} | Array<unknown> | null;
|
|
14220
|
+
webhook_configured_at?: string | null;
|
|
14221
|
+
webhook_identifier?: string | null;
|
|
13460
14222
|
}
|
|
13461
14223
|
namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
13462
14224
|
interface Settings {
|
|
@@ -13491,6 +14253,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13491
14253
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13492
14254
|
status_message?: string | null;
|
|
13493
14255
|
updated_at?: string;
|
|
14256
|
+
webhook_config?: string | number | boolean | {
|
|
14257
|
+
[key: string]: unknown;
|
|
14258
|
+
} | Array<unknown> | null;
|
|
14259
|
+
webhook_configured_at?: string | null;
|
|
14260
|
+
webhook_identifier?: string | null;
|
|
13494
14261
|
}
|
|
13495
14262
|
namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
13496
14263
|
interface Settings {
|
|
@@ -13525,6 +14292,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13525
14292
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13526
14293
|
status_message?: string | null;
|
|
13527
14294
|
updated_at?: string;
|
|
14295
|
+
webhook_config?: string | number | boolean | {
|
|
14296
|
+
[key: string]: unknown;
|
|
14297
|
+
} | Array<unknown> | null;
|
|
14298
|
+
webhook_configured_at?: string | null;
|
|
14299
|
+
webhook_identifier?: string | null;
|
|
13528
14300
|
}
|
|
13529
14301
|
namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
13530
14302
|
interface Settings {
|
|
@@ -13558,6 +14330,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13558
14330
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13559
14331
|
status_message?: string | null;
|
|
13560
14332
|
updated_at?: string;
|
|
14333
|
+
webhook_config?: string | number | boolean | {
|
|
14334
|
+
[key: string]: unknown;
|
|
14335
|
+
} | Array<unknown> | null;
|
|
14336
|
+
webhook_configured_at?: string | null;
|
|
14337
|
+
webhook_identifier?: string | null;
|
|
13561
14338
|
}
|
|
13562
14339
|
namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
13563
14340
|
interface Settings {
|
|
@@ -13702,6 +14479,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13702
14479
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13703
14480
|
status_message?: string | null;
|
|
13704
14481
|
updated_at?: string;
|
|
14482
|
+
webhook_config?: string | number | boolean | {
|
|
14483
|
+
[key: string]: unknown;
|
|
14484
|
+
} | Array<unknown> | null;
|
|
14485
|
+
webhook_configured_at?: string | null;
|
|
14486
|
+
webhook_identifier?: string | null;
|
|
13705
14487
|
}
|
|
13706
14488
|
namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
13707
14489
|
interface Settings {
|
|
@@ -13771,6 +14553,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13771
14553
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13772
14554
|
status_message?: string | null;
|
|
13773
14555
|
updated_at?: string;
|
|
14556
|
+
webhook_config?: string | number | boolean | {
|
|
14557
|
+
[key: string]: unknown;
|
|
14558
|
+
} | Array<unknown> | null;
|
|
14559
|
+
webhook_configured_at?: string | null;
|
|
14560
|
+
webhook_identifier?: string | null;
|
|
13774
14561
|
}
|
|
13775
14562
|
namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
13776
14563
|
interface Settings {
|
|
@@ -13840,6 +14627,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13840
14627
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13841
14628
|
status_message?: string | null;
|
|
13842
14629
|
updated_at?: string;
|
|
14630
|
+
webhook_config?: string | number | boolean | {
|
|
14631
|
+
[key: string]: unknown;
|
|
14632
|
+
} | Array<unknown> | null;
|
|
14633
|
+
webhook_configured_at?: string | null;
|
|
14634
|
+
webhook_identifier?: string | null;
|
|
13843
14635
|
}
|
|
13844
14636
|
namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
13845
14637
|
interface Settings {
|
|
@@ -13876,6 +14668,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13876
14668
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13877
14669
|
status_message?: string | null;
|
|
13878
14670
|
updated_at?: string;
|
|
14671
|
+
webhook_config?: string | number | boolean | {
|
|
14672
|
+
[key: string]: unknown;
|
|
14673
|
+
} | Array<unknown> | null;
|
|
14674
|
+
webhook_configured_at?: string | null;
|
|
14675
|
+
webhook_identifier?: string | null;
|
|
13879
14676
|
}
|
|
13880
14677
|
namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
13881
14678
|
interface Settings {
|
|
@@ -18164,13 +18961,10 @@ export declare namespace ListEventsResponse {
|
|
|
18164
18961
|
headers: {
|
|
18165
18962
|
[key: string]: unknown;
|
|
18166
18963
|
};
|
|
18167
|
-
|
|
18168
|
-
path: string;
|
|
18169
|
-
query: {
|
|
18964
|
+
payload: {
|
|
18170
18965
|
[key: string]: unknown;
|
|
18171
18966
|
};
|
|
18172
|
-
|
|
18173
|
-
body?: unknown;
|
|
18967
|
+
webhook_url: string;
|
|
18174
18968
|
}
|
|
18175
18969
|
}
|
|
18176
18970
|
interface UnionMember2 {
|
|
@@ -18545,6 +19339,11 @@ export declare namespace PostConnectResponse {
|
|
|
18545
19339
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18546
19340
|
status_message?: string | null;
|
|
18547
19341
|
updated_at?: string;
|
|
19342
|
+
webhook_config?: string | number | boolean | {
|
|
19343
|
+
[key: string]: unknown;
|
|
19344
|
+
} | Array<unknown> | null;
|
|
19345
|
+
webhook_configured_at?: string | null;
|
|
19346
|
+
webhook_identifier?: string | null;
|
|
18548
19347
|
}
|
|
18549
19348
|
namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
18550
19349
|
interface Settings {
|
|
@@ -18573,6 +19372,11 @@ export declare namespace PostConnectResponse {
|
|
|
18573
19372
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18574
19373
|
status_message?: string | null;
|
|
18575
19374
|
updated_at?: string;
|
|
19375
|
+
webhook_config?: string | number | boolean | {
|
|
19376
|
+
[key: string]: unknown;
|
|
19377
|
+
} | Array<unknown> | null;
|
|
19378
|
+
webhook_configured_at?: string | null;
|
|
19379
|
+
webhook_identifier?: string | null;
|
|
18576
19380
|
}
|
|
18577
19381
|
namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
18578
19382
|
interface Settings {
|
|
@@ -18640,6 +19444,11 @@ export declare namespace PostConnectResponse {
|
|
|
18640
19444
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18641
19445
|
status_message?: string | null;
|
|
18642
19446
|
updated_at?: string;
|
|
19447
|
+
webhook_config?: string | number | boolean | {
|
|
19448
|
+
[key: string]: unknown;
|
|
19449
|
+
} | Array<unknown> | null;
|
|
19450
|
+
webhook_configured_at?: string | null;
|
|
19451
|
+
webhook_identifier?: string | null;
|
|
18643
19452
|
}
|
|
18644
19453
|
namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
18645
19454
|
interface Settings {
|
|
@@ -18668,6 +19477,11 @@ export declare namespace PostConnectResponse {
|
|
|
18668
19477
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18669
19478
|
status_message?: string | null;
|
|
18670
19479
|
updated_at?: string;
|
|
19480
|
+
webhook_config?: string | number | boolean | {
|
|
19481
|
+
[key: string]: unknown;
|
|
19482
|
+
} | Array<unknown> | null;
|
|
19483
|
+
webhook_configured_at?: string | null;
|
|
19484
|
+
webhook_identifier?: string | null;
|
|
18671
19485
|
}
|
|
18672
19486
|
namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
18673
19487
|
interface Settings {
|
|
@@ -18735,10 +19549,20 @@ export declare namespace PostConnectResponse {
|
|
|
18735
19549
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18736
19550
|
status_message?: string | null;
|
|
18737
19551
|
updated_at?: string;
|
|
19552
|
+
webhook_config?: string | number | boolean | {
|
|
19553
|
+
[key: string]: unknown;
|
|
19554
|
+
} | Array<unknown> | null;
|
|
19555
|
+
webhook_configured_at?: string | null;
|
|
19556
|
+
webhook_identifier?: string | null;
|
|
18738
19557
|
}
|
|
18739
19558
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
18740
19559
|
interface Settings {
|
|
18741
19560
|
oauth: Settings.OAuth;
|
|
19561
|
+
/**
|
|
19562
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
19563
|
+
* API calls to BigQuery.
|
|
19564
|
+
*/
|
|
19565
|
+
project_id: string;
|
|
18742
19566
|
/**
|
|
18743
19567
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
18744
19568
|
* for backward compatibility until we remove the oauth field
|
|
@@ -18802,6 +19626,11 @@ export declare namespace PostConnectResponse {
|
|
|
18802
19626
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18803
19627
|
status_message?: string | null;
|
|
18804
19628
|
updated_at?: string;
|
|
19629
|
+
webhook_config?: string | number | boolean | {
|
|
19630
|
+
[key: string]: unknown;
|
|
19631
|
+
} | Array<unknown> | null;
|
|
19632
|
+
webhook_configured_at?: string | null;
|
|
19633
|
+
webhook_identifier?: string | null;
|
|
18805
19634
|
}
|
|
18806
19635
|
namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
18807
19636
|
interface Settings {
|
|
@@ -18869,6 +19698,11 @@ export declare namespace PostConnectResponse {
|
|
|
18869
19698
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18870
19699
|
status_message?: string | null;
|
|
18871
19700
|
updated_at?: string;
|
|
19701
|
+
webhook_config?: string | number | boolean | {
|
|
19702
|
+
[key: string]: unknown;
|
|
19703
|
+
} | Array<unknown> | null;
|
|
19704
|
+
webhook_configured_at?: string | null;
|
|
19705
|
+
webhook_identifier?: string | null;
|
|
18872
19706
|
}
|
|
18873
19707
|
namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
18874
19708
|
interface Settings {
|
|
@@ -18936,6 +19770,11 @@ export declare namespace PostConnectResponse {
|
|
|
18936
19770
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18937
19771
|
status_message?: string | null;
|
|
18938
19772
|
updated_at?: string;
|
|
19773
|
+
webhook_config?: string | number | boolean | {
|
|
19774
|
+
[key: string]: unknown;
|
|
19775
|
+
} | Array<unknown> | null;
|
|
19776
|
+
webhook_configured_at?: string | null;
|
|
19777
|
+
webhook_identifier?: string | null;
|
|
18939
19778
|
}
|
|
18940
19779
|
namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
18941
19780
|
interface Settings {
|
|
@@ -19003,6 +19842,11 @@ export declare namespace PostConnectResponse {
|
|
|
19003
19842
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19004
19843
|
status_message?: string | null;
|
|
19005
19844
|
updated_at?: string;
|
|
19845
|
+
webhook_config?: string | number | boolean | {
|
|
19846
|
+
[key: string]: unknown;
|
|
19847
|
+
} | Array<unknown> | null;
|
|
19848
|
+
webhook_configured_at?: string | null;
|
|
19849
|
+
webhook_identifier?: string | null;
|
|
19006
19850
|
}
|
|
19007
19851
|
namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
19008
19852
|
interface Settings {
|
|
@@ -19070,6 +19914,11 @@ export declare namespace PostConnectResponse {
|
|
|
19070
19914
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19071
19915
|
status_message?: string | null;
|
|
19072
19916
|
updated_at?: string;
|
|
19917
|
+
webhook_config?: string | number | boolean | {
|
|
19918
|
+
[key: string]: unknown;
|
|
19919
|
+
} | Array<unknown> | null;
|
|
19920
|
+
webhook_configured_at?: string | null;
|
|
19921
|
+
webhook_identifier?: string | null;
|
|
19073
19922
|
}
|
|
19074
19923
|
namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
19075
19924
|
interface Settings {
|
|
@@ -19137,6 +19986,11 @@ export declare namespace PostConnectResponse {
|
|
|
19137
19986
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19138
19987
|
status_message?: string | null;
|
|
19139
19988
|
updated_at?: string;
|
|
19989
|
+
webhook_config?: string | number | boolean | {
|
|
19990
|
+
[key: string]: unknown;
|
|
19991
|
+
} | Array<unknown> | null;
|
|
19992
|
+
webhook_configured_at?: string | null;
|
|
19993
|
+
webhook_identifier?: string | null;
|
|
19140
19994
|
}
|
|
19141
19995
|
namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
19142
19996
|
interface Settings {
|
|
@@ -19208,16 +20062,26 @@ export declare namespace PostConnectResponse {
|
|
|
19208
20062
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19209
20063
|
status_message?: string | null;
|
|
19210
20064
|
updated_at?: string;
|
|
20065
|
+
webhook_config?: string | number | boolean | {
|
|
20066
|
+
[key: string]: unknown;
|
|
20067
|
+
} | Array<unknown> | null;
|
|
20068
|
+
webhook_configured_at?: string | null;
|
|
20069
|
+
webhook_identifier?: string | null;
|
|
19211
20070
|
}
|
|
19212
20071
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
19213
20072
|
interface Settings {
|
|
19214
20073
|
/**
|
|
19215
|
-
*
|
|
19216
|
-
*
|
|
19217
|
-
* .cloud.databricks.com
|
|
20074
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
20075
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
19218
20076
|
*/
|
|
19219
|
-
|
|
20077
|
+
http_path: string;
|
|
19220
20078
|
oauth: Settings.OAuth;
|
|
20079
|
+
/**
|
|
20080
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
20081
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
20082
|
+
* Server hostname value.
|
|
20083
|
+
*/
|
|
20084
|
+
server_hostname: string;
|
|
19221
20085
|
/**
|
|
19222
20086
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
19223
20087
|
* for backward compatibility until we remove the oauth field
|
|
@@ -19281,6 +20145,11 @@ export declare namespace PostConnectResponse {
|
|
|
19281
20145
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19282
20146
|
status_message?: string | null;
|
|
19283
20147
|
updated_at?: string;
|
|
20148
|
+
webhook_config?: string | number | boolean | {
|
|
20149
|
+
[key: string]: unknown;
|
|
20150
|
+
} | Array<unknown> | null;
|
|
20151
|
+
webhook_configured_at?: string | null;
|
|
20152
|
+
webhook_identifier?: string | null;
|
|
19284
20153
|
}
|
|
19285
20154
|
namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
19286
20155
|
interface Settings {
|
|
@@ -19348,6 +20217,11 @@ export declare namespace PostConnectResponse {
|
|
|
19348
20217
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19349
20218
|
status_message?: string | null;
|
|
19350
20219
|
updated_at?: string;
|
|
20220
|
+
webhook_config?: string | number | boolean | {
|
|
20221
|
+
[key: string]: unknown;
|
|
20222
|
+
} | Array<unknown> | null;
|
|
20223
|
+
webhook_configured_at?: string | null;
|
|
20224
|
+
webhook_identifier?: string | null;
|
|
19351
20225
|
}
|
|
19352
20226
|
namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
19353
20227
|
interface Settings {
|
|
@@ -19415,6 +20289,11 @@ export declare namespace PostConnectResponse {
|
|
|
19415
20289
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19416
20290
|
status_message?: string | null;
|
|
19417
20291
|
updated_at?: string;
|
|
20292
|
+
webhook_config?: string | number | boolean | {
|
|
20293
|
+
[key: string]: unknown;
|
|
20294
|
+
} | Array<unknown> | null;
|
|
20295
|
+
webhook_configured_at?: string | null;
|
|
20296
|
+
webhook_identifier?: string | null;
|
|
19418
20297
|
}
|
|
19419
20298
|
namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
19420
20299
|
interface Settings {
|
|
@@ -19482,6 +20361,11 @@ export declare namespace PostConnectResponse {
|
|
|
19482
20361
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19483
20362
|
status_message?: string | null;
|
|
19484
20363
|
updated_at?: string;
|
|
20364
|
+
webhook_config?: string | number | boolean | {
|
|
20365
|
+
[key: string]: unknown;
|
|
20366
|
+
} | Array<unknown> | null;
|
|
20367
|
+
webhook_configured_at?: string | null;
|
|
20368
|
+
webhook_identifier?: string | null;
|
|
19485
20369
|
}
|
|
19486
20370
|
namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
19487
20371
|
interface Settings {
|
|
@@ -19549,6 +20433,11 @@ export declare namespace PostConnectResponse {
|
|
|
19549
20433
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19550
20434
|
status_message?: string | null;
|
|
19551
20435
|
updated_at?: string;
|
|
20436
|
+
webhook_config?: string | number | boolean | {
|
|
20437
|
+
[key: string]: unknown;
|
|
20438
|
+
} | Array<unknown> | null;
|
|
20439
|
+
webhook_configured_at?: string | null;
|
|
20440
|
+
webhook_identifier?: string | null;
|
|
19552
20441
|
}
|
|
19553
20442
|
namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
19554
20443
|
interface Settings {
|
|
@@ -19616,6 +20505,11 @@ export declare namespace PostConnectResponse {
|
|
|
19616
20505
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19617
20506
|
status_message?: string | null;
|
|
19618
20507
|
updated_at?: string;
|
|
20508
|
+
webhook_config?: string | number | boolean | {
|
|
20509
|
+
[key: string]: unknown;
|
|
20510
|
+
} | Array<unknown> | null;
|
|
20511
|
+
webhook_configured_at?: string | null;
|
|
20512
|
+
webhook_identifier?: string | null;
|
|
19619
20513
|
}
|
|
19620
20514
|
namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
19621
20515
|
interface Settings {
|
|
@@ -19683,6 +20577,11 @@ export declare namespace PostConnectResponse {
|
|
|
19683
20577
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19684
20578
|
status_message?: string | null;
|
|
19685
20579
|
updated_at?: string;
|
|
20580
|
+
webhook_config?: string | number | boolean | {
|
|
20581
|
+
[key: string]: unknown;
|
|
20582
|
+
} | Array<unknown> | null;
|
|
20583
|
+
webhook_configured_at?: string | null;
|
|
20584
|
+
webhook_identifier?: string | null;
|
|
19686
20585
|
}
|
|
19687
20586
|
namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
19688
20587
|
interface Settings {
|
|
@@ -19750,6 +20649,11 @@ export declare namespace PostConnectResponse {
|
|
|
19750
20649
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19751
20650
|
status_message?: string | null;
|
|
19752
20651
|
updated_at?: string;
|
|
20652
|
+
webhook_config?: string | number | boolean | {
|
|
20653
|
+
[key: string]: unknown;
|
|
20654
|
+
} | Array<unknown> | null;
|
|
20655
|
+
webhook_configured_at?: string | null;
|
|
20656
|
+
webhook_identifier?: string | null;
|
|
19753
20657
|
}
|
|
19754
20658
|
namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
19755
20659
|
interface Settings {
|
|
@@ -19817,6 +20721,11 @@ export declare namespace PostConnectResponse {
|
|
|
19817
20721
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19818
20722
|
status_message?: string | null;
|
|
19819
20723
|
updated_at?: string;
|
|
20724
|
+
webhook_config?: string | number | boolean | {
|
|
20725
|
+
[key: string]: unknown;
|
|
20726
|
+
} | Array<unknown> | null;
|
|
20727
|
+
webhook_configured_at?: string | null;
|
|
20728
|
+
webhook_identifier?: string | null;
|
|
19820
20729
|
}
|
|
19821
20730
|
namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
19822
20731
|
interface Settings {
|
|
@@ -19884,6 +20793,11 @@ export declare namespace PostConnectResponse {
|
|
|
19884
20793
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19885
20794
|
status_message?: string | null;
|
|
19886
20795
|
updated_at?: string;
|
|
20796
|
+
webhook_config?: string | number | boolean | {
|
|
20797
|
+
[key: string]: unknown;
|
|
20798
|
+
} | Array<unknown> | null;
|
|
20799
|
+
webhook_configured_at?: string | null;
|
|
20800
|
+
webhook_identifier?: string | null;
|
|
19887
20801
|
}
|
|
19888
20802
|
namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
19889
20803
|
interface Settings {
|
|
@@ -19951,6 +20865,11 @@ export declare namespace PostConnectResponse {
|
|
|
19951
20865
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19952
20866
|
status_message?: string | null;
|
|
19953
20867
|
updated_at?: string;
|
|
20868
|
+
webhook_config?: string | number | boolean | {
|
|
20869
|
+
[key: string]: unknown;
|
|
20870
|
+
} | Array<unknown> | null;
|
|
20871
|
+
webhook_configured_at?: string | null;
|
|
20872
|
+
webhook_identifier?: string | null;
|
|
19954
20873
|
}
|
|
19955
20874
|
namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
19956
20875
|
interface Settings {
|
|
@@ -20018,6 +20937,11 @@ export declare namespace PostConnectResponse {
|
|
|
20018
20937
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20019
20938
|
status_message?: string | null;
|
|
20020
20939
|
updated_at?: string;
|
|
20940
|
+
webhook_config?: string | number | boolean | {
|
|
20941
|
+
[key: string]: unknown;
|
|
20942
|
+
} | Array<unknown> | null;
|
|
20943
|
+
webhook_configured_at?: string | null;
|
|
20944
|
+
webhook_identifier?: string | null;
|
|
20021
20945
|
}
|
|
20022
20946
|
namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
20023
20947
|
interface Settings {
|
|
@@ -20085,6 +21009,11 @@ export declare namespace PostConnectResponse {
|
|
|
20085
21009
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20086
21010
|
status_message?: string | null;
|
|
20087
21011
|
updated_at?: string;
|
|
21012
|
+
webhook_config?: string | number | boolean | {
|
|
21013
|
+
[key: string]: unknown;
|
|
21014
|
+
} | Array<unknown> | null;
|
|
21015
|
+
webhook_configured_at?: string | null;
|
|
21016
|
+
webhook_identifier?: string | null;
|
|
20088
21017
|
}
|
|
20089
21018
|
namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
20090
21019
|
interface Settings {
|
|
@@ -20152,6 +21081,11 @@ export declare namespace PostConnectResponse {
|
|
|
20152
21081
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20153
21082
|
status_message?: string | null;
|
|
20154
21083
|
updated_at?: string;
|
|
21084
|
+
webhook_config?: string | number | boolean | {
|
|
21085
|
+
[key: string]: unknown;
|
|
21086
|
+
} | Array<unknown> | null;
|
|
21087
|
+
webhook_configured_at?: string | null;
|
|
21088
|
+
webhook_identifier?: string | null;
|
|
20155
21089
|
}
|
|
20156
21090
|
namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
20157
21091
|
interface Settings {
|
|
@@ -20223,6 +21157,11 @@ export declare namespace PostConnectResponse {
|
|
|
20223
21157
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20224
21158
|
status_message?: string | null;
|
|
20225
21159
|
updated_at?: string;
|
|
21160
|
+
webhook_config?: string | number | boolean | {
|
|
21161
|
+
[key: string]: unknown;
|
|
21162
|
+
} | Array<unknown> | null;
|
|
21163
|
+
webhook_configured_at?: string | null;
|
|
21164
|
+
webhook_identifier?: string | null;
|
|
20226
21165
|
}
|
|
20227
21166
|
namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
20228
21167
|
interface Settings {
|
|
@@ -20290,6 +21229,11 @@ export declare namespace PostConnectResponse {
|
|
|
20290
21229
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20291
21230
|
status_message?: string | null;
|
|
20292
21231
|
updated_at?: string;
|
|
21232
|
+
webhook_config?: string | number | boolean | {
|
|
21233
|
+
[key: string]: unknown;
|
|
21234
|
+
} | Array<unknown> | null;
|
|
21235
|
+
webhook_configured_at?: string | null;
|
|
21236
|
+
webhook_identifier?: string | null;
|
|
20293
21237
|
}
|
|
20294
21238
|
namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
20295
21239
|
interface Settings {
|
|
@@ -20357,6 +21301,11 @@ export declare namespace PostConnectResponse {
|
|
|
20357
21301
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20358
21302
|
status_message?: string | null;
|
|
20359
21303
|
updated_at?: string;
|
|
21304
|
+
webhook_config?: string | number | boolean | {
|
|
21305
|
+
[key: string]: unknown;
|
|
21306
|
+
} | Array<unknown> | null;
|
|
21307
|
+
webhook_configured_at?: string | null;
|
|
21308
|
+
webhook_identifier?: string | null;
|
|
20360
21309
|
}
|
|
20361
21310
|
namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
20362
21311
|
interface Settings {
|
|
@@ -20424,6 +21373,11 @@ export declare namespace PostConnectResponse {
|
|
|
20424
21373
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20425
21374
|
status_message?: string | null;
|
|
20426
21375
|
updated_at?: string;
|
|
21376
|
+
webhook_config?: string | number | boolean | {
|
|
21377
|
+
[key: string]: unknown;
|
|
21378
|
+
} | Array<unknown> | null;
|
|
21379
|
+
webhook_configured_at?: string | null;
|
|
21380
|
+
webhook_identifier?: string | null;
|
|
20427
21381
|
}
|
|
20428
21382
|
namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
20429
21383
|
interface Settings {
|
|
@@ -20491,6 +21445,11 @@ export declare namespace PostConnectResponse {
|
|
|
20491
21445
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20492
21446
|
status_message?: string | null;
|
|
20493
21447
|
updated_at?: string;
|
|
21448
|
+
webhook_config?: string | number | boolean | {
|
|
21449
|
+
[key: string]: unknown;
|
|
21450
|
+
} | Array<unknown> | null;
|
|
21451
|
+
webhook_configured_at?: string | null;
|
|
21452
|
+
webhook_identifier?: string | null;
|
|
20494
21453
|
}
|
|
20495
21454
|
namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
20496
21455
|
interface Settings {
|
|
@@ -20558,6 +21517,11 @@ export declare namespace PostConnectResponse {
|
|
|
20558
21517
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20559
21518
|
status_message?: string | null;
|
|
20560
21519
|
updated_at?: string;
|
|
21520
|
+
webhook_config?: string | number | boolean | {
|
|
21521
|
+
[key: string]: unknown;
|
|
21522
|
+
} | Array<unknown> | null;
|
|
21523
|
+
webhook_configured_at?: string | null;
|
|
21524
|
+
webhook_identifier?: string | null;
|
|
20561
21525
|
}
|
|
20562
21526
|
namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
20563
21527
|
interface Settings {
|
|
@@ -20629,6 +21593,11 @@ export declare namespace PostConnectResponse {
|
|
|
20629
21593
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20630
21594
|
status_message?: string | null;
|
|
20631
21595
|
updated_at?: string;
|
|
21596
|
+
webhook_config?: string | number | boolean | {
|
|
21597
|
+
[key: string]: unknown;
|
|
21598
|
+
} | Array<unknown> | null;
|
|
21599
|
+
webhook_configured_at?: string | null;
|
|
21600
|
+
webhook_identifier?: string | null;
|
|
20632
21601
|
}
|
|
20633
21602
|
namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
20634
21603
|
interface Settings {
|
|
@@ -20696,6 +21665,11 @@ export declare namespace PostConnectResponse {
|
|
|
20696
21665
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20697
21666
|
status_message?: string | null;
|
|
20698
21667
|
updated_at?: string;
|
|
21668
|
+
webhook_config?: string | number | boolean | {
|
|
21669
|
+
[key: string]: unknown;
|
|
21670
|
+
} | Array<unknown> | null;
|
|
21671
|
+
webhook_configured_at?: string | null;
|
|
21672
|
+
webhook_identifier?: string | null;
|
|
20699
21673
|
}
|
|
20700
21674
|
namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
20701
21675
|
interface Settings {
|
|
@@ -20763,6 +21737,11 @@ export declare namespace PostConnectResponse {
|
|
|
20763
21737
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20764
21738
|
status_message?: string | null;
|
|
20765
21739
|
updated_at?: string;
|
|
21740
|
+
webhook_config?: string | number | boolean | {
|
|
21741
|
+
[key: string]: unknown;
|
|
21742
|
+
} | Array<unknown> | null;
|
|
21743
|
+
webhook_configured_at?: string | null;
|
|
21744
|
+
webhook_identifier?: string | null;
|
|
20766
21745
|
}
|
|
20767
21746
|
namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
20768
21747
|
interface Settings {
|
|
@@ -20830,6 +21809,11 @@ export declare namespace PostConnectResponse {
|
|
|
20830
21809
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20831
21810
|
status_message?: string | null;
|
|
20832
21811
|
updated_at?: string;
|
|
21812
|
+
webhook_config?: string | number | boolean | {
|
|
21813
|
+
[key: string]: unknown;
|
|
21814
|
+
} | Array<unknown> | null;
|
|
21815
|
+
webhook_configured_at?: string | null;
|
|
21816
|
+
webhook_identifier?: string | null;
|
|
20833
21817
|
}
|
|
20834
21818
|
namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
20835
21819
|
interface Settings {
|
|
@@ -20902,6 +21886,11 @@ export declare namespace PostConnectResponse {
|
|
|
20902
21886
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20903
21887
|
status_message?: string | null;
|
|
20904
21888
|
updated_at?: string;
|
|
21889
|
+
webhook_config?: string | number | boolean | {
|
|
21890
|
+
[key: string]: unknown;
|
|
21891
|
+
} | Array<unknown> | null;
|
|
21892
|
+
webhook_configured_at?: string | null;
|
|
21893
|
+
webhook_identifier?: string | null;
|
|
20905
21894
|
}
|
|
20906
21895
|
namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
20907
21896
|
interface Settings {
|
|
@@ -20969,6 +21958,11 @@ export declare namespace PostConnectResponse {
|
|
|
20969
21958
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20970
21959
|
status_message?: string | null;
|
|
20971
21960
|
updated_at?: string;
|
|
21961
|
+
webhook_config?: string | number | boolean | {
|
|
21962
|
+
[key: string]: unknown;
|
|
21963
|
+
} | Array<unknown> | null;
|
|
21964
|
+
webhook_configured_at?: string | null;
|
|
21965
|
+
webhook_identifier?: string | null;
|
|
20972
21966
|
}
|
|
20973
21967
|
namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
20974
21968
|
interface Settings {
|
|
@@ -21036,6 +22030,11 @@ export declare namespace PostConnectResponse {
|
|
|
21036
22030
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21037
22031
|
status_message?: string | null;
|
|
21038
22032
|
updated_at?: string;
|
|
22033
|
+
webhook_config?: string | number | boolean | {
|
|
22034
|
+
[key: string]: unknown;
|
|
22035
|
+
} | Array<unknown> | null;
|
|
22036
|
+
webhook_configured_at?: string | null;
|
|
22037
|
+
webhook_identifier?: string | null;
|
|
21039
22038
|
}
|
|
21040
22039
|
namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
21041
22040
|
interface Settings {
|
|
@@ -21107,6 +22106,11 @@ export declare namespace PostConnectResponse {
|
|
|
21107
22106
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21108
22107
|
status_message?: string | null;
|
|
21109
22108
|
updated_at?: string;
|
|
22109
|
+
webhook_config?: string | number | boolean | {
|
|
22110
|
+
[key: string]: unknown;
|
|
22111
|
+
} | Array<unknown> | null;
|
|
22112
|
+
webhook_configured_at?: string | null;
|
|
22113
|
+
webhook_identifier?: string | null;
|
|
21110
22114
|
}
|
|
21111
22115
|
namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
21112
22116
|
interface Settings {
|
|
@@ -21174,6 +22178,11 @@ export declare namespace PostConnectResponse {
|
|
|
21174
22178
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21175
22179
|
status_message?: string | null;
|
|
21176
22180
|
updated_at?: string;
|
|
22181
|
+
webhook_config?: string | number | boolean | {
|
|
22182
|
+
[key: string]: unknown;
|
|
22183
|
+
} | Array<unknown> | null;
|
|
22184
|
+
webhook_configured_at?: string | null;
|
|
22185
|
+
webhook_identifier?: string | null;
|
|
21177
22186
|
}
|
|
21178
22187
|
namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
21179
22188
|
interface Settings {
|
|
@@ -21202,6 +22211,11 @@ export declare namespace PostConnectResponse {
|
|
|
21202
22211
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21203
22212
|
status_message?: string | null;
|
|
21204
22213
|
updated_at?: string;
|
|
22214
|
+
webhook_config?: string | number | boolean | {
|
|
22215
|
+
[key: string]: unknown;
|
|
22216
|
+
} | Array<unknown> | null;
|
|
22217
|
+
webhook_configured_at?: string | null;
|
|
22218
|
+
webhook_identifier?: string | null;
|
|
21205
22219
|
}
|
|
21206
22220
|
namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
21207
22221
|
interface Settings {
|
|
@@ -21235,6 +22249,11 @@ export declare namespace PostConnectResponse {
|
|
|
21235
22249
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21236
22250
|
status_message?: string | null;
|
|
21237
22251
|
updated_at?: string;
|
|
22252
|
+
webhook_config?: string | number | boolean | {
|
|
22253
|
+
[key: string]: unknown;
|
|
22254
|
+
} | Array<unknown> | null;
|
|
22255
|
+
webhook_configured_at?: string | null;
|
|
22256
|
+
webhook_identifier?: string | null;
|
|
21238
22257
|
}
|
|
21239
22258
|
namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
21240
22259
|
interface Settings {
|
|
@@ -21263,6 +22282,11 @@ export declare namespace PostConnectResponse {
|
|
|
21263
22282
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21264
22283
|
status_message?: string | null;
|
|
21265
22284
|
updated_at?: string;
|
|
22285
|
+
webhook_config?: string | number | boolean | {
|
|
22286
|
+
[key: string]: unknown;
|
|
22287
|
+
} | Array<unknown> | null;
|
|
22288
|
+
webhook_configured_at?: string | null;
|
|
22289
|
+
webhook_identifier?: string | null;
|
|
21266
22290
|
}
|
|
21267
22291
|
namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
21268
22292
|
interface Settings {
|
|
@@ -21295,6 +22319,11 @@ export declare namespace PostConnectResponse {
|
|
|
21295
22319
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21296
22320
|
status_message?: string | null;
|
|
21297
22321
|
updated_at?: string;
|
|
22322
|
+
webhook_config?: string | number | boolean | {
|
|
22323
|
+
[key: string]: unknown;
|
|
22324
|
+
} | Array<unknown> | null;
|
|
22325
|
+
webhook_configured_at?: string | null;
|
|
22326
|
+
webhook_identifier?: string | null;
|
|
21298
22327
|
}
|
|
21299
22328
|
namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
21300
22329
|
interface Settings {
|
|
@@ -21327,6 +22356,11 @@ export declare namespace PostConnectResponse {
|
|
|
21327
22356
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21328
22357
|
status_message?: string | null;
|
|
21329
22358
|
updated_at?: string;
|
|
22359
|
+
webhook_config?: string | number | boolean | {
|
|
22360
|
+
[key: string]: unknown;
|
|
22361
|
+
} | Array<unknown> | null;
|
|
22362
|
+
webhook_configured_at?: string | null;
|
|
22363
|
+
webhook_identifier?: string | null;
|
|
21330
22364
|
}
|
|
21331
22365
|
namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
21332
22366
|
interface Settings {
|
|
@@ -21358,6 +22392,11 @@ export declare namespace PostConnectResponse {
|
|
|
21358
22392
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21359
22393
|
status_message?: string | null;
|
|
21360
22394
|
updated_at?: string;
|
|
22395
|
+
webhook_config?: string | number | boolean | {
|
|
22396
|
+
[key: string]: unknown;
|
|
22397
|
+
} | Array<unknown> | null;
|
|
22398
|
+
webhook_configured_at?: string | null;
|
|
22399
|
+
webhook_identifier?: string | null;
|
|
21361
22400
|
}
|
|
21362
22401
|
namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
21363
22402
|
interface Settings {
|
|
@@ -21500,6 +22539,11 @@ export declare namespace PostConnectResponse {
|
|
|
21500
22539
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21501
22540
|
status_message?: string | null;
|
|
21502
22541
|
updated_at?: string;
|
|
22542
|
+
webhook_config?: string | number | boolean | {
|
|
22543
|
+
[key: string]: unknown;
|
|
22544
|
+
} | Array<unknown> | null;
|
|
22545
|
+
webhook_configured_at?: string | null;
|
|
22546
|
+
webhook_identifier?: string | null;
|
|
21503
22547
|
}
|
|
21504
22548
|
namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
21505
22549
|
interface Settings {
|
|
@@ -21567,6 +22611,11 @@ export declare namespace PostConnectResponse {
|
|
|
21567
22611
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21568
22612
|
status_message?: string | null;
|
|
21569
22613
|
updated_at?: string;
|
|
22614
|
+
webhook_config?: string | number | boolean | {
|
|
22615
|
+
[key: string]: unknown;
|
|
22616
|
+
} | Array<unknown> | null;
|
|
22617
|
+
webhook_configured_at?: string | null;
|
|
22618
|
+
webhook_identifier?: string | null;
|
|
21570
22619
|
}
|
|
21571
22620
|
namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
21572
22621
|
interface Settings {
|
|
@@ -21634,6 +22683,11 @@ export declare namespace PostConnectResponse {
|
|
|
21634
22683
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21635
22684
|
status_message?: string | null;
|
|
21636
22685
|
updated_at?: string;
|
|
22686
|
+
webhook_config?: string | number | boolean | {
|
|
22687
|
+
[key: string]: unknown;
|
|
22688
|
+
} | Array<unknown> | null;
|
|
22689
|
+
webhook_configured_at?: string | null;
|
|
22690
|
+
webhook_identifier?: string | null;
|
|
21637
22691
|
}
|
|
21638
22692
|
namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
21639
22693
|
interface Settings {
|
|
@@ -21668,6 +22722,11 @@ export declare namespace PostConnectResponse {
|
|
|
21668
22722
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21669
22723
|
status_message?: string | null;
|
|
21670
22724
|
updated_at?: string;
|
|
22725
|
+
webhook_config?: string | number | boolean | {
|
|
22726
|
+
[key: string]: unknown;
|
|
22727
|
+
} | Array<unknown> | null;
|
|
22728
|
+
webhook_configured_at?: string | null;
|
|
22729
|
+
webhook_identifier?: string | null;
|
|
21671
22730
|
}
|
|
21672
22731
|
namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
21673
22732
|
interface Settings {
|
|
@@ -24462,6 +25521,11 @@ export declare namespace CreateConnectionParams {
|
|
|
24462
25521
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
24463
25522
|
interface Settings {
|
|
24464
25523
|
oauth: Settings.OAuth;
|
|
25524
|
+
/**
|
|
25525
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
25526
|
+
* API calls to BigQuery.
|
|
25527
|
+
*/
|
|
25528
|
+
project_id: string;
|
|
24465
25529
|
/**
|
|
24466
25530
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
24467
25531
|
* for backward compatibility until we remove the oauth field
|
|
@@ -24802,12 +25866,17 @@ export declare namespace CreateConnectionParams {
|
|
|
24802
25866
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
24803
25867
|
interface Settings {
|
|
24804
25868
|
/**
|
|
24805
|
-
*
|
|
24806
|
-
*
|
|
24807
|
-
* .cloud.databricks.com
|
|
25869
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
25870
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
24808
25871
|
*/
|
|
24809
|
-
|
|
25872
|
+
http_path: string;
|
|
24810
25873
|
oauth: Settings.OAuth;
|
|
25874
|
+
/**
|
|
25875
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
25876
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
25877
|
+
* Server hostname value.
|
|
25878
|
+
*/
|
|
25879
|
+
server_hostname: string;
|
|
24811
25880
|
/**
|
|
24812
25881
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
24813
25882
|
* for backward compatibility until we remove the oauth field
|
|
@@ -28040,7 +29109,16 @@ export declare namespace PreConnectParams {
|
|
|
28040
29109
|
}
|
|
28041
29110
|
interface ConnectorBigqueryDiscriminatedPreConnectInput {
|
|
28042
29111
|
connector_name: 'bigquery';
|
|
28043
|
-
pre_connect_input:
|
|
29112
|
+
pre_connect_input: ConnectorBigqueryDiscriminatedPreConnectInput.PreConnectInput;
|
|
29113
|
+
}
|
|
29114
|
+
namespace ConnectorBigqueryDiscriminatedPreConnectInput {
|
|
29115
|
+
interface PreConnectInput {
|
|
29116
|
+
/**
|
|
29117
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
29118
|
+
* API calls to BigQuery.
|
|
29119
|
+
*/
|
|
29120
|
+
project_id: string;
|
|
29121
|
+
}
|
|
28044
29122
|
}
|
|
28045
29123
|
interface ConnectorBitbucketSourceControlDiscriminatedPreConnectInput {
|
|
28046
29124
|
connector_name: 'bitbucket-source-control';
|
|
@@ -28082,11 +29160,16 @@ export declare namespace PreConnectParams {
|
|
|
28082
29160
|
namespace ConnectorDatabricksDiscriminatedPreConnectInput {
|
|
28083
29161
|
interface PreConnectInput {
|
|
28084
29162
|
/**
|
|
28085
|
-
*
|
|
28086
|
-
*
|
|
28087
|
-
|
|
29163
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
29164
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
29165
|
+
*/
|
|
29166
|
+
http_path: string;
|
|
29167
|
+
/**
|
|
29168
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
29169
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
29170
|
+
* Server hostname value.
|
|
28088
29171
|
*/
|
|
28089
|
-
|
|
29172
|
+
server_hostname: string;
|
|
28090
29173
|
}
|
|
28091
29174
|
}
|
|
28092
29175
|
interface ConnectorDiscordDiscriminatedPreConnectInput {
|