@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
|
@@ -39,6 +39,8 @@ export interface Connector {
|
|
|
39
39
|
scopes?: Array<Connector.Scope>;
|
|
40
40
|
|
|
41
41
|
stage?: 'alpha' | 'beta' | 'ga' | 'hidden';
|
|
42
|
+
|
|
43
|
+
webhook_registration_input?: unknown;
|
|
42
44
|
}
|
|
43
45
|
|
|
44
46
|
export namespace Connector {
|
|
@@ -56,6 +58,8 @@ export namespace Connector {
|
|
|
56
58
|
pre_connect_input?: unknown;
|
|
57
59
|
|
|
58
60
|
webhook_events?: unknown;
|
|
61
|
+
|
|
62
|
+
webhook_registration_input?: unknown;
|
|
59
63
|
}
|
|
60
64
|
|
|
61
65
|
export interface Scope {
|
|
@@ -267,6 +271,12 @@ export namespace CreateConnectionResponse {
|
|
|
267
271
|
status_message?: string | null;
|
|
268
272
|
|
|
269
273
|
updated_at?: string;
|
|
274
|
+
|
|
275
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
276
|
+
|
|
277
|
+
webhook_configured_at?: string | null;
|
|
278
|
+
|
|
279
|
+
webhook_identifier?: string | null;
|
|
270
280
|
}
|
|
271
281
|
|
|
272
282
|
export namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
@@ -312,6 +322,12 @@ export namespace CreateConnectionResponse {
|
|
|
312
322
|
status_message?: string | null;
|
|
313
323
|
|
|
314
324
|
updated_at?: string;
|
|
325
|
+
|
|
326
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
327
|
+
|
|
328
|
+
webhook_configured_at?: string | null;
|
|
329
|
+
|
|
330
|
+
webhook_identifier?: string | null;
|
|
315
331
|
}
|
|
316
332
|
|
|
317
333
|
export namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
@@ -406,6 +422,12 @@ export namespace CreateConnectionResponse {
|
|
|
406
422
|
status_message?: string | null;
|
|
407
423
|
|
|
408
424
|
updated_at?: string;
|
|
425
|
+
|
|
426
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
427
|
+
|
|
428
|
+
webhook_configured_at?: string | null;
|
|
429
|
+
|
|
430
|
+
webhook_identifier?: string | null;
|
|
409
431
|
}
|
|
410
432
|
|
|
411
433
|
export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
@@ -451,6 +473,12 @@ export namespace CreateConnectionResponse {
|
|
|
451
473
|
status_message?: string | null;
|
|
452
474
|
|
|
453
475
|
updated_at?: string;
|
|
476
|
+
|
|
477
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
478
|
+
|
|
479
|
+
webhook_configured_at?: string | null;
|
|
480
|
+
|
|
481
|
+
webhook_identifier?: string | null;
|
|
454
482
|
}
|
|
455
483
|
|
|
456
484
|
export namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
@@ -545,12 +573,24 @@ export namespace CreateConnectionResponse {
|
|
|
545
573
|
status_message?: string | null;
|
|
546
574
|
|
|
547
575
|
updated_at?: string;
|
|
576
|
+
|
|
577
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
578
|
+
|
|
579
|
+
webhook_configured_at?: string | null;
|
|
580
|
+
|
|
581
|
+
webhook_identifier?: string | null;
|
|
548
582
|
}
|
|
549
583
|
|
|
550
584
|
export namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
551
585
|
export interface Settings {
|
|
552
586
|
oauth: Settings.OAuth;
|
|
553
587
|
|
|
588
|
+
/**
|
|
589
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
590
|
+
* API calls to BigQuery.
|
|
591
|
+
*/
|
|
592
|
+
project_id: string;
|
|
593
|
+
|
|
554
594
|
/**
|
|
555
595
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
556
596
|
* for backward compatibility until we remove the oauth field
|
|
@@ -639,6 +679,12 @@ export namespace CreateConnectionResponse {
|
|
|
639
679
|
status_message?: string | null;
|
|
640
680
|
|
|
641
681
|
updated_at?: string;
|
|
682
|
+
|
|
683
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
684
|
+
|
|
685
|
+
webhook_configured_at?: string | null;
|
|
686
|
+
|
|
687
|
+
webhook_identifier?: string | null;
|
|
642
688
|
}
|
|
643
689
|
|
|
644
690
|
export namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
@@ -733,6 +779,12 @@ export namespace CreateConnectionResponse {
|
|
|
733
779
|
status_message?: string | null;
|
|
734
780
|
|
|
735
781
|
updated_at?: string;
|
|
782
|
+
|
|
783
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
784
|
+
|
|
785
|
+
webhook_configured_at?: string | null;
|
|
786
|
+
|
|
787
|
+
webhook_identifier?: string | null;
|
|
736
788
|
}
|
|
737
789
|
|
|
738
790
|
export namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
@@ -827,6 +879,12 @@ export namespace CreateConnectionResponse {
|
|
|
827
879
|
status_message?: string | null;
|
|
828
880
|
|
|
829
881
|
updated_at?: string;
|
|
882
|
+
|
|
883
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
884
|
+
|
|
885
|
+
webhook_configured_at?: string | null;
|
|
886
|
+
|
|
887
|
+
webhook_identifier?: string | null;
|
|
830
888
|
}
|
|
831
889
|
|
|
832
890
|
export namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
@@ -921,6 +979,12 @@ export namespace CreateConnectionResponse {
|
|
|
921
979
|
status_message?: string | null;
|
|
922
980
|
|
|
923
981
|
updated_at?: string;
|
|
982
|
+
|
|
983
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
984
|
+
|
|
985
|
+
webhook_configured_at?: string | null;
|
|
986
|
+
|
|
987
|
+
webhook_identifier?: string | null;
|
|
924
988
|
}
|
|
925
989
|
|
|
926
990
|
export namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
@@ -1015,6 +1079,12 @@ export namespace CreateConnectionResponse {
|
|
|
1015
1079
|
status_message?: string | null;
|
|
1016
1080
|
|
|
1017
1081
|
updated_at?: string;
|
|
1082
|
+
|
|
1083
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1084
|
+
|
|
1085
|
+
webhook_configured_at?: string | null;
|
|
1086
|
+
|
|
1087
|
+
webhook_identifier?: string | null;
|
|
1018
1088
|
}
|
|
1019
1089
|
|
|
1020
1090
|
export namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
@@ -1109,6 +1179,12 @@ export namespace CreateConnectionResponse {
|
|
|
1109
1179
|
status_message?: string | null;
|
|
1110
1180
|
|
|
1111
1181
|
updated_at?: string;
|
|
1182
|
+
|
|
1183
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1184
|
+
|
|
1185
|
+
webhook_configured_at?: string | null;
|
|
1186
|
+
|
|
1187
|
+
webhook_identifier?: string | null;
|
|
1112
1188
|
}
|
|
1113
1189
|
|
|
1114
1190
|
export namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
@@ -1208,19 +1284,31 @@ export namespace CreateConnectionResponse {
|
|
|
1208
1284
|
status_message?: string | null;
|
|
1209
1285
|
|
|
1210
1286
|
updated_at?: string;
|
|
1287
|
+
|
|
1288
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1289
|
+
|
|
1290
|
+
webhook_configured_at?: string | null;
|
|
1291
|
+
|
|
1292
|
+
webhook_identifier?: string | null;
|
|
1211
1293
|
}
|
|
1212
1294
|
|
|
1213
1295
|
export namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
1214
1296
|
export interface Settings {
|
|
1215
1297
|
/**
|
|
1216
|
-
*
|
|
1217
|
-
*
|
|
1218
|
-
* .cloud.databricks.com
|
|
1298
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
1299
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
1219
1300
|
*/
|
|
1220
|
-
|
|
1301
|
+
http_path: string;
|
|
1221
1302
|
|
|
1222
1303
|
oauth: Settings.OAuth;
|
|
1223
1304
|
|
|
1305
|
+
/**
|
|
1306
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
1307
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
1308
|
+
* Server hostname value.
|
|
1309
|
+
*/
|
|
1310
|
+
server_hostname: string;
|
|
1311
|
+
|
|
1224
1312
|
/**
|
|
1225
1313
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
1226
1314
|
* for backward compatibility until we remove the oauth field
|
|
@@ -1309,6 +1397,12 @@ export namespace CreateConnectionResponse {
|
|
|
1309
1397
|
status_message?: string | null;
|
|
1310
1398
|
|
|
1311
1399
|
updated_at?: string;
|
|
1400
|
+
|
|
1401
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1402
|
+
|
|
1403
|
+
webhook_configured_at?: string | null;
|
|
1404
|
+
|
|
1405
|
+
webhook_identifier?: string | null;
|
|
1312
1406
|
}
|
|
1313
1407
|
|
|
1314
1408
|
export namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
@@ -1403,6 +1497,12 @@ export namespace CreateConnectionResponse {
|
|
|
1403
1497
|
status_message?: string | null;
|
|
1404
1498
|
|
|
1405
1499
|
updated_at?: string;
|
|
1500
|
+
|
|
1501
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1502
|
+
|
|
1503
|
+
webhook_configured_at?: string | null;
|
|
1504
|
+
|
|
1505
|
+
webhook_identifier?: string | null;
|
|
1406
1506
|
}
|
|
1407
1507
|
|
|
1408
1508
|
export namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
@@ -1497,6 +1597,12 @@ export namespace CreateConnectionResponse {
|
|
|
1497
1597
|
status_message?: string | null;
|
|
1498
1598
|
|
|
1499
1599
|
updated_at?: string;
|
|
1600
|
+
|
|
1601
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1602
|
+
|
|
1603
|
+
webhook_configured_at?: string | null;
|
|
1604
|
+
|
|
1605
|
+
webhook_identifier?: string | null;
|
|
1500
1606
|
}
|
|
1501
1607
|
|
|
1502
1608
|
export namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
@@ -1591,6 +1697,12 @@ export namespace CreateConnectionResponse {
|
|
|
1591
1697
|
status_message?: string | null;
|
|
1592
1698
|
|
|
1593
1699
|
updated_at?: string;
|
|
1700
|
+
|
|
1701
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1702
|
+
|
|
1703
|
+
webhook_configured_at?: string | null;
|
|
1704
|
+
|
|
1705
|
+
webhook_identifier?: string | null;
|
|
1594
1706
|
}
|
|
1595
1707
|
|
|
1596
1708
|
export namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
@@ -1685,6 +1797,12 @@ export namespace CreateConnectionResponse {
|
|
|
1685
1797
|
status_message?: string | null;
|
|
1686
1798
|
|
|
1687
1799
|
updated_at?: string;
|
|
1800
|
+
|
|
1801
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1802
|
+
|
|
1803
|
+
webhook_configured_at?: string | null;
|
|
1804
|
+
|
|
1805
|
+
webhook_identifier?: string | null;
|
|
1688
1806
|
}
|
|
1689
1807
|
|
|
1690
1808
|
export namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
@@ -1779,6 +1897,12 @@ export namespace CreateConnectionResponse {
|
|
|
1779
1897
|
status_message?: string | null;
|
|
1780
1898
|
|
|
1781
1899
|
updated_at?: string;
|
|
1900
|
+
|
|
1901
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
1902
|
+
|
|
1903
|
+
webhook_configured_at?: string | null;
|
|
1904
|
+
|
|
1905
|
+
webhook_identifier?: string | null;
|
|
1782
1906
|
}
|
|
1783
1907
|
|
|
1784
1908
|
export namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
@@ -1873,6 +1997,12 @@ export namespace CreateConnectionResponse {
|
|
|
1873
1997
|
status_message?: string | null;
|
|
1874
1998
|
|
|
1875
1999
|
updated_at?: string;
|
|
2000
|
+
|
|
2001
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2002
|
+
|
|
2003
|
+
webhook_configured_at?: string | null;
|
|
2004
|
+
|
|
2005
|
+
webhook_identifier?: string | null;
|
|
1876
2006
|
}
|
|
1877
2007
|
|
|
1878
2008
|
export namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
@@ -1967,6 +2097,12 @@ export namespace CreateConnectionResponse {
|
|
|
1967
2097
|
status_message?: string | null;
|
|
1968
2098
|
|
|
1969
2099
|
updated_at?: string;
|
|
2100
|
+
|
|
2101
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2102
|
+
|
|
2103
|
+
webhook_configured_at?: string | null;
|
|
2104
|
+
|
|
2105
|
+
webhook_identifier?: string | null;
|
|
1970
2106
|
}
|
|
1971
2107
|
|
|
1972
2108
|
export namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
@@ -2061,6 +2197,12 @@ export namespace CreateConnectionResponse {
|
|
|
2061
2197
|
status_message?: string | null;
|
|
2062
2198
|
|
|
2063
2199
|
updated_at?: string;
|
|
2200
|
+
|
|
2201
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2202
|
+
|
|
2203
|
+
webhook_configured_at?: string | null;
|
|
2204
|
+
|
|
2205
|
+
webhook_identifier?: string | null;
|
|
2064
2206
|
}
|
|
2065
2207
|
|
|
2066
2208
|
export namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
@@ -2155,6 +2297,12 @@ export namespace CreateConnectionResponse {
|
|
|
2155
2297
|
status_message?: string | null;
|
|
2156
2298
|
|
|
2157
2299
|
updated_at?: string;
|
|
2300
|
+
|
|
2301
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2302
|
+
|
|
2303
|
+
webhook_configured_at?: string | null;
|
|
2304
|
+
|
|
2305
|
+
webhook_identifier?: string | null;
|
|
2158
2306
|
}
|
|
2159
2307
|
|
|
2160
2308
|
export namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
@@ -2249,6 +2397,12 @@ export namespace CreateConnectionResponse {
|
|
|
2249
2397
|
status_message?: string | null;
|
|
2250
2398
|
|
|
2251
2399
|
updated_at?: string;
|
|
2400
|
+
|
|
2401
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2402
|
+
|
|
2403
|
+
webhook_configured_at?: string | null;
|
|
2404
|
+
|
|
2405
|
+
webhook_identifier?: string | null;
|
|
2252
2406
|
}
|
|
2253
2407
|
|
|
2254
2408
|
export namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
@@ -2343,6 +2497,12 @@ export namespace CreateConnectionResponse {
|
|
|
2343
2497
|
status_message?: string | null;
|
|
2344
2498
|
|
|
2345
2499
|
updated_at?: string;
|
|
2500
|
+
|
|
2501
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2502
|
+
|
|
2503
|
+
webhook_configured_at?: string | null;
|
|
2504
|
+
|
|
2505
|
+
webhook_identifier?: string | null;
|
|
2346
2506
|
}
|
|
2347
2507
|
|
|
2348
2508
|
export namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
@@ -2437,6 +2597,12 @@ export namespace CreateConnectionResponse {
|
|
|
2437
2597
|
status_message?: string | null;
|
|
2438
2598
|
|
|
2439
2599
|
updated_at?: string;
|
|
2600
|
+
|
|
2601
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2602
|
+
|
|
2603
|
+
webhook_configured_at?: string | null;
|
|
2604
|
+
|
|
2605
|
+
webhook_identifier?: string | null;
|
|
2440
2606
|
}
|
|
2441
2607
|
|
|
2442
2608
|
export namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
@@ -2531,6 +2697,12 @@ export namespace CreateConnectionResponse {
|
|
|
2531
2697
|
status_message?: string | null;
|
|
2532
2698
|
|
|
2533
2699
|
updated_at?: string;
|
|
2700
|
+
|
|
2701
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2702
|
+
|
|
2703
|
+
webhook_configured_at?: string | null;
|
|
2704
|
+
|
|
2705
|
+
webhook_identifier?: string | null;
|
|
2534
2706
|
}
|
|
2535
2707
|
|
|
2536
2708
|
export namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
@@ -2630,6 +2802,12 @@ export namespace CreateConnectionResponse {
|
|
|
2630
2802
|
status_message?: string | null;
|
|
2631
2803
|
|
|
2632
2804
|
updated_at?: string;
|
|
2805
|
+
|
|
2806
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2807
|
+
|
|
2808
|
+
webhook_configured_at?: string | null;
|
|
2809
|
+
|
|
2810
|
+
webhook_identifier?: string | null;
|
|
2633
2811
|
}
|
|
2634
2812
|
|
|
2635
2813
|
export namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
@@ -2724,6 +2902,12 @@ export namespace CreateConnectionResponse {
|
|
|
2724
2902
|
status_message?: string | null;
|
|
2725
2903
|
|
|
2726
2904
|
updated_at?: string;
|
|
2905
|
+
|
|
2906
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
2907
|
+
|
|
2908
|
+
webhook_configured_at?: string | null;
|
|
2909
|
+
|
|
2910
|
+
webhook_identifier?: string | null;
|
|
2727
2911
|
}
|
|
2728
2912
|
|
|
2729
2913
|
export namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
@@ -2818,6 +3002,12 @@ export namespace CreateConnectionResponse {
|
|
|
2818
3002
|
status_message?: string | null;
|
|
2819
3003
|
|
|
2820
3004
|
updated_at?: string;
|
|
3005
|
+
|
|
3006
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3007
|
+
|
|
3008
|
+
webhook_configured_at?: string | null;
|
|
3009
|
+
|
|
3010
|
+
webhook_identifier?: string | null;
|
|
2821
3011
|
}
|
|
2822
3012
|
|
|
2823
3013
|
export namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
@@ -2912,6 +3102,12 @@ export namespace CreateConnectionResponse {
|
|
|
2912
3102
|
status_message?: string | null;
|
|
2913
3103
|
|
|
2914
3104
|
updated_at?: string;
|
|
3105
|
+
|
|
3106
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3107
|
+
|
|
3108
|
+
webhook_configured_at?: string | null;
|
|
3109
|
+
|
|
3110
|
+
webhook_identifier?: string | null;
|
|
2915
3111
|
}
|
|
2916
3112
|
|
|
2917
3113
|
export namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
@@ -3006,6 +3202,12 @@ export namespace CreateConnectionResponse {
|
|
|
3006
3202
|
status_message?: string | null;
|
|
3007
3203
|
|
|
3008
3204
|
updated_at?: string;
|
|
3205
|
+
|
|
3206
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3207
|
+
|
|
3208
|
+
webhook_configured_at?: string | null;
|
|
3209
|
+
|
|
3210
|
+
webhook_identifier?: string | null;
|
|
3009
3211
|
}
|
|
3010
3212
|
|
|
3011
3213
|
export namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
@@ -3100,6 +3302,12 @@ export namespace CreateConnectionResponse {
|
|
|
3100
3302
|
status_message?: string | null;
|
|
3101
3303
|
|
|
3102
3304
|
updated_at?: string;
|
|
3305
|
+
|
|
3306
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3307
|
+
|
|
3308
|
+
webhook_configured_at?: string | null;
|
|
3309
|
+
|
|
3310
|
+
webhook_identifier?: string | null;
|
|
3103
3311
|
}
|
|
3104
3312
|
|
|
3105
3313
|
export namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
@@ -3199,6 +3407,12 @@ export namespace CreateConnectionResponse {
|
|
|
3199
3407
|
status_message?: string | null;
|
|
3200
3408
|
|
|
3201
3409
|
updated_at?: string;
|
|
3410
|
+
|
|
3411
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3412
|
+
|
|
3413
|
+
webhook_configured_at?: string | null;
|
|
3414
|
+
|
|
3415
|
+
webhook_identifier?: string | null;
|
|
3202
3416
|
}
|
|
3203
3417
|
|
|
3204
3418
|
export namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
@@ -3293,6 +3507,12 @@ export namespace CreateConnectionResponse {
|
|
|
3293
3507
|
status_message?: string | null;
|
|
3294
3508
|
|
|
3295
3509
|
updated_at?: string;
|
|
3510
|
+
|
|
3511
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3512
|
+
|
|
3513
|
+
webhook_configured_at?: string | null;
|
|
3514
|
+
|
|
3515
|
+
webhook_identifier?: string | null;
|
|
3296
3516
|
}
|
|
3297
3517
|
|
|
3298
3518
|
export namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
@@ -3387,6 +3607,12 @@ export namespace CreateConnectionResponse {
|
|
|
3387
3607
|
status_message?: string | null;
|
|
3388
3608
|
|
|
3389
3609
|
updated_at?: string;
|
|
3610
|
+
|
|
3611
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3612
|
+
|
|
3613
|
+
webhook_configured_at?: string | null;
|
|
3614
|
+
|
|
3615
|
+
webhook_identifier?: string | null;
|
|
3390
3616
|
}
|
|
3391
3617
|
|
|
3392
3618
|
export namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
@@ -3481,6 +3707,12 @@ export namespace CreateConnectionResponse {
|
|
|
3481
3707
|
status_message?: string | null;
|
|
3482
3708
|
|
|
3483
3709
|
updated_at?: string;
|
|
3710
|
+
|
|
3711
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3712
|
+
|
|
3713
|
+
webhook_configured_at?: string | null;
|
|
3714
|
+
|
|
3715
|
+
webhook_identifier?: string | null;
|
|
3484
3716
|
}
|
|
3485
3717
|
|
|
3486
3718
|
export namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
@@ -3581,6 +3813,12 @@ export namespace CreateConnectionResponse {
|
|
|
3581
3813
|
status_message?: string | null;
|
|
3582
3814
|
|
|
3583
3815
|
updated_at?: string;
|
|
3816
|
+
|
|
3817
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3818
|
+
|
|
3819
|
+
webhook_configured_at?: string | null;
|
|
3820
|
+
|
|
3821
|
+
webhook_identifier?: string | null;
|
|
3584
3822
|
}
|
|
3585
3823
|
|
|
3586
3824
|
export namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
@@ -3675,6 +3913,12 @@ export namespace CreateConnectionResponse {
|
|
|
3675
3913
|
status_message?: string | null;
|
|
3676
3914
|
|
|
3677
3915
|
updated_at?: string;
|
|
3916
|
+
|
|
3917
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
3918
|
+
|
|
3919
|
+
webhook_configured_at?: string | null;
|
|
3920
|
+
|
|
3921
|
+
webhook_identifier?: string | null;
|
|
3678
3922
|
}
|
|
3679
3923
|
|
|
3680
3924
|
export namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
@@ -3769,6 +4013,12 @@ export namespace CreateConnectionResponse {
|
|
|
3769
4013
|
status_message?: string | null;
|
|
3770
4014
|
|
|
3771
4015
|
updated_at?: string;
|
|
4016
|
+
|
|
4017
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4018
|
+
|
|
4019
|
+
webhook_configured_at?: string | null;
|
|
4020
|
+
|
|
4021
|
+
webhook_identifier?: string | null;
|
|
3772
4022
|
}
|
|
3773
4023
|
|
|
3774
4024
|
export namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
@@ -3868,6 +4118,12 @@ export namespace CreateConnectionResponse {
|
|
|
3868
4118
|
status_message?: string | null;
|
|
3869
4119
|
|
|
3870
4120
|
updated_at?: string;
|
|
4121
|
+
|
|
4122
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4123
|
+
|
|
4124
|
+
webhook_configured_at?: string | null;
|
|
4125
|
+
|
|
4126
|
+
webhook_identifier?: string | null;
|
|
3871
4127
|
}
|
|
3872
4128
|
|
|
3873
4129
|
export namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
@@ -3962,6 +4218,12 @@ export namespace CreateConnectionResponse {
|
|
|
3962
4218
|
status_message?: string | null;
|
|
3963
4219
|
|
|
3964
4220
|
updated_at?: string;
|
|
4221
|
+
|
|
4222
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4223
|
+
|
|
4224
|
+
webhook_configured_at?: string | null;
|
|
4225
|
+
|
|
4226
|
+
webhook_identifier?: string | null;
|
|
3965
4227
|
}
|
|
3966
4228
|
|
|
3967
4229
|
export namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
@@ -4007,6 +4269,12 @@ export namespace CreateConnectionResponse {
|
|
|
4007
4269
|
status_message?: string | null;
|
|
4008
4270
|
|
|
4009
4271
|
updated_at?: string;
|
|
4272
|
+
|
|
4273
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4274
|
+
|
|
4275
|
+
webhook_configured_at?: string | null;
|
|
4276
|
+
|
|
4277
|
+
webhook_identifier?: string | null;
|
|
4010
4278
|
}
|
|
4011
4279
|
|
|
4012
4280
|
export namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
@@ -4062,6 +4330,12 @@ export namespace CreateConnectionResponse {
|
|
|
4062
4330
|
status_message?: string | null;
|
|
4063
4331
|
|
|
4064
4332
|
updated_at?: string;
|
|
4333
|
+
|
|
4334
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4335
|
+
|
|
4336
|
+
webhook_configured_at?: string | null;
|
|
4337
|
+
|
|
4338
|
+
webhook_identifier?: string | null;
|
|
4065
4339
|
}
|
|
4066
4340
|
|
|
4067
4341
|
export namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
@@ -4107,6 +4381,12 @@ export namespace CreateConnectionResponse {
|
|
|
4107
4381
|
status_message?: string | null;
|
|
4108
4382
|
|
|
4109
4383
|
updated_at?: string;
|
|
4384
|
+
|
|
4385
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4386
|
+
|
|
4387
|
+
webhook_configured_at?: string | null;
|
|
4388
|
+
|
|
4389
|
+
webhook_identifier?: string | null;
|
|
4110
4390
|
}
|
|
4111
4391
|
|
|
4112
4392
|
export namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
@@ -4157,6 +4437,12 @@ export namespace CreateConnectionResponse {
|
|
|
4157
4437
|
status_message?: string | null;
|
|
4158
4438
|
|
|
4159
4439
|
updated_at?: string;
|
|
4440
|
+
|
|
4441
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4442
|
+
|
|
4443
|
+
webhook_configured_at?: string | null;
|
|
4444
|
+
|
|
4445
|
+
webhook_identifier?: string | null;
|
|
4160
4446
|
}
|
|
4161
4447
|
|
|
4162
4448
|
export namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
@@ -4207,6 +4493,12 @@ export namespace CreateConnectionResponse {
|
|
|
4207
4493
|
status_message?: string | null;
|
|
4208
4494
|
|
|
4209
4495
|
updated_at?: string;
|
|
4496
|
+
|
|
4497
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4498
|
+
|
|
4499
|
+
webhook_configured_at?: string | null;
|
|
4500
|
+
|
|
4501
|
+
webhook_identifier?: string | null;
|
|
4210
4502
|
}
|
|
4211
4503
|
|
|
4212
4504
|
export namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
@@ -4255,6 +4547,12 @@ export namespace CreateConnectionResponse {
|
|
|
4255
4547
|
status_message?: string | null;
|
|
4256
4548
|
|
|
4257
4549
|
updated_at?: string;
|
|
4550
|
+
|
|
4551
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4552
|
+
|
|
4553
|
+
webhook_configured_at?: string | null;
|
|
4554
|
+
|
|
4555
|
+
webhook_identifier?: string | null;
|
|
4258
4556
|
}
|
|
4259
4557
|
|
|
4260
4558
|
export namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
@@ -4443,6 +4741,12 @@ export namespace CreateConnectionResponse {
|
|
|
4443
4741
|
status_message?: string | null;
|
|
4444
4742
|
|
|
4445
4743
|
updated_at?: string;
|
|
4744
|
+
|
|
4745
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4746
|
+
|
|
4747
|
+
webhook_configured_at?: string | null;
|
|
4748
|
+
|
|
4749
|
+
webhook_identifier?: string | null;
|
|
4446
4750
|
}
|
|
4447
4751
|
|
|
4448
4752
|
export namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
@@ -4536,6 +4840,12 @@ export namespace CreateConnectionResponse {
|
|
|
4536
4840
|
status_message?: string | null;
|
|
4537
4841
|
|
|
4538
4842
|
updated_at?: string;
|
|
4843
|
+
|
|
4844
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4845
|
+
|
|
4846
|
+
webhook_configured_at?: string | null;
|
|
4847
|
+
|
|
4848
|
+
webhook_identifier?: string | null;
|
|
4539
4849
|
}
|
|
4540
4850
|
|
|
4541
4851
|
export namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
@@ -4629,6 +4939,12 @@ export namespace CreateConnectionResponse {
|
|
|
4629
4939
|
status_message?: string | null;
|
|
4630
4940
|
|
|
4631
4941
|
updated_at?: string;
|
|
4942
|
+
|
|
4943
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
4944
|
+
|
|
4945
|
+
webhook_configured_at?: string | null;
|
|
4946
|
+
|
|
4947
|
+
webhook_identifier?: string | null;
|
|
4632
4948
|
}
|
|
4633
4949
|
|
|
4634
4950
|
export namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
@@ -4683,6 +4999,12 @@ export namespace CreateConnectionResponse {
|
|
|
4683
4999
|
status_message?: string | null;
|
|
4684
5000
|
|
|
4685
5001
|
updated_at?: string;
|
|
5002
|
+
|
|
5003
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
5004
|
+
|
|
5005
|
+
webhook_configured_at?: string | null;
|
|
5006
|
+
|
|
5007
|
+
webhook_identifier?: string | null;
|
|
4686
5008
|
}
|
|
4687
5009
|
|
|
4688
5010
|
export namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
@@ -10175,6 +10497,12 @@ export namespace GetConnectionResponse {
|
|
|
10175
10497
|
status_message?: string | null;
|
|
10176
10498
|
|
|
10177
10499
|
updated_at?: string;
|
|
10500
|
+
|
|
10501
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
10502
|
+
|
|
10503
|
+
webhook_configured_at?: string | null;
|
|
10504
|
+
|
|
10505
|
+
webhook_identifier?: string | null;
|
|
10178
10506
|
}
|
|
10179
10507
|
|
|
10180
10508
|
export namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
@@ -10220,6 +10548,12 @@ export namespace GetConnectionResponse {
|
|
|
10220
10548
|
status_message?: string | null;
|
|
10221
10549
|
|
|
10222
10550
|
updated_at?: string;
|
|
10551
|
+
|
|
10552
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
10553
|
+
|
|
10554
|
+
webhook_configured_at?: string | null;
|
|
10555
|
+
|
|
10556
|
+
webhook_identifier?: string | null;
|
|
10223
10557
|
}
|
|
10224
10558
|
|
|
10225
10559
|
export namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
@@ -10314,6 +10648,12 @@ export namespace GetConnectionResponse {
|
|
|
10314
10648
|
status_message?: string | null;
|
|
10315
10649
|
|
|
10316
10650
|
updated_at?: string;
|
|
10651
|
+
|
|
10652
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
10653
|
+
|
|
10654
|
+
webhook_configured_at?: string | null;
|
|
10655
|
+
|
|
10656
|
+
webhook_identifier?: string | null;
|
|
10317
10657
|
}
|
|
10318
10658
|
|
|
10319
10659
|
export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
@@ -10359,6 +10699,12 @@ export namespace GetConnectionResponse {
|
|
|
10359
10699
|
status_message?: string | null;
|
|
10360
10700
|
|
|
10361
10701
|
updated_at?: string;
|
|
10702
|
+
|
|
10703
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
10704
|
+
|
|
10705
|
+
webhook_configured_at?: string | null;
|
|
10706
|
+
|
|
10707
|
+
webhook_identifier?: string | null;
|
|
10362
10708
|
}
|
|
10363
10709
|
|
|
10364
10710
|
export namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
@@ -10453,12 +10799,24 @@ export namespace GetConnectionResponse {
|
|
|
10453
10799
|
status_message?: string | null;
|
|
10454
10800
|
|
|
10455
10801
|
updated_at?: string;
|
|
10802
|
+
|
|
10803
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
10804
|
+
|
|
10805
|
+
webhook_configured_at?: string | null;
|
|
10806
|
+
|
|
10807
|
+
webhook_identifier?: string | null;
|
|
10456
10808
|
}
|
|
10457
10809
|
|
|
10458
10810
|
export namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
10459
10811
|
export interface Settings {
|
|
10460
10812
|
oauth: Settings.OAuth;
|
|
10461
10813
|
|
|
10814
|
+
/**
|
|
10815
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
10816
|
+
* API calls to BigQuery.
|
|
10817
|
+
*/
|
|
10818
|
+
project_id: string;
|
|
10819
|
+
|
|
10462
10820
|
/**
|
|
10463
10821
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
10464
10822
|
* for backward compatibility until we remove the oauth field
|
|
@@ -10547,6 +10905,12 @@ export namespace GetConnectionResponse {
|
|
|
10547
10905
|
status_message?: string | null;
|
|
10548
10906
|
|
|
10549
10907
|
updated_at?: string;
|
|
10908
|
+
|
|
10909
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
10910
|
+
|
|
10911
|
+
webhook_configured_at?: string | null;
|
|
10912
|
+
|
|
10913
|
+
webhook_identifier?: string | null;
|
|
10550
10914
|
}
|
|
10551
10915
|
|
|
10552
10916
|
export namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
@@ -10641,6 +11005,12 @@ export namespace GetConnectionResponse {
|
|
|
10641
11005
|
status_message?: string | null;
|
|
10642
11006
|
|
|
10643
11007
|
updated_at?: string;
|
|
11008
|
+
|
|
11009
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11010
|
+
|
|
11011
|
+
webhook_configured_at?: string | null;
|
|
11012
|
+
|
|
11013
|
+
webhook_identifier?: string | null;
|
|
10644
11014
|
}
|
|
10645
11015
|
|
|
10646
11016
|
export namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
@@ -10735,6 +11105,12 @@ export namespace GetConnectionResponse {
|
|
|
10735
11105
|
status_message?: string | null;
|
|
10736
11106
|
|
|
10737
11107
|
updated_at?: string;
|
|
11108
|
+
|
|
11109
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11110
|
+
|
|
11111
|
+
webhook_configured_at?: string | null;
|
|
11112
|
+
|
|
11113
|
+
webhook_identifier?: string | null;
|
|
10738
11114
|
}
|
|
10739
11115
|
|
|
10740
11116
|
export namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
@@ -10829,6 +11205,12 @@ export namespace GetConnectionResponse {
|
|
|
10829
11205
|
status_message?: string | null;
|
|
10830
11206
|
|
|
10831
11207
|
updated_at?: string;
|
|
11208
|
+
|
|
11209
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11210
|
+
|
|
11211
|
+
webhook_configured_at?: string | null;
|
|
11212
|
+
|
|
11213
|
+
webhook_identifier?: string | null;
|
|
10832
11214
|
}
|
|
10833
11215
|
|
|
10834
11216
|
export namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
@@ -10923,6 +11305,12 @@ export namespace GetConnectionResponse {
|
|
|
10923
11305
|
status_message?: string | null;
|
|
10924
11306
|
|
|
10925
11307
|
updated_at?: string;
|
|
11308
|
+
|
|
11309
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11310
|
+
|
|
11311
|
+
webhook_configured_at?: string | null;
|
|
11312
|
+
|
|
11313
|
+
webhook_identifier?: string | null;
|
|
10926
11314
|
}
|
|
10927
11315
|
|
|
10928
11316
|
export namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
@@ -11017,6 +11405,12 @@ export namespace GetConnectionResponse {
|
|
|
11017
11405
|
status_message?: string | null;
|
|
11018
11406
|
|
|
11019
11407
|
updated_at?: string;
|
|
11408
|
+
|
|
11409
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11410
|
+
|
|
11411
|
+
webhook_configured_at?: string | null;
|
|
11412
|
+
|
|
11413
|
+
webhook_identifier?: string | null;
|
|
11020
11414
|
}
|
|
11021
11415
|
|
|
11022
11416
|
export namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
@@ -11116,19 +11510,31 @@ export namespace GetConnectionResponse {
|
|
|
11116
11510
|
status_message?: string | null;
|
|
11117
11511
|
|
|
11118
11512
|
updated_at?: string;
|
|
11513
|
+
|
|
11514
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11515
|
+
|
|
11516
|
+
webhook_configured_at?: string | null;
|
|
11517
|
+
|
|
11518
|
+
webhook_identifier?: string | null;
|
|
11119
11519
|
}
|
|
11120
11520
|
|
|
11121
11521
|
export namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
11122
11522
|
export interface Settings {
|
|
11123
11523
|
/**
|
|
11124
|
-
*
|
|
11125
|
-
*
|
|
11126
|
-
* .cloud.databricks.com
|
|
11524
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
11525
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
11127
11526
|
*/
|
|
11128
|
-
|
|
11527
|
+
http_path: string;
|
|
11129
11528
|
|
|
11130
11529
|
oauth: Settings.OAuth;
|
|
11131
11530
|
|
|
11531
|
+
/**
|
|
11532
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
11533
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
11534
|
+
* Server hostname value.
|
|
11535
|
+
*/
|
|
11536
|
+
server_hostname: string;
|
|
11537
|
+
|
|
11132
11538
|
/**
|
|
11133
11539
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
11134
11540
|
* for backward compatibility until we remove the oauth field
|
|
@@ -11217,6 +11623,12 @@ export namespace GetConnectionResponse {
|
|
|
11217
11623
|
status_message?: string | null;
|
|
11218
11624
|
|
|
11219
11625
|
updated_at?: string;
|
|
11626
|
+
|
|
11627
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11628
|
+
|
|
11629
|
+
webhook_configured_at?: string | null;
|
|
11630
|
+
|
|
11631
|
+
webhook_identifier?: string | null;
|
|
11220
11632
|
}
|
|
11221
11633
|
|
|
11222
11634
|
export namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
@@ -11311,6 +11723,12 @@ export namespace GetConnectionResponse {
|
|
|
11311
11723
|
status_message?: string | null;
|
|
11312
11724
|
|
|
11313
11725
|
updated_at?: string;
|
|
11726
|
+
|
|
11727
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11728
|
+
|
|
11729
|
+
webhook_configured_at?: string | null;
|
|
11730
|
+
|
|
11731
|
+
webhook_identifier?: string | null;
|
|
11314
11732
|
}
|
|
11315
11733
|
|
|
11316
11734
|
export namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
@@ -11405,6 +11823,12 @@ export namespace GetConnectionResponse {
|
|
|
11405
11823
|
status_message?: string | null;
|
|
11406
11824
|
|
|
11407
11825
|
updated_at?: string;
|
|
11826
|
+
|
|
11827
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11828
|
+
|
|
11829
|
+
webhook_configured_at?: string | null;
|
|
11830
|
+
|
|
11831
|
+
webhook_identifier?: string | null;
|
|
11408
11832
|
}
|
|
11409
11833
|
|
|
11410
11834
|
export namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
@@ -11499,6 +11923,12 @@ export namespace GetConnectionResponse {
|
|
|
11499
11923
|
status_message?: string | null;
|
|
11500
11924
|
|
|
11501
11925
|
updated_at?: string;
|
|
11926
|
+
|
|
11927
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
11928
|
+
|
|
11929
|
+
webhook_configured_at?: string | null;
|
|
11930
|
+
|
|
11931
|
+
webhook_identifier?: string | null;
|
|
11502
11932
|
}
|
|
11503
11933
|
|
|
11504
11934
|
export namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
@@ -11593,6 +12023,12 @@ export namespace GetConnectionResponse {
|
|
|
11593
12023
|
status_message?: string | null;
|
|
11594
12024
|
|
|
11595
12025
|
updated_at?: string;
|
|
12026
|
+
|
|
12027
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12028
|
+
|
|
12029
|
+
webhook_configured_at?: string | null;
|
|
12030
|
+
|
|
12031
|
+
webhook_identifier?: string | null;
|
|
11596
12032
|
}
|
|
11597
12033
|
|
|
11598
12034
|
export namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
@@ -11687,6 +12123,12 @@ export namespace GetConnectionResponse {
|
|
|
11687
12123
|
status_message?: string | null;
|
|
11688
12124
|
|
|
11689
12125
|
updated_at?: string;
|
|
12126
|
+
|
|
12127
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12128
|
+
|
|
12129
|
+
webhook_configured_at?: string | null;
|
|
12130
|
+
|
|
12131
|
+
webhook_identifier?: string | null;
|
|
11690
12132
|
}
|
|
11691
12133
|
|
|
11692
12134
|
export namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
@@ -11781,6 +12223,12 @@ export namespace GetConnectionResponse {
|
|
|
11781
12223
|
status_message?: string | null;
|
|
11782
12224
|
|
|
11783
12225
|
updated_at?: string;
|
|
12226
|
+
|
|
12227
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12228
|
+
|
|
12229
|
+
webhook_configured_at?: string | null;
|
|
12230
|
+
|
|
12231
|
+
webhook_identifier?: string | null;
|
|
11784
12232
|
}
|
|
11785
12233
|
|
|
11786
12234
|
export namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
@@ -11875,6 +12323,12 @@ export namespace GetConnectionResponse {
|
|
|
11875
12323
|
status_message?: string | null;
|
|
11876
12324
|
|
|
11877
12325
|
updated_at?: string;
|
|
12326
|
+
|
|
12327
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12328
|
+
|
|
12329
|
+
webhook_configured_at?: string | null;
|
|
12330
|
+
|
|
12331
|
+
webhook_identifier?: string | null;
|
|
11878
12332
|
}
|
|
11879
12333
|
|
|
11880
12334
|
export namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
@@ -11969,6 +12423,12 @@ export namespace GetConnectionResponse {
|
|
|
11969
12423
|
status_message?: string | null;
|
|
11970
12424
|
|
|
11971
12425
|
updated_at?: string;
|
|
12426
|
+
|
|
12427
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12428
|
+
|
|
12429
|
+
webhook_configured_at?: string | null;
|
|
12430
|
+
|
|
12431
|
+
webhook_identifier?: string | null;
|
|
11972
12432
|
}
|
|
11973
12433
|
|
|
11974
12434
|
export namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
@@ -12063,6 +12523,12 @@ export namespace GetConnectionResponse {
|
|
|
12063
12523
|
status_message?: string | null;
|
|
12064
12524
|
|
|
12065
12525
|
updated_at?: string;
|
|
12526
|
+
|
|
12527
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12528
|
+
|
|
12529
|
+
webhook_configured_at?: string | null;
|
|
12530
|
+
|
|
12531
|
+
webhook_identifier?: string | null;
|
|
12066
12532
|
}
|
|
12067
12533
|
|
|
12068
12534
|
export namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
@@ -12157,6 +12623,12 @@ export namespace GetConnectionResponse {
|
|
|
12157
12623
|
status_message?: string | null;
|
|
12158
12624
|
|
|
12159
12625
|
updated_at?: string;
|
|
12626
|
+
|
|
12627
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12628
|
+
|
|
12629
|
+
webhook_configured_at?: string | null;
|
|
12630
|
+
|
|
12631
|
+
webhook_identifier?: string | null;
|
|
12160
12632
|
}
|
|
12161
12633
|
|
|
12162
12634
|
export namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
@@ -12251,6 +12723,12 @@ export namespace GetConnectionResponse {
|
|
|
12251
12723
|
status_message?: string | null;
|
|
12252
12724
|
|
|
12253
12725
|
updated_at?: string;
|
|
12726
|
+
|
|
12727
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12728
|
+
|
|
12729
|
+
webhook_configured_at?: string | null;
|
|
12730
|
+
|
|
12731
|
+
webhook_identifier?: string | null;
|
|
12254
12732
|
}
|
|
12255
12733
|
|
|
12256
12734
|
export namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
@@ -12345,6 +12823,12 @@ export namespace GetConnectionResponse {
|
|
|
12345
12823
|
status_message?: string | null;
|
|
12346
12824
|
|
|
12347
12825
|
updated_at?: string;
|
|
12826
|
+
|
|
12827
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12828
|
+
|
|
12829
|
+
webhook_configured_at?: string | null;
|
|
12830
|
+
|
|
12831
|
+
webhook_identifier?: string | null;
|
|
12348
12832
|
}
|
|
12349
12833
|
|
|
12350
12834
|
export namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
@@ -12439,6 +12923,12 @@ export namespace GetConnectionResponse {
|
|
|
12439
12923
|
status_message?: string | null;
|
|
12440
12924
|
|
|
12441
12925
|
updated_at?: string;
|
|
12926
|
+
|
|
12927
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
12928
|
+
|
|
12929
|
+
webhook_configured_at?: string | null;
|
|
12930
|
+
|
|
12931
|
+
webhook_identifier?: string | null;
|
|
12442
12932
|
}
|
|
12443
12933
|
|
|
12444
12934
|
export namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
@@ -12538,6 +13028,12 @@ export namespace GetConnectionResponse {
|
|
|
12538
13028
|
status_message?: string | null;
|
|
12539
13029
|
|
|
12540
13030
|
updated_at?: string;
|
|
13031
|
+
|
|
13032
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13033
|
+
|
|
13034
|
+
webhook_configured_at?: string | null;
|
|
13035
|
+
|
|
13036
|
+
webhook_identifier?: string | null;
|
|
12541
13037
|
}
|
|
12542
13038
|
|
|
12543
13039
|
export namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
@@ -12632,6 +13128,12 @@ export namespace GetConnectionResponse {
|
|
|
12632
13128
|
status_message?: string | null;
|
|
12633
13129
|
|
|
12634
13130
|
updated_at?: string;
|
|
13131
|
+
|
|
13132
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13133
|
+
|
|
13134
|
+
webhook_configured_at?: string | null;
|
|
13135
|
+
|
|
13136
|
+
webhook_identifier?: string | null;
|
|
12635
13137
|
}
|
|
12636
13138
|
|
|
12637
13139
|
export namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
@@ -12726,6 +13228,12 @@ export namespace GetConnectionResponse {
|
|
|
12726
13228
|
status_message?: string | null;
|
|
12727
13229
|
|
|
12728
13230
|
updated_at?: string;
|
|
13231
|
+
|
|
13232
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13233
|
+
|
|
13234
|
+
webhook_configured_at?: string | null;
|
|
13235
|
+
|
|
13236
|
+
webhook_identifier?: string | null;
|
|
12729
13237
|
}
|
|
12730
13238
|
|
|
12731
13239
|
export namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
@@ -12820,6 +13328,12 @@ export namespace GetConnectionResponse {
|
|
|
12820
13328
|
status_message?: string | null;
|
|
12821
13329
|
|
|
12822
13330
|
updated_at?: string;
|
|
13331
|
+
|
|
13332
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13333
|
+
|
|
13334
|
+
webhook_configured_at?: string | null;
|
|
13335
|
+
|
|
13336
|
+
webhook_identifier?: string | null;
|
|
12823
13337
|
}
|
|
12824
13338
|
|
|
12825
13339
|
export namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
@@ -12914,6 +13428,12 @@ export namespace GetConnectionResponse {
|
|
|
12914
13428
|
status_message?: string | null;
|
|
12915
13429
|
|
|
12916
13430
|
updated_at?: string;
|
|
13431
|
+
|
|
13432
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13433
|
+
|
|
13434
|
+
webhook_configured_at?: string | null;
|
|
13435
|
+
|
|
13436
|
+
webhook_identifier?: string | null;
|
|
12917
13437
|
}
|
|
12918
13438
|
|
|
12919
13439
|
export namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
@@ -13008,6 +13528,12 @@ export namespace GetConnectionResponse {
|
|
|
13008
13528
|
status_message?: string | null;
|
|
13009
13529
|
|
|
13010
13530
|
updated_at?: string;
|
|
13531
|
+
|
|
13532
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13533
|
+
|
|
13534
|
+
webhook_configured_at?: string | null;
|
|
13535
|
+
|
|
13536
|
+
webhook_identifier?: string | null;
|
|
13011
13537
|
}
|
|
13012
13538
|
|
|
13013
13539
|
export namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
@@ -13107,6 +13633,12 @@ export namespace GetConnectionResponse {
|
|
|
13107
13633
|
status_message?: string | null;
|
|
13108
13634
|
|
|
13109
13635
|
updated_at?: string;
|
|
13636
|
+
|
|
13637
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13638
|
+
|
|
13639
|
+
webhook_configured_at?: string | null;
|
|
13640
|
+
|
|
13641
|
+
webhook_identifier?: string | null;
|
|
13110
13642
|
}
|
|
13111
13643
|
|
|
13112
13644
|
export namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
@@ -13201,6 +13733,12 @@ export namespace GetConnectionResponse {
|
|
|
13201
13733
|
status_message?: string | null;
|
|
13202
13734
|
|
|
13203
13735
|
updated_at?: string;
|
|
13736
|
+
|
|
13737
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13738
|
+
|
|
13739
|
+
webhook_configured_at?: string | null;
|
|
13740
|
+
|
|
13741
|
+
webhook_identifier?: string | null;
|
|
13204
13742
|
}
|
|
13205
13743
|
|
|
13206
13744
|
export namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
@@ -13295,6 +13833,12 @@ export namespace GetConnectionResponse {
|
|
|
13295
13833
|
status_message?: string | null;
|
|
13296
13834
|
|
|
13297
13835
|
updated_at?: string;
|
|
13836
|
+
|
|
13837
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13838
|
+
|
|
13839
|
+
webhook_configured_at?: string | null;
|
|
13840
|
+
|
|
13841
|
+
webhook_identifier?: string | null;
|
|
13298
13842
|
}
|
|
13299
13843
|
|
|
13300
13844
|
export namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
@@ -13389,6 +13933,12 @@ export namespace GetConnectionResponse {
|
|
|
13389
13933
|
status_message?: string | null;
|
|
13390
13934
|
|
|
13391
13935
|
updated_at?: string;
|
|
13936
|
+
|
|
13937
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
13938
|
+
|
|
13939
|
+
webhook_configured_at?: string | null;
|
|
13940
|
+
|
|
13941
|
+
webhook_identifier?: string | null;
|
|
13392
13942
|
}
|
|
13393
13943
|
|
|
13394
13944
|
export namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
@@ -13489,6 +14039,12 @@ export namespace GetConnectionResponse {
|
|
|
13489
14039
|
status_message?: string | null;
|
|
13490
14040
|
|
|
13491
14041
|
updated_at?: string;
|
|
14042
|
+
|
|
14043
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14044
|
+
|
|
14045
|
+
webhook_configured_at?: string | null;
|
|
14046
|
+
|
|
14047
|
+
webhook_identifier?: string | null;
|
|
13492
14048
|
}
|
|
13493
14049
|
|
|
13494
14050
|
export namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
@@ -13583,6 +14139,12 @@ export namespace GetConnectionResponse {
|
|
|
13583
14139
|
status_message?: string | null;
|
|
13584
14140
|
|
|
13585
14141
|
updated_at?: string;
|
|
14142
|
+
|
|
14143
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14144
|
+
|
|
14145
|
+
webhook_configured_at?: string | null;
|
|
14146
|
+
|
|
14147
|
+
webhook_identifier?: string | null;
|
|
13586
14148
|
}
|
|
13587
14149
|
|
|
13588
14150
|
export namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
@@ -13677,6 +14239,12 @@ export namespace GetConnectionResponse {
|
|
|
13677
14239
|
status_message?: string | null;
|
|
13678
14240
|
|
|
13679
14241
|
updated_at?: string;
|
|
14242
|
+
|
|
14243
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14244
|
+
|
|
14245
|
+
webhook_configured_at?: string | null;
|
|
14246
|
+
|
|
14247
|
+
webhook_identifier?: string | null;
|
|
13680
14248
|
}
|
|
13681
14249
|
|
|
13682
14250
|
export namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
@@ -13776,6 +14344,12 @@ export namespace GetConnectionResponse {
|
|
|
13776
14344
|
status_message?: string | null;
|
|
13777
14345
|
|
|
13778
14346
|
updated_at?: string;
|
|
14347
|
+
|
|
14348
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14349
|
+
|
|
14350
|
+
webhook_configured_at?: string | null;
|
|
14351
|
+
|
|
14352
|
+
webhook_identifier?: string | null;
|
|
13779
14353
|
}
|
|
13780
14354
|
|
|
13781
14355
|
export namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
@@ -13870,6 +14444,12 @@ export namespace GetConnectionResponse {
|
|
|
13870
14444
|
status_message?: string | null;
|
|
13871
14445
|
|
|
13872
14446
|
updated_at?: string;
|
|
14447
|
+
|
|
14448
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14449
|
+
|
|
14450
|
+
webhook_configured_at?: string | null;
|
|
14451
|
+
|
|
14452
|
+
webhook_identifier?: string | null;
|
|
13873
14453
|
}
|
|
13874
14454
|
|
|
13875
14455
|
export namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
@@ -13915,6 +14495,12 @@ export namespace GetConnectionResponse {
|
|
|
13915
14495
|
status_message?: string | null;
|
|
13916
14496
|
|
|
13917
14497
|
updated_at?: string;
|
|
14498
|
+
|
|
14499
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14500
|
+
|
|
14501
|
+
webhook_configured_at?: string | null;
|
|
14502
|
+
|
|
14503
|
+
webhook_identifier?: string | null;
|
|
13918
14504
|
}
|
|
13919
14505
|
|
|
13920
14506
|
export namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
@@ -13970,6 +14556,12 @@ export namespace GetConnectionResponse {
|
|
|
13970
14556
|
status_message?: string | null;
|
|
13971
14557
|
|
|
13972
14558
|
updated_at?: string;
|
|
14559
|
+
|
|
14560
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14561
|
+
|
|
14562
|
+
webhook_configured_at?: string | null;
|
|
14563
|
+
|
|
14564
|
+
webhook_identifier?: string | null;
|
|
13973
14565
|
}
|
|
13974
14566
|
|
|
13975
14567
|
export namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
@@ -14015,6 +14607,12 @@ export namespace GetConnectionResponse {
|
|
|
14015
14607
|
status_message?: string | null;
|
|
14016
14608
|
|
|
14017
14609
|
updated_at?: string;
|
|
14610
|
+
|
|
14611
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14612
|
+
|
|
14613
|
+
webhook_configured_at?: string | null;
|
|
14614
|
+
|
|
14615
|
+
webhook_identifier?: string | null;
|
|
14018
14616
|
}
|
|
14019
14617
|
|
|
14020
14618
|
export namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
@@ -14065,6 +14663,12 @@ export namespace GetConnectionResponse {
|
|
|
14065
14663
|
status_message?: string | null;
|
|
14066
14664
|
|
|
14067
14665
|
updated_at?: string;
|
|
14666
|
+
|
|
14667
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14668
|
+
|
|
14669
|
+
webhook_configured_at?: string | null;
|
|
14670
|
+
|
|
14671
|
+
webhook_identifier?: string | null;
|
|
14068
14672
|
}
|
|
14069
14673
|
|
|
14070
14674
|
export namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
@@ -14115,6 +14719,12 @@ export namespace GetConnectionResponse {
|
|
|
14115
14719
|
status_message?: string | null;
|
|
14116
14720
|
|
|
14117
14721
|
updated_at?: string;
|
|
14722
|
+
|
|
14723
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14724
|
+
|
|
14725
|
+
webhook_configured_at?: string | null;
|
|
14726
|
+
|
|
14727
|
+
webhook_identifier?: string | null;
|
|
14118
14728
|
}
|
|
14119
14729
|
|
|
14120
14730
|
export namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
@@ -14163,6 +14773,12 @@ export namespace GetConnectionResponse {
|
|
|
14163
14773
|
status_message?: string | null;
|
|
14164
14774
|
|
|
14165
14775
|
updated_at?: string;
|
|
14776
|
+
|
|
14777
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14778
|
+
|
|
14779
|
+
webhook_configured_at?: string | null;
|
|
14780
|
+
|
|
14781
|
+
webhook_identifier?: string | null;
|
|
14166
14782
|
}
|
|
14167
14783
|
|
|
14168
14784
|
export namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
@@ -14351,6 +14967,12 @@ export namespace GetConnectionResponse {
|
|
|
14351
14967
|
status_message?: string | null;
|
|
14352
14968
|
|
|
14353
14969
|
updated_at?: string;
|
|
14970
|
+
|
|
14971
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
14972
|
+
|
|
14973
|
+
webhook_configured_at?: string | null;
|
|
14974
|
+
|
|
14975
|
+
webhook_identifier?: string | null;
|
|
14354
14976
|
}
|
|
14355
14977
|
|
|
14356
14978
|
export namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
@@ -14444,6 +15066,12 @@ export namespace GetConnectionResponse {
|
|
|
14444
15066
|
status_message?: string | null;
|
|
14445
15067
|
|
|
14446
15068
|
updated_at?: string;
|
|
15069
|
+
|
|
15070
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15071
|
+
|
|
15072
|
+
webhook_configured_at?: string | null;
|
|
15073
|
+
|
|
15074
|
+
webhook_identifier?: string | null;
|
|
14447
15075
|
}
|
|
14448
15076
|
|
|
14449
15077
|
export namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
@@ -14537,6 +15165,12 @@ export namespace GetConnectionResponse {
|
|
|
14537
15165
|
status_message?: string | null;
|
|
14538
15166
|
|
|
14539
15167
|
updated_at?: string;
|
|
15168
|
+
|
|
15169
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15170
|
+
|
|
15171
|
+
webhook_configured_at?: string | null;
|
|
15172
|
+
|
|
15173
|
+
webhook_identifier?: string | null;
|
|
14540
15174
|
}
|
|
14541
15175
|
|
|
14542
15176
|
export namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
@@ -14591,6 +15225,12 @@ export namespace GetConnectionResponse {
|
|
|
14591
15225
|
status_message?: string | null;
|
|
14592
15226
|
|
|
14593
15227
|
updated_at?: string;
|
|
15228
|
+
|
|
15229
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15230
|
+
|
|
15231
|
+
webhook_configured_at?: string | null;
|
|
15232
|
+
|
|
15233
|
+
webhook_identifier?: string | null;
|
|
14594
15234
|
}
|
|
14595
15235
|
|
|
14596
15236
|
export namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
@@ -14721,6 +15361,12 @@ export namespace ListConnectionsResponse {
|
|
|
14721
15361
|
status_message?: string | null;
|
|
14722
15362
|
|
|
14723
15363
|
updated_at?: string;
|
|
15364
|
+
|
|
15365
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15366
|
+
|
|
15367
|
+
webhook_configured_at?: string | null;
|
|
15368
|
+
|
|
15369
|
+
webhook_identifier?: string | null;
|
|
14724
15370
|
}
|
|
14725
15371
|
|
|
14726
15372
|
export namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
@@ -14766,6 +15412,12 @@ export namespace ListConnectionsResponse {
|
|
|
14766
15412
|
status_message?: string | null;
|
|
14767
15413
|
|
|
14768
15414
|
updated_at?: string;
|
|
15415
|
+
|
|
15416
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15417
|
+
|
|
15418
|
+
webhook_configured_at?: string | null;
|
|
15419
|
+
|
|
15420
|
+
webhook_identifier?: string | null;
|
|
14769
15421
|
}
|
|
14770
15422
|
|
|
14771
15423
|
export namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
@@ -14860,6 +15512,12 @@ export namespace ListConnectionsResponse {
|
|
|
14860
15512
|
status_message?: string | null;
|
|
14861
15513
|
|
|
14862
15514
|
updated_at?: string;
|
|
15515
|
+
|
|
15516
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15517
|
+
|
|
15518
|
+
webhook_configured_at?: string | null;
|
|
15519
|
+
|
|
15520
|
+
webhook_identifier?: string | null;
|
|
14863
15521
|
}
|
|
14864
15522
|
|
|
14865
15523
|
export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
@@ -14905,6 +15563,12 @@ export namespace ListConnectionsResponse {
|
|
|
14905
15563
|
status_message?: string | null;
|
|
14906
15564
|
|
|
14907
15565
|
updated_at?: string;
|
|
15566
|
+
|
|
15567
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15568
|
+
|
|
15569
|
+
webhook_configured_at?: string | null;
|
|
15570
|
+
|
|
15571
|
+
webhook_identifier?: string | null;
|
|
14908
15572
|
}
|
|
14909
15573
|
|
|
14910
15574
|
export namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
@@ -14999,12 +15663,24 @@ export namespace ListConnectionsResponse {
|
|
|
14999
15663
|
status_message?: string | null;
|
|
15000
15664
|
|
|
15001
15665
|
updated_at?: string;
|
|
15666
|
+
|
|
15667
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15668
|
+
|
|
15669
|
+
webhook_configured_at?: string | null;
|
|
15670
|
+
|
|
15671
|
+
webhook_identifier?: string | null;
|
|
15002
15672
|
}
|
|
15003
15673
|
|
|
15004
15674
|
export namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
15005
15675
|
export interface Settings {
|
|
15006
15676
|
oauth: Settings.OAuth;
|
|
15007
15677
|
|
|
15678
|
+
/**
|
|
15679
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
15680
|
+
* API calls to BigQuery.
|
|
15681
|
+
*/
|
|
15682
|
+
project_id: string;
|
|
15683
|
+
|
|
15008
15684
|
/**
|
|
15009
15685
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
15010
15686
|
* for backward compatibility until we remove the oauth field
|
|
@@ -15093,6 +15769,12 @@ export namespace ListConnectionsResponse {
|
|
|
15093
15769
|
status_message?: string | null;
|
|
15094
15770
|
|
|
15095
15771
|
updated_at?: string;
|
|
15772
|
+
|
|
15773
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15774
|
+
|
|
15775
|
+
webhook_configured_at?: string | null;
|
|
15776
|
+
|
|
15777
|
+
webhook_identifier?: string | null;
|
|
15096
15778
|
}
|
|
15097
15779
|
|
|
15098
15780
|
export namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
@@ -15187,6 +15869,12 @@ export namespace ListConnectionsResponse {
|
|
|
15187
15869
|
status_message?: string | null;
|
|
15188
15870
|
|
|
15189
15871
|
updated_at?: string;
|
|
15872
|
+
|
|
15873
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15874
|
+
|
|
15875
|
+
webhook_configured_at?: string | null;
|
|
15876
|
+
|
|
15877
|
+
webhook_identifier?: string | null;
|
|
15190
15878
|
}
|
|
15191
15879
|
|
|
15192
15880
|
export namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
@@ -15281,6 +15969,12 @@ export namespace ListConnectionsResponse {
|
|
|
15281
15969
|
status_message?: string | null;
|
|
15282
15970
|
|
|
15283
15971
|
updated_at?: string;
|
|
15972
|
+
|
|
15973
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
15974
|
+
|
|
15975
|
+
webhook_configured_at?: string | null;
|
|
15976
|
+
|
|
15977
|
+
webhook_identifier?: string | null;
|
|
15284
15978
|
}
|
|
15285
15979
|
|
|
15286
15980
|
export namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
@@ -15375,6 +16069,12 @@ export namespace ListConnectionsResponse {
|
|
|
15375
16069
|
status_message?: string | null;
|
|
15376
16070
|
|
|
15377
16071
|
updated_at?: string;
|
|
16072
|
+
|
|
16073
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16074
|
+
|
|
16075
|
+
webhook_configured_at?: string | null;
|
|
16076
|
+
|
|
16077
|
+
webhook_identifier?: string | null;
|
|
15378
16078
|
}
|
|
15379
16079
|
|
|
15380
16080
|
export namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
@@ -15469,6 +16169,12 @@ export namespace ListConnectionsResponse {
|
|
|
15469
16169
|
status_message?: string | null;
|
|
15470
16170
|
|
|
15471
16171
|
updated_at?: string;
|
|
16172
|
+
|
|
16173
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16174
|
+
|
|
16175
|
+
webhook_configured_at?: string | null;
|
|
16176
|
+
|
|
16177
|
+
webhook_identifier?: string | null;
|
|
15472
16178
|
}
|
|
15473
16179
|
|
|
15474
16180
|
export namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
@@ -15563,6 +16269,12 @@ export namespace ListConnectionsResponse {
|
|
|
15563
16269
|
status_message?: string | null;
|
|
15564
16270
|
|
|
15565
16271
|
updated_at?: string;
|
|
16272
|
+
|
|
16273
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16274
|
+
|
|
16275
|
+
webhook_configured_at?: string | null;
|
|
16276
|
+
|
|
16277
|
+
webhook_identifier?: string | null;
|
|
15566
16278
|
}
|
|
15567
16279
|
|
|
15568
16280
|
export namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
@@ -15662,19 +16374,31 @@ export namespace ListConnectionsResponse {
|
|
|
15662
16374
|
status_message?: string | null;
|
|
15663
16375
|
|
|
15664
16376
|
updated_at?: string;
|
|
16377
|
+
|
|
16378
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16379
|
+
|
|
16380
|
+
webhook_configured_at?: string | null;
|
|
16381
|
+
|
|
16382
|
+
webhook_identifier?: string | null;
|
|
15665
16383
|
}
|
|
15666
16384
|
|
|
15667
16385
|
export namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
15668
16386
|
export interface Settings {
|
|
15669
16387
|
/**
|
|
15670
|
-
*
|
|
15671
|
-
*
|
|
15672
|
-
* .cloud.databricks.com
|
|
16388
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
16389
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
15673
16390
|
*/
|
|
15674
|
-
|
|
16391
|
+
http_path: string;
|
|
15675
16392
|
|
|
15676
16393
|
oauth: Settings.OAuth;
|
|
15677
16394
|
|
|
16395
|
+
/**
|
|
16396
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
16397
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
16398
|
+
* Server hostname value.
|
|
16399
|
+
*/
|
|
16400
|
+
server_hostname: string;
|
|
16401
|
+
|
|
15678
16402
|
/**
|
|
15679
16403
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
15680
16404
|
* for backward compatibility until we remove the oauth field
|
|
@@ -15763,6 +16487,12 @@ export namespace ListConnectionsResponse {
|
|
|
15763
16487
|
status_message?: string | null;
|
|
15764
16488
|
|
|
15765
16489
|
updated_at?: string;
|
|
16490
|
+
|
|
16491
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16492
|
+
|
|
16493
|
+
webhook_configured_at?: string | null;
|
|
16494
|
+
|
|
16495
|
+
webhook_identifier?: string | null;
|
|
15766
16496
|
}
|
|
15767
16497
|
|
|
15768
16498
|
export namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
@@ -15857,6 +16587,12 @@ export namespace ListConnectionsResponse {
|
|
|
15857
16587
|
status_message?: string | null;
|
|
15858
16588
|
|
|
15859
16589
|
updated_at?: string;
|
|
16590
|
+
|
|
16591
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16592
|
+
|
|
16593
|
+
webhook_configured_at?: string | null;
|
|
16594
|
+
|
|
16595
|
+
webhook_identifier?: string | null;
|
|
15860
16596
|
}
|
|
15861
16597
|
|
|
15862
16598
|
export namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
@@ -15951,6 +16687,12 @@ export namespace ListConnectionsResponse {
|
|
|
15951
16687
|
status_message?: string | null;
|
|
15952
16688
|
|
|
15953
16689
|
updated_at?: string;
|
|
16690
|
+
|
|
16691
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16692
|
+
|
|
16693
|
+
webhook_configured_at?: string | null;
|
|
16694
|
+
|
|
16695
|
+
webhook_identifier?: string | null;
|
|
15954
16696
|
}
|
|
15955
16697
|
|
|
15956
16698
|
export namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
@@ -16045,6 +16787,12 @@ export namespace ListConnectionsResponse {
|
|
|
16045
16787
|
status_message?: string | null;
|
|
16046
16788
|
|
|
16047
16789
|
updated_at?: string;
|
|
16790
|
+
|
|
16791
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16792
|
+
|
|
16793
|
+
webhook_configured_at?: string | null;
|
|
16794
|
+
|
|
16795
|
+
webhook_identifier?: string | null;
|
|
16048
16796
|
}
|
|
16049
16797
|
|
|
16050
16798
|
export namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
@@ -16139,6 +16887,12 @@ export namespace ListConnectionsResponse {
|
|
|
16139
16887
|
status_message?: string | null;
|
|
16140
16888
|
|
|
16141
16889
|
updated_at?: string;
|
|
16890
|
+
|
|
16891
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16892
|
+
|
|
16893
|
+
webhook_configured_at?: string | null;
|
|
16894
|
+
|
|
16895
|
+
webhook_identifier?: string | null;
|
|
16142
16896
|
}
|
|
16143
16897
|
|
|
16144
16898
|
export namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
@@ -16233,6 +16987,12 @@ export namespace ListConnectionsResponse {
|
|
|
16233
16987
|
status_message?: string | null;
|
|
16234
16988
|
|
|
16235
16989
|
updated_at?: string;
|
|
16990
|
+
|
|
16991
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
16992
|
+
|
|
16993
|
+
webhook_configured_at?: string | null;
|
|
16994
|
+
|
|
16995
|
+
webhook_identifier?: string | null;
|
|
16236
16996
|
}
|
|
16237
16997
|
|
|
16238
16998
|
export namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
@@ -16327,6 +17087,12 @@ export namespace ListConnectionsResponse {
|
|
|
16327
17087
|
status_message?: string | null;
|
|
16328
17088
|
|
|
16329
17089
|
updated_at?: string;
|
|
17090
|
+
|
|
17091
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17092
|
+
|
|
17093
|
+
webhook_configured_at?: string | null;
|
|
17094
|
+
|
|
17095
|
+
webhook_identifier?: string | null;
|
|
16330
17096
|
}
|
|
16331
17097
|
|
|
16332
17098
|
export namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
@@ -16421,6 +17187,12 @@ export namespace ListConnectionsResponse {
|
|
|
16421
17187
|
status_message?: string | null;
|
|
16422
17188
|
|
|
16423
17189
|
updated_at?: string;
|
|
17190
|
+
|
|
17191
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17192
|
+
|
|
17193
|
+
webhook_configured_at?: string | null;
|
|
17194
|
+
|
|
17195
|
+
webhook_identifier?: string | null;
|
|
16424
17196
|
}
|
|
16425
17197
|
|
|
16426
17198
|
export namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
@@ -16515,6 +17287,12 @@ export namespace ListConnectionsResponse {
|
|
|
16515
17287
|
status_message?: string | null;
|
|
16516
17288
|
|
|
16517
17289
|
updated_at?: string;
|
|
17290
|
+
|
|
17291
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17292
|
+
|
|
17293
|
+
webhook_configured_at?: string | null;
|
|
17294
|
+
|
|
17295
|
+
webhook_identifier?: string | null;
|
|
16518
17296
|
}
|
|
16519
17297
|
|
|
16520
17298
|
export namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
@@ -16609,6 +17387,12 @@ export namespace ListConnectionsResponse {
|
|
|
16609
17387
|
status_message?: string | null;
|
|
16610
17388
|
|
|
16611
17389
|
updated_at?: string;
|
|
17390
|
+
|
|
17391
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17392
|
+
|
|
17393
|
+
webhook_configured_at?: string | null;
|
|
17394
|
+
|
|
17395
|
+
webhook_identifier?: string | null;
|
|
16612
17396
|
}
|
|
16613
17397
|
|
|
16614
17398
|
export namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
@@ -16703,6 +17487,12 @@ export namespace ListConnectionsResponse {
|
|
|
16703
17487
|
status_message?: string | null;
|
|
16704
17488
|
|
|
16705
17489
|
updated_at?: string;
|
|
17490
|
+
|
|
17491
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17492
|
+
|
|
17493
|
+
webhook_configured_at?: string | null;
|
|
17494
|
+
|
|
17495
|
+
webhook_identifier?: string | null;
|
|
16706
17496
|
}
|
|
16707
17497
|
|
|
16708
17498
|
export namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
@@ -16797,6 +17587,12 @@ export namespace ListConnectionsResponse {
|
|
|
16797
17587
|
status_message?: string | null;
|
|
16798
17588
|
|
|
16799
17589
|
updated_at?: string;
|
|
17590
|
+
|
|
17591
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17592
|
+
|
|
17593
|
+
webhook_configured_at?: string | null;
|
|
17594
|
+
|
|
17595
|
+
webhook_identifier?: string | null;
|
|
16800
17596
|
}
|
|
16801
17597
|
|
|
16802
17598
|
export namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
@@ -16891,6 +17687,12 @@ export namespace ListConnectionsResponse {
|
|
|
16891
17687
|
status_message?: string | null;
|
|
16892
17688
|
|
|
16893
17689
|
updated_at?: string;
|
|
17690
|
+
|
|
17691
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17692
|
+
|
|
17693
|
+
webhook_configured_at?: string | null;
|
|
17694
|
+
|
|
17695
|
+
webhook_identifier?: string | null;
|
|
16894
17696
|
}
|
|
16895
17697
|
|
|
16896
17698
|
export namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
@@ -16985,6 +17787,12 @@ export namespace ListConnectionsResponse {
|
|
|
16985
17787
|
status_message?: string | null;
|
|
16986
17788
|
|
|
16987
17789
|
updated_at?: string;
|
|
17790
|
+
|
|
17791
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17792
|
+
|
|
17793
|
+
webhook_configured_at?: string | null;
|
|
17794
|
+
|
|
17795
|
+
webhook_identifier?: string | null;
|
|
16988
17796
|
}
|
|
16989
17797
|
|
|
16990
17798
|
export namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
@@ -17084,6 +17892,12 @@ export namespace ListConnectionsResponse {
|
|
|
17084
17892
|
status_message?: string | null;
|
|
17085
17893
|
|
|
17086
17894
|
updated_at?: string;
|
|
17895
|
+
|
|
17896
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17897
|
+
|
|
17898
|
+
webhook_configured_at?: string | null;
|
|
17899
|
+
|
|
17900
|
+
webhook_identifier?: string | null;
|
|
17087
17901
|
}
|
|
17088
17902
|
|
|
17089
17903
|
export namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
@@ -17178,6 +17992,12 @@ export namespace ListConnectionsResponse {
|
|
|
17178
17992
|
status_message?: string | null;
|
|
17179
17993
|
|
|
17180
17994
|
updated_at?: string;
|
|
17995
|
+
|
|
17996
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
17997
|
+
|
|
17998
|
+
webhook_configured_at?: string | null;
|
|
17999
|
+
|
|
18000
|
+
webhook_identifier?: string | null;
|
|
17181
18001
|
}
|
|
17182
18002
|
|
|
17183
18003
|
export namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
@@ -17272,6 +18092,12 @@ export namespace ListConnectionsResponse {
|
|
|
17272
18092
|
status_message?: string | null;
|
|
17273
18093
|
|
|
17274
18094
|
updated_at?: string;
|
|
18095
|
+
|
|
18096
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18097
|
+
|
|
18098
|
+
webhook_configured_at?: string | null;
|
|
18099
|
+
|
|
18100
|
+
webhook_identifier?: string | null;
|
|
17275
18101
|
}
|
|
17276
18102
|
|
|
17277
18103
|
export namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
@@ -17366,6 +18192,12 @@ export namespace ListConnectionsResponse {
|
|
|
17366
18192
|
status_message?: string | null;
|
|
17367
18193
|
|
|
17368
18194
|
updated_at?: string;
|
|
18195
|
+
|
|
18196
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18197
|
+
|
|
18198
|
+
webhook_configured_at?: string | null;
|
|
18199
|
+
|
|
18200
|
+
webhook_identifier?: string | null;
|
|
17369
18201
|
}
|
|
17370
18202
|
|
|
17371
18203
|
export namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
@@ -17460,6 +18292,12 @@ export namespace ListConnectionsResponse {
|
|
|
17460
18292
|
status_message?: string | null;
|
|
17461
18293
|
|
|
17462
18294
|
updated_at?: string;
|
|
18295
|
+
|
|
18296
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18297
|
+
|
|
18298
|
+
webhook_configured_at?: string | null;
|
|
18299
|
+
|
|
18300
|
+
webhook_identifier?: string | null;
|
|
17463
18301
|
}
|
|
17464
18302
|
|
|
17465
18303
|
export namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
@@ -17554,6 +18392,12 @@ export namespace ListConnectionsResponse {
|
|
|
17554
18392
|
status_message?: string | null;
|
|
17555
18393
|
|
|
17556
18394
|
updated_at?: string;
|
|
18395
|
+
|
|
18396
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18397
|
+
|
|
18398
|
+
webhook_configured_at?: string | null;
|
|
18399
|
+
|
|
18400
|
+
webhook_identifier?: string | null;
|
|
17557
18401
|
}
|
|
17558
18402
|
|
|
17559
18403
|
export namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
@@ -17653,6 +18497,12 @@ export namespace ListConnectionsResponse {
|
|
|
17653
18497
|
status_message?: string | null;
|
|
17654
18498
|
|
|
17655
18499
|
updated_at?: string;
|
|
18500
|
+
|
|
18501
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18502
|
+
|
|
18503
|
+
webhook_configured_at?: string | null;
|
|
18504
|
+
|
|
18505
|
+
webhook_identifier?: string | null;
|
|
17656
18506
|
}
|
|
17657
18507
|
|
|
17658
18508
|
export namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
@@ -17747,6 +18597,12 @@ export namespace ListConnectionsResponse {
|
|
|
17747
18597
|
status_message?: string | null;
|
|
17748
18598
|
|
|
17749
18599
|
updated_at?: string;
|
|
18600
|
+
|
|
18601
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18602
|
+
|
|
18603
|
+
webhook_configured_at?: string | null;
|
|
18604
|
+
|
|
18605
|
+
webhook_identifier?: string | null;
|
|
17750
18606
|
}
|
|
17751
18607
|
|
|
17752
18608
|
export namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
@@ -17841,6 +18697,12 @@ export namespace ListConnectionsResponse {
|
|
|
17841
18697
|
status_message?: string | null;
|
|
17842
18698
|
|
|
17843
18699
|
updated_at?: string;
|
|
18700
|
+
|
|
18701
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18702
|
+
|
|
18703
|
+
webhook_configured_at?: string | null;
|
|
18704
|
+
|
|
18705
|
+
webhook_identifier?: string | null;
|
|
17844
18706
|
}
|
|
17845
18707
|
|
|
17846
18708
|
export namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
@@ -17935,6 +18797,12 @@ export namespace ListConnectionsResponse {
|
|
|
17935
18797
|
status_message?: string | null;
|
|
17936
18798
|
|
|
17937
18799
|
updated_at?: string;
|
|
18800
|
+
|
|
18801
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18802
|
+
|
|
18803
|
+
webhook_configured_at?: string | null;
|
|
18804
|
+
|
|
18805
|
+
webhook_identifier?: string | null;
|
|
17938
18806
|
}
|
|
17939
18807
|
|
|
17940
18808
|
export namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
@@ -18035,6 +18903,12 @@ export namespace ListConnectionsResponse {
|
|
|
18035
18903
|
status_message?: string | null;
|
|
18036
18904
|
|
|
18037
18905
|
updated_at?: string;
|
|
18906
|
+
|
|
18907
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
18908
|
+
|
|
18909
|
+
webhook_configured_at?: string | null;
|
|
18910
|
+
|
|
18911
|
+
webhook_identifier?: string | null;
|
|
18038
18912
|
}
|
|
18039
18913
|
|
|
18040
18914
|
export namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
@@ -18129,6 +19003,12 @@ export namespace ListConnectionsResponse {
|
|
|
18129
19003
|
status_message?: string | null;
|
|
18130
19004
|
|
|
18131
19005
|
updated_at?: string;
|
|
19006
|
+
|
|
19007
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19008
|
+
|
|
19009
|
+
webhook_configured_at?: string | null;
|
|
19010
|
+
|
|
19011
|
+
webhook_identifier?: string | null;
|
|
18132
19012
|
}
|
|
18133
19013
|
|
|
18134
19014
|
export namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
@@ -18223,6 +19103,12 @@ export namespace ListConnectionsResponse {
|
|
|
18223
19103
|
status_message?: string | null;
|
|
18224
19104
|
|
|
18225
19105
|
updated_at?: string;
|
|
19106
|
+
|
|
19107
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19108
|
+
|
|
19109
|
+
webhook_configured_at?: string | null;
|
|
19110
|
+
|
|
19111
|
+
webhook_identifier?: string | null;
|
|
18226
19112
|
}
|
|
18227
19113
|
|
|
18228
19114
|
export namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
@@ -18322,6 +19208,12 @@ export namespace ListConnectionsResponse {
|
|
|
18322
19208
|
status_message?: string | null;
|
|
18323
19209
|
|
|
18324
19210
|
updated_at?: string;
|
|
19211
|
+
|
|
19212
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19213
|
+
|
|
19214
|
+
webhook_configured_at?: string | null;
|
|
19215
|
+
|
|
19216
|
+
webhook_identifier?: string | null;
|
|
18325
19217
|
}
|
|
18326
19218
|
|
|
18327
19219
|
export namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
@@ -18416,6 +19308,12 @@ export namespace ListConnectionsResponse {
|
|
|
18416
19308
|
status_message?: string | null;
|
|
18417
19309
|
|
|
18418
19310
|
updated_at?: string;
|
|
19311
|
+
|
|
19312
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19313
|
+
|
|
19314
|
+
webhook_configured_at?: string | null;
|
|
19315
|
+
|
|
19316
|
+
webhook_identifier?: string | null;
|
|
18419
19317
|
}
|
|
18420
19318
|
|
|
18421
19319
|
export namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
@@ -18461,6 +19359,12 @@ export namespace ListConnectionsResponse {
|
|
|
18461
19359
|
status_message?: string | null;
|
|
18462
19360
|
|
|
18463
19361
|
updated_at?: string;
|
|
19362
|
+
|
|
19363
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19364
|
+
|
|
19365
|
+
webhook_configured_at?: string | null;
|
|
19366
|
+
|
|
19367
|
+
webhook_identifier?: string | null;
|
|
18464
19368
|
}
|
|
18465
19369
|
|
|
18466
19370
|
export namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
@@ -18516,6 +19420,12 @@ export namespace ListConnectionsResponse {
|
|
|
18516
19420
|
status_message?: string | null;
|
|
18517
19421
|
|
|
18518
19422
|
updated_at?: string;
|
|
19423
|
+
|
|
19424
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19425
|
+
|
|
19426
|
+
webhook_configured_at?: string | null;
|
|
19427
|
+
|
|
19428
|
+
webhook_identifier?: string | null;
|
|
18519
19429
|
}
|
|
18520
19430
|
|
|
18521
19431
|
export namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
@@ -18561,6 +19471,12 @@ export namespace ListConnectionsResponse {
|
|
|
18561
19471
|
status_message?: string | null;
|
|
18562
19472
|
|
|
18563
19473
|
updated_at?: string;
|
|
19474
|
+
|
|
19475
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19476
|
+
|
|
19477
|
+
webhook_configured_at?: string | null;
|
|
19478
|
+
|
|
19479
|
+
webhook_identifier?: string | null;
|
|
18564
19480
|
}
|
|
18565
19481
|
|
|
18566
19482
|
export namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
@@ -18611,6 +19527,12 @@ export namespace ListConnectionsResponse {
|
|
|
18611
19527
|
status_message?: string | null;
|
|
18612
19528
|
|
|
18613
19529
|
updated_at?: string;
|
|
19530
|
+
|
|
19531
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19532
|
+
|
|
19533
|
+
webhook_configured_at?: string | null;
|
|
19534
|
+
|
|
19535
|
+
webhook_identifier?: string | null;
|
|
18614
19536
|
}
|
|
18615
19537
|
|
|
18616
19538
|
export namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
@@ -18661,6 +19583,12 @@ export namespace ListConnectionsResponse {
|
|
|
18661
19583
|
status_message?: string | null;
|
|
18662
19584
|
|
|
18663
19585
|
updated_at?: string;
|
|
19586
|
+
|
|
19587
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19588
|
+
|
|
19589
|
+
webhook_configured_at?: string | null;
|
|
19590
|
+
|
|
19591
|
+
webhook_identifier?: string | null;
|
|
18664
19592
|
}
|
|
18665
19593
|
|
|
18666
19594
|
export namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
@@ -18709,6 +19637,12 @@ export namespace ListConnectionsResponse {
|
|
|
18709
19637
|
status_message?: string | null;
|
|
18710
19638
|
|
|
18711
19639
|
updated_at?: string;
|
|
19640
|
+
|
|
19641
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19642
|
+
|
|
19643
|
+
webhook_configured_at?: string | null;
|
|
19644
|
+
|
|
19645
|
+
webhook_identifier?: string | null;
|
|
18712
19646
|
}
|
|
18713
19647
|
|
|
18714
19648
|
export namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
@@ -18897,6 +19831,12 @@ export namespace ListConnectionsResponse {
|
|
|
18897
19831
|
status_message?: string | null;
|
|
18898
19832
|
|
|
18899
19833
|
updated_at?: string;
|
|
19834
|
+
|
|
19835
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19836
|
+
|
|
19837
|
+
webhook_configured_at?: string | null;
|
|
19838
|
+
|
|
19839
|
+
webhook_identifier?: string | null;
|
|
18900
19840
|
}
|
|
18901
19841
|
|
|
18902
19842
|
export namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
@@ -18990,6 +19930,12 @@ export namespace ListConnectionsResponse {
|
|
|
18990
19930
|
status_message?: string | null;
|
|
18991
19931
|
|
|
18992
19932
|
updated_at?: string;
|
|
19933
|
+
|
|
19934
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
19935
|
+
|
|
19936
|
+
webhook_configured_at?: string | null;
|
|
19937
|
+
|
|
19938
|
+
webhook_identifier?: string | null;
|
|
18993
19939
|
}
|
|
18994
19940
|
|
|
18995
19941
|
export namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
@@ -19083,6 +20029,12 @@ export namespace ListConnectionsResponse {
|
|
|
19083
20029
|
status_message?: string | null;
|
|
19084
20030
|
|
|
19085
20031
|
updated_at?: string;
|
|
20032
|
+
|
|
20033
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
20034
|
+
|
|
20035
|
+
webhook_configured_at?: string | null;
|
|
20036
|
+
|
|
20037
|
+
webhook_identifier?: string | null;
|
|
19086
20038
|
}
|
|
19087
20039
|
|
|
19088
20040
|
export namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
@@ -19137,6 +20089,12 @@ export namespace ListConnectionsResponse {
|
|
|
19137
20089
|
status_message?: string | null;
|
|
19138
20090
|
|
|
19139
20091
|
updated_at?: string;
|
|
20092
|
+
|
|
20093
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
20094
|
+
|
|
20095
|
+
webhook_configured_at?: string | null;
|
|
20096
|
+
|
|
20097
|
+
webhook_identifier?: string | null;
|
|
19140
20098
|
}
|
|
19141
20099
|
|
|
19142
20100
|
export namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
@@ -24891,15 +25849,9 @@ export namespace ListEventsResponse {
|
|
|
24891
25849
|
export interface Data {
|
|
24892
25850
|
headers: { [key: string]: unknown };
|
|
24893
25851
|
|
|
24894
|
-
|
|
24895
|
-
|
|
24896
|
-
path: string;
|
|
24897
|
-
|
|
24898
|
-
query: { [key: string]: unknown };
|
|
24899
|
-
|
|
24900
|
-
traceId: string;
|
|
25852
|
+
payload: { [key: string]: unknown };
|
|
24901
25853
|
|
|
24902
|
-
|
|
25854
|
+
webhook_url: string;
|
|
24903
25855
|
}
|
|
24904
25856
|
}
|
|
24905
25857
|
|
|
@@ -25512,6 +26464,12 @@ export namespace PostConnectResponse {
|
|
|
25512
26464
|
status_message?: string | null;
|
|
25513
26465
|
|
|
25514
26466
|
updated_at?: string;
|
|
26467
|
+
|
|
26468
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
26469
|
+
|
|
26470
|
+
webhook_configured_at?: string | null;
|
|
26471
|
+
|
|
26472
|
+
webhook_identifier?: string | null;
|
|
25515
26473
|
}
|
|
25516
26474
|
|
|
25517
26475
|
export namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
@@ -25553,6 +26511,12 @@ export namespace PostConnectResponse {
|
|
|
25553
26511
|
status_message?: string | null;
|
|
25554
26512
|
|
|
25555
26513
|
updated_at?: string;
|
|
26514
|
+
|
|
26515
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
26516
|
+
|
|
26517
|
+
webhook_configured_at?: string | null;
|
|
26518
|
+
|
|
26519
|
+
webhook_identifier?: string | null;
|
|
25556
26520
|
}
|
|
25557
26521
|
|
|
25558
26522
|
export namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
@@ -25643,6 +26607,12 @@ export namespace PostConnectResponse {
|
|
|
25643
26607
|
status_message?: string | null;
|
|
25644
26608
|
|
|
25645
26609
|
updated_at?: string;
|
|
26610
|
+
|
|
26611
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
26612
|
+
|
|
26613
|
+
webhook_configured_at?: string | null;
|
|
26614
|
+
|
|
26615
|
+
webhook_identifier?: string | null;
|
|
25646
26616
|
}
|
|
25647
26617
|
|
|
25648
26618
|
export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
@@ -25684,6 +26654,12 @@ export namespace PostConnectResponse {
|
|
|
25684
26654
|
status_message?: string | null;
|
|
25685
26655
|
|
|
25686
26656
|
updated_at?: string;
|
|
26657
|
+
|
|
26658
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
26659
|
+
|
|
26660
|
+
webhook_configured_at?: string | null;
|
|
26661
|
+
|
|
26662
|
+
webhook_identifier?: string | null;
|
|
25687
26663
|
}
|
|
25688
26664
|
|
|
25689
26665
|
export namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
@@ -25774,12 +26750,24 @@ export namespace PostConnectResponse {
|
|
|
25774
26750
|
status_message?: string | null;
|
|
25775
26751
|
|
|
25776
26752
|
updated_at?: string;
|
|
26753
|
+
|
|
26754
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
26755
|
+
|
|
26756
|
+
webhook_configured_at?: string | null;
|
|
26757
|
+
|
|
26758
|
+
webhook_identifier?: string | null;
|
|
25777
26759
|
}
|
|
25778
26760
|
|
|
25779
26761
|
export namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
25780
26762
|
export interface Settings {
|
|
25781
26763
|
oauth: Settings.OAuth;
|
|
25782
26764
|
|
|
26765
|
+
/**
|
|
26766
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
26767
|
+
* API calls to BigQuery.
|
|
26768
|
+
*/
|
|
26769
|
+
project_id: string;
|
|
26770
|
+
|
|
25783
26771
|
/**
|
|
25784
26772
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
25785
26773
|
* for backward compatibility until we remove the oauth field
|
|
@@ -25864,6 +26852,12 @@ export namespace PostConnectResponse {
|
|
|
25864
26852
|
status_message?: string | null;
|
|
25865
26853
|
|
|
25866
26854
|
updated_at?: string;
|
|
26855
|
+
|
|
26856
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
26857
|
+
|
|
26858
|
+
webhook_configured_at?: string | null;
|
|
26859
|
+
|
|
26860
|
+
webhook_identifier?: string | null;
|
|
25867
26861
|
}
|
|
25868
26862
|
|
|
25869
26863
|
export namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
@@ -25954,6 +26948,12 @@ export namespace PostConnectResponse {
|
|
|
25954
26948
|
status_message?: string | null;
|
|
25955
26949
|
|
|
25956
26950
|
updated_at?: string;
|
|
26951
|
+
|
|
26952
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
26953
|
+
|
|
26954
|
+
webhook_configured_at?: string | null;
|
|
26955
|
+
|
|
26956
|
+
webhook_identifier?: string | null;
|
|
25957
26957
|
}
|
|
25958
26958
|
|
|
25959
26959
|
export namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
@@ -26044,6 +27044,12 @@ export namespace PostConnectResponse {
|
|
|
26044
27044
|
status_message?: string | null;
|
|
26045
27045
|
|
|
26046
27046
|
updated_at?: string;
|
|
27047
|
+
|
|
27048
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27049
|
+
|
|
27050
|
+
webhook_configured_at?: string | null;
|
|
27051
|
+
|
|
27052
|
+
webhook_identifier?: string | null;
|
|
26047
27053
|
}
|
|
26048
27054
|
|
|
26049
27055
|
export namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
@@ -26134,6 +27140,12 @@ export namespace PostConnectResponse {
|
|
|
26134
27140
|
status_message?: string | null;
|
|
26135
27141
|
|
|
26136
27142
|
updated_at?: string;
|
|
27143
|
+
|
|
27144
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27145
|
+
|
|
27146
|
+
webhook_configured_at?: string | null;
|
|
27147
|
+
|
|
27148
|
+
webhook_identifier?: string | null;
|
|
26137
27149
|
}
|
|
26138
27150
|
|
|
26139
27151
|
export namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
@@ -26224,6 +27236,12 @@ export namespace PostConnectResponse {
|
|
|
26224
27236
|
status_message?: string | null;
|
|
26225
27237
|
|
|
26226
27238
|
updated_at?: string;
|
|
27239
|
+
|
|
27240
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27241
|
+
|
|
27242
|
+
webhook_configured_at?: string | null;
|
|
27243
|
+
|
|
27244
|
+
webhook_identifier?: string | null;
|
|
26227
27245
|
}
|
|
26228
27246
|
|
|
26229
27247
|
export namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
@@ -26314,6 +27332,12 @@ export namespace PostConnectResponse {
|
|
|
26314
27332
|
status_message?: string | null;
|
|
26315
27333
|
|
|
26316
27334
|
updated_at?: string;
|
|
27335
|
+
|
|
27336
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27337
|
+
|
|
27338
|
+
webhook_configured_at?: string | null;
|
|
27339
|
+
|
|
27340
|
+
webhook_identifier?: string | null;
|
|
26317
27341
|
}
|
|
26318
27342
|
|
|
26319
27343
|
export namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
@@ -26409,19 +27433,31 @@ export namespace PostConnectResponse {
|
|
|
26409
27433
|
status_message?: string | null;
|
|
26410
27434
|
|
|
26411
27435
|
updated_at?: string;
|
|
27436
|
+
|
|
27437
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27438
|
+
|
|
27439
|
+
webhook_configured_at?: string | null;
|
|
27440
|
+
|
|
27441
|
+
webhook_identifier?: string | null;
|
|
26412
27442
|
}
|
|
26413
27443
|
|
|
26414
27444
|
export namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
26415
27445
|
export interface Settings {
|
|
26416
27446
|
/**
|
|
26417
|
-
*
|
|
26418
|
-
*
|
|
26419
|
-
* .cloud.databricks.com
|
|
27447
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
27448
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
26420
27449
|
*/
|
|
26421
|
-
|
|
27450
|
+
http_path: string;
|
|
26422
27451
|
|
|
26423
27452
|
oauth: Settings.OAuth;
|
|
26424
27453
|
|
|
27454
|
+
/**
|
|
27455
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
27456
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
27457
|
+
* Server hostname value.
|
|
27458
|
+
*/
|
|
27459
|
+
server_hostname: string;
|
|
27460
|
+
|
|
26425
27461
|
/**
|
|
26426
27462
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
26427
27463
|
* for backward compatibility until we remove the oauth field
|
|
@@ -26506,6 +27542,12 @@ export namespace PostConnectResponse {
|
|
|
26506
27542
|
status_message?: string | null;
|
|
26507
27543
|
|
|
26508
27544
|
updated_at?: string;
|
|
27545
|
+
|
|
27546
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27547
|
+
|
|
27548
|
+
webhook_configured_at?: string | null;
|
|
27549
|
+
|
|
27550
|
+
webhook_identifier?: string | null;
|
|
26509
27551
|
}
|
|
26510
27552
|
|
|
26511
27553
|
export namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
@@ -26596,6 +27638,12 @@ export namespace PostConnectResponse {
|
|
|
26596
27638
|
status_message?: string | null;
|
|
26597
27639
|
|
|
26598
27640
|
updated_at?: string;
|
|
27641
|
+
|
|
27642
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27643
|
+
|
|
27644
|
+
webhook_configured_at?: string | null;
|
|
27645
|
+
|
|
27646
|
+
webhook_identifier?: string | null;
|
|
26599
27647
|
}
|
|
26600
27648
|
|
|
26601
27649
|
export namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
@@ -26686,6 +27734,12 @@ export namespace PostConnectResponse {
|
|
|
26686
27734
|
status_message?: string | null;
|
|
26687
27735
|
|
|
26688
27736
|
updated_at?: string;
|
|
27737
|
+
|
|
27738
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27739
|
+
|
|
27740
|
+
webhook_configured_at?: string | null;
|
|
27741
|
+
|
|
27742
|
+
webhook_identifier?: string | null;
|
|
26689
27743
|
}
|
|
26690
27744
|
|
|
26691
27745
|
export namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
@@ -26776,6 +27830,12 @@ export namespace PostConnectResponse {
|
|
|
26776
27830
|
status_message?: string | null;
|
|
26777
27831
|
|
|
26778
27832
|
updated_at?: string;
|
|
27833
|
+
|
|
27834
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27835
|
+
|
|
27836
|
+
webhook_configured_at?: string | null;
|
|
27837
|
+
|
|
27838
|
+
webhook_identifier?: string | null;
|
|
26779
27839
|
}
|
|
26780
27840
|
|
|
26781
27841
|
export namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
@@ -26866,6 +27926,12 @@ export namespace PostConnectResponse {
|
|
|
26866
27926
|
status_message?: string | null;
|
|
26867
27927
|
|
|
26868
27928
|
updated_at?: string;
|
|
27929
|
+
|
|
27930
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
27931
|
+
|
|
27932
|
+
webhook_configured_at?: string | null;
|
|
27933
|
+
|
|
27934
|
+
webhook_identifier?: string | null;
|
|
26869
27935
|
}
|
|
26870
27936
|
|
|
26871
27937
|
export namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
@@ -26956,6 +28022,12 @@ export namespace PostConnectResponse {
|
|
|
26956
28022
|
status_message?: string | null;
|
|
26957
28023
|
|
|
26958
28024
|
updated_at?: string;
|
|
28025
|
+
|
|
28026
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28027
|
+
|
|
28028
|
+
webhook_configured_at?: string | null;
|
|
28029
|
+
|
|
28030
|
+
webhook_identifier?: string | null;
|
|
26959
28031
|
}
|
|
26960
28032
|
|
|
26961
28033
|
export namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
@@ -27046,6 +28118,12 @@ export namespace PostConnectResponse {
|
|
|
27046
28118
|
status_message?: string | null;
|
|
27047
28119
|
|
|
27048
28120
|
updated_at?: string;
|
|
28121
|
+
|
|
28122
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28123
|
+
|
|
28124
|
+
webhook_configured_at?: string | null;
|
|
28125
|
+
|
|
28126
|
+
webhook_identifier?: string | null;
|
|
27049
28127
|
}
|
|
27050
28128
|
|
|
27051
28129
|
export namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
@@ -27136,6 +28214,12 @@ export namespace PostConnectResponse {
|
|
|
27136
28214
|
status_message?: string | null;
|
|
27137
28215
|
|
|
27138
28216
|
updated_at?: string;
|
|
28217
|
+
|
|
28218
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28219
|
+
|
|
28220
|
+
webhook_configured_at?: string | null;
|
|
28221
|
+
|
|
28222
|
+
webhook_identifier?: string | null;
|
|
27139
28223
|
}
|
|
27140
28224
|
|
|
27141
28225
|
export namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
@@ -27226,6 +28310,12 @@ export namespace PostConnectResponse {
|
|
|
27226
28310
|
status_message?: string | null;
|
|
27227
28311
|
|
|
27228
28312
|
updated_at?: string;
|
|
28313
|
+
|
|
28314
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28315
|
+
|
|
28316
|
+
webhook_configured_at?: string | null;
|
|
28317
|
+
|
|
28318
|
+
webhook_identifier?: string | null;
|
|
27229
28319
|
}
|
|
27230
28320
|
|
|
27231
28321
|
export namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
@@ -27316,6 +28406,12 @@ export namespace PostConnectResponse {
|
|
|
27316
28406
|
status_message?: string | null;
|
|
27317
28407
|
|
|
27318
28408
|
updated_at?: string;
|
|
28409
|
+
|
|
28410
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28411
|
+
|
|
28412
|
+
webhook_configured_at?: string | null;
|
|
28413
|
+
|
|
28414
|
+
webhook_identifier?: string | null;
|
|
27319
28415
|
}
|
|
27320
28416
|
|
|
27321
28417
|
export namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
@@ -27406,6 +28502,12 @@ export namespace PostConnectResponse {
|
|
|
27406
28502
|
status_message?: string | null;
|
|
27407
28503
|
|
|
27408
28504
|
updated_at?: string;
|
|
28505
|
+
|
|
28506
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28507
|
+
|
|
28508
|
+
webhook_configured_at?: string | null;
|
|
28509
|
+
|
|
28510
|
+
webhook_identifier?: string | null;
|
|
27409
28511
|
}
|
|
27410
28512
|
|
|
27411
28513
|
export namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
@@ -27496,6 +28598,12 @@ export namespace PostConnectResponse {
|
|
|
27496
28598
|
status_message?: string | null;
|
|
27497
28599
|
|
|
27498
28600
|
updated_at?: string;
|
|
28601
|
+
|
|
28602
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28603
|
+
|
|
28604
|
+
webhook_configured_at?: string | null;
|
|
28605
|
+
|
|
28606
|
+
webhook_identifier?: string | null;
|
|
27499
28607
|
}
|
|
27500
28608
|
|
|
27501
28609
|
export namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
@@ -27586,6 +28694,12 @@ export namespace PostConnectResponse {
|
|
|
27586
28694
|
status_message?: string | null;
|
|
27587
28695
|
|
|
27588
28696
|
updated_at?: string;
|
|
28697
|
+
|
|
28698
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28699
|
+
|
|
28700
|
+
webhook_configured_at?: string | null;
|
|
28701
|
+
|
|
28702
|
+
webhook_identifier?: string | null;
|
|
27589
28703
|
}
|
|
27590
28704
|
|
|
27591
28705
|
export namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
@@ -27676,6 +28790,12 @@ export namespace PostConnectResponse {
|
|
|
27676
28790
|
status_message?: string | null;
|
|
27677
28791
|
|
|
27678
28792
|
updated_at?: string;
|
|
28793
|
+
|
|
28794
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28795
|
+
|
|
28796
|
+
webhook_configured_at?: string | null;
|
|
28797
|
+
|
|
28798
|
+
webhook_identifier?: string | null;
|
|
27679
28799
|
}
|
|
27680
28800
|
|
|
27681
28801
|
export namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
@@ -27771,6 +28891,12 @@ export namespace PostConnectResponse {
|
|
|
27771
28891
|
status_message?: string | null;
|
|
27772
28892
|
|
|
27773
28893
|
updated_at?: string;
|
|
28894
|
+
|
|
28895
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28896
|
+
|
|
28897
|
+
webhook_configured_at?: string | null;
|
|
28898
|
+
|
|
28899
|
+
webhook_identifier?: string | null;
|
|
27774
28900
|
}
|
|
27775
28901
|
|
|
27776
28902
|
export namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
@@ -27861,6 +28987,12 @@ export namespace PostConnectResponse {
|
|
|
27861
28987
|
status_message?: string | null;
|
|
27862
28988
|
|
|
27863
28989
|
updated_at?: string;
|
|
28990
|
+
|
|
28991
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
28992
|
+
|
|
28993
|
+
webhook_configured_at?: string | null;
|
|
28994
|
+
|
|
28995
|
+
webhook_identifier?: string | null;
|
|
27864
28996
|
}
|
|
27865
28997
|
|
|
27866
28998
|
export namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
@@ -27951,6 +29083,12 @@ export namespace PostConnectResponse {
|
|
|
27951
29083
|
status_message?: string | null;
|
|
27952
29084
|
|
|
27953
29085
|
updated_at?: string;
|
|
29086
|
+
|
|
29087
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29088
|
+
|
|
29089
|
+
webhook_configured_at?: string | null;
|
|
29090
|
+
|
|
29091
|
+
webhook_identifier?: string | null;
|
|
27954
29092
|
}
|
|
27955
29093
|
|
|
27956
29094
|
export namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
@@ -28041,6 +29179,12 @@ export namespace PostConnectResponse {
|
|
|
28041
29179
|
status_message?: string | null;
|
|
28042
29180
|
|
|
28043
29181
|
updated_at?: string;
|
|
29182
|
+
|
|
29183
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29184
|
+
|
|
29185
|
+
webhook_configured_at?: string | null;
|
|
29186
|
+
|
|
29187
|
+
webhook_identifier?: string | null;
|
|
28044
29188
|
}
|
|
28045
29189
|
|
|
28046
29190
|
export namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
@@ -28131,6 +29275,12 @@ export namespace PostConnectResponse {
|
|
|
28131
29275
|
status_message?: string | null;
|
|
28132
29276
|
|
|
28133
29277
|
updated_at?: string;
|
|
29278
|
+
|
|
29279
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29280
|
+
|
|
29281
|
+
webhook_configured_at?: string | null;
|
|
29282
|
+
|
|
29283
|
+
webhook_identifier?: string | null;
|
|
28134
29284
|
}
|
|
28135
29285
|
|
|
28136
29286
|
export namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
@@ -28221,6 +29371,12 @@ export namespace PostConnectResponse {
|
|
|
28221
29371
|
status_message?: string | null;
|
|
28222
29372
|
|
|
28223
29373
|
updated_at?: string;
|
|
29374
|
+
|
|
29375
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29376
|
+
|
|
29377
|
+
webhook_configured_at?: string | null;
|
|
29378
|
+
|
|
29379
|
+
webhook_identifier?: string | null;
|
|
28224
29380
|
}
|
|
28225
29381
|
|
|
28226
29382
|
export namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
@@ -28316,6 +29472,12 @@ export namespace PostConnectResponse {
|
|
|
28316
29472
|
status_message?: string | null;
|
|
28317
29473
|
|
|
28318
29474
|
updated_at?: string;
|
|
29475
|
+
|
|
29476
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29477
|
+
|
|
29478
|
+
webhook_configured_at?: string | null;
|
|
29479
|
+
|
|
29480
|
+
webhook_identifier?: string | null;
|
|
28319
29481
|
}
|
|
28320
29482
|
|
|
28321
29483
|
export namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
@@ -28406,6 +29568,12 @@ export namespace PostConnectResponse {
|
|
|
28406
29568
|
status_message?: string | null;
|
|
28407
29569
|
|
|
28408
29570
|
updated_at?: string;
|
|
29571
|
+
|
|
29572
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29573
|
+
|
|
29574
|
+
webhook_configured_at?: string | null;
|
|
29575
|
+
|
|
29576
|
+
webhook_identifier?: string | null;
|
|
28409
29577
|
}
|
|
28410
29578
|
|
|
28411
29579
|
export namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
@@ -28496,6 +29664,12 @@ export namespace PostConnectResponse {
|
|
|
28496
29664
|
status_message?: string | null;
|
|
28497
29665
|
|
|
28498
29666
|
updated_at?: string;
|
|
29667
|
+
|
|
29668
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29669
|
+
|
|
29670
|
+
webhook_configured_at?: string | null;
|
|
29671
|
+
|
|
29672
|
+
webhook_identifier?: string | null;
|
|
28499
29673
|
}
|
|
28500
29674
|
|
|
28501
29675
|
export namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
@@ -28586,6 +29760,12 @@ export namespace PostConnectResponse {
|
|
|
28586
29760
|
status_message?: string | null;
|
|
28587
29761
|
|
|
28588
29762
|
updated_at?: string;
|
|
29763
|
+
|
|
29764
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29765
|
+
|
|
29766
|
+
webhook_configured_at?: string | null;
|
|
29767
|
+
|
|
29768
|
+
webhook_identifier?: string | null;
|
|
28589
29769
|
}
|
|
28590
29770
|
|
|
28591
29771
|
export namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
@@ -28682,6 +29862,12 @@ export namespace PostConnectResponse {
|
|
|
28682
29862
|
status_message?: string | null;
|
|
28683
29863
|
|
|
28684
29864
|
updated_at?: string;
|
|
29865
|
+
|
|
29866
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29867
|
+
|
|
29868
|
+
webhook_configured_at?: string | null;
|
|
29869
|
+
|
|
29870
|
+
webhook_identifier?: string | null;
|
|
28685
29871
|
}
|
|
28686
29872
|
|
|
28687
29873
|
export namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
@@ -28772,6 +29958,12 @@ export namespace PostConnectResponse {
|
|
|
28772
29958
|
status_message?: string | null;
|
|
28773
29959
|
|
|
28774
29960
|
updated_at?: string;
|
|
29961
|
+
|
|
29962
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
29963
|
+
|
|
29964
|
+
webhook_configured_at?: string | null;
|
|
29965
|
+
|
|
29966
|
+
webhook_identifier?: string | null;
|
|
28775
29967
|
}
|
|
28776
29968
|
|
|
28777
29969
|
export namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
@@ -28862,6 +30054,12 @@ export namespace PostConnectResponse {
|
|
|
28862
30054
|
status_message?: string | null;
|
|
28863
30055
|
|
|
28864
30056
|
updated_at?: string;
|
|
30057
|
+
|
|
30058
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30059
|
+
|
|
30060
|
+
webhook_configured_at?: string | null;
|
|
30061
|
+
|
|
30062
|
+
webhook_identifier?: string | null;
|
|
28865
30063
|
}
|
|
28866
30064
|
|
|
28867
30065
|
export namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
@@ -28957,6 +30155,12 @@ export namespace PostConnectResponse {
|
|
|
28957
30155
|
status_message?: string | null;
|
|
28958
30156
|
|
|
28959
30157
|
updated_at?: string;
|
|
30158
|
+
|
|
30159
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30160
|
+
|
|
30161
|
+
webhook_configured_at?: string | null;
|
|
30162
|
+
|
|
30163
|
+
webhook_identifier?: string | null;
|
|
28960
30164
|
}
|
|
28961
30165
|
|
|
28962
30166
|
export namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
@@ -29047,6 +30251,12 @@ export namespace PostConnectResponse {
|
|
|
29047
30251
|
status_message?: string | null;
|
|
29048
30252
|
|
|
29049
30253
|
updated_at?: string;
|
|
30254
|
+
|
|
30255
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30256
|
+
|
|
30257
|
+
webhook_configured_at?: string | null;
|
|
30258
|
+
|
|
30259
|
+
webhook_identifier?: string | null;
|
|
29050
30260
|
}
|
|
29051
30261
|
|
|
29052
30262
|
export namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
@@ -29088,6 +30298,12 @@ export namespace PostConnectResponse {
|
|
|
29088
30298
|
status_message?: string | null;
|
|
29089
30299
|
|
|
29090
30300
|
updated_at?: string;
|
|
30301
|
+
|
|
30302
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30303
|
+
|
|
30304
|
+
webhook_configured_at?: string | null;
|
|
30305
|
+
|
|
30306
|
+
webhook_identifier?: string | null;
|
|
29091
30307
|
}
|
|
29092
30308
|
|
|
29093
30309
|
export namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
@@ -29139,6 +30355,12 @@ export namespace PostConnectResponse {
|
|
|
29139
30355
|
status_message?: string | null;
|
|
29140
30356
|
|
|
29141
30357
|
updated_at?: string;
|
|
30358
|
+
|
|
30359
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30360
|
+
|
|
30361
|
+
webhook_configured_at?: string | null;
|
|
30362
|
+
|
|
30363
|
+
webhook_identifier?: string | null;
|
|
29142
30364
|
}
|
|
29143
30365
|
|
|
29144
30366
|
export namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
@@ -29180,6 +30402,12 @@ export namespace PostConnectResponse {
|
|
|
29180
30402
|
status_message?: string | null;
|
|
29181
30403
|
|
|
29182
30404
|
updated_at?: string;
|
|
30405
|
+
|
|
30406
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30407
|
+
|
|
30408
|
+
webhook_configured_at?: string | null;
|
|
30409
|
+
|
|
30410
|
+
webhook_identifier?: string | null;
|
|
29183
30411
|
}
|
|
29184
30412
|
|
|
29185
30413
|
export namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
@@ -29226,6 +30454,12 @@ export namespace PostConnectResponse {
|
|
|
29226
30454
|
status_message?: string | null;
|
|
29227
30455
|
|
|
29228
30456
|
updated_at?: string;
|
|
30457
|
+
|
|
30458
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30459
|
+
|
|
30460
|
+
webhook_configured_at?: string | null;
|
|
30461
|
+
|
|
30462
|
+
webhook_identifier?: string | null;
|
|
29229
30463
|
}
|
|
29230
30464
|
|
|
29231
30465
|
export namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
@@ -29272,6 +30506,12 @@ export namespace PostConnectResponse {
|
|
|
29272
30506
|
status_message?: string | null;
|
|
29273
30507
|
|
|
29274
30508
|
updated_at?: string;
|
|
30509
|
+
|
|
30510
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30511
|
+
|
|
30512
|
+
webhook_configured_at?: string | null;
|
|
30513
|
+
|
|
30514
|
+
webhook_identifier?: string | null;
|
|
29275
30515
|
}
|
|
29276
30516
|
|
|
29277
30517
|
export namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
@@ -29316,6 +30556,12 @@ export namespace PostConnectResponse {
|
|
|
29316
30556
|
status_message?: string | null;
|
|
29317
30557
|
|
|
29318
30558
|
updated_at?: string;
|
|
30559
|
+
|
|
30560
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30561
|
+
|
|
30562
|
+
webhook_configured_at?: string | null;
|
|
30563
|
+
|
|
30564
|
+
webhook_identifier?: string | null;
|
|
29319
30565
|
}
|
|
29320
30566
|
|
|
29321
30567
|
export namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
@@ -29500,6 +30746,12 @@ export namespace PostConnectResponse {
|
|
|
29500
30746
|
status_message?: string | null;
|
|
29501
30747
|
|
|
29502
30748
|
updated_at?: string;
|
|
30749
|
+
|
|
30750
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30751
|
+
|
|
30752
|
+
webhook_configured_at?: string | null;
|
|
30753
|
+
|
|
30754
|
+
webhook_identifier?: string | null;
|
|
29503
30755
|
}
|
|
29504
30756
|
|
|
29505
30757
|
export namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
@@ -29589,6 +30841,12 @@ export namespace PostConnectResponse {
|
|
|
29589
30841
|
status_message?: string | null;
|
|
29590
30842
|
|
|
29591
30843
|
updated_at?: string;
|
|
30844
|
+
|
|
30845
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30846
|
+
|
|
30847
|
+
webhook_configured_at?: string | null;
|
|
30848
|
+
|
|
30849
|
+
webhook_identifier?: string | null;
|
|
29592
30850
|
}
|
|
29593
30851
|
|
|
29594
30852
|
export namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
@@ -29678,6 +30936,12 @@ export namespace PostConnectResponse {
|
|
|
29678
30936
|
status_message?: string | null;
|
|
29679
30937
|
|
|
29680
30938
|
updated_at?: string;
|
|
30939
|
+
|
|
30940
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30941
|
+
|
|
30942
|
+
webhook_configured_at?: string | null;
|
|
30943
|
+
|
|
30944
|
+
webhook_identifier?: string | null;
|
|
29681
30945
|
}
|
|
29682
30946
|
|
|
29683
30947
|
export namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
@@ -29728,6 +30992,12 @@ export namespace PostConnectResponse {
|
|
|
29728
30992
|
status_message?: string | null;
|
|
29729
30993
|
|
|
29730
30994
|
updated_at?: string;
|
|
30995
|
+
|
|
30996
|
+
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
30997
|
+
|
|
30998
|
+
webhook_configured_at?: string | null;
|
|
30999
|
+
|
|
31000
|
+
webhook_identifier?: string | null;
|
|
29731
31001
|
}
|
|
29732
31002
|
|
|
29733
31003
|
export namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
@@ -33530,6 +34800,12 @@ export namespace CreateConnectionParams {
|
|
|
33530
34800
|
export interface Settings {
|
|
33531
34801
|
oauth: Settings.OAuth;
|
|
33532
34802
|
|
|
34803
|
+
/**
|
|
34804
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
34805
|
+
* API calls to BigQuery.
|
|
34806
|
+
*/
|
|
34807
|
+
project_id: string;
|
|
34808
|
+
|
|
33533
34809
|
/**
|
|
33534
34810
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
33535
34811
|
* for backward compatibility until we remove the oauth field
|
|
@@ -33961,14 +35237,20 @@ export namespace CreateConnectionParams {
|
|
|
33961
35237
|
export namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
33962
35238
|
export interface Settings {
|
|
33963
35239
|
/**
|
|
33964
|
-
*
|
|
33965
|
-
*
|
|
33966
|
-
* .cloud.databricks.com
|
|
35240
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
35241
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
33967
35242
|
*/
|
|
33968
|
-
|
|
35243
|
+
http_path: string;
|
|
33969
35244
|
|
|
33970
35245
|
oauth: Settings.OAuth;
|
|
33971
35246
|
|
|
35247
|
+
/**
|
|
35248
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
35249
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
35250
|
+
* Server hostname value.
|
|
35251
|
+
*/
|
|
35252
|
+
server_hostname: string;
|
|
35253
|
+
|
|
33972
35254
|
/**
|
|
33973
35255
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
33974
35256
|
* for backward compatibility until we remove the oauth field
|
|
@@ -38484,7 +39766,17 @@ export namespace PreConnectParams {
|
|
|
38484
39766
|
export interface ConnectorBigqueryDiscriminatedPreConnectInput {
|
|
38485
39767
|
connector_name: 'bigquery';
|
|
38486
39768
|
|
|
38487
|
-
pre_connect_input:
|
|
39769
|
+
pre_connect_input: ConnectorBigqueryDiscriminatedPreConnectInput.PreConnectInput;
|
|
39770
|
+
}
|
|
39771
|
+
|
|
39772
|
+
export namespace ConnectorBigqueryDiscriminatedPreConnectInput {
|
|
39773
|
+
export interface PreConnectInput {
|
|
39774
|
+
/**
|
|
39775
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
39776
|
+
* API calls to BigQuery.
|
|
39777
|
+
*/
|
|
39778
|
+
project_id: string;
|
|
39779
|
+
}
|
|
38488
39780
|
}
|
|
38489
39781
|
|
|
38490
39782
|
export interface ConnectorBitbucketSourceControlDiscriminatedPreConnectInput {
|
|
@@ -38542,11 +39834,17 @@ export namespace PreConnectParams {
|
|
|
38542
39834
|
export namespace ConnectorDatabricksDiscriminatedPreConnectInput {
|
|
38543
39835
|
export interface PreConnectInput {
|
|
38544
39836
|
/**
|
|
38545
|
-
*
|
|
38546
|
-
*
|
|
38547
|
-
|
|
39837
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
39838
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
39839
|
+
*/
|
|
39840
|
+
http_path: string;
|
|
39841
|
+
|
|
39842
|
+
/**
|
|
39843
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
39844
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
39845
|
+
* Server hostname value.
|
|
38548
39846
|
*/
|
|
38549
|
-
|
|
39847
|
+
server_hostname: string;
|
|
38550
39848
|
}
|
|
38551
39849
|
}
|
|
38552
39850
|
|