@replit/connectors 0.5.0 → 0.7.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 +16 -0
- package/package.json +1 -1
- package/resources/top-level.d.mts +2276 -78
- package/resources/top-level.d.mts.map +1 -1
- package/resources/top-level.d.ts +2276 -78
- package/resources/top-level.d.ts.map +1 -1
- package/src/resources/top-level.ts +3520 -669
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -19,6 +19,7 @@ export interface Connector {
|
|
|
19
19
|
schemas?: Connector.Schemas;
|
|
20
20
|
scopes?: Array<Connector.Scope>;
|
|
21
21
|
stage?: 'alpha' | 'beta' | 'ga' | 'hidden';
|
|
22
|
+
webhook_registration_input?: unknown;
|
|
22
23
|
}
|
|
23
24
|
export declare namespace Connector {
|
|
24
25
|
interface Schemas {
|
|
@@ -29,6 +30,7 @@ export declare namespace Connector {
|
|
|
29
30
|
integration_data?: unknown;
|
|
30
31
|
pre_connect_input?: unknown;
|
|
31
32
|
webhook_events?: unknown;
|
|
33
|
+
webhook_registration_input?: unknown;
|
|
32
34
|
}
|
|
33
35
|
interface Scope {
|
|
34
36
|
scope: string;
|
|
@@ -38,7 +40,7 @@ export declare namespace Connector {
|
|
|
38
40
|
}
|
|
39
41
|
export interface Integration {
|
|
40
42
|
id: string;
|
|
41
|
-
connector_name: 'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom';
|
|
43
|
+
connector_name: 'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'custom-mcp' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'gitlab-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom';
|
|
42
44
|
created_at: string;
|
|
43
45
|
external: string | number | boolean | {
|
|
44
46
|
[key: string]: unknown;
|
|
@@ -70,6 +72,9 @@ export declare namespace AssignConnectionResponse {
|
|
|
70
72
|
}
|
|
71
73
|
export interface CheckConnectionResponse {
|
|
72
74
|
id: string;
|
|
75
|
+
health_check_result?: {
|
|
76
|
+
[key: string]: unknown;
|
|
77
|
+
} | null;
|
|
73
78
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
74
79
|
status_message?: string | null;
|
|
75
80
|
}
|
|
@@ -79,7 +84,7 @@ export type ConnectorRpcResponse = {
|
|
|
79
84
|
/**
|
|
80
85
|
* The connection details
|
|
81
86
|
*/
|
|
82
|
-
export type CreateConnectionResponse = CreateConnectionResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorAgentmailDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorAsanaDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorBigqueryDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorBitbucketDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorBoxDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorCalendlyDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorClickupDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorConfluenceDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorDatabricksDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorDiscordDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorDropboxDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorFigmaDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGitHubDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleCalendarDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleDocsDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleDriveDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleMailDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleSheetDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleSlidesDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorHubspotDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorInstagramDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorJiraDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorLinearDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorMondayDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorNotionDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorOnedriveDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorOutlookDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSalesforceDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSharepointDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSlackDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSnowflakeDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSpotifyDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorYoutubeDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorZendeskDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorZoomDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorApolloDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorPlaidDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorPostgresDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorResendDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSendgridDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSlackAgentDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorStripeDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorTwilioDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
87
|
+
export type CreateConnectionResponse = CreateConnectionResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorAgentmailDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorAsanaDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorBigqueryDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorBitbucketDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorBoxDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorCalendlyDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorClickupDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorConfluenceDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorDatabricksDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorDiscordDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorDropboxDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorFigmaDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGitHubDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGitlabSourceControlDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleCalendarDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleDocsDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleDriveDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleMailDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleSheetDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorGoogleSlidesDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorHubspotDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorInstagramDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorJiraDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorLinearDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorMondayDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorNotionDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorOnedriveDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorOutlookDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSalesforceDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSharepointDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSlackDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSnowflakeDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSpotifyDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorYoutubeDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorZendeskDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorZoomDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorApolloDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorCustomMcpDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorPlaidDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorPostgresDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorResendDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSendgridDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSlackAgentDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorStripeDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorTwilioDiscriminatedConnectionSettings | CreateConnectionResponse.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
83
88
|
export declare namespace CreateConnectionResponse {
|
|
84
89
|
interface ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
85
90
|
connector_name: 'acme-apikey';
|
|
@@ -105,6 +110,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
105
110
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
106
111
|
status_message?: string | null;
|
|
107
112
|
updated_at?: string;
|
|
113
|
+
webhook_config?: string | number | boolean | {
|
|
114
|
+
[key: string]: unknown;
|
|
115
|
+
} | Array<unknown> | null;
|
|
116
|
+
webhook_configured_at?: string | null;
|
|
117
|
+
webhook_identifier?: string | null;
|
|
108
118
|
}
|
|
109
119
|
namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
110
120
|
interface Settings {
|
|
@@ -135,6 +145,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
135
145
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
136
146
|
status_message?: string | null;
|
|
137
147
|
updated_at?: string;
|
|
148
|
+
webhook_config?: string | number | boolean | {
|
|
149
|
+
[key: string]: unknown;
|
|
150
|
+
} | Array<unknown> | null;
|
|
151
|
+
webhook_configured_at?: string | null;
|
|
152
|
+
webhook_identifier?: string | null;
|
|
138
153
|
}
|
|
139
154
|
namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
140
155
|
interface Settings {
|
|
@@ -204,6 +219,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
204
219
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
205
220
|
status_message?: string | null;
|
|
206
221
|
updated_at?: string;
|
|
222
|
+
webhook_config?: string | number | boolean | {
|
|
223
|
+
[key: string]: unknown;
|
|
224
|
+
} | Array<unknown> | null;
|
|
225
|
+
webhook_configured_at?: string | null;
|
|
226
|
+
webhook_identifier?: string | null;
|
|
207
227
|
}
|
|
208
228
|
namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
209
229
|
interface Settings {
|
|
@@ -234,6 +254,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
234
254
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
235
255
|
status_message?: string | null;
|
|
236
256
|
updated_at?: string;
|
|
257
|
+
webhook_config?: string | number | boolean | {
|
|
258
|
+
[key: string]: unknown;
|
|
259
|
+
} | Array<unknown> | null;
|
|
260
|
+
webhook_configured_at?: string | null;
|
|
261
|
+
webhook_identifier?: string | null;
|
|
237
262
|
}
|
|
238
263
|
namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
239
264
|
interface Settings {
|
|
@@ -303,10 +328,20 @@ export declare namespace CreateConnectionResponse {
|
|
|
303
328
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
304
329
|
status_message?: string | null;
|
|
305
330
|
updated_at?: string;
|
|
331
|
+
webhook_config?: string | number | boolean | {
|
|
332
|
+
[key: string]: unknown;
|
|
333
|
+
} | Array<unknown> | null;
|
|
334
|
+
webhook_configured_at?: string | null;
|
|
335
|
+
webhook_identifier?: string | null;
|
|
306
336
|
}
|
|
307
337
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
308
338
|
interface Settings {
|
|
309
339
|
oauth: Settings.OAuth;
|
|
340
|
+
/**
|
|
341
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
342
|
+
* API calls to BigQuery.
|
|
343
|
+
*/
|
|
344
|
+
project_id: string;
|
|
310
345
|
/**
|
|
311
346
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
312
347
|
* for backward compatibility until we remove the oauth field
|
|
@@ -372,6 +407,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
372
407
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
373
408
|
status_message?: string | null;
|
|
374
409
|
updated_at?: string;
|
|
410
|
+
webhook_config?: string | number | boolean | {
|
|
411
|
+
[key: string]: unknown;
|
|
412
|
+
} | Array<unknown> | null;
|
|
413
|
+
webhook_configured_at?: string | null;
|
|
414
|
+
webhook_identifier?: string | null;
|
|
375
415
|
}
|
|
376
416
|
namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
377
417
|
interface Settings {
|
|
@@ -441,6 +481,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
441
481
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
442
482
|
status_message?: string | null;
|
|
443
483
|
updated_at?: string;
|
|
484
|
+
webhook_config?: string | number | boolean | {
|
|
485
|
+
[key: string]: unknown;
|
|
486
|
+
} | Array<unknown> | null;
|
|
487
|
+
webhook_configured_at?: string | null;
|
|
488
|
+
webhook_identifier?: string | null;
|
|
444
489
|
}
|
|
445
490
|
namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
446
491
|
interface Settings {
|
|
@@ -510,6 +555,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
510
555
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
511
556
|
status_message?: string | null;
|
|
512
557
|
updated_at?: string;
|
|
558
|
+
webhook_config?: string | number | boolean | {
|
|
559
|
+
[key: string]: unknown;
|
|
560
|
+
} | Array<unknown> | null;
|
|
561
|
+
webhook_configured_at?: string | null;
|
|
562
|
+
webhook_identifier?: string | null;
|
|
513
563
|
}
|
|
514
564
|
namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
515
565
|
interface Settings {
|
|
@@ -579,6 +629,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
579
629
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
580
630
|
status_message?: string | null;
|
|
581
631
|
updated_at?: string;
|
|
632
|
+
webhook_config?: string | number | boolean | {
|
|
633
|
+
[key: string]: unknown;
|
|
634
|
+
} | Array<unknown> | null;
|
|
635
|
+
webhook_configured_at?: string | null;
|
|
636
|
+
webhook_identifier?: string | null;
|
|
582
637
|
}
|
|
583
638
|
namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
584
639
|
interface Settings {
|
|
@@ -648,6 +703,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
648
703
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
649
704
|
status_message?: string | null;
|
|
650
705
|
updated_at?: string;
|
|
706
|
+
webhook_config?: string | number | boolean | {
|
|
707
|
+
[key: string]: unknown;
|
|
708
|
+
} | Array<unknown> | null;
|
|
709
|
+
webhook_configured_at?: string | null;
|
|
710
|
+
webhook_identifier?: string | null;
|
|
651
711
|
}
|
|
652
712
|
namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
653
713
|
interface Settings {
|
|
@@ -717,6 +777,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
717
777
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
718
778
|
status_message?: string | null;
|
|
719
779
|
updated_at?: string;
|
|
780
|
+
webhook_config?: string | number | boolean | {
|
|
781
|
+
[key: string]: unknown;
|
|
782
|
+
} | Array<unknown> | null;
|
|
783
|
+
webhook_configured_at?: string | null;
|
|
784
|
+
webhook_identifier?: string | null;
|
|
720
785
|
}
|
|
721
786
|
namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
722
787
|
interface Settings {
|
|
@@ -790,16 +855,26 @@ export declare namespace CreateConnectionResponse {
|
|
|
790
855
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
791
856
|
status_message?: string | null;
|
|
792
857
|
updated_at?: string;
|
|
858
|
+
webhook_config?: string | number | boolean | {
|
|
859
|
+
[key: string]: unknown;
|
|
860
|
+
} | Array<unknown> | null;
|
|
861
|
+
webhook_configured_at?: string | null;
|
|
862
|
+
webhook_identifier?: string | null;
|
|
793
863
|
}
|
|
794
864
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
795
865
|
interface Settings {
|
|
796
866
|
/**
|
|
797
|
-
*
|
|
798
|
-
*
|
|
799
|
-
* .cloud.databricks.com
|
|
867
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
868
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
800
869
|
*/
|
|
801
|
-
|
|
870
|
+
http_path: string;
|
|
802
871
|
oauth: Settings.OAuth;
|
|
872
|
+
/**
|
|
873
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
874
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
875
|
+
* Server hostname value.
|
|
876
|
+
*/
|
|
877
|
+
server_hostname: string;
|
|
803
878
|
/**
|
|
804
879
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
805
880
|
* for backward compatibility until we remove the oauth field
|
|
@@ -865,6 +940,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
865
940
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
866
941
|
status_message?: string | null;
|
|
867
942
|
updated_at?: string;
|
|
943
|
+
webhook_config?: string | number | boolean | {
|
|
944
|
+
[key: string]: unknown;
|
|
945
|
+
} | Array<unknown> | null;
|
|
946
|
+
webhook_configured_at?: string | null;
|
|
947
|
+
webhook_identifier?: string | null;
|
|
868
948
|
}
|
|
869
949
|
namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
870
950
|
interface Settings {
|
|
@@ -934,6 +1014,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
934
1014
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
935
1015
|
status_message?: string | null;
|
|
936
1016
|
updated_at?: string;
|
|
1017
|
+
webhook_config?: string | number | boolean | {
|
|
1018
|
+
[key: string]: unknown;
|
|
1019
|
+
} | Array<unknown> | null;
|
|
1020
|
+
webhook_configured_at?: string | null;
|
|
1021
|
+
webhook_identifier?: string | null;
|
|
937
1022
|
}
|
|
938
1023
|
namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
939
1024
|
interface Settings {
|
|
@@ -1003,6 +1088,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1003
1088
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1004
1089
|
status_message?: string | null;
|
|
1005
1090
|
updated_at?: string;
|
|
1091
|
+
webhook_config?: string | number | boolean | {
|
|
1092
|
+
[key: string]: unknown;
|
|
1093
|
+
} | Array<unknown> | null;
|
|
1094
|
+
webhook_configured_at?: string | null;
|
|
1095
|
+
webhook_identifier?: string | null;
|
|
1006
1096
|
}
|
|
1007
1097
|
namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
1008
1098
|
interface Settings {
|
|
@@ -1072,6 +1162,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1072
1162
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1073
1163
|
status_message?: string | null;
|
|
1074
1164
|
updated_at?: string;
|
|
1165
|
+
webhook_config?: string | number | boolean | {
|
|
1166
|
+
[key: string]: unknown;
|
|
1167
|
+
} | Array<unknown> | null;
|
|
1168
|
+
webhook_configured_at?: string | null;
|
|
1169
|
+
webhook_identifier?: string | null;
|
|
1075
1170
|
}
|
|
1076
1171
|
namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
1077
1172
|
interface Settings {
|
|
@@ -1141,6 +1236,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1141
1236
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1142
1237
|
status_message?: string | null;
|
|
1143
1238
|
updated_at?: string;
|
|
1239
|
+
webhook_config?: string | number | boolean | {
|
|
1240
|
+
[key: string]: unknown;
|
|
1241
|
+
} | Array<unknown> | null;
|
|
1242
|
+
webhook_configured_at?: string | null;
|
|
1243
|
+
webhook_identifier?: string | null;
|
|
1144
1244
|
}
|
|
1145
1245
|
namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
1146
1246
|
interface Settings {
|
|
@@ -1186,6 +1286,80 @@ export declare namespace CreateConnectionResponse {
|
|
|
1186
1286
|
}
|
|
1187
1287
|
}
|
|
1188
1288
|
}
|
|
1289
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
1290
|
+
connector_name: 'gitlab-source-control';
|
|
1291
|
+
id?: string;
|
|
1292
|
+
connector?: TopLevelAPI.Connector;
|
|
1293
|
+
connector_config_id?: string | null;
|
|
1294
|
+
created_at?: string;
|
|
1295
|
+
customer_id?: string | null;
|
|
1296
|
+
disabled?: boolean | null;
|
|
1297
|
+
display_name?: string | null;
|
|
1298
|
+
environment?: 'production' | 'development';
|
|
1299
|
+
integration?: TopLevelAPI.Integration;
|
|
1300
|
+
integration_id?: string | null;
|
|
1301
|
+
/**
|
|
1302
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
1303
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
1304
|
+
* updates this object will be shallowly merged
|
|
1305
|
+
*/
|
|
1306
|
+
metadata?: {
|
|
1307
|
+
[key: string]: unknown;
|
|
1308
|
+
} | null;
|
|
1309
|
+
settings?: ConnectorGitlabSourceControlDiscriminatedConnectionSettings.Settings;
|
|
1310
|
+
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1311
|
+
status_message?: string | null;
|
|
1312
|
+
updated_at?: string;
|
|
1313
|
+
webhook_config?: string | number | boolean | {
|
|
1314
|
+
[key: string]: unknown;
|
|
1315
|
+
} | Array<unknown> | null;
|
|
1316
|
+
webhook_configured_at?: string | null;
|
|
1317
|
+
webhook_identifier?: string | null;
|
|
1318
|
+
}
|
|
1319
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
1320
|
+
interface Settings {
|
|
1321
|
+
oauth: Settings.OAuth;
|
|
1322
|
+
/**
|
|
1323
|
+
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
1324
|
+
* for backward compatibility until we remove the oauth field
|
|
1325
|
+
*/
|
|
1326
|
+
access_token?: string;
|
|
1327
|
+
}
|
|
1328
|
+
namespace Settings {
|
|
1329
|
+
interface OAuth {
|
|
1330
|
+
created_at?: string;
|
|
1331
|
+
/**
|
|
1332
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
1333
|
+
*/
|
|
1334
|
+
credentials?: OAuth.Credentials;
|
|
1335
|
+
last_fetched_at?: string;
|
|
1336
|
+
metadata?: {
|
|
1337
|
+
[key: string]: unknown;
|
|
1338
|
+
} | null;
|
|
1339
|
+
updated_at?: string;
|
|
1340
|
+
}
|
|
1341
|
+
namespace OAuth {
|
|
1342
|
+
/**
|
|
1343
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
1344
|
+
*/
|
|
1345
|
+
interface Credentials {
|
|
1346
|
+
access_token: string;
|
|
1347
|
+
/**
|
|
1348
|
+
* Client ID used for the connection
|
|
1349
|
+
*/
|
|
1350
|
+
client_id?: string;
|
|
1351
|
+
expires_at?: string;
|
|
1352
|
+
expires_in?: number;
|
|
1353
|
+
raw?: {
|
|
1354
|
+
[key: string]: unknown;
|
|
1355
|
+
};
|
|
1356
|
+
refresh_token?: string;
|
|
1357
|
+
scope?: string;
|
|
1358
|
+
token_type?: string;
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
1189
1363
|
interface ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
1190
1364
|
connector_name: 'google-calendar';
|
|
1191
1365
|
id?: string;
|
|
@@ -1210,6 +1384,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1210
1384
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1211
1385
|
status_message?: string | null;
|
|
1212
1386
|
updated_at?: string;
|
|
1387
|
+
webhook_config?: string | number | boolean | {
|
|
1388
|
+
[key: string]: unknown;
|
|
1389
|
+
} | Array<unknown> | null;
|
|
1390
|
+
webhook_configured_at?: string | null;
|
|
1391
|
+
webhook_identifier?: string | null;
|
|
1213
1392
|
}
|
|
1214
1393
|
namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
1215
1394
|
interface Settings {
|
|
@@ -1279,6 +1458,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1279
1458
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1280
1459
|
status_message?: string | null;
|
|
1281
1460
|
updated_at?: string;
|
|
1461
|
+
webhook_config?: string | number | boolean | {
|
|
1462
|
+
[key: string]: unknown;
|
|
1463
|
+
} | Array<unknown> | null;
|
|
1464
|
+
webhook_configured_at?: string | null;
|
|
1465
|
+
webhook_identifier?: string | null;
|
|
1282
1466
|
}
|
|
1283
1467
|
namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
1284
1468
|
interface Settings {
|
|
@@ -1348,6 +1532,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1348
1532
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1349
1533
|
status_message?: string | null;
|
|
1350
1534
|
updated_at?: string;
|
|
1535
|
+
webhook_config?: string | number | boolean | {
|
|
1536
|
+
[key: string]: unknown;
|
|
1537
|
+
} | Array<unknown> | null;
|
|
1538
|
+
webhook_configured_at?: string | null;
|
|
1539
|
+
webhook_identifier?: string | null;
|
|
1351
1540
|
}
|
|
1352
1541
|
namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
1353
1542
|
interface Settings {
|
|
@@ -1417,6 +1606,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1417
1606
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1418
1607
|
status_message?: string | null;
|
|
1419
1608
|
updated_at?: string;
|
|
1609
|
+
webhook_config?: string | number | boolean | {
|
|
1610
|
+
[key: string]: unknown;
|
|
1611
|
+
} | Array<unknown> | null;
|
|
1612
|
+
webhook_configured_at?: string | null;
|
|
1613
|
+
webhook_identifier?: string | null;
|
|
1420
1614
|
}
|
|
1421
1615
|
namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
1422
1616
|
interface Settings {
|
|
@@ -1486,6 +1680,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1486
1680
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1487
1681
|
status_message?: string | null;
|
|
1488
1682
|
updated_at?: string;
|
|
1683
|
+
webhook_config?: string | number | boolean | {
|
|
1684
|
+
[key: string]: unknown;
|
|
1685
|
+
} | Array<unknown> | null;
|
|
1686
|
+
webhook_configured_at?: string | null;
|
|
1687
|
+
webhook_identifier?: string | null;
|
|
1489
1688
|
}
|
|
1490
1689
|
namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
1491
1690
|
interface Settings {
|
|
@@ -1555,6 +1754,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1555
1754
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1556
1755
|
status_message?: string | null;
|
|
1557
1756
|
updated_at?: string;
|
|
1757
|
+
webhook_config?: string | number | boolean | {
|
|
1758
|
+
[key: string]: unknown;
|
|
1759
|
+
} | Array<unknown> | null;
|
|
1760
|
+
webhook_configured_at?: string | null;
|
|
1761
|
+
webhook_identifier?: string | null;
|
|
1558
1762
|
}
|
|
1559
1763
|
namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
1560
1764
|
interface Settings {
|
|
@@ -1624,6 +1828,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1624
1828
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1625
1829
|
status_message?: string | null;
|
|
1626
1830
|
updated_at?: string;
|
|
1831
|
+
webhook_config?: string | number | boolean | {
|
|
1832
|
+
[key: string]: unknown;
|
|
1833
|
+
} | Array<unknown> | null;
|
|
1834
|
+
webhook_configured_at?: string | null;
|
|
1835
|
+
webhook_identifier?: string | null;
|
|
1627
1836
|
}
|
|
1628
1837
|
namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
1629
1838
|
interface Settings {
|
|
@@ -1693,6 +1902,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1693
1902
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1694
1903
|
status_message?: string | null;
|
|
1695
1904
|
updated_at?: string;
|
|
1905
|
+
webhook_config?: string | number | boolean | {
|
|
1906
|
+
[key: string]: unknown;
|
|
1907
|
+
} | Array<unknown> | null;
|
|
1908
|
+
webhook_configured_at?: string | null;
|
|
1909
|
+
webhook_identifier?: string | null;
|
|
1696
1910
|
}
|
|
1697
1911
|
namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
1698
1912
|
interface Settings {
|
|
@@ -1762,6 +1976,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1762
1976
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1763
1977
|
status_message?: string | null;
|
|
1764
1978
|
updated_at?: string;
|
|
1979
|
+
webhook_config?: string | number | boolean | {
|
|
1980
|
+
[key: string]: unknown;
|
|
1981
|
+
} | Array<unknown> | null;
|
|
1982
|
+
webhook_configured_at?: string | null;
|
|
1983
|
+
webhook_identifier?: string | null;
|
|
1765
1984
|
}
|
|
1766
1985
|
namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
1767
1986
|
interface Settings {
|
|
@@ -1835,6 +2054,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1835
2054
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1836
2055
|
status_message?: string | null;
|
|
1837
2056
|
updated_at?: string;
|
|
2057
|
+
webhook_config?: string | number | boolean | {
|
|
2058
|
+
[key: string]: unknown;
|
|
2059
|
+
} | Array<unknown> | null;
|
|
2060
|
+
webhook_configured_at?: string | null;
|
|
2061
|
+
webhook_identifier?: string | null;
|
|
1838
2062
|
}
|
|
1839
2063
|
namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
1840
2064
|
interface Settings {
|
|
@@ -1904,6 +2128,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1904
2128
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1905
2129
|
status_message?: string | null;
|
|
1906
2130
|
updated_at?: string;
|
|
2131
|
+
webhook_config?: string | number | boolean | {
|
|
2132
|
+
[key: string]: unknown;
|
|
2133
|
+
} | Array<unknown> | null;
|
|
2134
|
+
webhook_configured_at?: string | null;
|
|
2135
|
+
webhook_identifier?: string | null;
|
|
1907
2136
|
}
|
|
1908
2137
|
namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
1909
2138
|
interface Settings {
|
|
@@ -1973,6 +2202,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
1973
2202
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
1974
2203
|
status_message?: string | null;
|
|
1975
2204
|
updated_at?: string;
|
|
2205
|
+
webhook_config?: string | number | boolean | {
|
|
2206
|
+
[key: string]: unknown;
|
|
2207
|
+
} | Array<unknown> | null;
|
|
2208
|
+
webhook_configured_at?: string | null;
|
|
2209
|
+
webhook_identifier?: string | null;
|
|
1976
2210
|
}
|
|
1977
2211
|
namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
1978
2212
|
interface Settings {
|
|
@@ -2042,6 +2276,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2042
2276
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2043
2277
|
status_message?: string | null;
|
|
2044
2278
|
updated_at?: string;
|
|
2279
|
+
webhook_config?: string | number | boolean | {
|
|
2280
|
+
[key: string]: unknown;
|
|
2281
|
+
} | Array<unknown> | null;
|
|
2282
|
+
webhook_configured_at?: string | null;
|
|
2283
|
+
webhook_identifier?: string | null;
|
|
2045
2284
|
}
|
|
2046
2285
|
namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
2047
2286
|
interface Settings {
|
|
@@ -2111,6 +2350,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2111
2350
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2112
2351
|
status_message?: string | null;
|
|
2113
2352
|
updated_at?: string;
|
|
2353
|
+
webhook_config?: string | number | boolean | {
|
|
2354
|
+
[key: string]: unknown;
|
|
2355
|
+
} | Array<unknown> | null;
|
|
2356
|
+
webhook_configured_at?: string | null;
|
|
2357
|
+
webhook_identifier?: string | null;
|
|
2114
2358
|
}
|
|
2115
2359
|
namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
2116
2360
|
interface Settings {
|
|
@@ -2180,6 +2424,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2180
2424
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2181
2425
|
status_message?: string | null;
|
|
2182
2426
|
updated_at?: string;
|
|
2427
|
+
webhook_config?: string | number | boolean | {
|
|
2428
|
+
[key: string]: unknown;
|
|
2429
|
+
} | Array<unknown> | null;
|
|
2430
|
+
webhook_configured_at?: string | null;
|
|
2431
|
+
webhook_identifier?: string | null;
|
|
2183
2432
|
}
|
|
2184
2433
|
namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
2185
2434
|
interface Settings {
|
|
@@ -2253,6 +2502,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2253
2502
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2254
2503
|
status_message?: string | null;
|
|
2255
2504
|
updated_at?: string;
|
|
2505
|
+
webhook_config?: string | number | boolean | {
|
|
2506
|
+
[key: string]: unknown;
|
|
2507
|
+
} | Array<unknown> | null;
|
|
2508
|
+
webhook_configured_at?: string | null;
|
|
2509
|
+
webhook_identifier?: string | null;
|
|
2256
2510
|
}
|
|
2257
2511
|
namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
2258
2512
|
interface Settings {
|
|
@@ -2322,6 +2576,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2322
2576
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2323
2577
|
status_message?: string | null;
|
|
2324
2578
|
updated_at?: string;
|
|
2579
|
+
webhook_config?: string | number | boolean | {
|
|
2580
|
+
[key: string]: unknown;
|
|
2581
|
+
} | Array<unknown> | null;
|
|
2582
|
+
webhook_configured_at?: string | null;
|
|
2583
|
+
webhook_identifier?: string | null;
|
|
2325
2584
|
}
|
|
2326
2585
|
namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
2327
2586
|
interface Settings {
|
|
@@ -2391,6 +2650,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2391
2650
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2392
2651
|
status_message?: string | null;
|
|
2393
2652
|
updated_at?: string;
|
|
2653
|
+
webhook_config?: string | number | boolean | {
|
|
2654
|
+
[key: string]: unknown;
|
|
2655
|
+
} | Array<unknown> | null;
|
|
2656
|
+
webhook_configured_at?: string | null;
|
|
2657
|
+
webhook_identifier?: string | null;
|
|
2394
2658
|
}
|
|
2395
2659
|
namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
2396
2660
|
interface Settings {
|
|
@@ -2460,6 +2724,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2460
2724
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2461
2725
|
status_message?: string | null;
|
|
2462
2726
|
updated_at?: string;
|
|
2727
|
+
webhook_config?: string | number | boolean | {
|
|
2728
|
+
[key: string]: unknown;
|
|
2729
|
+
} | Array<unknown> | null;
|
|
2730
|
+
webhook_configured_at?: string | null;
|
|
2731
|
+
webhook_identifier?: string | null;
|
|
2463
2732
|
}
|
|
2464
2733
|
namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
2465
2734
|
interface Settings {
|
|
@@ -2534,6 +2803,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2534
2803
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2535
2804
|
status_message?: string | null;
|
|
2536
2805
|
updated_at?: string;
|
|
2806
|
+
webhook_config?: string | number | boolean | {
|
|
2807
|
+
[key: string]: unknown;
|
|
2808
|
+
} | Array<unknown> | null;
|
|
2809
|
+
webhook_configured_at?: string | null;
|
|
2810
|
+
webhook_identifier?: string | null;
|
|
2537
2811
|
}
|
|
2538
2812
|
namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
2539
2813
|
interface Settings {
|
|
@@ -2603,6 +2877,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2603
2877
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2604
2878
|
status_message?: string | null;
|
|
2605
2879
|
updated_at?: string;
|
|
2880
|
+
webhook_config?: string | number | boolean | {
|
|
2881
|
+
[key: string]: unknown;
|
|
2882
|
+
} | Array<unknown> | null;
|
|
2883
|
+
webhook_configured_at?: string | null;
|
|
2884
|
+
webhook_identifier?: string | null;
|
|
2606
2885
|
}
|
|
2607
2886
|
namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
2608
2887
|
interface Settings {
|
|
@@ -2672,6 +2951,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2672
2951
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2673
2952
|
status_message?: string | null;
|
|
2674
2953
|
updated_at?: string;
|
|
2954
|
+
webhook_config?: string | number | boolean | {
|
|
2955
|
+
[key: string]: unknown;
|
|
2956
|
+
} | Array<unknown> | null;
|
|
2957
|
+
webhook_configured_at?: string | null;
|
|
2958
|
+
webhook_identifier?: string | null;
|
|
2675
2959
|
}
|
|
2676
2960
|
namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
2677
2961
|
interface Settings {
|
|
@@ -2745,6 +3029,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2745
3029
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2746
3030
|
status_message?: string | null;
|
|
2747
3031
|
updated_at?: string;
|
|
3032
|
+
webhook_config?: string | number | boolean | {
|
|
3033
|
+
[key: string]: unknown;
|
|
3034
|
+
} | Array<unknown> | null;
|
|
3035
|
+
webhook_configured_at?: string | null;
|
|
3036
|
+
webhook_identifier?: string | null;
|
|
2748
3037
|
}
|
|
2749
3038
|
namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
2750
3039
|
interface Settings {
|
|
@@ -2814,12 +3103,75 @@ export declare namespace CreateConnectionResponse {
|
|
|
2814
3103
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2815
3104
|
status_message?: string | null;
|
|
2816
3105
|
updated_at?: string;
|
|
3106
|
+
webhook_config?: string | number | boolean | {
|
|
3107
|
+
[key: string]: unknown;
|
|
3108
|
+
} | Array<unknown> | null;
|
|
3109
|
+
webhook_configured_at?: string | null;
|
|
3110
|
+
webhook_identifier?: string | null;
|
|
2817
3111
|
}
|
|
2818
3112
|
namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
2819
3113
|
interface Settings {
|
|
2820
3114
|
api_key: string;
|
|
2821
3115
|
}
|
|
2822
3116
|
}
|
|
3117
|
+
interface ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
3118
|
+
connector_name: 'custom-mcp';
|
|
3119
|
+
id?: string;
|
|
3120
|
+
connector?: TopLevelAPI.Connector;
|
|
3121
|
+
connector_config_id?: string | null;
|
|
3122
|
+
created_at?: string;
|
|
3123
|
+
customer_id?: string | null;
|
|
3124
|
+
disabled?: boolean | null;
|
|
3125
|
+
display_name?: string | null;
|
|
3126
|
+
environment?: 'production' | 'development';
|
|
3127
|
+
integration?: TopLevelAPI.Integration;
|
|
3128
|
+
integration_id?: string | null;
|
|
3129
|
+
/**
|
|
3130
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
3131
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
3132
|
+
* updates this object will be shallowly merged
|
|
3133
|
+
*/
|
|
3134
|
+
metadata?: {
|
|
3135
|
+
[key: string]: unknown;
|
|
3136
|
+
} | null;
|
|
3137
|
+
settings?: ConnectorCustomMcpDiscriminatedConnectionSettings.Settings;
|
|
3138
|
+
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3139
|
+
status_message?: string | null;
|
|
3140
|
+
updated_at?: string;
|
|
3141
|
+
webhook_config?: string | number | boolean | {
|
|
3142
|
+
[key: string]: unknown;
|
|
3143
|
+
} | Array<unknown> | null;
|
|
3144
|
+
webhook_configured_at?: string | null;
|
|
3145
|
+
webhook_identifier?: string | null;
|
|
3146
|
+
}
|
|
3147
|
+
namespace ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
3148
|
+
interface Settings {
|
|
3149
|
+
/**
|
|
3150
|
+
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
3151
|
+
*/
|
|
3152
|
+
base_url: string;
|
|
3153
|
+
/**
|
|
3154
|
+
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
3155
|
+
*/
|
|
3156
|
+
display_name: string;
|
|
3157
|
+
/**
|
|
3158
|
+
* Custom headers to include with every request
|
|
3159
|
+
*/
|
|
3160
|
+
headers: Array<Settings.Header>;
|
|
3161
|
+
}
|
|
3162
|
+
namespace Settings {
|
|
3163
|
+
interface Header {
|
|
3164
|
+
/**
|
|
3165
|
+
* Header name (e.g., Authorization, X-API-Key)
|
|
3166
|
+
*/
|
|
3167
|
+
key: string;
|
|
3168
|
+
/**
|
|
3169
|
+
* Header value (securely stored)
|
|
3170
|
+
*/
|
|
3171
|
+
value: string;
|
|
3172
|
+
}
|
|
3173
|
+
}
|
|
3174
|
+
}
|
|
2823
3175
|
interface ConnectorPlaidDiscriminatedConnectionSettings {
|
|
2824
3176
|
connector_name: 'plaid';
|
|
2825
3177
|
id?: string;
|
|
@@ -2844,6 +3196,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2844
3196
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2845
3197
|
status_message?: string | null;
|
|
2846
3198
|
updated_at?: string;
|
|
3199
|
+
webhook_config?: string | number | boolean | {
|
|
3200
|
+
[key: string]: unknown;
|
|
3201
|
+
} | Array<unknown> | null;
|
|
3202
|
+
webhook_configured_at?: string | null;
|
|
3203
|
+
webhook_identifier?: string | null;
|
|
2847
3204
|
}
|
|
2848
3205
|
namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
2849
3206
|
interface Settings {
|
|
@@ -2879,6 +3236,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2879
3236
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2880
3237
|
status_message?: string | null;
|
|
2881
3238
|
updated_at?: string;
|
|
3239
|
+
webhook_config?: string | number | boolean | {
|
|
3240
|
+
[key: string]: unknown;
|
|
3241
|
+
} | Array<unknown> | null;
|
|
3242
|
+
webhook_configured_at?: string | null;
|
|
3243
|
+
webhook_identifier?: string | null;
|
|
2882
3244
|
}
|
|
2883
3245
|
namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
2884
3246
|
interface Settings {
|
|
@@ -2909,6 +3271,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2909
3271
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2910
3272
|
status_message?: string | null;
|
|
2911
3273
|
updated_at?: string;
|
|
3274
|
+
webhook_config?: string | number | boolean | {
|
|
3275
|
+
[key: string]: unknown;
|
|
3276
|
+
} | Array<unknown> | null;
|
|
3277
|
+
webhook_configured_at?: string | null;
|
|
3278
|
+
webhook_identifier?: string | null;
|
|
2912
3279
|
}
|
|
2913
3280
|
namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
2914
3281
|
interface Settings {
|
|
@@ -2943,6 +3310,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2943
3310
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2944
3311
|
status_message?: string | null;
|
|
2945
3312
|
updated_at?: string;
|
|
3313
|
+
webhook_config?: string | number | boolean | {
|
|
3314
|
+
[key: string]: unknown;
|
|
3315
|
+
} | Array<unknown> | null;
|
|
3316
|
+
webhook_configured_at?: string | null;
|
|
3317
|
+
webhook_identifier?: string | null;
|
|
2946
3318
|
}
|
|
2947
3319
|
namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
2948
3320
|
interface Settings {
|
|
@@ -2977,6 +3349,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
2977
3349
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
2978
3350
|
status_message?: string | null;
|
|
2979
3351
|
updated_at?: string;
|
|
3352
|
+
webhook_config?: string | number | boolean | {
|
|
3353
|
+
[key: string]: unknown;
|
|
3354
|
+
} | Array<unknown> | null;
|
|
3355
|
+
webhook_configured_at?: string | null;
|
|
3356
|
+
webhook_identifier?: string | null;
|
|
2980
3357
|
}
|
|
2981
3358
|
namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
2982
3359
|
interface Settings {
|
|
@@ -3010,6 +3387,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3010
3387
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3011
3388
|
status_message?: string | null;
|
|
3012
3389
|
updated_at?: string;
|
|
3390
|
+
webhook_config?: string | number | boolean | {
|
|
3391
|
+
[key: string]: unknown;
|
|
3392
|
+
} | Array<unknown> | null;
|
|
3393
|
+
webhook_configured_at?: string | null;
|
|
3394
|
+
webhook_identifier?: string | null;
|
|
3013
3395
|
}
|
|
3014
3396
|
namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
3015
3397
|
interface Settings {
|
|
@@ -3154,6 +3536,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3154
3536
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3155
3537
|
status_message?: string | null;
|
|
3156
3538
|
updated_at?: string;
|
|
3539
|
+
webhook_config?: string | number | boolean | {
|
|
3540
|
+
[key: string]: unknown;
|
|
3541
|
+
} | Array<unknown> | null;
|
|
3542
|
+
webhook_configured_at?: string | null;
|
|
3543
|
+
webhook_identifier?: string | null;
|
|
3157
3544
|
}
|
|
3158
3545
|
namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
3159
3546
|
interface Settings {
|
|
@@ -3223,6 +3610,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3223
3610
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3224
3611
|
status_message?: string | null;
|
|
3225
3612
|
updated_at?: string;
|
|
3613
|
+
webhook_config?: string | number | boolean | {
|
|
3614
|
+
[key: string]: unknown;
|
|
3615
|
+
} | Array<unknown> | null;
|
|
3616
|
+
webhook_configured_at?: string | null;
|
|
3617
|
+
webhook_identifier?: string | null;
|
|
3226
3618
|
}
|
|
3227
3619
|
namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
3228
3620
|
interface Settings {
|
|
@@ -3292,6 +3684,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3292
3684
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3293
3685
|
status_message?: string | null;
|
|
3294
3686
|
updated_at?: string;
|
|
3687
|
+
webhook_config?: string | number | boolean | {
|
|
3688
|
+
[key: string]: unknown;
|
|
3689
|
+
} | Array<unknown> | null;
|
|
3690
|
+
webhook_configured_at?: string | null;
|
|
3691
|
+
webhook_identifier?: string | null;
|
|
3295
3692
|
}
|
|
3296
3693
|
namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
3297
3694
|
interface Settings {
|
|
@@ -3328,6 +3725,11 @@ export declare namespace CreateConnectionResponse {
|
|
|
3328
3725
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
3329
3726
|
status_message?: string | null;
|
|
3330
3727
|
updated_at?: string;
|
|
3728
|
+
webhook_config?: string | number | boolean | {
|
|
3729
|
+
[key: string]: unknown;
|
|
3730
|
+
} | Array<unknown> | null;
|
|
3731
|
+
webhook_configured_at?: string | null;
|
|
3732
|
+
webhook_identifier?: string | null;
|
|
3331
3733
|
}
|
|
3332
3734
|
namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
3333
3735
|
interface Settings {
|
|
@@ -3337,7 +3739,7 @@ export declare namespace CreateConnectionResponse {
|
|
|
3337
3739
|
}
|
|
3338
3740
|
}
|
|
3339
3741
|
}
|
|
3340
|
-
export type CreateConnnectorConfigResponse = CreateConnnectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorBitbucketDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorBoxDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorCalendlyDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorClickupDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorConfluenceDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorDatabricksDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorDiscordDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorDropboxDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorFigmaDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGitHubDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorHubspotDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorInstagramDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorJiraDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorLinearDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorMondayDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorNotionDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorOnedriveDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorOutlookDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSalesforceDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSharepointDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSlackDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSpotifyDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorYoutubeDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorZendeskDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorZoomDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorApolloDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorPlaidDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorPostgresDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorResendDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSendgridDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorStripeDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorTwilioDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
3742
|
+
export type CreateConnnectorConfigResponse = CreateConnnectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorBitbucketDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorBoxDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorCalendlyDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorClickupDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorConfluenceDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorDatabricksDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorDiscordDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorDropboxDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorFigmaDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGitHubDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGitlabSourceControlDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorHubspotDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorInstagramDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorJiraDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorLinearDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorMondayDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorNotionDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorOnedriveDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorOutlookDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSalesforceDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSharepointDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSlackDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSpotifyDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorYoutubeDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorZendeskDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorZoomDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorApolloDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorCustomMcpDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorPlaidDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorPostgresDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorResendDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSendgridDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorStripeDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorTwilioDiscriminatedConnectorConfig | CreateConnnectorConfigResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
3341
3743
|
export declare namespace CreateConnnectorConfigResponse {
|
|
3342
3744
|
interface ConnectorAcmeApikeyDiscriminatedConnectorConfig {
|
|
3343
3745
|
/**
|
|
@@ -3981,6 +4383,46 @@ export declare namespace CreateConnnectorConfigResponse {
|
|
|
3981
4383
|
}
|
|
3982
4384
|
}
|
|
3983
4385
|
}
|
|
4386
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
4387
|
+
config: ConnectorGitlabSourceControlDiscriminatedConnectorConfig.Config;
|
|
4388
|
+
connector_name: 'gitlab-source-control';
|
|
4389
|
+
id?: string;
|
|
4390
|
+
created_at?: string;
|
|
4391
|
+
disabled?: boolean | null;
|
|
4392
|
+
display_name?: string | null;
|
|
4393
|
+
/**
|
|
4394
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
4395
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
4396
|
+
* updates this object will be shallowly merged
|
|
4397
|
+
*/
|
|
4398
|
+
metadata?: {
|
|
4399
|
+
[key: string]: unknown;
|
|
4400
|
+
} | null;
|
|
4401
|
+
org_id?: string;
|
|
4402
|
+
updated_at?: string;
|
|
4403
|
+
}
|
|
4404
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
4405
|
+
interface Config {
|
|
4406
|
+
/**
|
|
4407
|
+
* Base oauth configuration for the connector
|
|
4408
|
+
*/
|
|
4409
|
+
oauth?: Config.OAuth | null;
|
|
4410
|
+
}
|
|
4411
|
+
namespace Config {
|
|
4412
|
+
/**
|
|
4413
|
+
* Base oauth configuration for the connector
|
|
4414
|
+
*/
|
|
4415
|
+
interface OAuth {
|
|
4416
|
+
client_id?: string | null;
|
|
4417
|
+
client_secret?: string | null;
|
|
4418
|
+
/**
|
|
4419
|
+
* Custom redirect URI
|
|
4420
|
+
*/
|
|
4421
|
+
redirect_uri?: string | null;
|
|
4422
|
+
scopes?: Array<string> | null;
|
|
4423
|
+
}
|
|
4424
|
+
}
|
|
4425
|
+
}
|
|
3984
4426
|
interface ConnectorGoogleCalendarDiscriminatedConnectorConfig {
|
|
3985
4427
|
config: ConnectorGoogleCalendarDiscriminatedConnectorConfig.Config;
|
|
3986
4428
|
connector_name: 'google-calendar';
|
|
@@ -4919,9 +5361,9 @@ export declare namespace CreateConnnectorConfigResponse {
|
|
|
4919
5361
|
org_id?: string;
|
|
4920
5362
|
updated_at?: string;
|
|
4921
5363
|
}
|
|
4922
|
-
interface
|
|
4923
|
-
config:
|
|
4924
|
-
connector_name: '
|
|
5364
|
+
interface ConnectorCustomMcpDiscriminatedConnectorConfig {
|
|
5365
|
+
config: unknown;
|
|
5366
|
+
connector_name: 'custom-mcp';
|
|
4925
5367
|
id?: string;
|
|
4926
5368
|
created_at?: string;
|
|
4927
5369
|
disabled?: boolean | null;
|
|
@@ -4937,7 +5379,25 @@ export declare namespace CreateConnnectorConfigResponse {
|
|
|
4937
5379
|
org_id?: string;
|
|
4938
5380
|
updated_at?: string;
|
|
4939
5381
|
}
|
|
4940
|
-
|
|
5382
|
+
interface ConnectorPlaidDiscriminatedConnectorConfig {
|
|
5383
|
+
config: ConnectorPlaidDiscriminatedConnectorConfig.Config;
|
|
5384
|
+
connector_name: 'plaid';
|
|
5385
|
+
id?: string;
|
|
5386
|
+
created_at?: string;
|
|
5387
|
+
disabled?: boolean | null;
|
|
5388
|
+
display_name?: string | null;
|
|
5389
|
+
/**
|
|
5390
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
5391
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
5392
|
+
* updates this object will be shallowly merged
|
|
5393
|
+
*/
|
|
5394
|
+
metadata?: {
|
|
5395
|
+
[key: string]: unknown;
|
|
5396
|
+
} | null;
|
|
5397
|
+
org_id?: string;
|
|
5398
|
+
updated_at?: string;
|
|
5399
|
+
}
|
|
5400
|
+
namespace ConnectorPlaidDiscriminatedConnectorConfig {
|
|
4941
5401
|
interface Config {
|
|
4942
5402
|
/**
|
|
4943
5403
|
* The name of your application, as it should be displayed in Link. Maximum length
|
|
@@ -5233,7 +5693,7 @@ export interface DeleteConnectorConfigResponse {
|
|
|
5233
5693
|
*/
|
|
5234
5694
|
id: string;
|
|
5235
5695
|
}
|
|
5236
|
-
export type GetConectorConfigResponse = GetConectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorBitbucketDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorBoxDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorCalendlyDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorClickupDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorConfluenceDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorDatabricksDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorDiscordDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorDropboxDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorFigmaDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGitHubDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorHubspotDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorInstagramDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorJiraDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorLinearDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorMondayDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorNotionDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorOnedriveDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorOutlookDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSalesforceDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSharepointDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSlackDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSpotifyDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorYoutubeDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorZendeskDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorZoomDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorApolloDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorPlaidDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorPostgresDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorResendDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSendgridDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorStripeDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorTwilioDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
5696
|
+
export type GetConectorConfigResponse = GetConectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorBitbucketDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorBoxDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorCalendlyDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorClickupDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorConfluenceDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorDatabricksDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorDiscordDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorDropboxDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorFigmaDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGitHubDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGitlabSourceControlDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorHubspotDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorInstagramDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorJiraDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorLinearDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorMondayDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorNotionDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorOnedriveDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorOutlookDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSalesforceDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSharepointDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSlackDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSpotifyDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorYoutubeDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorZendeskDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorZoomDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorApolloDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorCustomMcpDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorPlaidDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorPostgresDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorResendDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSendgridDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorStripeDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorTwilioDiscriminatedConnectorConfig | GetConectorConfigResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
5237
5697
|
export declare namespace GetConectorConfigResponse {
|
|
5238
5698
|
interface ConnectorAcmeApikeyDiscriminatedConnectorConfig {
|
|
5239
5699
|
/**
|
|
@@ -5962,6 +6422,51 @@ export declare namespace GetConectorConfigResponse {
|
|
|
5962
6422
|
}
|
|
5963
6423
|
}
|
|
5964
6424
|
}
|
|
6425
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
6426
|
+
config: ConnectorGitlabSourceControlDiscriminatedConnectorConfig.Config;
|
|
6427
|
+
connector_name: 'gitlab-source-control';
|
|
6428
|
+
id?: string;
|
|
6429
|
+
connection_count?: number;
|
|
6430
|
+
connector?: TopLevelAPI.Connector;
|
|
6431
|
+
created_at?: string;
|
|
6432
|
+
disabled?: boolean | null;
|
|
6433
|
+
display_name?: string | null;
|
|
6434
|
+
integrations?: {
|
|
6435
|
+
[key: string]: TopLevelAPI.Integration;
|
|
6436
|
+
};
|
|
6437
|
+
/**
|
|
6438
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
6439
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
6440
|
+
* updates this object will be shallowly merged
|
|
6441
|
+
*/
|
|
6442
|
+
metadata?: {
|
|
6443
|
+
[key: string]: unknown;
|
|
6444
|
+
} | null;
|
|
6445
|
+
org_id?: string;
|
|
6446
|
+
updated_at?: string;
|
|
6447
|
+
}
|
|
6448
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
6449
|
+
interface Config {
|
|
6450
|
+
/**
|
|
6451
|
+
* Base oauth configuration for the connector
|
|
6452
|
+
*/
|
|
6453
|
+
oauth?: Config.OAuth | null;
|
|
6454
|
+
}
|
|
6455
|
+
namespace Config {
|
|
6456
|
+
/**
|
|
6457
|
+
* Base oauth configuration for the connector
|
|
6458
|
+
*/
|
|
6459
|
+
interface OAuth {
|
|
6460
|
+
client_id?: string | null;
|
|
6461
|
+
client_secret?: string | null;
|
|
6462
|
+
/**
|
|
6463
|
+
* Custom redirect URI
|
|
6464
|
+
*/
|
|
6465
|
+
redirect_uri?: string | null;
|
|
6466
|
+
scopes?: Array<string> | null;
|
|
6467
|
+
}
|
|
6468
|
+
}
|
|
6469
|
+
}
|
|
5965
6470
|
interface ConnectorGoogleCalendarDiscriminatedConnectorConfig {
|
|
5966
6471
|
config: ConnectorGoogleCalendarDiscriminatedConnectorConfig.Config;
|
|
5967
6472
|
connector_name: 'google-calendar';
|
|
@@ -7020,6 +7525,29 @@ export declare namespace GetConectorConfigResponse {
|
|
|
7020
7525
|
org_id?: string;
|
|
7021
7526
|
updated_at?: string;
|
|
7022
7527
|
}
|
|
7528
|
+
interface ConnectorCustomMcpDiscriminatedConnectorConfig {
|
|
7529
|
+
config: unknown;
|
|
7530
|
+
connector_name: 'custom-mcp';
|
|
7531
|
+
id?: string;
|
|
7532
|
+
connection_count?: number;
|
|
7533
|
+
connector?: TopLevelAPI.Connector;
|
|
7534
|
+
created_at?: string;
|
|
7535
|
+
disabled?: boolean | null;
|
|
7536
|
+
display_name?: string | null;
|
|
7537
|
+
integrations?: {
|
|
7538
|
+
[key: string]: TopLevelAPI.Integration;
|
|
7539
|
+
};
|
|
7540
|
+
/**
|
|
7541
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
7542
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
7543
|
+
* updates this object will be shallowly merged
|
|
7544
|
+
*/
|
|
7545
|
+
metadata?: {
|
|
7546
|
+
[key: string]: unknown;
|
|
7547
|
+
} | null;
|
|
7548
|
+
org_id?: string;
|
|
7549
|
+
updated_at?: string;
|
|
7550
|
+
}
|
|
7023
7551
|
interface ConnectorPlaidDiscriminatedConnectorConfig {
|
|
7024
7552
|
config: ConnectorPlaidDiscriminatedConnectorConfig.Config;
|
|
7025
7553
|
connector_name: 'plaid';
|
|
@@ -7349,7 +7877,7 @@ export declare namespace GetConectorConfigResponse {
|
|
|
7349
7877
|
/**
|
|
7350
7878
|
* The connection details
|
|
7351
7879
|
*/
|
|
7352
|
-
export type GetConnectionResponse = GetConnectionResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings | GetConnectionResponse.ConnectorAgentmailDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorAsanaDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorBigqueryDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorBitbucketDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorBoxDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorCalendlyDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorClickupDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorConfluenceDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorDatabricksDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorDiscordDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorDropboxDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorFigmaDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGitHubDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleCalendarDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleDocsDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleDriveDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleMailDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleSheetDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleSlidesDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorHubspotDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorInstagramDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorJiraDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorLinearDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorMondayDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorNotionDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorOnedriveDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorOutlookDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSalesforceDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSharepointDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSlackDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSnowflakeDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSpotifyDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorYoutubeDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorZendeskDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorZoomDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorApolloDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorPlaidDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorPostgresDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorResendDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSendgridDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSlackAgentDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorStripeDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorTwilioDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
7880
|
+
export type GetConnectionResponse = GetConnectionResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings | GetConnectionResponse.ConnectorAgentmailDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorAsanaDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorBigqueryDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorBitbucketDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorBoxDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorCalendlyDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorClickupDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorConfluenceDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorDatabricksDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorDiscordDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorDropboxDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorFigmaDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGitHubDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGitlabSourceControlDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleCalendarDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleDocsDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleDriveDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleMailDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleSheetDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorGoogleSlidesDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorHubspotDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorInstagramDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorJiraDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorLinearDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorMondayDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorNotionDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorOnedriveDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorOutlookDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSalesforceDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSharepointDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSlackDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSnowflakeDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSpotifyDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorYoutubeDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorZendeskDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorZoomDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorApolloDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorCustomMcpDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorPlaidDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorPostgresDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorResendDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSendgridDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSlackAgentDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorStripeDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorTwilioDiscriminatedConnectionSettings | GetConnectionResponse.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
7353
7881
|
export declare namespace GetConnectionResponse {
|
|
7354
7882
|
interface ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
7355
7883
|
connector_name: 'acme-apikey';
|
|
@@ -7375,6 +7903,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7375
7903
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7376
7904
|
status_message?: string | null;
|
|
7377
7905
|
updated_at?: string;
|
|
7906
|
+
webhook_config?: string | number | boolean | {
|
|
7907
|
+
[key: string]: unknown;
|
|
7908
|
+
} | Array<unknown> | null;
|
|
7909
|
+
webhook_configured_at?: string | null;
|
|
7910
|
+
webhook_identifier?: string | null;
|
|
7378
7911
|
}
|
|
7379
7912
|
namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
7380
7913
|
interface Settings {
|
|
@@ -7405,6 +7938,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7405
7938
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7406
7939
|
status_message?: string | null;
|
|
7407
7940
|
updated_at?: string;
|
|
7941
|
+
webhook_config?: string | number | boolean | {
|
|
7942
|
+
[key: string]: unknown;
|
|
7943
|
+
} | Array<unknown> | null;
|
|
7944
|
+
webhook_configured_at?: string | null;
|
|
7945
|
+
webhook_identifier?: string | null;
|
|
7408
7946
|
}
|
|
7409
7947
|
namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
7410
7948
|
interface Settings {
|
|
@@ -7474,6 +8012,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7474
8012
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7475
8013
|
status_message?: string | null;
|
|
7476
8014
|
updated_at?: string;
|
|
8015
|
+
webhook_config?: string | number | boolean | {
|
|
8016
|
+
[key: string]: unknown;
|
|
8017
|
+
} | Array<unknown> | null;
|
|
8018
|
+
webhook_configured_at?: string | null;
|
|
8019
|
+
webhook_identifier?: string | null;
|
|
7477
8020
|
}
|
|
7478
8021
|
namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
7479
8022
|
interface Settings {
|
|
@@ -7504,6 +8047,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7504
8047
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7505
8048
|
status_message?: string | null;
|
|
7506
8049
|
updated_at?: string;
|
|
8050
|
+
webhook_config?: string | number | boolean | {
|
|
8051
|
+
[key: string]: unknown;
|
|
8052
|
+
} | Array<unknown> | null;
|
|
8053
|
+
webhook_configured_at?: string | null;
|
|
8054
|
+
webhook_identifier?: string | null;
|
|
7507
8055
|
}
|
|
7508
8056
|
namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
7509
8057
|
interface Settings {
|
|
@@ -7573,10 +8121,20 @@ export declare namespace GetConnectionResponse {
|
|
|
7573
8121
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7574
8122
|
status_message?: string | null;
|
|
7575
8123
|
updated_at?: string;
|
|
8124
|
+
webhook_config?: string | number | boolean | {
|
|
8125
|
+
[key: string]: unknown;
|
|
8126
|
+
} | Array<unknown> | null;
|
|
8127
|
+
webhook_configured_at?: string | null;
|
|
8128
|
+
webhook_identifier?: string | null;
|
|
7576
8129
|
}
|
|
7577
8130
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
7578
8131
|
interface Settings {
|
|
7579
8132
|
oauth: Settings.OAuth;
|
|
8133
|
+
/**
|
|
8134
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
8135
|
+
* API calls to BigQuery.
|
|
8136
|
+
*/
|
|
8137
|
+
project_id: string;
|
|
7580
8138
|
/**
|
|
7581
8139
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
7582
8140
|
* for backward compatibility until we remove the oauth field
|
|
@@ -7642,6 +8200,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7642
8200
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7643
8201
|
status_message?: string | null;
|
|
7644
8202
|
updated_at?: string;
|
|
8203
|
+
webhook_config?: string | number | boolean | {
|
|
8204
|
+
[key: string]: unknown;
|
|
8205
|
+
} | Array<unknown> | null;
|
|
8206
|
+
webhook_configured_at?: string | null;
|
|
8207
|
+
webhook_identifier?: string | null;
|
|
7645
8208
|
}
|
|
7646
8209
|
namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
7647
8210
|
interface Settings {
|
|
@@ -7711,6 +8274,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7711
8274
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7712
8275
|
status_message?: string | null;
|
|
7713
8276
|
updated_at?: string;
|
|
8277
|
+
webhook_config?: string | number | boolean | {
|
|
8278
|
+
[key: string]: unknown;
|
|
8279
|
+
} | Array<unknown> | null;
|
|
8280
|
+
webhook_configured_at?: string | null;
|
|
8281
|
+
webhook_identifier?: string | null;
|
|
7714
8282
|
}
|
|
7715
8283
|
namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
7716
8284
|
interface Settings {
|
|
@@ -7780,6 +8348,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7780
8348
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7781
8349
|
status_message?: string | null;
|
|
7782
8350
|
updated_at?: string;
|
|
8351
|
+
webhook_config?: string | number | boolean | {
|
|
8352
|
+
[key: string]: unknown;
|
|
8353
|
+
} | Array<unknown> | null;
|
|
8354
|
+
webhook_configured_at?: string | null;
|
|
8355
|
+
webhook_identifier?: string | null;
|
|
7783
8356
|
}
|
|
7784
8357
|
namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
7785
8358
|
interface Settings {
|
|
@@ -7849,6 +8422,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7849
8422
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7850
8423
|
status_message?: string | null;
|
|
7851
8424
|
updated_at?: string;
|
|
8425
|
+
webhook_config?: string | number | boolean | {
|
|
8426
|
+
[key: string]: unknown;
|
|
8427
|
+
} | Array<unknown> | null;
|
|
8428
|
+
webhook_configured_at?: string | null;
|
|
8429
|
+
webhook_identifier?: string | null;
|
|
7852
8430
|
}
|
|
7853
8431
|
namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
7854
8432
|
interface Settings {
|
|
@@ -7918,6 +8496,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7918
8496
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7919
8497
|
status_message?: string | null;
|
|
7920
8498
|
updated_at?: string;
|
|
8499
|
+
webhook_config?: string | number | boolean | {
|
|
8500
|
+
[key: string]: unknown;
|
|
8501
|
+
} | Array<unknown> | null;
|
|
8502
|
+
webhook_configured_at?: string | null;
|
|
8503
|
+
webhook_identifier?: string | null;
|
|
7921
8504
|
}
|
|
7922
8505
|
namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
7923
8506
|
interface Settings {
|
|
@@ -7987,6 +8570,11 @@ export declare namespace GetConnectionResponse {
|
|
|
7987
8570
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
7988
8571
|
status_message?: string | null;
|
|
7989
8572
|
updated_at?: string;
|
|
8573
|
+
webhook_config?: string | number | boolean | {
|
|
8574
|
+
[key: string]: unknown;
|
|
8575
|
+
} | Array<unknown> | null;
|
|
8576
|
+
webhook_configured_at?: string | null;
|
|
8577
|
+
webhook_identifier?: string | null;
|
|
7990
8578
|
}
|
|
7991
8579
|
namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
7992
8580
|
interface Settings {
|
|
@@ -8060,16 +8648,26 @@ export declare namespace GetConnectionResponse {
|
|
|
8060
8648
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8061
8649
|
status_message?: string | null;
|
|
8062
8650
|
updated_at?: string;
|
|
8651
|
+
webhook_config?: string | number | boolean | {
|
|
8652
|
+
[key: string]: unknown;
|
|
8653
|
+
} | Array<unknown> | null;
|
|
8654
|
+
webhook_configured_at?: string | null;
|
|
8655
|
+
webhook_identifier?: string | null;
|
|
8063
8656
|
}
|
|
8064
8657
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
8065
8658
|
interface Settings {
|
|
8066
8659
|
/**
|
|
8067
|
-
*
|
|
8068
|
-
*
|
|
8069
|
-
* .cloud.databricks.com
|
|
8660
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
8661
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
8070
8662
|
*/
|
|
8071
|
-
|
|
8663
|
+
http_path: string;
|
|
8072
8664
|
oauth: Settings.OAuth;
|
|
8665
|
+
/**
|
|
8666
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
8667
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
8668
|
+
* Server hostname value.
|
|
8669
|
+
*/
|
|
8670
|
+
server_hostname: string;
|
|
8073
8671
|
/**
|
|
8074
8672
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
8075
8673
|
* for backward compatibility until we remove the oauth field
|
|
@@ -8135,6 +8733,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8135
8733
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8136
8734
|
status_message?: string | null;
|
|
8137
8735
|
updated_at?: string;
|
|
8736
|
+
webhook_config?: string | number | boolean | {
|
|
8737
|
+
[key: string]: unknown;
|
|
8738
|
+
} | Array<unknown> | null;
|
|
8739
|
+
webhook_configured_at?: string | null;
|
|
8740
|
+
webhook_identifier?: string | null;
|
|
8138
8741
|
}
|
|
8139
8742
|
namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
8140
8743
|
interface Settings {
|
|
@@ -8204,6 +8807,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8204
8807
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8205
8808
|
status_message?: string | null;
|
|
8206
8809
|
updated_at?: string;
|
|
8810
|
+
webhook_config?: string | number | boolean | {
|
|
8811
|
+
[key: string]: unknown;
|
|
8812
|
+
} | Array<unknown> | null;
|
|
8813
|
+
webhook_configured_at?: string | null;
|
|
8814
|
+
webhook_identifier?: string | null;
|
|
8207
8815
|
}
|
|
8208
8816
|
namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
8209
8817
|
interface Settings {
|
|
@@ -8273,6 +8881,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8273
8881
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8274
8882
|
status_message?: string | null;
|
|
8275
8883
|
updated_at?: string;
|
|
8884
|
+
webhook_config?: string | number | boolean | {
|
|
8885
|
+
[key: string]: unknown;
|
|
8886
|
+
} | Array<unknown> | null;
|
|
8887
|
+
webhook_configured_at?: string | null;
|
|
8888
|
+
webhook_identifier?: string | null;
|
|
8276
8889
|
}
|
|
8277
8890
|
namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
8278
8891
|
interface Settings {
|
|
@@ -8342,6 +8955,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8342
8955
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8343
8956
|
status_message?: string | null;
|
|
8344
8957
|
updated_at?: string;
|
|
8958
|
+
webhook_config?: string | number | boolean | {
|
|
8959
|
+
[key: string]: unknown;
|
|
8960
|
+
} | Array<unknown> | null;
|
|
8961
|
+
webhook_configured_at?: string | null;
|
|
8962
|
+
webhook_identifier?: string | null;
|
|
8345
8963
|
}
|
|
8346
8964
|
namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
8347
8965
|
interface Settings {
|
|
@@ -8411,6 +9029,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8411
9029
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8412
9030
|
status_message?: string | null;
|
|
8413
9031
|
updated_at?: string;
|
|
9032
|
+
webhook_config?: string | number | boolean | {
|
|
9033
|
+
[key: string]: unknown;
|
|
9034
|
+
} | Array<unknown> | null;
|
|
9035
|
+
webhook_configured_at?: string | null;
|
|
9036
|
+
webhook_identifier?: string | null;
|
|
8414
9037
|
}
|
|
8415
9038
|
namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
8416
9039
|
interface Settings {
|
|
@@ -8456,6 +9079,80 @@ export declare namespace GetConnectionResponse {
|
|
|
8456
9079
|
}
|
|
8457
9080
|
}
|
|
8458
9081
|
}
|
|
9082
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
9083
|
+
connector_name: 'gitlab-source-control';
|
|
9084
|
+
id?: string;
|
|
9085
|
+
connector?: TopLevelAPI.Connector;
|
|
9086
|
+
connector_config_id?: string | null;
|
|
9087
|
+
created_at?: string;
|
|
9088
|
+
customer_id?: string | null;
|
|
9089
|
+
disabled?: boolean | null;
|
|
9090
|
+
display_name?: string | null;
|
|
9091
|
+
environment?: 'production' | 'development';
|
|
9092
|
+
integration?: TopLevelAPI.Integration;
|
|
9093
|
+
integration_id?: string | null;
|
|
9094
|
+
/**
|
|
9095
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
9096
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
9097
|
+
* updates this object will be shallowly merged
|
|
9098
|
+
*/
|
|
9099
|
+
metadata?: {
|
|
9100
|
+
[key: string]: unknown;
|
|
9101
|
+
} | null;
|
|
9102
|
+
settings?: ConnectorGitlabSourceControlDiscriminatedConnectionSettings.Settings;
|
|
9103
|
+
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9104
|
+
status_message?: string | null;
|
|
9105
|
+
updated_at?: string;
|
|
9106
|
+
webhook_config?: string | number | boolean | {
|
|
9107
|
+
[key: string]: unknown;
|
|
9108
|
+
} | Array<unknown> | null;
|
|
9109
|
+
webhook_configured_at?: string | null;
|
|
9110
|
+
webhook_identifier?: string | null;
|
|
9111
|
+
}
|
|
9112
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
9113
|
+
interface Settings {
|
|
9114
|
+
oauth: Settings.OAuth;
|
|
9115
|
+
/**
|
|
9116
|
+
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
9117
|
+
* for backward compatibility until we remove the oauth field
|
|
9118
|
+
*/
|
|
9119
|
+
access_token?: string;
|
|
9120
|
+
}
|
|
9121
|
+
namespace Settings {
|
|
9122
|
+
interface OAuth {
|
|
9123
|
+
created_at?: string;
|
|
9124
|
+
/**
|
|
9125
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
9126
|
+
*/
|
|
9127
|
+
credentials?: OAuth.Credentials;
|
|
9128
|
+
last_fetched_at?: string;
|
|
9129
|
+
metadata?: {
|
|
9130
|
+
[key: string]: unknown;
|
|
9131
|
+
} | null;
|
|
9132
|
+
updated_at?: string;
|
|
9133
|
+
}
|
|
9134
|
+
namespace OAuth {
|
|
9135
|
+
/**
|
|
9136
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
9137
|
+
*/
|
|
9138
|
+
interface Credentials {
|
|
9139
|
+
access_token: string;
|
|
9140
|
+
/**
|
|
9141
|
+
* Client ID used for the connection
|
|
9142
|
+
*/
|
|
9143
|
+
client_id?: string;
|
|
9144
|
+
expires_at?: string;
|
|
9145
|
+
expires_in?: number;
|
|
9146
|
+
raw?: {
|
|
9147
|
+
[key: string]: unknown;
|
|
9148
|
+
};
|
|
9149
|
+
refresh_token?: string;
|
|
9150
|
+
scope?: string;
|
|
9151
|
+
token_type?: string;
|
|
9152
|
+
}
|
|
9153
|
+
}
|
|
9154
|
+
}
|
|
9155
|
+
}
|
|
8459
9156
|
interface ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
8460
9157
|
connector_name: 'google-calendar';
|
|
8461
9158
|
id?: string;
|
|
@@ -8480,6 +9177,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8480
9177
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8481
9178
|
status_message?: string | null;
|
|
8482
9179
|
updated_at?: string;
|
|
9180
|
+
webhook_config?: string | number | boolean | {
|
|
9181
|
+
[key: string]: unknown;
|
|
9182
|
+
} | Array<unknown> | null;
|
|
9183
|
+
webhook_configured_at?: string | null;
|
|
9184
|
+
webhook_identifier?: string | null;
|
|
8483
9185
|
}
|
|
8484
9186
|
namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
8485
9187
|
interface Settings {
|
|
@@ -8549,6 +9251,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8549
9251
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8550
9252
|
status_message?: string | null;
|
|
8551
9253
|
updated_at?: string;
|
|
9254
|
+
webhook_config?: string | number | boolean | {
|
|
9255
|
+
[key: string]: unknown;
|
|
9256
|
+
} | Array<unknown> | null;
|
|
9257
|
+
webhook_configured_at?: string | null;
|
|
9258
|
+
webhook_identifier?: string | null;
|
|
8552
9259
|
}
|
|
8553
9260
|
namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
8554
9261
|
interface Settings {
|
|
@@ -8618,6 +9325,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8618
9325
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8619
9326
|
status_message?: string | null;
|
|
8620
9327
|
updated_at?: string;
|
|
9328
|
+
webhook_config?: string | number | boolean | {
|
|
9329
|
+
[key: string]: unknown;
|
|
9330
|
+
} | Array<unknown> | null;
|
|
9331
|
+
webhook_configured_at?: string | null;
|
|
9332
|
+
webhook_identifier?: string | null;
|
|
8621
9333
|
}
|
|
8622
9334
|
namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
8623
9335
|
interface Settings {
|
|
@@ -8687,6 +9399,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8687
9399
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8688
9400
|
status_message?: string | null;
|
|
8689
9401
|
updated_at?: string;
|
|
9402
|
+
webhook_config?: string | number | boolean | {
|
|
9403
|
+
[key: string]: unknown;
|
|
9404
|
+
} | Array<unknown> | null;
|
|
9405
|
+
webhook_configured_at?: string | null;
|
|
9406
|
+
webhook_identifier?: string | null;
|
|
8690
9407
|
}
|
|
8691
9408
|
namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
8692
9409
|
interface Settings {
|
|
@@ -8756,6 +9473,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8756
9473
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8757
9474
|
status_message?: string | null;
|
|
8758
9475
|
updated_at?: string;
|
|
9476
|
+
webhook_config?: string | number | boolean | {
|
|
9477
|
+
[key: string]: unknown;
|
|
9478
|
+
} | Array<unknown> | null;
|
|
9479
|
+
webhook_configured_at?: string | null;
|
|
9480
|
+
webhook_identifier?: string | null;
|
|
8759
9481
|
}
|
|
8760
9482
|
namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
8761
9483
|
interface Settings {
|
|
@@ -8825,6 +9547,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8825
9547
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8826
9548
|
status_message?: string | null;
|
|
8827
9549
|
updated_at?: string;
|
|
9550
|
+
webhook_config?: string | number | boolean | {
|
|
9551
|
+
[key: string]: unknown;
|
|
9552
|
+
} | Array<unknown> | null;
|
|
9553
|
+
webhook_configured_at?: string | null;
|
|
9554
|
+
webhook_identifier?: string | null;
|
|
8828
9555
|
}
|
|
8829
9556
|
namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
8830
9557
|
interface Settings {
|
|
@@ -8894,6 +9621,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8894
9621
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8895
9622
|
status_message?: string | null;
|
|
8896
9623
|
updated_at?: string;
|
|
9624
|
+
webhook_config?: string | number | boolean | {
|
|
9625
|
+
[key: string]: unknown;
|
|
9626
|
+
} | Array<unknown> | null;
|
|
9627
|
+
webhook_configured_at?: string | null;
|
|
9628
|
+
webhook_identifier?: string | null;
|
|
8897
9629
|
}
|
|
8898
9630
|
namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
8899
9631
|
interface Settings {
|
|
@@ -8963,6 +9695,11 @@ export declare namespace GetConnectionResponse {
|
|
|
8963
9695
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
8964
9696
|
status_message?: string | null;
|
|
8965
9697
|
updated_at?: string;
|
|
9698
|
+
webhook_config?: string | number | boolean | {
|
|
9699
|
+
[key: string]: unknown;
|
|
9700
|
+
} | Array<unknown> | null;
|
|
9701
|
+
webhook_configured_at?: string | null;
|
|
9702
|
+
webhook_identifier?: string | null;
|
|
8966
9703
|
}
|
|
8967
9704
|
namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
8968
9705
|
interface Settings {
|
|
@@ -9032,6 +9769,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9032
9769
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9033
9770
|
status_message?: string | null;
|
|
9034
9771
|
updated_at?: string;
|
|
9772
|
+
webhook_config?: string | number | boolean | {
|
|
9773
|
+
[key: string]: unknown;
|
|
9774
|
+
} | Array<unknown> | null;
|
|
9775
|
+
webhook_configured_at?: string | null;
|
|
9776
|
+
webhook_identifier?: string | null;
|
|
9035
9777
|
}
|
|
9036
9778
|
namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
9037
9779
|
interface Settings {
|
|
@@ -9105,6 +9847,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9105
9847
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9106
9848
|
status_message?: string | null;
|
|
9107
9849
|
updated_at?: string;
|
|
9850
|
+
webhook_config?: string | number | boolean | {
|
|
9851
|
+
[key: string]: unknown;
|
|
9852
|
+
} | Array<unknown> | null;
|
|
9853
|
+
webhook_configured_at?: string | null;
|
|
9854
|
+
webhook_identifier?: string | null;
|
|
9108
9855
|
}
|
|
9109
9856
|
namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
9110
9857
|
interface Settings {
|
|
@@ -9174,6 +9921,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9174
9921
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9175
9922
|
status_message?: string | null;
|
|
9176
9923
|
updated_at?: string;
|
|
9924
|
+
webhook_config?: string | number | boolean | {
|
|
9925
|
+
[key: string]: unknown;
|
|
9926
|
+
} | Array<unknown> | null;
|
|
9927
|
+
webhook_configured_at?: string | null;
|
|
9928
|
+
webhook_identifier?: string | null;
|
|
9177
9929
|
}
|
|
9178
9930
|
namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
9179
9931
|
interface Settings {
|
|
@@ -9243,6 +9995,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9243
9995
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9244
9996
|
status_message?: string | null;
|
|
9245
9997
|
updated_at?: string;
|
|
9998
|
+
webhook_config?: string | number | boolean | {
|
|
9999
|
+
[key: string]: unknown;
|
|
10000
|
+
} | Array<unknown> | null;
|
|
10001
|
+
webhook_configured_at?: string | null;
|
|
10002
|
+
webhook_identifier?: string | null;
|
|
9246
10003
|
}
|
|
9247
10004
|
namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
9248
10005
|
interface Settings {
|
|
@@ -9312,6 +10069,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9312
10069
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9313
10070
|
status_message?: string | null;
|
|
9314
10071
|
updated_at?: string;
|
|
10072
|
+
webhook_config?: string | number | boolean | {
|
|
10073
|
+
[key: string]: unknown;
|
|
10074
|
+
} | Array<unknown> | null;
|
|
10075
|
+
webhook_configured_at?: string | null;
|
|
10076
|
+
webhook_identifier?: string | null;
|
|
9315
10077
|
}
|
|
9316
10078
|
namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
9317
10079
|
interface Settings {
|
|
@@ -9381,6 +10143,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9381
10143
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9382
10144
|
status_message?: string | null;
|
|
9383
10145
|
updated_at?: string;
|
|
10146
|
+
webhook_config?: string | number | boolean | {
|
|
10147
|
+
[key: string]: unknown;
|
|
10148
|
+
} | Array<unknown> | null;
|
|
10149
|
+
webhook_configured_at?: string | null;
|
|
10150
|
+
webhook_identifier?: string | null;
|
|
9384
10151
|
}
|
|
9385
10152
|
namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
9386
10153
|
interface Settings {
|
|
@@ -9450,6 +10217,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9450
10217
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9451
10218
|
status_message?: string | null;
|
|
9452
10219
|
updated_at?: string;
|
|
10220
|
+
webhook_config?: string | number | boolean | {
|
|
10221
|
+
[key: string]: unknown;
|
|
10222
|
+
} | Array<unknown> | null;
|
|
10223
|
+
webhook_configured_at?: string | null;
|
|
10224
|
+
webhook_identifier?: string | null;
|
|
9453
10225
|
}
|
|
9454
10226
|
namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
9455
10227
|
interface Settings {
|
|
@@ -9523,6 +10295,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9523
10295
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9524
10296
|
status_message?: string | null;
|
|
9525
10297
|
updated_at?: string;
|
|
10298
|
+
webhook_config?: string | number | boolean | {
|
|
10299
|
+
[key: string]: unknown;
|
|
10300
|
+
} | Array<unknown> | null;
|
|
10301
|
+
webhook_configured_at?: string | null;
|
|
10302
|
+
webhook_identifier?: string | null;
|
|
9526
10303
|
}
|
|
9527
10304
|
namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
9528
10305
|
interface Settings {
|
|
@@ -9592,6 +10369,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9592
10369
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9593
10370
|
status_message?: string | null;
|
|
9594
10371
|
updated_at?: string;
|
|
10372
|
+
webhook_config?: string | number | boolean | {
|
|
10373
|
+
[key: string]: unknown;
|
|
10374
|
+
} | Array<unknown> | null;
|
|
10375
|
+
webhook_configured_at?: string | null;
|
|
10376
|
+
webhook_identifier?: string | null;
|
|
9595
10377
|
}
|
|
9596
10378
|
namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
9597
10379
|
interface Settings {
|
|
@@ -9661,6 +10443,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9661
10443
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9662
10444
|
status_message?: string | null;
|
|
9663
10445
|
updated_at?: string;
|
|
10446
|
+
webhook_config?: string | number | boolean | {
|
|
10447
|
+
[key: string]: unknown;
|
|
10448
|
+
} | Array<unknown> | null;
|
|
10449
|
+
webhook_configured_at?: string | null;
|
|
10450
|
+
webhook_identifier?: string | null;
|
|
9664
10451
|
}
|
|
9665
10452
|
namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
9666
10453
|
interface Settings {
|
|
@@ -9730,6 +10517,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9730
10517
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9731
10518
|
status_message?: string | null;
|
|
9732
10519
|
updated_at?: string;
|
|
10520
|
+
webhook_config?: string | number | boolean | {
|
|
10521
|
+
[key: string]: unknown;
|
|
10522
|
+
} | Array<unknown> | null;
|
|
10523
|
+
webhook_configured_at?: string | null;
|
|
10524
|
+
webhook_identifier?: string | null;
|
|
9733
10525
|
}
|
|
9734
10526
|
namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
9735
10527
|
interface Settings {
|
|
@@ -9804,6 +10596,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9804
10596
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9805
10597
|
status_message?: string | null;
|
|
9806
10598
|
updated_at?: string;
|
|
10599
|
+
webhook_config?: string | number | boolean | {
|
|
10600
|
+
[key: string]: unknown;
|
|
10601
|
+
} | Array<unknown> | null;
|
|
10602
|
+
webhook_configured_at?: string | null;
|
|
10603
|
+
webhook_identifier?: string | null;
|
|
9807
10604
|
}
|
|
9808
10605
|
namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
9809
10606
|
interface Settings {
|
|
@@ -9873,6 +10670,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9873
10670
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9874
10671
|
status_message?: string | null;
|
|
9875
10672
|
updated_at?: string;
|
|
10673
|
+
webhook_config?: string | number | boolean | {
|
|
10674
|
+
[key: string]: unknown;
|
|
10675
|
+
} | Array<unknown> | null;
|
|
10676
|
+
webhook_configured_at?: string | null;
|
|
10677
|
+
webhook_identifier?: string | null;
|
|
9876
10678
|
}
|
|
9877
10679
|
namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
9878
10680
|
interface Settings {
|
|
@@ -9942,6 +10744,11 @@ export declare namespace GetConnectionResponse {
|
|
|
9942
10744
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
9943
10745
|
status_message?: string | null;
|
|
9944
10746
|
updated_at?: string;
|
|
10747
|
+
webhook_config?: string | number | boolean | {
|
|
10748
|
+
[key: string]: unknown;
|
|
10749
|
+
} | Array<unknown> | null;
|
|
10750
|
+
webhook_configured_at?: string | null;
|
|
10751
|
+
webhook_identifier?: string | null;
|
|
9945
10752
|
}
|
|
9946
10753
|
namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
9947
10754
|
interface Settings {
|
|
@@ -10015,6 +10822,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10015
10822
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10016
10823
|
status_message?: string | null;
|
|
10017
10824
|
updated_at?: string;
|
|
10825
|
+
webhook_config?: string | number | boolean | {
|
|
10826
|
+
[key: string]: unknown;
|
|
10827
|
+
} | Array<unknown> | null;
|
|
10828
|
+
webhook_configured_at?: string | null;
|
|
10829
|
+
webhook_identifier?: string | null;
|
|
10018
10830
|
}
|
|
10019
10831
|
namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
10020
10832
|
interface Settings {
|
|
@@ -10084,14 +10896,19 @@ export declare namespace GetConnectionResponse {
|
|
|
10084
10896
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10085
10897
|
status_message?: string | null;
|
|
10086
10898
|
updated_at?: string;
|
|
10899
|
+
webhook_config?: string | number | boolean | {
|
|
10900
|
+
[key: string]: unknown;
|
|
10901
|
+
} | Array<unknown> | null;
|
|
10902
|
+
webhook_configured_at?: string | null;
|
|
10903
|
+
webhook_identifier?: string | null;
|
|
10087
10904
|
}
|
|
10088
10905
|
namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
10089
10906
|
interface Settings {
|
|
10090
10907
|
api_key: string;
|
|
10091
10908
|
}
|
|
10092
10909
|
}
|
|
10093
|
-
interface
|
|
10094
|
-
connector_name: '
|
|
10910
|
+
interface ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
10911
|
+
connector_name: 'custom-mcp';
|
|
10095
10912
|
id?: string;
|
|
10096
10913
|
connector?: TopLevelAPI.Connector;
|
|
10097
10914
|
connector_config_id?: string | null;
|
|
@@ -10110,24 +10927,87 @@ export declare namespace GetConnectionResponse {
|
|
|
10110
10927
|
metadata?: {
|
|
10111
10928
|
[key: string]: unknown;
|
|
10112
10929
|
} | null;
|
|
10113
|
-
settings?:
|
|
10930
|
+
settings?: ConnectorCustomMcpDiscriminatedConnectionSettings.Settings;
|
|
10114
10931
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10115
10932
|
status_message?: string | null;
|
|
10116
10933
|
updated_at?: string;
|
|
10934
|
+
webhook_config?: string | number | boolean | {
|
|
10935
|
+
[key: string]: unknown;
|
|
10936
|
+
} | Array<unknown> | null;
|
|
10937
|
+
webhook_configured_at?: string | null;
|
|
10938
|
+
webhook_identifier?: string | null;
|
|
10117
10939
|
}
|
|
10118
|
-
namespace
|
|
10940
|
+
namespace ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
10119
10941
|
interface Settings {
|
|
10120
|
-
|
|
10121
|
-
|
|
10122
|
-
|
|
10123
|
-
|
|
10124
|
-
|
|
10125
|
-
|
|
10942
|
+
/**
|
|
10943
|
+
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
10944
|
+
*/
|
|
10945
|
+
base_url: string;
|
|
10946
|
+
/**
|
|
10947
|
+
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
10948
|
+
*/
|
|
10949
|
+
display_name: string;
|
|
10950
|
+
/**
|
|
10951
|
+
* Custom headers to include with every request
|
|
10952
|
+
*/
|
|
10953
|
+
headers: Array<Settings.Header>;
|
|
10126
10954
|
}
|
|
10127
|
-
|
|
10128
|
-
|
|
10129
|
-
|
|
10130
|
-
|
|
10955
|
+
namespace Settings {
|
|
10956
|
+
interface Header {
|
|
10957
|
+
/**
|
|
10958
|
+
* Header name (e.g., Authorization, X-API-Key)
|
|
10959
|
+
*/
|
|
10960
|
+
key: string;
|
|
10961
|
+
/**
|
|
10962
|
+
* Header value (securely stored)
|
|
10963
|
+
*/
|
|
10964
|
+
value: string;
|
|
10965
|
+
}
|
|
10966
|
+
}
|
|
10967
|
+
}
|
|
10968
|
+
interface ConnectorPlaidDiscriminatedConnectionSettings {
|
|
10969
|
+
connector_name: 'plaid';
|
|
10970
|
+
id?: string;
|
|
10971
|
+
connector?: TopLevelAPI.Connector;
|
|
10972
|
+
connector_config_id?: string | null;
|
|
10973
|
+
created_at?: string;
|
|
10974
|
+
customer_id?: string | null;
|
|
10975
|
+
disabled?: boolean | null;
|
|
10976
|
+
display_name?: string | null;
|
|
10977
|
+
environment?: 'production' | 'development';
|
|
10978
|
+
integration?: TopLevelAPI.Integration;
|
|
10979
|
+
integration_id?: string | null;
|
|
10980
|
+
/**
|
|
10981
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
10982
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
10983
|
+
* updates this object will be shallowly merged
|
|
10984
|
+
*/
|
|
10985
|
+
metadata?: {
|
|
10986
|
+
[key: string]: unknown;
|
|
10987
|
+
} | null;
|
|
10988
|
+
settings?: ConnectorPlaidDiscriminatedConnectionSettings.Settings;
|
|
10989
|
+
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10990
|
+
status_message?: string | null;
|
|
10991
|
+
updated_at?: string;
|
|
10992
|
+
webhook_config?: string | number | boolean | {
|
|
10993
|
+
[key: string]: unknown;
|
|
10994
|
+
} | Array<unknown> | null;
|
|
10995
|
+
webhook_configured_at?: string | null;
|
|
10996
|
+
webhook_identifier?: string | null;
|
|
10997
|
+
}
|
|
10998
|
+
namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
10999
|
+
interface Settings {
|
|
11000
|
+
accessToken: string;
|
|
11001
|
+
institution?: unknown;
|
|
11002
|
+
item?: unknown;
|
|
11003
|
+
itemId?: string | null;
|
|
11004
|
+
status?: unknown;
|
|
11005
|
+
webhookItemError?: null;
|
|
11006
|
+
}
|
|
11007
|
+
}
|
|
11008
|
+
interface ConnectorPostgresDiscriminatedConnectionSettings {
|
|
11009
|
+
connector_name: 'postgres';
|
|
11010
|
+
id?: string;
|
|
10131
11011
|
connector?: TopLevelAPI.Connector;
|
|
10132
11012
|
connector_config_id?: string | null;
|
|
10133
11013
|
created_at?: string;
|
|
@@ -10149,6 +11029,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10149
11029
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10150
11030
|
status_message?: string | null;
|
|
10151
11031
|
updated_at?: string;
|
|
11032
|
+
webhook_config?: string | number | boolean | {
|
|
11033
|
+
[key: string]: unknown;
|
|
11034
|
+
} | Array<unknown> | null;
|
|
11035
|
+
webhook_configured_at?: string | null;
|
|
11036
|
+
webhook_identifier?: string | null;
|
|
10152
11037
|
}
|
|
10153
11038
|
namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
10154
11039
|
interface Settings {
|
|
@@ -10179,6 +11064,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10179
11064
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10180
11065
|
status_message?: string | null;
|
|
10181
11066
|
updated_at?: string;
|
|
11067
|
+
webhook_config?: string | number | boolean | {
|
|
11068
|
+
[key: string]: unknown;
|
|
11069
|
+
} | Array<unknown> | null;
|
|
11070
|
+
webhook_configured_at?: string | null;
|
|
11071
|
+
webhook_identifier?: string | null;
|
|
10182
11072
|
}
|
|
10183
11073
|
namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
10184
11074
|
interface Settings {
|
|
@@ -10213,6 +11103,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10213
11103
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10214
11104
|
status_message?: string | null;
|
|
10215
11105
|
updated_at?: string;
|
|
11106
|
+
webhook_config?: string | number | boolean | {
|
|
11107
|
+
[key: string]: unknown;
|
|
11108
|
+
} | Array<unknown> | null;
|
|
11109
|
+
webhook_configured_at?: string | null;
|
|
11110
|
+
webhook_identifier?: string | null;
|
|
10216
11111
|
}
|
|
10217
11112
|
namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
10218
11113
|
interface Settings {
|
|
@@ -10247,6 +11142,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10247
11142
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10248
11143
|
status_message?: string | null;
|
|
10249
11144
|
updated_at?: string;
|
|
11145
|
+
webhook_config?: string | number | boolean | {
|
|
11146
|
+
[key: string]: unknown;
|
|
11147
|
+
} | Array<unknown> | null;
|
|
11148
|
+
webhook_configured_at?: string | null;
|
|
11149
|
+
webhook_identifier?: string | null;
|
|
10250
11150
|
}
|
|
10251
11151
|
namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
10252
11152
|
interface Settings {
|
|
@@ -10280,6 +11180,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10280
11180
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10281
11181
|
status_message?: string | null;
|
|
10282
11182
|
updated_at?: string;
|
|
11183
|
+
webhook_config?: string | number | boolean | {
|
|
11184
|
+
[key: string]: unknown;
|
|
11185
|
+
} | Array<unknown> | null;
|
|
11186
|
+
webhook_configured_at?: string | null;
|
|
11187
|
+
webhook_identifier?: string | null;
|
|
10283
11188
|
}
|
|
10284
11189
|
namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
10285
11190
|
interface Settings {
|
|
@@ -10424,6 +11329,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10424
11329
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10425
11330
|
status_message?: string | null;
|
|
10426
11331
|
updated_at?: string;
|
|
11332
|
+
webhook_config?: string | number | boolean | {
|
|
11333
|
+
[key: string]: unknown;
|
|
11334
|
+
} | Array<unknown> | null;
|
|
11335
|
+
webhook_configured_at?: string | null;
|
|
11336
|
+
webhook_identifier?: string | null;
|
|
10427
11337
|
}
|
|
10428
11338
|
namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
10429
11339
|
interface Settings {
|
|
@@ -10493,6 +11403,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10493
11403
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10494
11404
|
status_message?: string | null;
|
|
10495
11405
|
updated_at?: string;
|
|
11406
|
+
webhook_config?: string | number | boolean | {
|
|
11407
|
+
[key: string]: unknown;
|
|
11408
|
+
} | Array<unknown> | null;
|
|
11409
|
+
webhook_configured_at?: string | null;
|
|
11410
|
+
webhook_identifier?: string | null;
|
|
10496
11411
|
}
|
|
10497
11412
|
namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
10498
11413
|
interface Settings {
|
|
@@ -10562,6 +11477,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10562
11477
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10563
11478
|
status_message?: string | null;
|
|
10564
11479
|
updated_at?: string;
|
|
11480
|
+
webhook_config?: string | number | boolean | {
|
|
11481
|
+
[key: string]: unknown;
|
|
11482
|
+
} | Array<unknown> | null;
|
|
11483
|
+
webhook_configured_at?: string | null;
|
|
11484
|
+
webhook_identifier?: string | null;
|
|
10565
11485
|
}
|
|
10566
11486
|
namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
10567
11487
|
interface Settings {
|
|
@@ -10598,6 +11518,11 @@ export declare namespace GetConnectionResponse {
|
|
|
10598
11518
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10599
11519
|
status_message?: string | null;
|
|
10600
11520
|
updated_at?: string;
|
|
11521
|
+
webhook_config?: string | number | boolean | {
|
|
11522
|
+
[key: string]: unknown;
|
|
11523
|
+
} | Array<unknown> | null;
|
|
11524
|
+
webhook_configured_at?: string | null;
|
|
11525
|
+
webhook_identifier?: string | null;
|
|
10601
11526
|
}
|
|
10602
11527
|
namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
10603
11528
|
interface Settings {
|
|
@@ -10627,7 +11552,7 @@ export declare namespace ListAssignmentsResponse {
|
|
|
10627
11552
|
/**
|
|
10628
11553
|
* The connection details
|
|
10629
11554
|
*/
|
|
10630
|
-
export type ListConnectionsResponse = ListConnectionsResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorAgentmailDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorAsanaDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorBigqueryDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorBitbucketDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorBoxDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorCalendlyDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorClickupDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorConfluenceDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorDatabricksDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorDiscordDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorDropboxDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorFigmaDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGitHubDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleCalendarDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleDocsDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleDriveDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleMailDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleSheetDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleSlidesDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorHubspotDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorInstagramDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorJiraDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorLinearDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorMondayDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorNotionDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorOnedriveDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorOutlookDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSalesforceDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSharepointDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSlackDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSnowflakeDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSpotifyDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorYoutubeDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorZendeskDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorZoomDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorApolloDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorPlaidDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorPostgresDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorResendDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSendgridDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSlackAgentDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorStripeDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorTwilioDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
11555
|
+
export type ListConnectionsResponse = ListConnectionsResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorAgentmailDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorAsanaDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorBigqueryDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorBitbucketDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorBoxDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorCalendlyDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorClickupDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorConfluenceDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorDatabricksDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorDiscordDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorDropboxDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorFigmaDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGitHubDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGitlabSourceControlDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleCalendarDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleDocsDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleDriveDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleMailDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleSheetDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorGoogleSlidesDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorHubspotDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorInstagramDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorJiraDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorLinearDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorMondayDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorNotionDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorOnedriveDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorOutlookDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSalesforceDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSharepointDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSlackDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSnowflakeDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSpotifyDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorYoutubeDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorZendeskDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorZoomDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorApolloDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorCustomMcpDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorPlaidDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorPostgresDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorResendDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSendgridDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSlackAgentDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorStripeDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorTwilioDiscriminatedConnectionSettings | ListConnectionsResponse.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
10631
11556
|
export declare namespace ListConnectionsResponse {
|
|
10632
11557
|
interface ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
10633
11558
|
connector_name: 'acme-apikey';
|
|
@@ -10653,6 +11578,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10653
11578
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10654
11579
|
status_message?: string | null;
|
|
10655
11580
|
updated_at?: string;
|
|
11581
|
+
webhook_config?: string | number | boolean | {
|
|
11582
|
+
[key: string]: unknown;
|
|
11583
|
+
} | Array<unknown> | null;
|
|
11584
|
+
webhook_configured_at?: string | null;
|
|
11585
|
+
webhook_identifier?: string | null;
|
|
10656
11586
|
}
|
|
10657
11587
|
namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
10658
11588
|
interface Settings {
|
|
@@ -10683,6 +11613,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10683
11613
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10684
11614
|
status_message?: string | null;
|
|
10685
11615
|
updated_at?: string;
|
|
11616
|
+
webhook_config?: string | number | boolean | {
|
|
11617
|
+
[key: string]: unknown;
|
|
11618
|
+
} | Array<unknown> | null;
|
|
11619
|
+
webhook_configured_at?: string | null;
|
|
11620
|
+
webhook_identifier?: string | null;
|
|
10686
11621
|
}
|
|
10687
11622
|
namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
10688
11623
|
interface Settings {
|
|
@@ -10752,6 +11687,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10752
11687
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10753
11688
|
status_message?: string | null;
|
|
10754
11689
|
updated_at?: string;
|
|
11690
|
+
webhook_config?: string | number | boolean | {
|
|
11691
|
+
[key: string]: unknown;
|
|
11692
|
+
} | Array<unknown> | null;
|
|
11693
|
+
webhook_configured_at?: string | null;
|
|
11694
|
+
webhook_identifier?: string | null;
|
|
10755
11695
|
}
|
|
10756
11696
|
namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
10757
11697
|
interface Settings {
|
|
@@ -10782,6 +11722,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10782
11722
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10783
11723
|
status_message?: string | null;
|
|
10784
11724
|
updated_at?: string;
|
|
11725
|
+
webhook_config?: string | number | boolean | {
|
|
11726
|
+
[key: string]: unknown;
|
|
11727
|
+
} | Array<unknown> | null;
|
|
11728
|
+
webhook_configured_at?: string | null;
|
|
11729
|
+
webhook_identifier?: string | null;
|
|
10785
11730
|
}
|
|
10786
11731
|
namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
10787
11732
|
interface Settings {
|
|
@@ -10851,10 +11796,20 @@ export declare namespace ListConnectionsResponse {
|
|
|
10851
11796
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10852
11797
|
status_message?: string | null;
|
|
10853
11798
|
updated_at?: string;
|
|
11799
|
+
webhook_config?: string | number | boolean | {
|
|
11800
|
+
[key: string]: unknown;
|
|
11801
|
+
} | Array<unknown> | null;
|
|
11802
|
+
webhook_configured_at?: string | null;
|
|
11803
|
+
webhook_identifier?: string | null;
|
|
10854
11804
|
}
|
|
10855
11805
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
10856
11806
|
interface Settings {
|
|
10857
11807
|
oauth: Settings.OAuth;
|
|
11808
|
+
/**
|
|
11809
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
11810
|
+
* API calls to BigQuery.
|
|
11811
|
+
*/
|
|
11812
|
+
project_id: string;
|
|
10858
11813
|
/**
|
|
10859
11814
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
10860
11815
|
* for backward compatibility until we remove the oauth field
|
|
@@ -10920,6 +11875,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10920
11875
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10921
11876
|
status_message?: string | null;
|
|
10922
11877
|
updated_at?: string;
|
|
11878
|
+
webhook_config?: string | number | boolean | {
|
|
11879
|
+
[key: string]: unknown;
|
|
11880
|
+
} | Array<unknown> | null;
|
|
11881
|
+
webhook_configured_at?: string | null;
|
|
11882
|
+
webhook_identifier?: string | null;
|
|
10923
11883
|
}
|
|
10924
11884
|
namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
10925
11885
|
interface Settings {
|
|
@@ -10989,6 +11949,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
10989
11949
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
10990
11950
|
status_message?: string | null;
|
|
10991
11951
|
updated_at?: string;
|
|
11952
|
+
webhook_config?: string | number | boolean | {
|
|
11953
|
+
[key: string]: unknown;
|
|
11954
|
+
} | Array<unknown> | null;
|
|
11955
|
+
webhook_configured_at?: string | null;
|
|
11956
|
+
webhook_identifier?: string | null;
|
|
10992
11957
|
}
|
|
10993
11958
|
namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
10994
11959
|
interface Settings {
|
|
@@ -11058,6 +12023,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11058
12023
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11059
12024
|
status_message?: string | null;
|
|
11060
12025
|
updated_at?: string;
|
|
12026
|
+
webhook_config?: string | number | boolean | {
|
|
12027
|
+
[key: string]: unknown;
|
|
12028
|
+
} | Array<unknown> | null;
|
|
12029
|
+
webhook_configured_at?: string | null;
|
|
12030
|
+
webhook_identifier?: string | null;
|
|
11061
12031
|
}
|
|
11062
12032
|
namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
11063
12033
|
interface Settings {
|
|
@@ -11127,6 +12097,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11127
12097
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11128
12098
|
status_message?: string | null;
|
|
11129
12099
|
updated_at?: string;
|
|
12100
|
+
webhook_config?: string | number | boolean | {
|
|
12101
|
+
[key: string]: unknown;
|
|
12102
|
+
} | Array<unknown> | null;
|
|
12103
|
+
webhook_configured_at?: string | null;
|
|
12104
|
+
webhook_identifier?: string | null;
|
|
11130
12105
|
}
|
|
11131
12106
|
namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
11132
12107
|
interface Settings {
|
|
@@ -11196,6 +12171,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11196
12171
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11197
12172
|
status_message?: string | null;
|
|
11198
12173
|
updated_at?: string;
|
|
12174
|
+
webhook_config?: string | number | boolean | {
|
|
12175
|
+
[key: string]: unknown;
|
|
12176
|
+
} | Array<unknown> | null;
|
|
12177
|
+
webhook_configured_at?: string | null;
|
|
12178
|
+
webhook_identifier?: string | null;
|
|
11199
12179
|
}
|
|
11200
12180
|
namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
11201
12181
|
interface Settings {
|
|
@@ -11265,6 +12245,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11265
12245
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11266
12246
|
status_message?: string | null;
|
|
11267
12247
|
updated_at?: string;
|
|
12248
|
+
webhook_config?: string | number | boolean | {
|
|
12249
|
+
[key: string]: unknown;
|
|
12250
|
+
} | Array<unknown> | null;
|
|
12251
|
+
webhook_configured_at?: string | null;
|
|
12252
|
+
webhook_identifier?: string | null;
|
|
11268
12253
|
}
|
|
11269
12254
|
namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
11270
12255
|
interface Settings {
|
|
@@ -11338,16 +12323,26 @@ export declare namespace ListConnectionsResponse {
|
|
|
11338
12323
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11339
12324
|
status_message?: string | null;
|
|
11340
12325
|
updated_at?: string;
|
|
12326
|
+
webhook_config?: string | number | boolean | {
|
|
12327
|
+
[key: string]: unknown;
|
|
12328
|
+
} | Array<unknown> | null;
|
|
12329
|
+
webhook_configured_at?: string | null;
|
|
12330
|
+
webhook_identifier?: string | null;
|
|
11341
12331
|
}
|
|
11342
12332
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
11343
12333
|
interface Settings {
|
|
11344
12334
|
/**
|
|
11345
|
-
*
|
|
11346
|
-
*
|
|
11347
|
-
* .cloud.databricks.com
|
|
12335
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
12336
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
11348
12337
|
*/
|
|
11349
|
-
|
|
12338
|
+
http_path: string;
|
|
11350
12339
|
oauth: Settings.OAuth;
|
|
12340
|
+
/**
|
|
12341
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
12342
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
12343
|
+
* Server hostname value.
|
|
12344
|
+
*/
|
|
12345
|
+
server_hostname: string;
|
|
11351
12346
|
/**
|
|
11352
12347
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
11353
12348
|
* for backward compatibility until we remove the oauth field
|
|
@@ -11413,6 +12408,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11413
12408
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11414
12409
|
status_message?: string | null;
|
|
11415
12410
|
updated_at?: string;
|
|
12411
|
+
webhook_config?: string | number | boolean | {
|
|
12412
|
+
[key: string]: unknown;
|
|
12413
|
+
} | Array<unknown> | null;
|
|
12414
|
+
webhook_configured_at?: string | null;
|
|
12415
|
+
webhook_identifier?: string | null;
|
|
11416
12416
|
}
|
|
11417
12417
|
namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
11418
12418
|
interface Settings {
|
|
@@ -11482,6 +12482,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11482
12482
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11483
12483
|
status_message?: string | null;
|
|
11484
12484
|
updated_at?: string;
|
|
12485
|
+
webhook_config?: string | number | boolean | {
|
|
12486
|
+
[key: string]: unknown;
|
|
12487
|
+
} | Array<unknown> | null;
|
|
12488
|
+
webhook_configured_at?: string | null;
|
|
12489
|
+
webhook_identifier?: string | null;
|
|
11485
12490
|
}
|
|
11486
12491
|
namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
11487
12492
|
interface Settings {
|
|
@@ -11551,6 +12556,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11551
12556
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11552
12557
|
status_message?: string | null;
|
|
11553
12558
|
updated_at?: string;
|
|
12559
|
+
webhook_config?: string | number | boolean | {
|
|
12560
|
+
[key: string]: unknown;
|
|
12561
|
+
} | Array<unknown> | null;
|
|
12562
|
+
webhook_configured_at?: string | null;
|
|
12563
|
+
webhook_identifier?: string | null;
|
|
11554
12564
|
}
|
|
11555
12565
|
namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
11556
12566
|
interface Settings {
|
|
@@ -11620,6 +12630,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11620
12630
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11621
12631
|
status_message?: string | null;
|
|
11622
12632
|
updated_at?: string;
|
|
12633
|
+
webhook_config?: string | number | boolean | {
|
|
12634
|
+
[key: string]: unknown;
|
|
12635
|
+
} | Array<unknown> | null;
|
|
12636
|
+
webhook_configured_at?: string | null;
|
|
12637
|
+
webhook_identifier?: string | null;
|
|
11623
12638
|
}
|
|
11624
12639
|
namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
11625
12640
|
interface Settings {
|
|
@@ -11689,6 +12704,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11689
12704
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11690
12705
|
status_message?: string | null;
|
|
11691
12706
|
updated_at?: string;
|
|
12707
|
+
webhook_config?: string | number | boolean | {
|
|
12708
|
+
[key: string]: unknown;
|
|
12709
|
+
} | Array<unknown> | null;
|
|
12710
|
+
webhook_configured_at?: string | null;
|
|
12711
|
+
webhook_identifier?: string | null;
|
|
11692
12712
|
}
|
|
11693
12713
|
namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
11694
12714
|
interface Settings {
|
|
@@ -11734,6 +12754,80 @@ export declare namespace ListConnectionsResponse {
|
|
|
11734
12754
|
}
|
|
11735
12755
|
}
|
|
11736
12756
|
}
|
|
12757
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
12758
|
+
connector_name: 'gitlab-source-control';
|
|
12759
|
+
id?: string;
|
|
12760
|
+
connector?: TopLevelAPI.Connector;
|
|
12761
|
+
connector_config_id?: string | null;
|
|
12762
|
+
created_at?: string;
|
|
12763
|
+
customer_id?: string | null;
|
|
12764
|
+
disabled?: boolean | null;
|
|
12765
|
+
display_name?: string | null;
|
|
12766
|
+
environment?: 'production' | 'development';
|
|
12767
|
+
integration?: TopLevelAPI.Integration;
|
|
12768
|
+
integration_id?: string | null;
|
|
12769
|
+
/**
|
|
12770
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
12771
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
12772
|
+
* updates this object will be shallowly merged
|
|
12773
|
+
*/
|
|
12774
|
+
metadata?: {
|
|
12775
|
+
[key: string]: unknown;
|
|
12776
|
+
} | null;
|
|
12777
|
+
settings?: ConnectorGitlabSourceControlDiscriminatedConnectionSettings.Settings;
|
|
12778
|
+
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12779
|
+
status_message?: string | null;
|
|
12780
|
+
updated_at?: string;
|
|
12781
|
+
webhook_config?: string | number | boolean | {
|
|
12782
|
+
[key: string]: unknown;
|
|
12783
|
+
} | Array<unknown> | null;
|
|
12784
|
+
webhook_configured_at?: string | null;
|
|
12785
|
+
webhook_identifier?: string | null;
|
|
12786
|
+
}
|
|
12787
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
12788
|
+
interface Settings {
|
|
12789
|
+
oauth: Settings.OAuth;
|
|
12790
|
+
/**
|
|
12791
|
+
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
12792
|
+
* for backward compatibility until we remove the oauth field
|
|
12793
|
+
*/
|
|
12794
|
+
access_token?: string;
|
|
12795
|
+
}
|
|
12796
|
+
namespace Settings {
|
|
12797
|
+
interface OAuth {
|
|
12798
|
+
created_at?: string;
|
|
12799
|
+
/**
|
|
12800
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
12801
|
+
*/
|
|
12802
|
+
credentials?: OAuth.Credentials;
|
|
12803
|
+
last_fetched_at?: string;
|
|
12804
|
+
metadata?: {
|
|
12805
|
+
[key: string]: unknown;
|
|
12806
|
+
} | null;
|
|
12807
|
+
updated_at?: string;
|
|
12808
|
+
}
|
|
12809
|
+
namespace OAuth {
|
|
12810
|
+
/**
|
|
12811
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
12812
|
+
*/
|
|
12813
|
+
interface Credentials {
|
|
12814
|
+
access_token: string;
|
|
12815
|
+
/**
|
|
12816
|
+
* Client ID used for the connection
|
|
12817
|
+
*/
|
|
12818
|
+
client_id?: string;
|
|
12819
|
+
expires_at?: string;
|
|
12820
|
+
expires_in?: number;
|
|
12821
|
+
raw?: {
|
|
12822
|
+
[key: string]: unknown;
|
|
12823
|
+
};
|
|
12824
|
+
refresh_token?: string;
|
|
12825
|
+
scope?: string;
|
|
12826
|
+
token_type?: string;
|
|
12827
|
+
}
|
|
12828
|
+
}
|
|
12829
|
+
}
|
|
12830
|
+
}
|
|
11737
12831
|
interface ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
11738
12832
|
connector_name: 'google-calendar';
|
|
11739
12833
|
id?: string;
|
|
@@ -11758,6 +12852,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11758
12852
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11759
12853
|
status_message?: string | null;
|
|
11760
12854
|
updated_at?: string;
|
|
12855
|
+
webhook_config?: string | number | boolean | {
|
|
12856
|
+
[key: string]: unknown;
|
|
12857
|
+
} | Array<unknown> | null;
|
|
12858
|
+
webhook_configured_at?: string | null;
|
|
12859
|
+
webhook_identifier?: string | null;
|
|
11761
12860
|
}
|
|
11762
12861
|
namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
11763
12862
|
interface Settings {
|
|
@@ -11827,6 +12926,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11827
12926
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11828
12927
|
status_message?: string | null;
|
|
11829
12928
|
updated_at?: string;
|
|
12929
|
+
webhook_config?: string | number | boolean | {
|
|
12930
|
+
[key: string]: unknown;
|
|
12931
|
+
} | Array<unknown> | null;
|
|
12932
|
+
webhook_configured_at?: string | null;
|
|
12933
|
+
webhook_identifier?: string | null;
|
|
11830
12934
|
}
|
|
11831
12935
|
namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
11832
12936
|
interface Settings {
|
|
@@ -11896,6 +13000,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11896
13000
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11897
13001
|
status_message?: string | null;
|
|
11898
13002
|
updated_at?: string;
|
|
13003
|
+
webhook_config?: string | number | boolean | {
|
|
13004
|
+
[key: string]: unknown;
|
|
13005
|
+
} | Array<unknown> | null;
|
|
13006
|
+
webhook_configured_at?: string | null;
|
|
13007
|
+
webhook_identifier?: string | null;
|
|
11899
13008
|
}
|
|
11900
13009
|
namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
11901
13010
|
interface Settings {
|
|
@@ -11965,6 +13074,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
11965
13074
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
11966
13075
|
status_message?: string | null;
|
|
11967
13076
|
updated_at?: string;
|
|
13077
|
+
webhook_config?: string | number | boolean | {
|
|
13078
|
+
[key: string]: unknown;
|
|
13079
|
+
} | Array<unknown> | null;
|
|
13080
|
+
webhook_configured_at?: string | null;
|
|
13081
|
+
webhook_identifier?: string | null;
|
|
11968
13082
|
}
|
|
11969
13083
|
namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
11970
13084
|
interface Settings {
|
|
@@ -12034,6 +13148,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12034
13148
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12035
13149
|
status_message?: string | null;
|
|
12036
13150
|
updated_at?: string;
|
|
13151
|
+
webhook_config?: string | number | boolean | {
|
|
13152
|
+
[key: string]: unknown;
|
|
13153
|
+
} | Array<unknown> | null;
|
|
13154
|
+
webhook_configured_at?: string | null;
|
|
13155
|
+
webhook_identifier?: string | null;
|
|
12037
13156
|
}
|
|
12038
13157
|
namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
12039
13158
|
interface Settings {
|
|
@@ -12103,6 +13222,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12103
13222
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12104
13223
|
status_message?: string | null;
|
|
12105
13224
|
updated_at?: string;
|
|
13225
|
+
webhook_config?: string | number | boolean | {
|
|
13226
|
+
[key: string]: unknown;
|
|
13227
|
+
} | Array<unknown> | null;
|
|
13228
|
+
webhook_configured_at?: string | null;
|
|
13229
|
+
webhook_identifier?: string | null;
|
|
12106
13230
|
}
|
|
12107
13231
|
namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
12108
13232
|
interface Settings {
|
|
@@ -12172,6 +13296,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12172
13296
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12173
13297
|
status_message?: string | null;
|
|
12174
13298
|
updated_at?: string;
|
|
13299
|
+
webhook_config?: string | number | boolean | {
|
|
13300
|
+
[key: string]: unknown;
|
|
13301
|
+
} | Array<unknown> | null;
|
|
13302
|
+
webhook_configured_at?: string | null;
|
|
13303
|
+
webhook_identifier?: string | null;
|
|
12175
13304
|
}
|
|
12176
13305
|
namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
12177
13306
|
interface Settings {
|
|
@@ -12241,6 +13370,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12241
13370
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12242
13371
|
status_message?: string | null;
|
|
12243
13372
|
updated_at?: string;
|
|
13373
|
+
webhook_config?: string | number | boolean | {
|
|
13374
|
+
[key: string]: unknown;
|
|
13375
|
+
} | Array<unknown> | null;
|
|
13376
|
+
webhook_configured_at?: string | null;
|
|
13377
|
+
webhook_identifier?: string | null;
|
|
12244
13378
|
}
|
|
12245
13379
|
namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
12246
13380
|
interface Settings {
|
|
@@ -12310,6 +13444,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12310
13444
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12311
13445
|
status_message?: string | null;
|
|
12312
13446
|
updated_at?: string;
|
|
13447
|
+
webhook_config?: string | number | boolean | {
|
|
13448
|
+
[key: string]: unknown;
|
|
13449
|
+
} | Array<unknown> | null;
|
|
13450
|
+
webhook_configured_at?: string | null;
|
|
13451
|
+
webhook_identifier?: string | null;
|
|
12313
13452
|
}
|
|
12314
13453
|
namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
12315
13454
|
interface Settings {
|
|
@@ -12383,6 +13522,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12383
13522
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12384
13523
|
status_message?: string | null;
|
|
12385
13524
|
updated_at?: string;
|
|
13525
|
+
webhook_config?: string | number | boolean | {
|
|
13526
|
+
[key: string]: unknown;
|
|
13527
|
+
} | Array<unknown> | null;
|
|
13528
|
+
webhook_configured_at?: string | null;
|
|
13529
|
+
webhook_identifier?: string | null;
|
|
12386
13530
|
}
|
|
12387
13531
|
namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
12388
13532
|
interface Settings {
|
|
@@ -12452,6 +13596,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12452
13596
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12453
13597
|
status_message?: string | null;
|
|
12454
13598
|
updated_at?: string;
|
|
13599
|
+
webhook_config?: string | number | boolean | {
|
|
13600
|
+
[key: string]: unknown;
|
|
13601
|
+
} | Array<unknown> | null;
|
|
13602
|
+
webhook_configured_at?: string | null;
|
|
13603
|
+
webhook_identifier?: string | null;
|
|
12455
13604
|
}
|
|
12456
13605
|
namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
12457
13606
|
interface Settings {
|
|
@@ -12521,6 +13670,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12521
13670
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12522
13671
|
status_message?: string | null;
|
|
12523
13672
|
updated_at?: string;
|
|
13673
|
+
webhook_config?: string | number | boolean | {
|
|
13674
|
+
[key: string]: unknown;
|
|
13675
|
+
} | Array<unknown> | null;
|
|
13676
|
+
webhook_configured_at?: string | null;
|
|
13677
|
+
webhook_identifier?: string | null;
|
|
12524
13678
|
}
|
|
12525
13679
|
namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
12526
13680
|
interface Settings {
|
|
@@ -12590,6 +13744,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12590
13744
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12591
13745
|
status_message?: string | null;
|
|
12592
13746
|
updated_at?: string;
|
|
13747
|
+
webhook_config?: string | number | boolean | {
|
|
13748
|
+
[key: string]: unknown;
|
|
13749
|
+
} | Array<unknown> | null;
|
|
13750
|
+
webhook_configured_at?: string | null;
|
|
13751
|
+
webhook_identifier?: string | null;
|
|
12593
13752
|
}
|
|
12594
13753
|
namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
12595
13754
|
interface Settings {
|
|
@@ -12659,6 +13818,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12659
13818
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12660
13819
|
status_message?: string | null;
|
|
12661
13820
|
updated_at?: string;
|
|
13821
|
+
webhook_config?: string | number | boolean | {
|
|
13822
|
+
[key: string]: unknown;
|
|
13823
|
+
} | Array<unknown> | null;
|
|
13824
|
+
webhook_configured_at?: string | null;
|
|
13825
|
+
webhook_identifier?: string | null;
|
|
12662
13826
|
}
|
|
12663
13827
|
namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
12664
13828
|
interface Settings {
|
|
@@ -12728,6 +13892,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12728
13892
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12729
13893
|
status_message?: string | null;
|
|
12730
13894
|
updated_at?: string;
|
|
13895
|
+
webhook_config?: string | number | boolean | {
|
|
13896
|
+
[key: string]: unknown;
|
|
13897
|
+
} | Array<unknown> | null;
|
|
13898
|
+
webhook_configured_at?: string | null;
|
|
13899
|
+
webhook_identifier?: string | null;
|
|
12731
13900
|
}
|
|
12732
13901
|
namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
12733
13902
|
interface Settings {
|
|
@@ -12801,6 +13970,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12801
13970
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12802
13971
|
status_message?: string | null;
|
|
12803
13972
|
updated_at?: string;
|
|
13973
|
+
webhook_config?: string | number | boolean | {
|
|
13974
|
+
[key: string]: unknown;
|
|
13975
|
+
} | Array<unknown> | null;
|
|
13976
|
+
webhook_configured_at?: string | null;
|
|
13977
|
+
webhook_identifier?: string | null;
|
|
12804
13978
|
}
|
|
12805
13979
|
namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
12806
13980
|
interface Settings {
|
|
@@ -12870,6 +14044,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12870
14044
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12871
14045
|
status_message?: string | null;
|
|
12872
14046
|
updated_at?: string;
|
|
14047
|
+
webhook_config?: string | number | boolean | {
|
|
14048
|
+
[key: string]: unknown;
|
|
14049
|
+
} | Array<unknown> | null;
|
|
14050
|
+
webhook_configured_at?: string | null;
|
|
14051
|
+
webhook_identifier?: string | null;
|
|
12873
14052
|
}
|
|
12874
14053
|
namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
12875
14054
|
interface Settings {
|
|
@@ -12939,6 +14118,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
12939
14118
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
12940
14119
|
status_message?: string | null;
|
|
12941
14120
|
updated_at?: string;
|
|
14121
|
+
webhook_config?: string | number | boolean | {
|
|
14122
|
+
[key: string]: unknown;
|
|
14123
|
+
} | Array<unknown> | null;
|
|
14124
|
+
webhook_configured_at?: string | null;
|
|
14125
|
+
webhook_identifier?: string | null;
|
|
12942
14126
|
}
|
|
12943
14127
|
namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
12944
14128
|
interface Settings {
|
|
@@ -13008,6 +14192,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13008
14192
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13009
14193
|
status_message?: string | null;
|
|
13010
14194
|
updated_at?: string;
|
|
14195
|
+
webhook_config?: string | number | boolean | {
|
|
14196
|
+
[key: string]: unknown;
|
|
14197
|
+
} | Array<unknown> | null;
|
|
14198
|
+
webhook_configured_at?: string | null;
|
|
14199
|
+
webhook_identifier?: string | null;
|
|
13011
14200
|
}
|
|
13012
14201
|
namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
13013
14202
|
interface Settings {
|
|
@@ -13082,6 +14271,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13082
14271
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13083
14272
|
status_message?: string | null;
|
|
13084
14273
|
updated_at?: string;
|
|
14274
|
+
webhook_config?: string | number | boolean | {
|
|
14275
|
+
[key: string]: unknown;
|
|
14276
|
+
} | Array<unknown> | null;
|
|
14277
|
+
webhook_configured_at?: string | null;
|
|
14278
|
+
webhook_identifier?: string | null;
|
|
13085
14279
|
}
|
|
13086
14280
|
namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
13087
14281
|
interface Settings {
|
|
@@ -13151,6 +14345,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13151
14345
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13152
14346
|
status_message?: string | null;
|
|
13153
14347
|
updated_at?: string;
|
|
14348
|
+
webhook_config?: string | number | boolean | {
|
|
14349
|
+
[key: string]: unknown;
|
|
14350
|
+
} | Array<unknown> | null;
|
|
14351
|
+
webhook_configured_at?: string | null;
|
|
14352
|
+
webhook_identifier?: string | null;
|
|
13154
14353
|
}
|
|
13155
14354
|
namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
13156
14355
|
interface Settings {
|
|
@@ -13220,6 +14419,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13220
14419
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13221
14420
|
status_message?: string | null;
|
|
13222
14421
|
updated_at?: string;
|
|
14422
|
+
webhook_config?: string | number | boolean | {
|
|
14423
|
+
[key: string]: unknown;
|
|
14424
|
+
} | Array<unknown> | null;
|
|
14425
|
+
webhook_configured_at?: string | null;
|
|
14426
|
+
webhook_identifier?: string | null;
|
|
13223
14427
|
}
|
|
13224
14428
|
namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
13225
14429
|
interface Settings {
|
|
@@ -13293,6 +14497,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13293
14497
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13294
14498
|
status_message?: string | null;
|
|
13295
14499
|
updated_at?: string;
|
|
14500
|
+
webhook_config?: string | number | boolean | {
|
|
14501
|
+
[key: string]: unknown;
|
|
14502
|
+
} | Array<unknown> | null;
|
|
14503
|
+
webhook_configured_at?: string | null;
|
|
14504
|
+
webhook_identifier?: string | null;
|
|
13296
14505
|
}
|
|
13297
14506
|
namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
13298
14507
|
interface Settings {
|
|
@@ -13362,12 +14571,75 @@ export declare namespace ListConnectionsResponse {
|
|
|
13362
14571
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13363
14572
|
status_message?: string | null;
|
|
13364
14573
|
updated_at?: string;
|
|
14574
|
+
webhook_config?: string | number | boolean | {
|
|
14575
|
+
[key: string]: unknown;
|
|
14576
|
+
} | Array<unknown> | null;
|
|
14577
|
+
webhook_configured_at?: string | null;
|
|
14578
|
+
webhook_identifier?: string | null;
|
|
13365
14579
|
}
|
|
13366
14580
|
namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
13367
14581
|
interface Settings {
|
|
13368
14582
|
api_key: string;
|
|
13369
14583
|
}
|
|
13370
14584
|
}
|
|
14585
|
+
interface ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
14586
|
+
connector_name: 'custom-mcp';
|
|
14587
|
+
id?: string;
|
|
14588
|
+
connector?: TopLevelAPI.Connector;
|
|
14589
|
+
connector_config_id?: string | null;
|
|
14590
|
+
created_at?: string;
|
|
14591
|
+
customer_id?: string | null;
|
|
14592
|
+
disabled?: boolean | null;
|
|
14593
|
+
display_name?: string | null;
|
|
14594
|
+
environment?: 'production' | 'development';
|
|
14595
|
+
integration?: TopLevelAPI.Integration;
|
|
14596
|
+
integration_id?: string | null;
|
|
14597
|
+
/**
|
|
14598
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
14599
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
14600
|
+
* updates this object will be shallowly merged
|
|
14601
|
+
*/
|
|
14602
|
+
metadata?: {
|
|
14603
|
+
[key: string]: unknown;
|
|
14604
|
+
} | null;
|
|
14605
|
+
settings?: ConnectorCustomMcpDiscriminatedConnectionSettings.Settings;
|
|
14606
|
+
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
14607
|
+
status_message?: string | null;
|
|
14608
|
+
updated_at?: string;
|
|
14609
|
+
webhook_config?: string | number | boolean | {
|
|
14610
|
+
[key: string]: unknown;
|
|
14611
|
+
} | Array<unknown> | null;
|
|
14612
|
+
webhook_configured_at?: string | null;
|
|
14613
|
+
webhook_identifier?: string | null;
|
|
14614
|
+
}
|
|
14615
|
+
namespace ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
14616
|
+
interface Settings {
|
|
14617
|
+
/**
|
|
14618
|
+
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
14619
|
+
*/
|
|
14620
|
+
base_url: string;
|
|
14621
|
+
/**
|
|
14622
|
+
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
14623
|
+
*/
|
|
14624
|
+
display_name: string;
|
|
14625
|
+
/**
|
|
14626
|
+
* Custom headers to include with every request
|
|
14627
|
+
*/
|
|
14628
|
+
headers: Array<Settings.Header>;
|
|
14629
|
+
}
|
|
14630
|
+
namespace Settings {
|
|
14631
|
+
interface Header {
|
|
14632
|
+
/**
|
|
14633
|
+
* Header name (e.g., Authorization, X-API-Key)
|
|
14634
|
+
*/
|
|
14635
|
+
key: string;
|
|
14636
|
+
/**
|
|
14637
|
+
* Header value (securely stored)
|
|
14638
|
+
*/
|
|
14639
|
+
value: string;
|
|
14640
|
+
}
|
|
14641
|
+
}
|
|
14642
|
+
}
|
|
13371
14643
|
interface ConnectorPlaidDiscriminatedConnectionSettings {
|
|
13372
14644
|
connector_name: 'plaid';
|
|
13373
14645
|
id?: string;
|
|
@@ -13392,6 +14664,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13392
14664
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13393
14665
|
status_message?: string | null;
|
|
13394
14666
|
updated_at?: string;
|
|
14667
|
+
webhook_config?: string | number | boolean | {
|
|
14668
|
+
[key: string]: unknown;
|
|
14669
|
+
} | Array<unknown> | null;
|
|
14670
|
+
webhook_configured_at?: string | null;
|
|
14671
|
+
webhook_identifier?: string | null;
|
|
13395
14672
|
}
|
|
13396
14673
|
namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
13397
14674
|
interface Settings {
|
|
@@ -13427,6 +14704,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13427
14704
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13428
14705
|
status_message?: string | null;
|
|
13429
14706
|
updated_at?: string;
|
|
14707
|
+
webhook_config?: string | number | boolean | {
|
|
14708
|
+
[key: string]: unknown;
|
|
14709
|
+
} | Array<unknown> | null;
|
|
14710
|
+
webhook_configured_at?: string | null;
|
|
14711
|
+
webhook_identifier?: string | null;
|
|
13430
14712
|
}
|
|
13431
14713
|
namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
13432
14714
|
interface Settings {
|
|
@@ -13457,6 +14739,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13457
14739
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13458
14740
|
status_message?: string | null;
|
|
13459
14741
|
updated_at?: string;
|
|
14742
|
+
webhook_config?: string | number | boolean | {
|
|
14743
|
+
[key: string]: unknown;
|
|
14744
|
+
} | Array<unknown> | null;
|
|
14745
|
+
webhook_configured_at?: string | null;
|
|
14746
|
+
webhook_identifier?: string | null;
|
|
13460
14747
|
}
|
|
13461
14748
|
namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
13462
14749
|
interface Settings {
|
|
@@ -13491,6 +14778,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13491
14778
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13492
14779
|
status_message?: string | null;
|
|
13493
14780
|
updated_at?: string;
|
|
14781
|
+
webhook_config?: string | number | boolean | {
|
|
14782
|
+
[key: string]: unknown;
|
|
14783
|
+
} | Array<unknown> | null;
|
|
14784
|
+
webhook_configured_at?: string | null;
|
|
14785
|
+
webhook_identifier?: string | null;
|
|
13494
14786
|
}
|
|
13495
14787
|
namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
13496
14788
|
interface Settings {
|
|
@@ -13525,6 +14817,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13525
14817
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13526
14818
|
status_message?: string | null;
|
|
13527
14819
|
updated_at?: string;
|
|
14820
|
+
webhook_config?: string | number | boolean | {
|
|
14821
|
+
[key: string]: unknown;
|
|
14822
|
+
} | Array<unknown> | null;
|
|
14823
|
+
webhook_configured_at?: string | null;
|
|
14824
|
+
webhook_identifier?: string | null;
|
|
13528
14825
|
}
|
|
13529
14826
|
namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
13530
14827
|
interface Settings {
|
|
@@ -13558,6 +14855,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13558
14855
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13559
14856
|
status_message?: string | null;
|
|
13560
14857
|
updated_at?: string;
|
|
14858
|
+
webhook_config?: string | number | boolean | {
|
|
14859
|
+
[key: string]: unknown;
|
|
14860
|
+
} | Array<unknown> | null;
|
|
14861
|
+
webhook_configured_at?: string | null;
|
|
14862
|
+
webhook_identifier?: string | null;
|
|
13561
14863
|
}
|
|
13562
14864
|
namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
13563
14865
|
interface Settings {
|
|
@@ -13702,6 +15004,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13702
15004
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13703
15005
|
status_message?: string | null;
|
|
13704
15006
|
updated_at?: string;
|
|
15007
|
+
webhook_config?: string | number | boolean | {
|
|
15008
|
+
[key: string]: unknown;
|
|
15009
|
+
} | Array<unknown> | null;
|
|
15010
|
+
webhook_configured_at?: string | null;
|
|
15011
|
+
webhook_identifier?: string | null;
|
|
13705
15012
|
}
|
|
13706
15013
|
namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
13707
15014
|
interface Settings {
|
|
@@ -13771,6 +15078,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13771
15078
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13772
15079
|
status_message?: string | null;
|
|
13773
15080
|
updated_at?: string;
|
|
15081
|
+
webhook_config?: string | number | boolean | {
|
|
15082
|
+
[key: string]: unknown;
|
|
15083
|
+
} | Array<unknown> | null;
|
|
15084
|
+
webhook_configured_at?: string | null;
|
|
15085
|
+
webhook_identifier?: string | null;
|
|
13774
15086
|
}
|
|
13775
15087
|
namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
13776
15088
|
interface Settings {
|
|
@@ -13840,6 +15152,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13840
15152
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13841
15153
|
status_message?: string | null;
|
|
13842
15154
|
updated_at?: string;
|
|
15155
|
+
webhook_config?: string | number | boolean | {
|
|
15156
|
+
[key: string]: unknown;
|
|
15157
|
+
} | Array<unknown> | null;
|
|
15158
|
+
webhook_configured_at?: string | null;
|
|
15159
|
+
webhook_identifier?: string | null;
|
|
13843
15160
|
}
|
|
13844
15161
|
namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
13845
15162
|
interface Settings {
|
|
@@ -13876,6 +15193,11 @@ export declare namespace ListConnectionsResponse {
|
|
|
13876
15193
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
13877
15194
|
status_message?: string | null;
|
|
13878
15195
|
updated_at?: string;
|
|
15196
|
+
webhook_config?: string | number | boolean | {
|
|
15197
|
+
[key: string]: unknown;
|
|
15198
|
+
} | Array<unknown> | null;
|
|
15199
|
+
webhook_configured_at?: string | null;
|
|
15200
|
+
webhook_identifier?: string | null;
|
|
13879
15201
|
}
|
|
13880
15202
|
namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
13881
15203
|
interface Settings {
|
|
@@ -13885,7 +15207,7 @@ export declare namespace ListConnectionsResponse {
|
|
|
13885
15207
|
}
|
|
13886
15208
|
}
|
|
13887
15209
|
}
|
|
13888
|
-
export type ListConnectorConfigsResponse = ListConnectorConfigsResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorAgentmailDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorAsanaDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorBigqueryDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorBitbucketDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorBoxDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorCalendlyDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorClickupDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorConfluenceDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorDatabricksDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorDiscordDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorDropboxDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorFigmaDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGitHubDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorHubspotDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorInstagramDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorJiraDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorLinearDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorMondayDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorNotionDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorOnedriveDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorOutlookDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSalesforceDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSharepointDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSlackDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSpotifyDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorYoutubeDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorZendeskDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorZoomDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorApolloDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorPlaidDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorPostgresDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorResendDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSendgridDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorStripeDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorTwilioDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
15210
|
+
export type ListConnectorConfigsResponse = ListConnectorConfigsResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorAgentmailDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorAsanaDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorBigqueryDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorBitbucketDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorBoxDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorCalendlyDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorClickupDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorConfluenceDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorDatabricksDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorDiscordDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorDropboxDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorFigmaDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGitHubDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGitlabSourceControlDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorHubspotDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorInstagramDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorJiraDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorLinearDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorMondayDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorNotionDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorOnedriveDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorOutlookDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSalesforceDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSharepointDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSlackDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSpotifyDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorYoutubeDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorZendeskDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorZoomDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorApolloDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorCustomMcpDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorPlaidDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorPostgresDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorResendDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSendgridDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorStripeDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorTwilioDiscriminatedConnectorConfig | ListConnectorConfigsResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
13889
15211
|
export declare namespace ListConnectorConfigsResponse {
|
|
13890
15212
|
interface ConnectorAcmeApikeyDiscriminatedConnectorConfig {
|
|
13891
15213
|
/**
|
|
@@ -14547,7 +15869,52 @@ export declare namespace ListConnectorConfigsResponse {
|
|
|
14547
15869
|
org_id?: string;
|
|
14548
15870
|
updated_at?: string;
|
|
14549
15871
|
}
|
|
14550
|
-
namespace ConnectorGitHubSourceControlDiscriminatedConnectorConfig {
|
|
15872
|
+
namespace ConnectorGitHubSourceControlDiscriminatedConnectorConfig {
|
|
15873
|
+
interface Config {
|
|
15874
|
+
/**
|
|
15875
|
+
* Base oauth configuration for the connector
|
|
15876
|
+
*/
|
|
15877
|
+
oauth?: Config.OAuth | null;
|
|
15878
|
+
}
|
|
15879
|
+
namespace Config {
|
|
15880
|
+
/**
|
|
15881
|
+
* Base oauth configuration for the connector
|
|
15882
|
+
*/
|
|
15883
|
+
interface OAuth {
|
|
15884
|
+
client_id?: string | null;
|
|
15885
|
+
client_secret?: string | null;
|
|
15886
|
+
/**
|
|
15887
|
+
* Custom redirect URI
|
|
15888
|
+
*/
|
|
15889
|
+
redirect_uri?: string | null;
|
|
15890
|
+
scopes?: Array<string> | null;
|
|
15891
|
+
}
|
|
15892
|
+
}
|
|
15893
|
+
}
|
|
15894
|
+
interface ConnectorGitHubDiscriminatedConnectorConfig {
|
|
15895
|
+
config: ConnectorGitHubDiscriminatedConnectorConfig.Config;
|
|
15896
|
+
connector_name: 'github';
|
|
15897
|
+
id?: string;
|
|
15898
|
+
connection_count?: number;
|
|
15899
|
+
connector?: TopLevelAPI.Connector;
|
|
15900
|
+
created_at?: string;
|
|
15901
|
+
disabled?: boolean | null;
|
|
15902
|
+
display_name?: string | null;
|
|
15903
|
+
integrations?: {
|
|
15904
|
+
[key: string]: TopLevelAPI.Integration;
|
|
15905
|
+
};
|
|
15906
|
+
/**
|
|
15907
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
15908
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
15909
|
+
* updates this object will be shallowly merged
|
|
15910
|
+
*/
|
|
15911
|
+
metadata?: {
|
|
15912
|
+
[key: string]: unknown;
|
|
15913
|
+
} | null;
|
|
15914
|
+
org_id?: string;
|
|
15915
|
+
updated_at?: string;
|
|
15916
|
+
}
|
|
15917
|
+
namespace ConnectorGitHubDiscriminatedConnectorConfig {
|
|
14551
15918
|
interface Config {
|
|
14552
15919
|
/**
|
|
14553
15920
|
* Base oauth configuration for the connector
|
|
@@ -14569,9 +15936,9 @@ export declare namespace ListConnectorConfigsResponse {
|
|
|
14569
15936
|
}
|
|
14570
15937
|
}
|
|
14571
15938
|
}
|
|
14572
|
-
interface
|
|
14573
|
-
config:
|
|
14574
|
-
connector_name: '
|
|
15939
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
15940
|
+
config: ConnectorGitlabSourceControlDiscriminatedConnectorConfig.Config;
|
|
15941
|
+
connector_name: 'gitlab-source-control';
|
|
14575
15942
|
id?: string;
|
|
14576
15943
|
connection_count?: number;
|
|
14577
15944
|
connector?: TopLevelAPI.Connector;
|
|
@@ -14592,7 +15959,7 @@ export declare namespace ListConnectorConfigsResponse {
|
|
|
14592
15959
|
org_id?: string;
|
|
14593
15960
|
updated_at?: string;
|
|
14594
15961
|
}
|
|
14595
|
-
namespace
|
|
15962
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
14596
15963
|
interface Config {
|
|
14597
15964
|
/**
|
|
14598
15965
|
* Base oauth configuration for the connector
|
|
@@ -15672,6 +17039,29 @@ export declare namespace ListConnectorConfigsResponse {
|
|
|
15672
17039
|
org_id?: string;
|
|
15673
17040
|
updated_at?: string;
|
|
15674
17041
|
}
|
|
17042
|
+
interface ConnectorCustomMcpDiscriminatedConnectorConfig {
|
|
17043
|
+
config: unknown;
|
|
17044
|
+
connector_name: 'custom-mcp';
|
|
17045
|
+
id?: string;
|
|
17046
|
+
connection_count?: number;
|
|
17047
|
+
connector?: TopLevelAPI.Connector;
|
|
17048
|
+
created_at?: string;
|
|
17049
|
+
disabled?: boolean | null;
|
|
17050
|
+
display_name?: string | null;
|
|
17051
|
+
integrations?: {
|
|
17052
|
+
[key: string]: TopLevelAPI.Integration;
|
|
17053
|
+
};
|
|
17054
|
+
/**
|
|
17055
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
17056
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
17057
|
+
* updates this object will be shallowly merged
|
|
17058
|
+
*/
|
|
17059
|
+
metadata?: {
|
|
17060
|
+
[key: string]: unknown;
|
|
17061
|
+
} | null;
|
|
17062
|
+
org_id?: string;
|
|
17063
|
+
updated_at?: string;
|
|
17064
|
+
}
|
|
15675
17065
|
interface ConnectorPlaidDiscriminatedConnectorConfig {
|
|
15676
17066
|
config: ConnectorPlaidDiscriminatedConnectorConfig.Config;
|
|
15677
17067
|
connector_name: 'plaid';
|
|
@@ -16001,7 +17391,7 @@ export declare namespace ListConnectorConfigsResponse {
|
|
|
16001
17391
|
export interface ListConnectorsResponse extends Connector {
|
|
16002
17392
|
integrations?: Array<Integration>;
|
|
16003
17393
|
}
|
|
16004
|
-
export type ListConnnectorConfigsResponse = ListConnnectorConfigsResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorAgentmailDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorAsanaDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorBigqueryDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorBitbucketDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorBoxDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorCalendlyDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorClickupDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorConfluenceDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorDatabricksDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorDiscordDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorDropboxDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorFigmaDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGitHubDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorHubspotDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorInstagramDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorJiraDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorLinearDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorMondayDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorNotionDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorOnedriveDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorOutlookDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSalesforceDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSharepointDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSlackDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSpotifyDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorYoutubeDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorZendeskDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorZoomDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorApolloDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorPlaidDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorPostgresDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorResendDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSendgridDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorStripeDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorTwilioDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
17394
|
+
export type ListConnnectorConfigsResponse = ListConnnectorConfigsResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorAgentmailDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorAsanaDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorBigqueryDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorBitbucketDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorBoxDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorCalendlyDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorClickupDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorConfluenceDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorDatabricksDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorDiscordDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorDropboxDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorFigmaDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGitHubDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGitlabSourceControlDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorHubspotDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorInstagramDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorJiraDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorLinearDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorMondayDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorNotionDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorOnedriveDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorOutlookDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSalesforceDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSharepointDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSlackDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSpotifyDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorYoutubeDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorZendeskDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorZoomDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorApolloDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorCustomMcpDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorPlaidDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorPostgresDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorResendDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSendgridDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorStripeDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorTwilioDiscriminatedConnectorConfig | ListConnnectorConfigsResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
16005
17395
|
export declare namespace ListConnnectorConfigsResponse {
|
|
16006
17396
|
interface ConnectorAcmeApikeyDiscriminatedConnectorConfig {
|
|
16007
17397
|
/**
|
|
@@ -16730,6 +18120,51 @@ export declare namespace ListConnnectorConfigsResponse {
|
|
|
16730
18120
|
}
|
|
16731
18121
|
}
|
|
16732
18122
|
}
|
|
18123
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
18124
|
+
config: ConnectorGitlabSourceControlDiscriminatedConnectorConfig.Config;
|
|
18125
|
+
connector_name: 'gitlab-source-control';
|
|
18126
|
+
id?: string;
|
|
18127
|
+
connection_count?: number;
|
|
18128
|
+
connector?: TopLevelAPI.Connector;
|
|
18129
|
+
created_at?: string;
|
|
18130
|
+
disabled?: boolean | null;
|
|
18131
|
+
display_name?: string | null;
|
|
18132
|
+
integrations?: {
|
|
18133
|
+
[key: string]: TopLevelAPI.Integration;
|
|
18134
|
+
};
|
|
18135
|
+
/**
|
|
18136
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
18137
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
18138
|
+
* updates this object will be shallowly merged
|
|
18139
|
+
*/
|
|
18140
|
+
metadata?: {
|
|
18141
|
+
[key: string]: unknown;
|
|
18142
|
+
} | null;
|
|
18143
|
+
org_id?: string;
|
|
18144
|
+
updated_at?: string;
|
|
18145
|
+
}
|
|
18146
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
18147
|
+
interface Config {
|
|
18148
|
+
/**
|
|
18149
|
+
* Base oauth configuration for the connector
|
|
18150
|
+
*/
|
|
18151
|
+
oauth?: Config.OAuth | null;
|
|
18152
|
+
}
|
|
18153
|
+
namespace Config {
|
|
18154
|
+
/**
|
|
18155
|
+
* Base oauth configuration for the connector
|
|
18156
|
+
*/
|
|
18157
|
+
interface OAuth {
|
|
18158
|
+
client_id?: string | null;
|
|
18159
|
+
client_secret?: string | null;
|
|
18160
|
+
/**
|
|
18161
|
+
* Custom redirect URI
|
|
18162
|
+
*/
|
|
18163
|
+
redirect_uri?: string | null;
|
|
18164
|
+
scopes?: Array<string> | null;
|
|
18165
|
+
}
|
|
18166
|
+
}
|
|
18167
|
+
}
|
|
16733
18168
|
interface ConnectorGoogleCalendarDiscriminatedConnectorConfig {
|
|
16734
18169
|
config: ConnectorGoogleCalendarDiscriminatedConnectorConfig.Config;
|
|
16735
18170
|
connector_name: 'google-calendar';
|
|
@@ -17788,6 +19223,29 @@ export declare namespace ListConnnectorConfigsResponse {
|
|
|
17788
19223
|
org_id?: string;
|
|
17789
19224
|
updated_at?: string;
|
|
17790
19225
|
}
|
|
19226
|
+
interface ConnectorCustomMcpDiscriminatedConnectorConfig {
|
|
19227
|
+
config: unknown;
|
|
19228
|
+
connector_name: 'custom-mcp';
|
|
19229
|
+
id?: string;
|
|
19230
|
+
connection_count?: number;
|
|
19231
|
+
connector?: TopLevelAPI.Connector;
|
|
19232
|
+
created_at?: string;
|
|
19233
|
+
disabled?: boolean | null;
|
|
19234
|
+
display_name?: string | null;
|
|
19235
|
+
integrations?: {
|
|
19236
|
+
[key: string]: TopLevelAPI.Integration;
|
|
19237
|
+
};
|
|
19238
|
+
/**
|
|
19239
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
19240
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
19241
|
+
* updates this object will be shallowly merged
|
|
19242
|
+
*/
|
|
19243
|
+
metadata?: {
|
|
19244
|
+
[key: string]: unknown;
|
|
19245
|
+
} | null;
|
|
19246
|
+
org_id?: string;
|
|
19247
|
+
updated_at?: string;
|
|
19248
|
+
}
|
|
17791
19249
|
interface ConnectorPlaidDiscriminatedConnectorConfig {
|
|
17792
19250
|
config: ConnectorPlaidDiscriminatedConnectorConfig.Config;
|
|
17793
19251
|
connector_name: 'plaid';
|
|
@@ -18135,6 +19593,8 @@ export declare namespace ListEventsResponse {
|
|
|
18135
19593
|
data: unknown;
|
|
18136
19594
|
name: 'debug.debug';
|
|
18137
19595
|
id?: string;
|
|
19596
|
+
connection_id?: string | null;
|
|
19597
|
+
connector_name?: string | null;
|
|
18138
19598
|
customer_id?: string | null;
|
|
18139
19599
|
org_id?: string | null;
|
|
18140
19600
|
prompt?: string | null;
|
|
@@ -18144,11 +19604,14 @@ export declare namespace ListEventsResponse {
|
|
|
18144
19604
|
} | Array<unknown> | null;
|
|
18145
19605
|
user_id?: string | null;
|
|
18146
19606
|
v?: string | null;
|
|
19607
|
+
webhook_name?: string | null;
|
|
18147
19608
|
}
|
|
18148
19609
|
interface UnionMember1 {
|
|
18149
19610
|
data: UnionMember1.Data;
|
|
18150
19611
|
name: 'webhook.received';
|
|
18151
19612
|
id?: string;
|
|
19613
|
+
connection_id?: string | null;
|
|
19614
|
+
connector_name?: string | null;
|
|
18152
19615
|
customer_id?: string | null;
|
|
18153
19616
|
org_id?: string | null;
|
|
18154
19617
|
prompt?: string | null;
|
|
@@ -18158,25 +19621,31 @@ export declare namespace ListEventsResponse {
|
|
|
18158
19621
|
} | Array<unknown> | null;
|
|
18159
19622
|
user_id?: string | null;
|
|
18160
19623
|
v?: string | null;
|
|
19624
|
+
webhook_name?: string | null;
|
|
18161
19625
|
}
|
|
18162
19626
|
namespace UnionMember1 {
|
|
18163
19627
|
interface Data {
|
|
19628
|
+
/**
|
|
19629
|
+
* Must start with 'conn\_'
|
|
19630
|
+
*/
|
|
19631
|
+
connection_id: string;
|
|
19632
|
+
event_model: string;
|
|
19633
|
+
event_name: string;
|
|
18164
19634
|
headers: {
|
|
18165
19635
|
[key: string]: unknown;
|
|
18166
19636
|
};
|
|
18167
|
-
|
|
18168
|
-
path: string;
|
|
18169
|
-
query: {
|
|
19637
|
+
payload: {
|
|
18170
19638
|
[key: string]: unknown;
|
|
18171
19639
|
};
|
|
18172
|
-
|
|
18173
|
-
body?: unknown;
|
|
19640
|
+
webhook_url: string;
|
|
18174
19641
|
}
|
|
18175
19642
|
}
|
|
18176
19643
|
interface UnionMember2 {
|
|
18177
19644
|
data: unknown;
|
|
18178
19645
|
name: 'db.user-created';
|
|
18179
19646
|
id?: string;
|
|
19647
|
+
connection_id?: string | null;
|
|
19648
|
+
connector_name?: string | null;
|
|
18180
19649
|
customer_id?: string | null;
|
|
18181
19650
|
org_id?: string | null;
|
|
18182
19651
|
prompt?: string | null;
|
|
@@ -18186,11 +19655,14 @@ export declare namespace ListEventsResponse {
|
|
|
18186
19655
|
} | Array<unknown> | null;
|
|
18187
19656
|
user_id?: string | null;
|
|
18188
19657
|
v?: string | null;
|
|
19658
|
+
webhook_name?: string | null;
|
|
18189
19659
|
}
|
|
18190
19660
|
interface UnionMember3 {
|
|
18191
19661
|
data: unknown;
|
|
18192
19662
|
name: 'db.user-deleted';
|
|
18193
19663
|
id?: string;
|
|
19664
|
+
connection_id?: string | null;
|
|
19665
|
+
connector_name?: string | null;
|
|
18194
19666
|
customer_id?: string | null;
|
|
18195
19667
|
org_id?: string | null;
|
|
18196
19668
|
prompt?: string | null;
|
|
@@ -18200,11 +19672,14 @@ export declare namespace ListEventsResponse {
|
|
|
18200
19672
|
} | Array<unknown> | null;
|
|
18201
19673
|
user_id?: string | null;
|
|
18202
19674
|
v?: string | null;
|
|
19675
|
+
webhook_name?: string | null;
|
|
18203
19676
|
}
|
|
18204
19677
|
interface UnionMember4 {
|
|
18205
19678
|
data: UnionMember4.Data;
|
|
18206
19679
|
name: 'db.connection-created';
|
|
18207
19680
|
id?: string;
|
|
19681
|
+
connection_id?: string | null;
|
|
19682
|
+
connector_name?: string | null;
|
|
18208
19683
|
customer_id?: string | null;
|
|
18209
19684
|
org_id?: string | null;
|
|
18210
19685
|
prompt?: string | null;
|
|
@@ -18214,6 +19689,7 @@ export declare namespace ListEventsResponse {
|
|
|
18214
19689
|
} | Array<unknown> | null;
|
|
18215
19690
|
user_id?: string | null;
|
|
18216
19691
|
v?: string | null;
|
|
19692
|
+
webhook_name?: string | null;
|
|
18217
19693
|
}
|
|
18218
19694
|
namespace UnionMember4 {
|
|
18219
19695
|
interface Data {
|
|
@@ -18227,6 +19703,8 @@ export declare namespace ListEventsResponse {
|
|
|
18227
19703
|
data: UnionMember5.Data;
|
|
18228
19704
|
name: 'db.connection-deleted';
|
|
18229
19705
|
id?: string;
|
|
19706
|
+
connection_id?: string | null;
|
|
19707
|
+
connector_name?: string | null;
|
|
18230
19708
|
customer_id?: string | null;
|
|
18231
19709
|
org_id?: string | null;
|
|
18232
19710
|
prompt?: string | null;
|
|
@@ -18236,6 +19714,7 @@ export declare namespace ListEventsResponse {
|
|
|
18236
19714
|
} | Array<unknown> | null;
|
|
18237
19715
|
user_id?: string | null;
|
|
18238
19716
|
v?: string | null;
|
|
19717
|
+
webhook_name?: string | null;
|
|
18239
19718
|
}
|
|
18240
19719
|
namespace UnionMember5 {
|
|
18241
19720
|
interface Data {
|
|
@@ -18249,6 +19728,8 @@ export declare namespace ListEventsResponse {
|
|
|
18249
19728
|
data: unknown;
|
|
18250
19729
|
name: 'user.signin';
|
|
18251
19730
|
id?: string;
|
|
19731
|
+
connection_id?: string | null;
|
|
19732
|
+
connector_name?: string | null;
|
|
18252
19733
|
customer_id?: string | null;
|
|
18253
19734
|
org_id?: string | null;
|
|
18254
19735
|
prompt?: string | null;
|
|
@@ -18258,11 +19739,14 @@ export declare namespace ListEventsResponse {
|
|
|
18258
19739
|
} | Array<unknown> | null;
|
|
18259
19740
|
user_id?: string | null;
|
|
18260
19741
|
v?: string | null;
|
|
19742
|
+
webhook_name?: string | null;
|
|
18261
19743
|
}
|
|
18262
19744
|
interface UnionMember7 {
|
|
18263
19745
|
data: unknown;
|
|
18264
19746
|
name: 'user.signout';
|
|
18265
19747
|
id?: string;
|
|
19748
|
+
connection_id?: string | null;
|
|
19749
|
+
connector_name?: string | null;
|
|
18266
19750
|
customer_id?: string | null;
|
|
18267
19751
|
org_id?: string | null;
|
|
18268
19752
|
prompt?: string | null;
|
|
@@ -18272,11 +19756,14 @@ export declare namespace ListEventsResponse {
|
|
|
18272
19756
|
} | Array<unknown> | null;
|
|
18273
19757
|
user_id?: string | null;
|
|
18274
19758
|
v?: string | null;
|
|
19759
|
+
webhook_name?: string | null;
|
|
18275
19760
|
}
|
|
18276
19761
|
interface UnionMember8 {
|
|
18277
19762
|
data: UnionMember8.Data;
|
|
18278
19763
|
name: 'connect.session-started';
|
|
18279
19764
|
id?: string;
|
|
19765
|
+
connection_id?: string | null;
|
|
19766
|
+
connector_name?: string | null;
|
|
18280
19767
|
customer_id?: string | null;
|
|
18281
19768
|
org_id?: string | null;
|
|
18282
19769
|
prompt?: string | null;
|
|
@@ -18286,6 +19773,7 @@ export declare namespace ListEventsResponse {
|
|
|
18286
19773
|
} | Array<unknown> | null;
|
|
18287
19774
|
user_id?: string | null;
|
|
18288
19775
|
v?: string | null;
|
|
19776
|
+
webhook_name?: string | null;
|
|
18289
19777
|
}
|
|
18290
19778
|
namespace UnionMember8 {
|
|
18291
19779
|
interface Data {
|
|
@@ -18297,6 +19785,8 @@ export declare namespace ListEventsResponse {
|
|
|
18297
19785
|
data: UnionMember9.Data;
|
|
18298
19786
|
name: 'connect.session-cancelled';
|
|
18299
19787
|
id?: string;
|
|
19788
|
+
connection_id?: string | null;
|
|
19789
|
+
connector_name?: string | null;
|
|
18300
19790
|
customer_id?: string | null;
|
|
18301
19791
|
org_id?: string | null;
|
|
18302
19792
|
prompt?: string | null;
|
|
@@ -18306,6 +19796,7 @@ export declare namespace ListEventsResponse {
|
|
|
18306
19796
|
} | Array<unknown> | null;
|
|
18307
19797
|
user_id?: string | null;
|
|
18308
19798
|
v?: string | null;
|
|
19799
|
+
webhook_name?: string | null;
|
|
18309
19800
|
}
|
|
18310
19801
|
namespace UnionMember9 {
|
|
18311
19802
|
interface Data {
|
|
@@ -18317,6 +19808,8 @@ export declare namespace ListEventsResponse {
|
|
|
18317
19808
|
data: UnionMember10.Data;
|
|
18318
19809
|
name: 'connect.session-succeeded';
|
|
18319
19810
|
id?: string;
|
|
19811
|
+
connection_id?: string | null;
|
|
19812
|
+
connector_name?: string | null;
|
|
18320
19813
|
customer_id?: string | null;
|
|
18321
19814
|
org_id?: string | null;
|
|
18322
19815
|
prompt?: string | null;
|
|
@@ -18326,6 +19819,7 @@ export declare namespace ListEventsResponse {
|
|
|
18326
19819
|
} | Array<unknown> | null;
|
|
18327
19820
|
user_id?: string | null;
|
|
18328
19821
|
v?: string | null;
|
|
19822
|
+
webhook_name?: string | null;
|
|
18329
19823
|
}
|
|
18330
19824
|
namespace UnionMember10 {
|
|
18331
19825
|
interface Data {
|
|
@@ -18337,6 +19831,8 @@ export declare namespace ListEventsResponse {
|
|
|
18337
19831
|
data: UnionMember11.Data;
|
|
18338
19832
|
name: 'connect.session-errored';
|
|
18339
19833
|
id?: string;
|
|
19834
|
+
connection_id?: string | null;
|
|
19835
|
+
connector_name?: string | null;
|
|
18340
19836
|
customer_id?: string | null;
|
|
18341
19837
|
org_id?: string | null;
|
|
18342
19838
|
prompt?: string | null;
|
|
@@ -18346,6 +19842,7 @@ export declare namespace ListEventsResponse {
|
|
|
18346
19842
|
} | Array<unknown> | null;
|
|
18347
19843
|
user_id?: string | null;
|
|
18348
19844
|
v?: string | null;
|
|
19845
|
+
webhook_name?: string | null;
|
|
18349
19846
|
}
|
|
18350
19847
|
namespace UnionMember11 {
|
|
18351
19848
|
interface Data {
|
|
@@ -18357,6 +19854,8 @@ export declare namespace ListEventsResponse {
|
|
|
18357
19854
|
data: unknown;
|
|
18358
19855
|
name: 'connect.loaded';
|
|
18359
19856
|
id?: string;
|
|
19857
|
+
connection_id?: string | null;
|
|
19858
|
+
connector_name?: string | null;
|
|
18360
19859
|
customer_id?: string | null;
|
|
18361
19860
|
org_id?: string | null;
|
|
18362
19861
|
prompt?: string | null;
|
|
@@ -18366,11 +19865,14 @@ export declare namespace ListEventsResponse {
|
|
|
18366
19865
|
} | Array<unknown> | null;
|
|
18367
19866
|
user_id?: string | null;
|
|
18368
19867
|
v?: string | null;
|
|
19868
|
+
webhook_name?: string | null;
|
|
18369
19869
|
}
|
|
18370
19870
|
interface UnionMember13 {
|
|
18371
19871
|
data: UnionMember13.Data;
|
|
18372
19872
|
name: 'connect.loading-error';
|
|
18373
19873
|
id?: string;
|
|
19874
|
+
connection_id?: string | null;
|
|
19875
|
+
connector_name?: string | null;
|
|
18374
19876
|
customer_id?: string | null;
|
|
18375
19877
|
org_id?: string | null;
|
|
18376
19878
|
prompt?: string | null;
|
|
@@ -18380,6 +19882,7 @@ export declare namespace ListEventsResponse {
|
|
|
18380
19882
|
} | Array<unknown> | null;
|
|
18381
19883
|
user_id?: string | null;
|
|
18382
19884
|
v?: string | null;
|
|
19885
|
+
webhook_name?: string | null;
|
|
18383
19886
|
}
|
|
18384
19887
|
namespace UnionMember13 {
|
|
18385
19888
|
interface Data {
|
|
@@ -18391,6 +19894,8 @@ export declare namespace ListEventsResponse {
|
|
|
18391
19894
|
data: UnionMember14.Data;
|
|
18392
19895
|
name: 'connect.connection-connected';
|
|
18393
19896
|
id?: string;
|
|
19897
|
+
connection_id?: string | null;
|
|
19898
|
+
connector_name?: string | null;
|
|
18394
19899
|
customer_id?: string | null;
|
|
18395
19900
|
org_id?: string | null;
|
|
18396
19901
|
prompt?: string | null;
|
|
@@ -18400,6 +19905,7 @@ export declare namespace ListEventsResponse {
|
|
|
18400
19905
|
} | Array<unknown> | null;
|
|
18401
19906
|
user_id?: string | null;
|
|
18402
19907
|
v?: string | null;
|
|
19908
|
+
webhook_name?: string | null;
|
|
18403
19909
|
}
|
|
18404
19910
|
namespace UnionMember14 {
|
|
18405
19911
|
interface Data {
|
|
@@ -18414,6 +19920,8 @@ export declare namespace ListEventsResponse {
|
|
|
18414
19920
|
data: UnionMember15.Data;
|
|
18415
19921
|
name: 'connect.connection-deleted';
|
|
18416
19922
|
id?: string;
|
|
19923
|
+
connection_id?: string | null;
|
|
19924
|
+
connector_name?: string | null;
|
|
18417
19925
|
customer_id?: string | null;
|
|
18418
19926
|
org_id?: string | null;
|
|
18419
19927
|
prompt?: string | null;
|
|
@@ -18423,6 +19931,7 @@ export declare namespace ListEventsResponse {
|
|
|
18423
19931
|
} | Array<unknown> | null;
|
|
18424
19932
|
user_id?: string | null;
|
|
18425
19933
|
v?: string | null;
|
|
19934
|
+
webhook_name?: string | null;
|
|
18426
19935
|
}
|
|
18427
19936
|
namespace UnionMember15 {
|
|
18428
19937
|
interface Data {
|
|
@@ -18437,6 +19946,8 @@ export declare namespace ListEventsResponse {
|
|
|
18437
19946
|
data: UnionMember16.Data;
|
|
18438
19947
|
name: 'connect.connection-checked';
|
|
18439
19948
|
id?: string;
|
|
19949
|
+
connection_id?: string | null;
|
|
19950
|
+
connector_name?: string | null;
|
|
18440
19951
|
customer_id?: string | null;
|
|
18441
19952
|
org_id?: string | null;
|
|
18442
19953
|
prompt?: string | null;
|
|
@@ -18446,6 +19957,7 @@ export declare namespace ListEventsResponse {
|
|
|
18446
19957
|
} | Array<unknown> | null;
|
|
18447
19958
|
user_id?: string | null;
|
|
18448
19959
|
v?: string | null;
|
|
19960
|
+
webhook_name?: string | null;
|
|
18449
19961
|
}
|
|
18450
19962
|
namespace UnionMember16 {
|
|
18451
19963
|
interface Data {
|
|
@@ -18462,6 +19974,8 @@ export declare namespace ListEventsResponse {
|
|
|
18462
19974
|
data: unknown;
|
|
18463
19975
|
name: 'api.token-copied';
|
|
18464
19976
|
id?: string;
|
|
19977
|
+
connection_id?: string | null;
|
|
19978
|
+
connector_name?: string | null;
|
|
18465
19979
|
customer_id?: string | null;
|
|
18466
19980
|
org_id?: string | null;
|
|
18467
19981
|
prompt?: string | null;
|
|
@@ -18471,11 +19985,14 @@ export declare namespace ListEventsResponse {
|
|
|
18471
19985
|
} | Array<unknown> | null;
|
|
18472
19986
|
user_id?: string | null;
|
|
18473
19987
|
v?: string | null;
|
|
19988
|
+
webhook_name?: string | null;
|
|
18474
19989
|
}
|
|
18475
19990
|
interface UnionMember18 {
|
|
18476
19991
|
data: unknown;
|
|
18477
19992
|
name: 'api.graphql-request';
|
|
18478
19993
|
id?: string;
|
|
19994
|
+
connection_id?: string | null;
|
|
19995
|
+
connector_name?: string | null;
|
|
18479
19996
|
customer_id?: string | null;
|
|
18480
19997
|
org_id?: string | null;
|
|
18481
19998
|
prompt?: string | null;
|
|
@@ -18485,11 +20002,14 @@ export declare namespace ListEventsResponse {
|
|
|
18485
20002
|
} | Array<unknown> | null;
|
|
18486
20003
|
user_id?: string | null;
|
|
18487
20004
|
v?: string | null;
|
|
20005
|
+
webhook_name?: string | null;
|
|
18488
20006
|
}
|
|
18489
20007
|
interface UnionMember19 {
|
|
18490
20008
|
data: unknown;
|
|
18491
20009
|
name: 'api.rest-request';
|
|
18492
20010
|
id?: string;
|
|
20011
|
+
connection_id?: string | null;
|
|
20012
|
+
connector_name?: string | null;
|
|
18493
20013
|
customer_id?: string | null;
|
|
18494
20014
|
org_id?: string | null;
|
|
18495
20015
|
prompt?: string | null;
|
|
@@ -18499,11 +20019,14 @@ export declare namespace ListEventsResponse {
|
|
|
18499
20019
|
} | Array<unknown> | null;
|
|
18500
20020
|
user_id?: string | null;
|
|
18501
20021
|
v?: string | null;
|
|
20022
|
+
webhook_name?: string | null;
|
|
18502
20023
|
}
|
|
18503
20024
|
interface UnionMember20 {
|
|
18504
20025
|
data: UnionMember20.Data;
|
|
18505
20026
|
name: 'pageview';
|
|
18506
20027
|
id?: string;
|
|
20028
|
+
connection_id?: string | null;
|
|
20029
|
+
connector_name?: string | null;
|
|
18507
20030
|
customer_id?: string | null;
|
|
18508
20031
|
org_id?: string | null;
|
|
18509
20032
|
prompt?: string | null;
|
|
@@ -18513,6 +20036,7 @@ export declare namespace ListEventsResponse {
|
|
|
18513
20036
|
} | Array<unknown> | null;
|
|
18514
20037
|
user_id?: string | null;
|
|
18515
20038
|
v?: string | null;
|
|
20039
|
+
webhook_name?: string | null;
|
|
18516
20040
|
}
|
|
18517
20041
|
namespace UnionMember20 {
|
|
18518
20042
|
interface Data {
|
|
@@ -18521,7 +20045,7 @@ export declare namespace ListEventsResponse {
|
|
|
18521
20045
|
}
|
|
18522
20046
|
}
|
|
18523
20047
|
}
|
|
18524
|
-
export type PostConnectResponse = PostConnectResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings | PostConnectResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings | PostConnectResponse.ConnectorAgentmailDiscriminatedConnectionSettings | PostConnectResponse.ConnectorAsanaDiscriminatedConnectionSettings | PostConnectResponse.ConnectorBigqueryDiscriminatedConnectionSettings | PostConnectResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | PostConnectResponse.ConnectorBitbucketDiscriminatedConnectionSettings | PostConnectResponse.ConnectorBoxDiscriminatedConnectionSettings | PostConnectResponse.ConnectorCalendlyDiscriminatedConnectionSettings | PostConnectResponse.ConnectorClickupDiscriminatedConnectionSettings | PostConnectResponse.ConnectorConfluenceDiscriminatedConnectionSettings | PostConnectResponse.ConnectorDatabricksDiscriminatedConnectionSettings | PostConnectResponse.ConnectorDiscordDiscriminatedConnectionSettings | PostConnectResponse.ConnectorDropboxDiscriminatedConnectionSettings | PostConnectResponse.ConnectorFigmaDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGitHubDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleCalendarDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleDocsDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleDriveDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleMailDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleSheetDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleSlidesDiscriminatedConnectionSettings | PostConnectResponse.ConnectorHubspotDiscriminatedConnectionSettings | PostConnectResponse.ConnectorInstagramDiscriminatedConnectionSettings | PostConnectResponse.ConnectorJiraDiscriminatedConnectionSettings | PostConnectResponse.ConnectorLinearDiscriminatedConnectionSettings | PostConnectResponse.ConnectorMondayDiscriminatedConnectionSettings | PostConnectResponse.ConnectorNotionDiscriminatedConnectionSettings | PostConnectResponse.ConnectorOnedriveDiscriminatedConnectionSettings | PostConnectResponse.ConnectorOutlookDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSalesforceDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSharepointDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSlackDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSnowflakeDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSpotifyDiscriminatedConnectionSettings | PostConnectResponse.ConnectorYoutubeDiscriminatedConnectionSettings | PostConnectResponse.ConnectorZendeskDiscriminatedConnectionSettings | PostConnectResponse.ConnectorZoomDiscriminatedConnectionSettings | PostConnectResponse.ConnectorApolloDiscriminatedConnectionSettings | PostConnectResponse.ConnectorPlaidDiscriminatedConnectionSettings | PostConnectResponse.ConnectorPostgresDiscriminatedConnectionSettings | PostConnectResponse.ConnectorResendDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSendgridDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSlackAgentDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | PostConnectResponse.ConnectorStripeDiscriminatedConnectionSettings | PostConnectResponse.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | PostConnectResponse.ConnectorTwilioDiscriminatedConnectionSettings | PostConnectResponse.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
20048
|
+
export type PostConnectResponse = PostConnectResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings | PostConnectResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings | PostConnectResponse.ConnectorAgentmailDiscriminatedConnectionSettings | PostConnectResponse.ConnectorAsanaDiscriminatedConnectionSettings | PostConnectResponse.ConnectorBigqueryDiscriminatedConnectionSettings | PostConnectResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | PostConnectResponse.ConnectorBitbucketDiscriminatedConnectionSettings | PostConnectResponse.ConnectorBoxDiscriminatedConnectionSettings | PostConnectResponse.ConnectorCalendlyDiscriminatedConnectionSettings | PostConnectResponse.ConnectorClickupDiscriminatedConnectionSettings | PostConnectResponse.ConnectorConfluenceDiscriminatedConnectionSettings | PostConnectResponse.ConnectorDatabricksDiscriminatedConnectionSettings | PostConnectResponse.ConnectorDiscordDiscriminatedConnectionSettings | PostConnectResponse.ConnectorDropboxDiscriminatedConnectionSettings | PostConnectResponse.ConnectorFigmaDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGitHubDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGitlabSourceControlDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleCalendarDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleDocsDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleDriveDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleMailDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleSheetDiscriminatedConnectionSettings | PostConnectResponse.ConnectorGoogleSlidesDiscriminatedConnectionSettings | PostConnectResponse.ConnectorHubspotDiscriminatedConnectionSettings | PostConnectResponse.ConnectorInstagramDiscriminatedConnectionSettings | PostConnectResponse.ConnectorJiraDiscriminatedConnectionSettings | PostConnectResponse.ConnectorLinearDiscriminatedConnectionSettings | PostConnectResponse.ConnectorMondayDiscriminatedConnectionSettings | PostConnectResponse.ConnectorNotionDiscriminatedConnectionSettings | PostConnectResponse.ConnectorOnedriveDiscriminatedConnectionSettings | PostConnectResponse.ConnectorOutlookDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSalesforceDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSharepointDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSlackDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSnowflakeDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSpotifyDiscriminatedConnectionSettings | PostConnectResponse.ConnectorYoutubeDiscriminatedConnectionSettings | PostConnectResponse.ConnectorZendeskDiscriminatedConnectionSettings | PostConnectResponse.ConnectorZoomDiscriminatedConnectionSettings | PostConnectResponse.ConnectorApolloDiscriminatedConnectionSettings | PostConnectResponse.ConnectorCustomMcpDiscriminatedConnectionSettings | PostConnectResponse.ConnectorPlaidDiscriminatedConnectionSettings | PostConnectResponse.ConnectorPostgresDiscriminatedConnectionSettings | PostConnectResponse.ConnectorResendDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSendgridDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSlackAgentDiscriminatedConnectionSettings | PostConnectResponse.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | PostConnectResponse.ConnectorStripeDiscriminatedConnectionSettings | PostConnectResponse.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | PostConnectResponse.ConnectorTwilioDiscriminatedConnectionSettings | PostConnectResponse.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
18525
20049
|
export declare namespace PostConnectResponse {
|
|
18526
20050
|
interface ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
18527
20051
|
connector_name: 'acme-apikey';
|
|
@@ -18545,6 +20069,11 @@ export declare namespace PostConnectResponse {
|
|
|
18545
20069
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18546
20070
|
status_message?: string | null;
|
|
18547
20071
|
updated_at?: string;
|
|
20072
|
+
webhook_config?: string | number | boolean | {
|
|
20073
|
+
[key: string]: unknown;
|
|
20074
|
+
} | Array<unknown> | null;
|
|
20075
|
+
webhook_configured_at?: string | null;
|
|
20076
|
+
webhook_identifier?: string | null;
|
|
18548
20077
|
}
|
|
18549
20078
|
namespace ConnectorAcmeApikeyDiscriminatedConnectionSettings {
|
|
18550
20079
|
interface Settings {
|
|
@@ -18573,6 +20102,11 @@ export declare namespace PostConnectResponse {
|
|
|
18573
20102
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18574
20103
|
status_message?: string | null;
|
|
18575
20104
|
updated_at?: string;
|
|
20105
|
+
webhook_config?: string | number | boolean | {
|
|
20106
|
+
[key: string]: unknown;
|
|
20107
|
+
} | Array<unknown> | null;
|
|
20108
|
+
webhook_configured_at?: string | null;
|
|
20109
|
+
webhook_identifier?: string | null;
|
|
18576
20110
|
}
|
|
18577
20111
|
namespace ConnectorAcmeOauth2DiscriminatedConnectionSettings {
|
|
18578
20112
|
interface Settings {
|
|
@@ -18640,6 +20174,11 @@ export declare namespace PostConnectResponse {
|
|
|
18640
20174
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18641
20175
|
status_message?: string | null;
|
|
18642
20176
|
updated_at?: string;
|
|
20177
|
+
webhook_config?: string | number | boolean | {
|
|
20178
|
+
[key: string]: unknown;
|
|
20179
|
+
} | Array<unknown> | null;
|
|
20180
|
+
webhook_configured_at?: string | null;
|
|
20181
|
+
webhook_identifier?: string | null;
|
|
18643
20182
|
}
|
|
18644
20183
|
namespace ConnectorAgentmailDiscriminatedConnectionSettings {
|
|
18645
20184
|
interface Settings {
|
|
@@ -18668,6 +20207,11 @@ export declare namespace PostConnectResponse {
|
|
|
18668
20207
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18669
20208
|
status_message?: string | null;
|
|
18670
20209
|
updated_at?: string;
|
|
20210
|
+
webhook_config?: string | number | boolean | {
|
|
20211
|
+
[key: string]: unknown;
|
|
20212
|
+
} | Array<unknown> | null;
|
|
20213
|
+
webhook_configured_at?: string | null;
|
|
20214
|
+
webhook_identifier?: string | null;
|
|
18671
20215
|
}
|
|
18672
20216
|
namespace ConnectorAsanaDiscriminatedConnectionSettings {
|
|
18673
20217
|
interface Settings {
|
|
@@ -18735,10 +20279,20 @@ export declare namespace PostConnectResponse {
|
|
|
18735
20279
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18736
20280
|
status_message?: string | null;
|
|
18737
20281
|
updated_at?: string;
|
|
20282
|
+
webhook_config?: string | number | boolean | {
|
|
20283
|
+
[key: string]: unknown;
|
|
20284
|
+
} | Array<unknown> | null;
|
|
20285
|
+
webhook_configured_at?: string | null;
|
|
20286
|
+
webhook_identifier?: string | null;
|
|
18738
20287
|
}
|
|
18739
20288
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
18740
20289
|
interface Settings {
|
|
18741
20290
|
oauth: Settings.OAuth;
|
|
20291
|
+
/**
|
|
20292
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
20293
|
+
* API calls to BigQuery.
|
|
20294
|
+
*/
|
|
20295
|
+
project_id: string;
|
|
18742
20296
|
/**
|
|
18743
20297
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
18744
20298
|
* for backward compatibility until we remove the oauth field
|
|
@@ -18802,6 +20356,11 @@ export declare namespace PostConnectResponse {
|
|
|
18802
20356
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18803
20357
|
status_message?: string | null;
|
|
18804
20358
|
updated_at?: string;
|
|
20359
|
+
webhook_config?: string | number | boolean | {
|
|
20360
|
+
[key: string]: unknown;
|
|
20361
|
+
} | Array<unknown> | null;
|
|
20362
|
+
webhook_configured_at?: string | null;
|
|
20363
|
+
webhook_identifier?: string | null;
|
|
18805
20364
|
}
|
|
18806
20365
|
namespace ConnectorBitbucketSourceControlDiscriminatedConnectionSettings {
|
|
18807
20366
|
interface Settings {
|
|
@@ -18869,6 +20428,11 @@ export declare namespace PostConnectResponse {
|
|
|
18869
20428
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18870
20429
|
status_message?: string | null;
|
|
18871
20430
|
updated_at?: string;
|
|
20431
|
+
webhook_config?: string | number | boolean | {
|
|
20432
|
+
[key: string]: unknown;
|
|
20433
|
+
} | Array<unknown> | null;
|
|
20434
|
+
webhook_configured_at?: string | null;
|
|
20435
|
+
webhook_identifier?: string | null;
|
|
18872
20436
|
}
|
|
18873
20437
|
namespace ConnectorBitbucketDiscriminatedConnectionSettings {
|
|
18874
20438
|
interface Settings {
|
|
@@ -18936,6 +20500,11 @@ export declare namespace PostConnectResponse {
|
|
|
18936
20500
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
18937
20501
|
status_message?: string | null;
|
|
18938
20502
|
updated_at?: string;
|
|
20503
|
+
webhook_config?: string | number | boolean | {
|
|
20504
|
+
[key: string]: unknown;
|
|
20505
|
+
} | Array<unknown> | null;
|
|
20506
|
+
webhook_configured_at?: string | null;
|
|
20507
|
+
webhook_identifier?: string | null;
|
|
18939
20508
|
}
|
|
18940
20509
|
namespace ConnectorBoxDiscriminatedConnectionSettings {
|
|
18941
20510
|
interface Settings {
|
|
@@ -19003,6 +20572,11 @@ export declare namespace PostConnectResponse {
|
|
|
19003
20572
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19004
20573
|
status_message?: string | null;
|
|
19005
20574
|
updated_at?: string;
|
|
20575
|
+
webhook_config?: string | number | boolean | {
|
|
20576
|
+
[key: string]: unknown;
|
|
20577
|
+
} | Array<unknown> | null;
|
|
20578
|
+
webhook_configured_at?: string | null;
|
|
20579
|
+
webhook_identifier?: string | null;
|
|
19006
20580
|
}
|
|
19007
20581
|
namespace ConnectorCalendlyDiscriminatedConnectionSettings {
|
|
19008
20582
|
interface Settings {
|
|
@@ -19070,6 +20644,11 @@ export declare namespace PostConnectResponse {
|
|
|
19070
20644
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19071
20645
|
status_message?: string | null;
|
|
19072
20646
|
updated_at?: string;
|
|
20647
|
+
webhook_config?: string | number | boolean | {
|
|
20648
|
+
[key: string]: unknown;
|
|
20649
|
+
} | Array<unknown> | null;
|
|
20650
|
+
webhook_configured_at?: string | null;
|
|
20651
|
+
webhook_identifier?: string | null;
|
|
19073
20652
|
}
|
|
19074
20653
|
namespace ConnectorClickupDiscriminatedConnectionSettings {
|
|
19075
20654
|
interface Settings {
|
|
@@ -19137,6 +20716,11 @@ export declare namespace PostConnectResponse {
|
|
|
19137
20716
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19138
20717
|
status_message?: string | null;
|
|
19139
20718
|
updated_at?: string;
|
|
20719
|
+
webhook_config?: string | number | boolean | {
|
|
20720
|
+
[key: string]: unknown;
|
|
20721
|
+
} | Array<unknown> | null;
|
|
20722
|
+
webhook_configured_at?: string | null;
|
|
20723
|
+
webhook_identifier?: string | null;
|
|
19140
20724
|
}
|
|
19141
20725
|
namespace ConnectorConfluenceDiscriminatedConnectionSettings {
|
|
19142
20726
|
interface Settings {
|
|
@@ -19208,16 +20792,26 @@ export declare namespace PostConnectResponse {
|
|
|
19208
20792
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19209
20793
|
status_message?: string | null;
|
|
19210
20794
|
updated_at?: string;
|
|
20795
|
+
webhook_config?: string | number | boolean | {
|
|
20796
|
+
[key: string]: unknown;
|
|
20797
|
+
} | Array<unknown> | null;
|
|
20798
|
+
webhook_configured_at?: string | null;
|
|
20799
|
+
webhook_identifier?: string | null;
|
|
19211
20800
|
}
|
|
19212
20801
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
19213
20802
|
interface Settings {
|
|
19214
20803
|
/**
|
|
19215
|
-
*
|
|
19216
|
-
*
|
|
19217
|
-
* .cloud.databricks.com
|
|
20804
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
20805
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
19218
20806
|
*/
|
|
19219
|
-
|
|
20807
|
+
http_path: string;
|
|
19220
20808
|
oauth: Settings.OAuth;
|
|
20809
|
+
/**
|
|
20810
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
20811
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
20812
|
+
* Server hostname value.
|
|
20813
|
+
*/
|
|
20814
|
+
server_hostname: string;
|
|
19221
20815
|
/**
|
|
19222
20816
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
19223
20817
|
* for backward compatibility until we remove the oauth field
|
|
@@ -19281,6 +20875,11 @@ export declare namespace PostConnectResponse {
|
|
|
19281
20875
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19282
20876
|
status_message?: string | null;
|
|
19283
20877
|
updated_at?: string;
|
|
20878
|
+
webhook_config?: string | number | boolean | {
|
|
20879
|
+
[key: string]: unknown;
|
|
20880
|
+
} | Array<unknown> | null;
|
|
20881
|
+
webhook_configured_at?: string | null;
|
|
20882
|
+
webhook_identifier?: string | null;
|
|
19284
20883
|
}
|
|
19285
20884
|
namespace ConnectorDiscordDiscriminatedConnectionSettings {
|
|
19286
20885
|
interface Settings {
|
|
@@ -19348,6 +20947,11 @@ export declare namespace PostConnectResponse {
|
|
|
19348
20947
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19349
20948
|
status_message?: string | null;
|
|
19350
20949
|
updated_at?: string;
|
|
20950
|
+
webhook_config?: string | number | boolean | {
|
|
20951
|
+
[key: string]: unknown;
|
|
20952
|
+
} | Array<unknown> | null;
|
|
20953
|
+
webhook_configured_at?: string | null;
|
|
20954
|
+
webhook_identifier?: string | null;
|
|
19351
20955
|
}
|
|
19352
20956
|
namespace ConnectorDropboxDiscriminatedConnectionSettings {
|
|
19353
20957
|
interface Settings {
|
|
@@ -19415,6 +21019,11 @@ export declare namespace PostConnectResponse {
|
|
|
19415
21019
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19416
21020
|
status_message?: string | null;
|
|
19417
21021
|
updated_at?: string;
|
|
21022
|
+
webhook_config?: string | number | boolean | {
|
|
21023
|
+
[key: string]: unknown;
|
|
21024
|
+
} | Array<unknown> | null;
|
|
21025
|
+
webhook_configured_at?: string | null;
|
|
21026
|
+
webhook_identifier?: string | null;
|
|
19418
21027
|
}
|
|
19419
21028
|
namespace ConnectorFigmaDiscriminatedConnectionSettings {
|
|
19420
21029
|
interface Settings {
|
|
@@ -19482,6 +21091,11 @@ export declare namespace PostConnectResponse {
|
|
|
19482
21091
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19483
21092
|
status_message?: string | null;
|
|
19484
21093
|
updated_at?: string;
|
|
21094
|
+
webhook_config?: string | number | boolean | {
|
|
21095
|
+
[key: string]: unknown;
|
|
21096
|
+
} | Array<unknown> | null;
|
|
21097
|
+
webhook_configured_at?: string | null;
|
|
21098
|
+
webhook_identifier?: string | null;
|
|
19485
21099
|
}
|
|
19486
21100
|
namespace ConnectorGitHubSourceControlDiscriminatedConnectionSettings {
|
|
19487
21101
|
interface Settings {
|
|
@@ -19549,6 +21163,11 @@ export declare namespace PostConnectResponse {
|
|
|
19549
21163
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19550
21164
|
status_message?: string | null;
|
|
19551
21165
|
updated_at?: string;
|
|
21166
|
+
webhook_config?: string | number | boolean | {
|
|
21167
|
+
[key: string]: unknown;
|
|
21168
|
+
} | Array<unknown> | null;
|
|
21169
|
+
webhook_configured_at?: string | null;
|
|
21170
|
+
webhook_identifier?: string | null;
|
|
19552
21171
|
}
|
|
19553
21172
|
namespace ConnectorGitHubDiscriminatedConnectionSettings {
|
|
19554
21173
|
interface Settings {
|
|
@@ -19594,6 +21213,78 @@ export declare namespace PostConnectResponse {
|
|
|
19594
21213
|
}
|
|
19595
21214
|
}
|
|
19596
21215
|
}
|
|
21216
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
21217
|
+
connector_name: 'gitlab-source-control';
|
|
21218
|
+
id?: string;
|
|
21219
|
+
connector_config_id?: string | null;
|
|
21220
|
+
created_at?: string;
|
|
21221
|
+
customer_id?: string | null;
|
|
21222
|
+
disabled?: boolean | null;
|
|
21223
|
+
display_name?: string | null;
|
|
21224
|
+
environment?: 'production' | 'development';
|
|
21225
|
+
integration_id?: string | null;
|
|
21226
|
+
/**
|
|
21227
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
21228
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
21229
|
+
* updates this object will be shallowly merged
|
|
21230
|
+
*/
|
|
21231
|
+
metadata?: {
|
|
21232
|
+
[key: string]: unknown;
|
|
21233
|
+
} | null;
|
|
21234
|
+
settings?: ConnectorGitlabSourceControlDiscriminatedConnectionSettings.Settings;
|
|
21235
|
+
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21236
|
+
status_message?: string | null;
|
|
21237
|
+
updated_at?: string;
|
|
21238
|
+
webhook_config?: string | number | boolean | {
|
|
21239
|
+
[key: string]: unknown;
|
|
21240
|
+
} | Array<unknown> | null;
|
|
21241
|
+
webhook_configured_at?: string | null;
|
|
21242
|
+
webhook_identifier?: string | null;
|
|
21243
|
+
}
|
|
21244
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
21245
|
+
interface Settings {
|
|
21246
|
+
oauth: Settings.OAuth;
|
|
21247
|
+
/**
|
|
21248
|
+
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
21249
|
+
* for backward compatibility until we remove the oauth field
|
|
21250
|
+
*/
|
|
21251
|
+
access_token?: string;
|
|
21252
|
+
}
|
|
21253
|
+
namespace Settings {
|
|
21254
|
+
interface OAuth {
|
|
21255
|
+
created_at?: string;
|
|
21256
|
+
/**
|
|
21257
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
21258
|
+
*/
|
|
21259
|
+
credentials?: OAuth.Credentials;
|
|
21260
|
+
last_fetched_at?: string;
|
|
21261
|
+
metadata?: {
|
|
21262
|
+
[key: string]: unknown;
|
|
21263
|
+
} | null;
|
|
21264
|
+
updated_at?: string;
|
|
21265
|
+
}
|
|
21266
|
+
namespace OAuth {
|
|
21267
|
+
/**
|
|
21268
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
21269
|
+
*/
|
|
21270
|
+
interface Credentials {
|
|
21271
|
+
access_token: string;
|
|
21272
|
+
/**
|
|
21273
|
+
* Client ID used for the connection
|
|
21274
|
+
*/
|
|
21275
|
+
client_id?: string;
|
|
21276
|
+
expires_at?: string;
|
|
21277
|
+
expires_in?: number;
|
|
21278
|
+
raw?: {
|
|
21279
|
+
[key: string]: unknown;
|
|
21280
|
+
};
|
|
21281
|
+
refresh_token?: string;
|
|
21282
|
+
scope?: string;
|
|
21283
|
+
token_type?: string;
|
|
21284
|
+
}
|
|
21285
|
+
}
|
|
21286
|
+
}
|
|
21287
|
+
}
|
|
19597
21288
|
interface ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
19598
21289
|
connector_name: 'google-calendar';
|
|
19599
21290
|
id?: string;
|
|
@@ -19616,6 +21307,11 @@ export declare namespace PostConnectResponse {
|
|
|
19616
21307
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19617
21308
|
status_message?: string | null;
|
|
19618
21309
|
updated_at?: string;
|
|
21310
|
+
webhook_config?: string | number | boolean | {
|
|
21311
|
+
[key: string]: unknown;
|
|
21312
|
+
} | Array<unknown> | null;
|
|
21313
|
+
webhook_configured_at?: string | null;
|
|
21314
|
+
webhook_identifier?: string | null;
|
|
19619
21315
|
}
|
|
19620
21316
|
namespace ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
19621
21317
|
interface Settings {
|
|
@@ -19683,6 +21379,11 @@ export declare namespace PostConnectResponse {
|
|
|
19683
21379
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19684
21380
|
status_message?: string | null;
|
|
19685
21381
|
updated_at?: string;
|
|
21382
|
+
webhook_config?: string | number | boolean | {
|
|
21383
|
+
[key: string]: unknown;
|
|
21384
|
+
} | Array<unknown> | null;
|
|
21385
|
+
webhook_configured_at?: string | null;
|
|
21386
|
+
webhook_identifier?: string | null;
|
|
19686
21387
|
}
|
|
19687
21388
|
namespace ConnectorGoogleDocsDiscriminatedConnectionSettings {
|
|
19688
21389
|
interface Settings {
|
|
@@ -19750,6 +21451,11 @@ export declare namespace PostConnectResponse {
|
|
|
19750
21451
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19751
21452
|
status_message?: string | null;
|
|
19752
21453
|
updated_at?: string;
|
|
21454
|
+
webhook_config?: string | number | boolean | {
|
|
21455
|
+
[key: string]: unknown;
|
|
21456
|
+
} | Array<unknown> | null;
|
|
21457
|
+
webhook_configured_at?: string | null;
|
|
21458
|
+
webhook_identifier?: string | null;
|
|
19753
21459
|
}
|
|
19754
21460
|
namespace ConnectorGoogleDriveDiscriminatedConnectionSettings {
|
|
19755
21461
|
interface Settings {
|
|
@@ -19817,6 +21523,11 @@ export declare namespace PostConnectResponse {
|
|
|
19817
21523
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19818
21524
|
status_message?: string | null;
|
|
19819
21525
|
updated_at?: string;
|
|
21526
|
+
webhook_config?: string | number | boolean | {
|
|
21527
|
+
[key: string]: unknown;
|
|
21528
|
+
} | Array<unknown> | null;
|
|
21529
|
+
webhook_configured_at?: string | null;
|
|
21530
|
+
webhook_identifier?: string | null;
|
|
19820
21531
|
}
|
|
19821
21532
|
namespace ConnectorGoogleMailDiscriminatedConnectionSettings {
|
|
19822
21533
|
interface Settings {
|
|
@@ -19884,6 +21595,11 @@ export declare namespace PostConnectResponse {
|
|
|
19884
21595
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19885
21596
|
status_message?: string | null;
|
|
19886
21597
|
updated_at?: string;
|
|
21598
|
+
webhook_config?: string | number | boolean | {
|
|
21599
|
+
[key: string]: unknown;
|
|
21600
|
+
} | Array<unknown> | null;
|
|
21601
|
+
webhook_configured_at?: string | null;
|
|
21602
|
+
webhook_identifier?: string | null;
|
|
19887
21603
|
}
|
|
19888
21604
|
namespace ConnectorGoogleSheetDiscriminatedConnectionSettings {
|
|
19889
21605
|
interface Settings {
|
|
@@ -19951,6 +21667,11 @@ export declare namespace PostConnectResponse {
|
|
|
19951
21667
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
19952
21668
|
status_message?: string | null;
|
|
19953
21669
|
updated_at?: string;
|
|
21670
|
+
webhook_config?: string | number | boolean | {
|
|
21671
|
+
[key: string]: unknown;
|
|
21672
|
+
} | Array<unknown> | null;
|
|
21673
|
+
webhook_configured_at?: string | null;
|
|
21674
|
+
webhook_identifier?: string | null;
|
|
19954
21675
|
}
|
|
19955
21676
|
namespace ConnectorGoogleSlidesDiscriminatedConnectionSettings {
|
|
19956
21677
|
interface Settings {
|
|
@@ -20018,6 +21739,11 @@ export declare namespace PostConnectResponse {
|
|
|
20018
21739
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20019
21740
|
status_message?: string | null;
|
|
20020
21741
|
updated_at?: string;
|
|
21742
|
+
webhook_config?: string | number | boolean | {
|
|
21743
|
+
[key: string]: unknown;
|
|
21744
|
+
} | Array<unknown> | null;
|
|
21745
|
+
webhook_configured_at?: string | null;
|
|
21746
|
+
webhook_identifier?: string | null;
|
|
20021
21747
|
}
|
|
20022
21748
|
namespace ConnectorHubspotDiscriminatedConnectionSettings {
|
|
20023
21749
|
interface Settings {
|
|
@@ -20085,6 +21811,11 @@ export declare namespace PostConnectResponse {
|
|
|
20085
21811
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20086
21812
|
status_message?: string | null;
|
|
20087
21813
|
updated_at?: string;
|
|
21814
|
+
webhook_config?: string | number | boolean | {
|
|
21815
|
+
[key: string]: unknown;
|
|
21816
|
+
} | Array<unknown> | null;
|
|
21817
|
+
webhook_configured_at?: string | null;
|
|
21818
|
+
webhook_identifier?: string | null;
|
|
20088
21819
|
}
|
|
20089
21820
|
namespace ConnectorInstagramDiscriminatedConnectionSettings {
|
|
20090
21821
|
interface Settings {
|
|
@@ -20152,6 +21883,11 @@ export declare namespace PostConnectResponse {
|
|
|
20152
21883
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20153
21884
|
status_message?: string | null;
|
|
20154
21885
|
updated_at?: string;
|
|
21886
|
+
webhook_config?: string | number | boolean | {
|
|
21887
|
+
[key: string]: unknown;
|
|
21888
|
+
} | Array<unknown> | null;
|
|
21889
|
+
webhook_configured_at?: string | null;
|
|
21890
|
+
webhook_identifier?: string | null;
|
|
20155
21891
|
}
|
|
20156
21892
|
namespace ConnectorJiraDiscriminatedConnectionSettings {
|
|
20157
21893
|
interface Settings {
|
|
@@ -20223,6 +21959,11 @@ export declare namespace PostConnectResponse {
|
|
|
20223
21959
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20224
21960
|
status_message?: string | null;
|
|
20225
21961
|
updated_at?: string;
|
|
21962
|
+
webhook_config?: string | number | boolean | {
|
|
21963
|
+
[key: string]: unknown;
|
|
21964
|
+
} | Array<unknown> | null;
|
|
21965
|
+
webhook_configured_at?: string | null;
|
|
21966
|
+
webhook_identifier?: string | null;
|
|
20226
21967
|
}
|
|
20227
21968
|
namespace ConnectorLinearDiscriminatedConnectionSettings {
|
|
20228
21969
|
interface Settings {
|
|
@@ -20290,6 +22031,11 @@ export declare namespace PostConnectResponse {
|
|
|
20290
22031
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20291
22032
|
status_message?: string | null;
|
|
20292
22033
|
updated_at?: string;
|
|
22034
|
+
webhook_config?: string | number | boolean | {
|
|
22035
|
+
[key: string]: unknown;
|
|
22036
|
+
} | Array<unknown> | null;
|
|
22037
|
+
webhook_configured_at?: string | null;
|
|
22038
|
+
webhook_identifier?: string | null;
|
|
20293
22039
|
}
|
|
20294
22040
|
namespace ConnectorMondayDiscriminatedConnectionSettings {
|
|
20295
22041
|
interface Settings {
|
|
@@ -20357,6 +22103,11 @@ export declare namespace PostConnectResponse {
|
|
|
20357
22103
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20358
22104
|
status_message?: string | null;
|
|
20359
22105
|
updated_at?: string;
|
|
22106
|
+
webhook_config?: string | number | boolean | {
|
|
22107
|
+
[key: string]: unknown;
|
|
22108
|
+
} | Array<unknown> | null;
|
|
22109
|
+
webhook_configured_at?: string | null;
|
|
22110
|
+
webhook_identifier?: string | null;
|
|
20360
22111
|
}
|
|
20361
22112
|
namespace ConnectorNotionDiscriminatedConnectionSettings {
|
|
20362
22113
|
interface Settings {
|
|
@@ -20424,6 +22175,11 @@ export declare namespace PostConnectResponse {
|
|
|
20424
22175
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20425
22176
|
status_message?: string | null;
|
|
20426
22177
|
updated_at?: string;
|
|
22178
|
+
webhook_config?: string | number | boolean | {
|
|
22179
|
+
[key: string]: unknown;
|
|
22180
|
+
} | Array<unknown> | null;
|
|
22181
|
+
webhook_configured_at?: string | null;
|
|
22182
|
+
webhook_identifier?: string | null;
|
|
20427
22183
|
}
|
|
20428
22184
|
namespace ConnectorOnedriveDiscriminatedConnectionSettings {
|
|
20429
22185
|
interface Settings {
|
|
@@ -20491,6 +22247,11 @@ export declare namespace PostConnectResponse {
|
|
|
20491
22247
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20492
22248
|
status_message?: string | null;
|
|
20493
22249
|
updated_at?: string;
|
|
22250
|
+
webhook_config?: string | number | boolean | {
|
|
22251
|
+
[key: string]: unknown;
|
|
22252
|
+
} | Array<unknown> | null;
|
|
22253
|
+
webhook_configured_at?: string | null;
|
|
22254
|
+
webhook_identifier?: string | null;
|
|
20494
22255
|
}
|
|
20495
22256
|
namespace ConnectorOutlookDiscriminatedConnectionSettings {
|
|
20496
22257
|
interface Settings {
|
|
@@ -20558,6 +22319,11 @@ export declare namespace PostConnectResponse {
|
|
|
20558
22319
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20559
22320
|
status_message?: string | null;
|
|
20560
22321
|
updated_at?: string;
|
|
22322
|
+
webhook_config?: string | number | boolean | {
|
|
22323
|
+
[key: string]: unknown;
|
|
22324
|
+
} | Array<unknown> | null;
|
|
22325
|
+
webhook_configured_at?: string | null;
|
|
22326
|
+
webhook_identifier?: string | null;
|
|
20561
22327
|
}
|
|
20562
22328
|
namespace ConnectorSalesforceDiscriminatedConnectionSettings {
|
|
20563
22329
|
interface Settings {
|
|
@@ -20629,6 +22395,11 @@ export declare namespace PostConnectResponse {
|
|
|
20629
22395
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20630
22396
|
status_message?: string | null;
|
|
20631
22397
|
updated_at?: string;
|
|
22398
|
+
webhook_config?: string | number | boolean | {
|
|
22399
|
+
[key: string]: unknown;
|
|
22400
|
+
} | Array<unknown> | null;
|
|
22401
|
+
webhook_configured_at?: string | null;
|
|
22402
|
+
webhook_identifier?: string | null;
|
|
20632
22403
|
}
|
|
20633
22404
|
namespace ConnectorSharepointDiscriminatedConnectionSettings {
|
|
20634
22405
|
interface Settings {
|
|
@@ -20696,6 +22467,11 @@ export declare namespace PostConnectResponse {
|
|
|
20696
22467
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20697
22468
|
status_message?: string | null;
|
|
20698
22469
|
updated_at?: string;
|
|
22470
|
+
webhook_config?: string | number | boolean | {
|
|
22471
|
+
[key: string]: unknown;
|
|
22472
|
+
} | Array<unknown> | null;
|
|
22473
|
+
webhook_configured_at?: string | null;
|
|
22474
|
+
webhook_identifier?: string | null;
|
|
20699
22475
|
}
|
|
20700
22476
|
namespace ConnectorSlackDeployedAgentDiscriminatedConnectionSettings {
|
|
20701
22477
|
interface Settings {
|
|
@@ -20763,6 +22539,11 @@ export declare namespace PostConnectResponse {
|
|
|
20763
22539
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20764
22540
|
status_message?: string | null;
|
|
20765
22541
|
updated_at?: string;
|
|
22542
|
+
webhook_config?: string | number | boolean | {
|
|
22543
|
+
[key: string]: unknown;
|
|
22544
|
+
} | Array<unknown> | null;
|
|
22545
|
+
webhook_configured_at?: string | null;
|
|
22546
|
+
webhook_identifier?: string | null;
|
|
20766
22547
|
}
|
|
20767
22548
|
namespace ConnectorSlackDiscriminatedConnectionSettings {
|
|
20768
22549
|
interface Settings {
|
|
@@ -20830,6 +22611,11 @@ export declare namespace PostConnectResponse {
|
|
|
20830
22611
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20831
22612
|
status_message?: string | null;
|
|
20832
22613
|
updated_at?: string;
|
|
22614
|
+
webhook_config?: string | number | boolean | {
|
|
22615
|
+
[key: string]: unknown;
|
|
22616
|
+
} | Array<unknown> | null;
|
|
22617
|
+
webhook_configured_at?: string | null;
|
|
22618
|
+
webhook_identifier?: string | null;
|
|
20833
22619
|
}
|
|
20834
22620
|
namespace ConnectorSnowflakeDiscriminatedConnectionSettings {
|
|
20835
22621
|
interface Settings {
|
|
@@ -20902,6 +22688,11 @@ export declare namespace PostConnectResponse {
|
|
|
20902
22688
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20903
22689
|
status_message?: string | null;
|
|
20904
22690
|
updated_at?: string;
|
|
22691
|
+
webhook_config?: string | number | boolean | {
|
|
22692
|
+
[key: string]: unknown;
|
|
22693
|
+
} | Array<unknown> | null;
|
|
22694
|
+
webhook_configured_at?: string | null;
|
|
22695
|
+
webhook_identifier?: string | null;
|
|
20905
22696
|
}
|
|
20906
22697
|
namespace ConnectorSpotifyDiscriminatedConnectionSettings {
|
|
20907
22698
|
interface Settings {
|
|
@@ -20969,6 +22760,11 @@ export declare namespace PostConnectResponse {
|
|
|
20969
22760
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
20970
22761
|
status_message?: string | null;
|
|
20971
22762
|
updated_at?: string;
|
|
22763
|
+
webhook_config?: string | number | boolean | {
|
|
22764
|
+
[key: string]: unknown;
|
|
22765
|
+
} | Array<unknown> | null;
|
|
22766
|
+
webhook_configured_at?: string | null;
|
|
22767
|
+
webhook_identifier?: string | null;
|
|
20972
22768
|
}
|
|
20973
22769
|
namespace ConnectorYoutubeDiscriminatedConnectionSettings {
|
|
20974
22770
|
interface Settings {
|
|
@@ -21036,6 +22832,11 @@ export declare namespace PostConnectResponse {
|
|
|
21036
22832
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21037
22833
|
status_message?: string | null;
|
|
21038
22834
|
updated_at?: string;
|
|
22835
|
+
webhook_config?: string | number | boolean | {
|
|
22836
|
+
[key: string]: unknown;
|
|
22837
|
+
} | Array<unknown> | null;
|
|
22838
|
+
webhook_configured_at?: string | null;
|
|
22839
|
+
webhook_identifier?: string | null;
|
|
21039
22840
|
}
|
|
21040
22841
|
namespace ConnectorZendeskDiscriminatedConnectionSettings {
|
|
21041
22842
|
interface Settings {
|
|
@@ -21107,6 +22908,11 @@ export declare namespace PostConnectResponse {
|
|
|
21107
22908
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21108
22909
|
status_message?: string | null;
|
|
21109
22910
|
updated_at?: string;
|
|
22911
|
+
webhook_config?: string | number | boolean | {
|
|
22912
|
+
[key: string]: unknown;
|
|
22913
|
+
} | Array<unknown> | null;
|
|
22914
|
+
webhook_configured_at?: string | null;
|
|
22915
|
+
webhook_identifier?: string | null;
|
|
21110
22916
|
}
|
|
21111
22917
|
namespace ConnectorZoomDiscriminatedConnectionSettings {
|
|
21112
22918
|
interface Settings {
|
|
@@ -21152,8 +22958,41 @@ export declare namespace PostConnectResponse {
|
|
|
21152
22958
|
}
|
|
21153
22959
|
}
|
|
21154
22960
|
}
|
|
21155
|
-
interface ConnectorApolloDiscriminatedConnectionSettings {
|
|
21156
|
-
connector_name: 'apollo';
|
|
22961
|
+
interface ConnectorApolloDiscriminatedConnectionSettings {
|
|
22962
|
+
connector_name: 'apollo';
|
|
22963
|
+
id?: string;
|
|
22964
|
+
connector_config_id?: string | null;
|
|
22965
|
+
created_at?: string;
|
|
22966
|
+
customer_id?: string | null;
|
|
22967
|
+
disabled?: boolean | null;
|
|
22968
|
+
display_name?: string | null;
|
|
22969
|
+
environment?: 'production' | 'development';
|
|
22970
|
+
integration_id?: string | null;
|
|
22971
|
+
/**
|
|
22972
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
22973
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
22974
|
+
* updates this object will be shallowly merged
|
|
22975
|
+
*/
|
|
22976
|
+
metadata?: {
|
|
22977
|
+
[key: string]: unknown;
|
|
22978
|
+
} | null;
|
|
22979
|
+
settings?: ConnectorApolloDiscriminatedConnectionSettings.Settings;
|
|
22980
|
+
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
22981
|
+
status_message?: string | null;
|
|
22982
|
+
updated_at?: string;
|
|
22983
|
+
webhook_config?: string | number | boolean | {
|
|
22984
|
+
[key: string]: unknown;
|
|
22985
|
+
} | Array<unknown> | null;
|
|
22986
|
+
webhook_configured_at?: string | null;
|
|
22987
|
+
webhook_identifier?: string | null;
|
|
22988
|
+
}
|
|
22989
|
+
namespace ConnectorApolloDiscriminatedConnectionSettings {
|
|
22990
|
+
interface Settings {
|
|
22991
|
+
api_key: string;
|
|
22992
|
+
}
|
|
22993
|
+
}
|
|
22994
|
+
interface ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
22995
|
+
connector_name: 'custom-mcp';
|
|
21157
22996
|
id?: string;
|
|
21158
22997
|
connector_config_id?: string | null;
|
|
21159
22998
|
created_at?: string;
|
|
@@ -21170,14 +23009,42 @@ export declare namespace PostConnectResponse {
|
|
|
21170
23009
|
metadata?: {
|
|
21171
23010
|
[key: string]: unknown;
|
|
21172
23011
|
} | null;
|
|
21173
|
-
settings?:
|
|
23012
|
+
settings?: ConnectorCustomMcpDiscriminatedConnectionSettings.Settings;
|
|
21174
23013
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21175
23014
|
status_message?: string | null;
|
|
21176
23015
|
updated_at?: string;
|
|
23016
|
+
webhook_config?: string | number | boolean | {
|
|
23017
|
+
[key: string]: unknown;
|
|
23018
|
+
} | Array<unknown> | null;
|
|
23019
|
+
webhook_configured_at?: string | null;
|
|
23020
|
+
webhook_identifier?: string | null;
|
|
21177
23021
|
}
|
|
21178
|
-
namespace
|
|
23022
|
+
namespace ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
21179
23023
|
interface Settings {
|
|
21180
|
-
|
|
23024
|
+
/**
|
|
23025
|
+
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
23026
|
+
*/
|
|
23027
|
+
base_url: string;
|
|
23028
|
+
/**
|
|
23029
|
+
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
23030
|
+
*/
|
|
23031
|
+
display_name: string;
|
|
23032
|
+
/**
|
|
23033
|
+
* Custom headers to include with every request
|
|
23034
|
+
*/
|
|
23035
|
+
headers: Array<Settings.Header>;
|
|
23036
|
+
}
|
|
23037
|
+
namespace Settings {
|
|
23038
|
+
interface Header {
|
|
23039
|
+
/**
|
|
23040
|
+
* Header name (e.g., Authorization, X-API-Key)
|
|
23041
|
+
*/
|
|
23042
|
+
key: string;
|
|
23043
|
+
/**
|
|
23044
|
+
* Header value (securely stored)
|
|
23045
|
+
*/
|
|
23046
|
+
value: string;
|
|
23047
|
+
}
|
|
21181
23048
|
}
|
|
21182
23049
|
}
|
|
21183
23050
|
interface ConnectorPlaidDiscriminatedConnectionSettings {
|
|
@@ -21202,6 +23069,11 @@ export declare namespace PostConnectResponse {
|
|
|
21202
23069
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21203
23070
|
status_message?: string | null;
|
|
21204
23071
|
updated_at?: string;
|
|
23072
|
+
webhook_config?: string | number | boolean | {
|
|
23073
|
+
[key: string]: unknown;
|
|
23074
|
+
} | Array<unknown> | null;
|
|
23075
|
+
webhook_configured_at?: string | null;
|
|
23076
|
+
webhook_identifier?: string | null;
|
|
21205
23077
|
}
|
|
21206
23078
|
namespace ConnectorPlaidDiscriminatedConnectionSettings {
|
|
21207
23079
|
interface Settings {
|
|
@@ -21235,6 +23107,11 @@ export declare namespace PostConnectResponse {
|
|
|
21235
23107
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21236
23108
|
status_message?: string | null;
|
|
21237
23109
|
updated_at?: string;
|
|
23110
|
+
webhook_config?: string | number | boolean | {
|
|
23111
|
+
[key: string]: unknown;
|
|
23112
|
+
} | Array<unknown> | null;
|
|
23113
|
+
webhook_configured_at?: string | null;
|
|
23114
|
+
webhook_identifier?: string | null;
|
|
21238
23115
|
}
|
|
21239
23116
|
namespace ConnectorPostgresDiscriminatedConnectionSettings {
|
|
21240
23117
|
interface Settings {
|
|
@@ -21263,6 +23140,11 @@ export declare namespace PostConnectResponse {
|
|
|
21263
23140
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21264
23141
|
status_message?: string | null;
|
|
21265
23142
|
updated_at?: string;
|
|
23143
|
+
webhook_config?: string | number | boolean | {
|
|
23144
|
+
[key: string]: unknown;
|
|
23145
|
+
} | Array<unknown> | null;
|
|
23146
|
+
webhook_configured_at?: string | null;
|
|
23147
|
+
webhook_identifier?: string | null;
|
|
21266
23148
|
}
|
|
21267
23149
|
namespace ConnectorResendDiscriminatedConnectionSettings {
|
|
21268
23150
|
interface Settings {
|
|
@@ -21295,6 +23177,11 @@ export declare namespace PostConnectResponse {
|
|
|
21295
23177
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21296
23178
|
status_message?: string | null;
|
|
21297
23179
|
updated_at?: string;
|
|
23180
|
+
webhook_config?: string | number | boolean | {
|
|
23181
|
+
[key: string]: unknown;
|
|
23182
|
+
} | Array<unknown> | null;
|
|
23183
|
+
webhook_configured_at?: string | null;
|
|
23184
|
+
webhook_identifier?: string | null;
|
|
21298
23185
|
}
|
|
21299
23186
|
namespace ConnectorSendgridDiscriminatedConnectionSettings {
|
|
21300
23187
|
interface Settings {
|
|
@@ -21327,6 +23214,11 @@ export declare namespace PostConnectResponse {
|
|
|
21327
23214
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21328
23215
|
status_message?: string | null;
|
|
21329
23216
|
updated_at?: string;
|
|
23217
|
+
webhook_config?: string | number | boolean | {
|
|
23218
|
+
[key: string]: unknown;
|
|
23219
|
+
} | Array<unknown> | null;
|
|
23220
|
+
webhook_configured_at?: string | null;
|
|
23221
|
+
webhook_identifier?: string | null;
|
|
21330
23222
|
}
|
|
21331
23223
|
namespace ConnectorSlackAgentDiscriminatedConnectionSettings {
|
|
21332
23224
|
interface Settings {
|
|
@@ -21358,6 +23250,11 @@ export declare namespace PostConnectResponse {
|
|
|
21358
23250
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21359
23251
|
status_message?: string | null;
|
|
21360
23252
|
updated_at?: string;
|
|
23253
|
+
webhook_config?: string | number | boolean | {
|
|
23254
|
+
[key: string]: unknown;
|
|
23255
|
+
} | Array<unknown> | null;
|
|
23256
|
+
webhook_configured_at?: string | null;
|
|
23257
|
+
webhook_identifier?: string | null;
|
|
21361
23258
|
}
|
|
21362
23259
|
namespace ConnectorSlackAgentBuilderDiscriminatedConnectionSettings {
|
|
21363
23260
|
interface Settings {
|
|
@@ -21500,6 +23397,11 @@ export declare namespace PostConnectResponse {
|
|
|
21500
23397
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21501
23398
|
status_message?: string | null;
|
|
21502
23399
|
updated_at?: string;
|
|
23400
|
+
webhook_config?: string | number | boolean | {
|
|
23401
|
+
[key: string]: unknown;
|
|
23402
|
+
} | Array<unknown> | null;
|
|
23403
|
+
webhook_configured_at?: string | null;
|
|
23404
|
+
webhook_identifier?: string | null;
|
|
21503
23405
|
}
|
|
21504
23406
|
namespace ConnectorStripeDiscriminatedConnectionSettings {
|
|
21505
23407
|
interface Settings {
|
|
@@ -21567,6 +23469,11 @@ export declare namespace PostConnectResponse {
|
|
|
21567
23469
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21568
23470
|
status_message?: string | null;
|
|
21569
23471
|
updated_at?: string;
|
|
23472
|
+
webhook_config?: string | number | boolean | {
|
|
23473
|
+
[key: string]: unknown;
|
|
23474
|
+
} | Array<unknown> | null;
|
|
23475
|
+
webhook_configured_at?: string | null;
|
|
23476
|
+
webhook_identifier?: string | null;
|
|
21570
23477
|
}
|
|
21571
23478
|
namespace ConnectorStripeAgentSandboxDiscriminatedConnectionSettings {
|
|
21572
23479
|
interface Settings {
|
|
@@ -21634,6 +23541,11 @@ export declare namespace PostConnectResponse {
|
|
|
21634
23541
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21635
23542
|
status_message?: string | null;
|
|
21636
23543
|
updated_at?: string;
|
|
23544
|
+
webhook_config?: string | number | boolean | {
|
|
23545
|
+
[key: string]: unknown;
|
|
23546
|
+
} | Array<unknown> | null;
|
|
23547
|
+
webhook_configured_at?: string | null;
|
|
23548
|
+
webhook_identifier?: string | null;
|
|
21637
23549
|
}
|
|
21638
23550
|
namespace ConnectorTwilioDiscriminatedConnectionSettings {
|
|
21639
23551
|
interface Settings {
|
|
@@ -21668,6 +23580,11 @@ export declare namespace PostConnectResponse {
|
|
|
21668
23580
|
status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
|
|
21669
23581
|
status_message?: string | null;
|
|
21670
23582
|
updated_at?: string;
|
|
23583
|
+
webhook_config?: string | number | boolean | {
|
|
23584
|
+
[key: string]: unknown;
|
|
23585
|
+
} | Array<unknown> | null;
|
|
23586
|
+
webhook_configured_at?: string | null;
|
|
23587
|
+
webhook_identifier?: string | null;
|
|
21671
23588
|
}
|
|
21672
23589
|
namespace ConnectorWorkatoDiscriminatedConnectionSettings {
|
|
21673
23590
|
interface Settings {
|
|
@@ -21680,7 +23597,7 @@ export declare namespace PostConnectResponse {
|
|
|
21680
23597
|
export type PreConfigureConnectorResponse = {
|
|
21681
23598
|
[key: string]: unknown;
|
|
21682
23599
|
};
|
|
21683
|
-
export type PreConnectResponse = PreConnectResponse.ConnectorAcmeApikeyDiscriminatedConnectInput | PreConnectResponse.ConnectorAcmeOauth2DiscriminatedConnectInput | PreConnectResponse.ConnectorAgentmailDiscriminatedConnectInput | PreConnectResponse.ConnectorAsanaDiscriminatedConnectInput | PreConnectResponse.ConnectorBigqueryDiscriminatedConnectInput | PreConnectResponse.ConnectorBitbucketSourceControlDiscriminatedConnectInput | PreConnectResponse.ConnectorBitbucketDiscriminatedConnectInput | PreConnectResponse.ConnectorBoxDiscriminatedConnectInput | PreConnectResponse.ConnectorCalendlyDiscriminatedConnectInput | PreConnectResponse.ConnectorClickupDiscriminatedConnectInput | PreConnectResponse.ConnectorConfluenceDiscriminatedConnectInput | PreConnectResponse.ConnectorDatabricksDiscriminatedConnectInput | PreConnectResponse.ConnectorDiscordDiscriminatedConnectInput | PreConnectResponse.ConnectorDropboxDiscriminatedConnectInput | PreConnectResponse.ConnectorFigmaDiscriminatedConnectInput | PreConnectResponse.ConnectorGitHubSourceControlDiscriminatedConnectInput | PreConnectResponse.ConnectorGitHubDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleCalendarDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleDocsDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleDriveDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleMailDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleSheetDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleSlidesDiscriminatedConnectInput | PreConnectResponse.ConnectorHubspotDiscriminatedConnectInput | PreConnectResponse.ConnectorInstagramDiscriminatedConnectInput | PreConnectResponse.ConnectorJiraDiscriminatedConnectInput | PreConnectResponse.ConnectorLinearDiscriminatedConnectInput | PreConnectResponse.ConnectorMondayDiscriminatedConnectInput | PreConnectResponse.ConnectorNotionDiscriminatedConnectInput | PreConnectResponse.ConnectorOnedriveDiscriminatedConnectInput | PreConnectResponse.ConnectorOutlookDiscriminatedConnectInput | PreConnectResponse.ConnectorSalesforceDiscriminatedConnectInput | PreConnectResponse.ConnectorSharepointDiscriminatedConnectInput | PreConnectResponse.ConnectorSlackDeployedAgentDiscriminatedConnectInput | PreConnectResponse.ConnectorSlackDiscriminatedConnectInput | PreConnectResponse.ConnectorSnowflakeDiscriminatedConnectInput | PreConnectResponse.ConnectorSpotifyDiscriminatedConnectInput | PreConnectResponse.ConnectorYoutubeDiscriminatedConnectInput | PreConnectResponse.ConnectorZendeskDiscriminatedConnectInput | PreConnectResponse.ConnectorZoomDiscriminatedConnectInput | PreConnectResponse.ConnectorApolloDiscriminatedConnectInput | PreConnectResponse.ConnectorPlaidDiscriminatedConnectInput | PreConnectResponse.ConnectorPostgresDiscriminatedConnectInput | PreConnectResponse.ConnectorResendDiscriminatedConnectInput | PreConnectResponse.ConnectorSendgridDiscriminatedConnectInput | PreConnectResponse.ConnectorSlackAgentDiscriminatedConnectInput | PreConnectResponse.ConnectorSlackAgentBuilderDiscriminatedConnectInput | PreConnectResponse.ConnectorStripeDiscriminatedConnectInput | PreConnectResponse.ConnectorStripeAgentSandboxDiscriminatedConnectInput | PreConnectResponse.ConnectorTwilioDiscriminatedConnectInput | PreConnectResponse.ConnectorWorkatoDiscriminatedConnectInput;
|
|
23600
|
+
export type PreConnectResponse = PreConnectResponse.ConnectorAcmeApikeyDiscriminatedConnectInput | PreConnectResponse.ConnectorAcmeOauth2DiscriminatedConnectInput | PreConnectResponse.ConnectorAgentmailDiscriminatedConnectInput | PreConnectResponse.ConnectorAsanaDiscriminatedConnectInput | PreConnectResponse.ConnectorBigqueryDiscriminatedConnectInput | PreConnectResponse.ConnectorBitbucketSourceControlDiscriminatedConnectInput | PreConnectResponse.ConnectorBitbucketDiscriminatedConnectInput | PreConnectResponse.ConnectorBoxDiscriminatedConnectInput | PreConnectResponse.ConnectorCalendlyDiscriminatedConnectInput | PreConnectResponse.ConnectorClickupDiscriminatedConnectInput | PreConnectResponse.ConnectorConfluenceDiscriminatedConnectInput | PreConnectResponse.ConnectorDatabricksDiscriminatedConnectInput | PreConnectResponse.ConnectorDiscordDiscriminatedConnectInput | PreConnectResponse.ConnectorDropboxDiscriminatedConnectInput | PreConnectResponse.ConnectorFigmaDiscriminatedConnectInput | PreConnectResponse.ConnectorGitHubSourceControlDiscriminatedConnectInput | PreConnectResponse.ConnectorGitHubDiscriminatedConnectInput | PreConnectResponse.ConnectorGitlabSourceControlDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleCalendarDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleDocsDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleDriveDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleMailDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleSheetDiscriminatedConnectInput | PreConnectResponse.ConnectorGoogleSlidesDiscriminatedConnectInput | PreConnectResponse.ConnectorHubspotDiscriminatedConnectInput | PreConnectResponse.ConnectorInstagramDiscriminatedConnectInput | PreConnectResponse.ConnectorJiraDiscriminatedConnectInput | PreConnectResponse.ConnectorLinearDiscriminatedConnectInput | PreConnectResponse.ConnectorMondayDiscriminatedConnectInput | PreConnectResponse.ConnectorNotionDiscriminatedConnectInput | PreConnectResponse.ConnectorOnedriveDiscriminatedConnectInput | PreConnectResponse.ConnectorOutlookDiscriminatedConnectInput | PreConnectResponse.ConnectorSalesforceDiscriminatedConnectInput | PreConnectResponse.ConnectorSharepointDiscriminatedConnectInput | PreConnectResponse.ConnectorSlackDeployedAgentDiscriminatedConnectInput | PreConnectResponse.ConnectorSlackDiscriminatedConnectInput | PreConnectResponse.ConnectorSnowflakeDiscriminatedConnectInput | PreConnectResponse.ConnectorSpotifyDiscriminatedConnectInput | PreConnectResponse.ConnectorYoutubeDiscriminatedConnectInput | PreConnectResponse.ConnectorZendeskDiscriminatedConnectInput | PreConnectResponse.ConnectorZoomDiscriminatedConnectInput | PreConnectResponse.ConnectorApolloDiscriminatedConnectInput | PreConnectResponse.ConnectorCustomMcpDiscriminatedConnectInput | PreConnectResponse.ConnectorPlaidDiscriminatedConnectInput | PreConnectResponse.ConnectorPostgresDiscriminatedConnectInput | PreConnectResponse.ConnectorResendDiscriminatedConnectInput | PreConnectResponse.ConnectorSendgridDiscriminatedConnectInput | PreConnectResponse.ConnectorSlackAgentDiscriminatedConnectInput | PreConnectResponse.ConnectorSlackAgentBuilderDiscriminatedConnectInput | PreConnectResponse.ConnectorStripeDiscriminatedConnectInput | PreConnectResponse.ConnectorStripeAgentSandboxDiscriminatedConnectInput | PreConnectResponse.ConnectorTwilioDiscriminatedConnectInput | PreConnectResponse.ConnectorWorkatoDiscriminatedConnectInput;
|
|
21684
23601
|
export declare namespace PreConnectResponse {
|
|
21685
23602
|
interface ConnectorAcmeApikeyDiscriminatedConnectInput {
|
|
21686
23603
|
connect_input: unknown;
|
|
@@ -21930,6 +23847,22 @@ export declare namespace PreConnectResponse {
|
|
|
21930
23847
|
code_verifier?: string;
|
|
21931
23848
|
}
|
|
21932
23849
|
}
|
|
23850
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectInput {
|
|
23851
|
+
connect_input: ConnectorGitlabSourceControlDiscriminatedConnectInput.ConnectInput;
|
|
23852
|
+
connector_name: 'gitlab-source-control';
|
|
23853
|
+
}
|
|
23854
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectInput {
|
|
23855
|
+
interface ConnectInput {
|
|
23856
|
+
/**
|
|
23857
|
+
* URL to take user to for approval
|
|
23858
|
+
*/
|
|
23859
|
+
authorization_url: string;
|
|
23860
|
+
/**
|
|
23861
|
+
* Code verifier for PKCE
|
|
23862
|
+
*/
|
|
23863
|
+
code_verifier?: string;
|
|
23864
|
+
}
|
|
23865
|
+
}
|
|
21933
23866
|
interface ConnectorGoogleCalendarDiscriminatedConnectInput {
|
|
21934
23867
|
connect_input: ConnectorGoogleCalendarDiscriminatedConnectInput.ConnectInput;
|
|
21935
23868
|
connector_name: 'google-calendar';
|
|
@@ -22302,6 +24235,38 @@ export declare namespace PreConnectResponse {
|
|
|
22302
24235
|
connect_input: unknown;
|
|
22303
24236
|
connector_name: 'apollo';
|
|
22304
24237
|
}
|
|
24238
|
+
interface ConnectorCustomMcpDiscriminatedConnectInput {
|
|
24239
|
+
connect_input: ConnectorCustomMcpDiscriminatedConnectInput.ConnectInput;
|
|
24240
|
+
connector_name: 'custom-mcp';
|
|
24241
|
+
}
|
|
24242
|
+
namespace ConnectorCustomMcpDiscriminatedConnectInput {
|
|
24243
|
+
interface ConnectInput {
|
|
24244
|
+
/**
|
|
24245
|
+
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
24246
|
+
*/
|
|
24247
|
+
base_url: string;
|
|
24248
|
+
/**
|
|
24249
|
+
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
24250
|
+
*/
|
|
24251
|
+
display_name: string;
|
|
24252
|
+
/**
|
|
24253
|
+
* Custom headers to include with every request
|
|
24254
|
+
*/
|
|
24255
|
+
headers: Array<ConnectInput.Header>;
|
|
24256
|
+
}
|
|
24257
|
+
namespace ConnectInput {
|
|
24258
|
+
interface Header {
|
|
24259
|
+
/**
|
|
24260
|
+
* Header name (e.g., Authorization, X-API-Key)
|
|
24261
|
+
*/
|
|
24262
|
+
key: string;
|
|
24263
|
+
/**
|
|
24264
|
+
* Header value (securely stored)
|
|
24265
|
+
*/
|
|
24266
|
+
value: string;
|
|
24267
|
+
}
|
|
24268
|
+
}
|
|
24269
|
+
}
|
|
22305
24270
|
interface ConnectorPlaidDiscriminatedConnectInput {
|
|
22306
24271
|
connect_input: ConnectorPlaidDiscriminatedConnectInput.LinkToken | ConnectorPlaidDiscriminatedConnectInput.PublicToken;
|
|
22307
24272
|
connector_name: 'plaid';
|
|
@@ -22419,7 +24384,7 @@ export declare namespace PreConnectResponse {
|
|
|
22419
24384
|
connector_name: 'workato';
|
|
22420
24385
|
}
|
|
22421
24386
|
}
|
|
22422
|
-
export type UpsertConnnectorConfigResponse = UpsertConnnectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorBitbucketDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorBoxDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorCalendlyDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorClickupDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorConfluenceDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorDatabricksDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorDiscordDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorDropboxDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorFigmaDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGitHubDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorHubspotDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorInstagramDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorJiraDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorLinearDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorMondayDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorNotionDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorOnedriveDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorOutlookDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSalesforceDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSharepointDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSlackDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSpotifyDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorYoutubeDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorZendeskDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorZoomDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorApolloDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorPlaidDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorPostgresDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorResendDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSendgridDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorStripeDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorTwilioDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
24387
|
+
export type UpsertConnnectorConfigResponse = UpsertConnnectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorBitbucketDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorBoxDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorCalendlyDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorClickupDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorConfluenceDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorDatabricksDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorDiscordDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorDropboxDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorFigmaDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGitHubSourceControlDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGitHubDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGitlabSourceControlDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleCalendarDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleDocsDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleDriveDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleMailDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleSheetDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorGoogleSlidesDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorHubspotDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorInstagramDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorJiraDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorLinearDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorMondayDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorNotionDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorOnedriveDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorOutlookDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSalesforceDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSharepointDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSlackDeployedAgentDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSlackDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSnowflakeDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSpotifyDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorYoutubeDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorZendeskDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorZoomDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorApolloDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorCustomMcpDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorPlaidDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorPostgresDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorResendDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSendgridDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSlackAgentDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorSlackAgentBuilderDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorStripeDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorStripeAgentSandboxDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorTwilioDiscriminatedConnectorConfig | UpsertConnnectorConfigResponse.ConnectorWorkatoDiscriminatedConnectorConfig;
|
|
22423
24388
|
export declare namespace UpsertConnnectorConfigResponse {
|
|
22424
24389
|
interface ConnectorAcmeApikeyDiscriminatedConnectorConfig {
|
|
22425
24390
|
/**
|
|
@@ -23063,6 +25028,46 @@ export declare namespace UpsertConnnectorConfigResponse {
|
|
|
23063
25028
|
}
|
|
23064
25029
|
}
|
|
23065
25030
|
}
|
|
25031
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
25032
|
+
config: ConnectorGitlabSourceControlDiscriminatedConnectorConfig.Config;
|
|
25033
|
+
connector_name: 'gitlab-source-control';
|
|
25034
|
+
id?: string;
|
|
25035
|
+
created_at?: string;
|
|
25036
|
+
disabled?: boolean | null;
|
|
25037
|
+
display_name?: string | null;
|
|
25038
|
+
/**
|
|
25039
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
25040
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
25041
|
+
* updates this object will be shallowly merged
|
|
25042
|
+
*/
|
|
25043
|
+
metadata?: {
|
|
25044
|
+
[key: string]: unknown;
|
|
25045
|
+
} | null;
|
|
25046
|
+
org_id?: string;
|
|
25047
|
+
updated_at?: string;
|
|
25048
|
+
}
|
|
25049
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectorConfig {
|
|
25050
|
+
interface Config {
|
|
25051
|
+
/**
|
|
25052
|
+
* Base oauth configuration for the connector
|
|
25053
|
+
*/
|
|
25054
|
+
oauth?: Config.OAuth | null;
|
|
25055
|
+
}
|
|
25056
|
+
namespace Config {
|
|
25057
|
+
/**
|
|
25058
|
+
* Base oauth configuration for the connector
|
|
25059
|
+
*/
|
|
25060
|
+
interface OAuth {
|
|
25061
|
+
client_id?: string | null;
|
|
25062
|
+
client_secret?: string | null;
|
|
25063
|
+
/**
|
|
25064
|
+
* Custom redirect URI
|
|
25065
|
+
*/
|
|
25066
|
+
redirect_uri?: string | null;
|
|
25067
|
+
scopes?: Array<string> | null;
|
|
25068
|
+
}
|
|
25069
|
+
}
|
|
25070
|
+
}
|
|
23066
25071
|
interface ConnectorGoogleCalendarDiscriminatedConnectorConfig {
|
|
23067
25072
|
config: ConnectorGoogleCalendarDiscriminatedConnectorConfig.Config;
|
|
23068
25073
|
connector_name: 'google-calendar';
|
|
@@ -24001,6 +26006,24 @@ export declare namespace UpsertConnnectorConfigResponse {
|
|
|
24001
26006
|
org_id?: string;
|
|
24002
26007
|
updated_at?: string;
|
|
24003
26008
|
}
|
|
26009
|
+
interface ConnectorCustomMcpDiscriminatedConnectorConfig {
|
|
26010
|
+
config: unknown;
|
|
26011
|
+
connector_name: 'custom-mcp';
|
|
26012
|
+
id?: string;
|
|
26013
|
+
created_at?: string;
|
|
26014
|
+
disabled?: boolean | null;
|
|
26015
|
+
display_name?: string | null;
|
|
26016
|
+
/**
|
|
26017
|
+
* JSON object can can be used to associate arbitrary metadata to avoid needing a
|
|
26018
|
+
* separate 1-1 table just for simple key values in your application. During
|
|
26019
|
+
* updates this object will be shallowly merged
|
|
26020
|
+
*/
|
|
26021
|
+
metadata?: {
|
|
26022
|
+
[key: string]: unknown;
|
|
26023
|
+
} | null;
|
|
26024
|
+
org_id?: string;
|
|
26025
|
+
updated_at?: string;
|
|
26026
|
+
}
|
|
24004
26027
|
interface ConnectorPlaidDiscriminatedConnectorConfig {
|
|
24005
26028
|
config: ConnectorPlaidDiscriminatedConnectorConfig.Config;
|
|
24006
26029
|
connector_name: 'plaid';
|
|
@@ -24322,7 +26345,7 @@ export interface CreateConnectionParams {
|
|
|
24322
26345
|
/**
|
|
24323
26346
|
* Connector specific data
|
|
24324
26347
|
*/
|
|
24325
|
-
data: CreateConnectionParams.ConnectorAcmeApikeyDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorAcmeOauth2DiscriminatedConnectionSettings | CreateConnectionParams.ConnectorAgentmailDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorAsanaDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorBigqueryDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorBitbucketDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorBoxDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorCalendlyDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorClickupDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorConfluenceDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorDatabricksDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorDiscordDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorDropboxDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorFigmaDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGitHubDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleCalendarDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleDocsDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleDriveDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleMailDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleSheetDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleSlidesDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorHubspotDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorInstagramDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorJiraDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorLinearDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorMondayDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorNotionDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorOnedriveDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorOutlookDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSalesforceDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSharepointDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSlackDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSnowflakeDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSpotifyDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorYoutubeDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorZendeskDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorZoomDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorApolloDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorPlaidDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorPostgresDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorResendDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSendgridDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSlackAgentDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorStripeDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorTwilioDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
26348
|
+
data: CreateConnectionParams.ConnectorAcmeApikeyDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorAcmeOauth2DiscriminatedConnectionSettings | CreateConnectionParams.ConnectorAgentmailDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorAsanaDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorBigqueryDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorBitbucketDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorBoxDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorCalendlyDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorClickupDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorConfluenceDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorDatabricksDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorDiscordDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorDropboxDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorFigmaDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGitHubSourceControlDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGitHubDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGitlabSourceControlDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleCalendarDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleDocsDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleDriveDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleMailDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleSheetDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorGoogleSlidesDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorHubspotDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorInstagramDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorJiraDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorLinearDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorMondayDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorNotionDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorOnedriveDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorOutlookDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSalesforceDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSharepointDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSlackDeployedAgentDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSlackDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSnowflakeDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSpotifyDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorYoutubeDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorZendeskDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorZoomDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorApolloDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorCustomMcpDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorPlaidDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorPostgresDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorResendDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSendgridDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSlackAgentDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorSlackAgentBuilderDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorStripeDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorStripeAgentSandboxDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorTwilioDiscriminatedConnectionSettings | CreateConnectionParams.ConnectorWorkatoDiscriminatedConnectionSettings;
|
|
24326
26349
|
/**
|
|
24327
26350
|
* Perform a synchronous connection check before creating it.
|
|
24328
26351
|
*/
|
|
@@ -24462,6 +26485,11 @@ export declare namespace CreateConnectionParams {
|
|
|
24462
26485
|
namespace ConnectorBigqueryDiscriminatedConnectionSettings {
|
|
24463
26486
|
interface Settings {
|
|
24464
26487
|
oauth: Settings.OAuth;
|
|
26488
|
+
/**
|
|
26489
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
26490
|
+
* API calls to BigQuery.
|
|
26491
|
+
*/
|
|
26492
|
+
project_id: string;
|
|
24465
26493
|
/**
|
|
24466
26494
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
24467
26495
|
* for backward compatibility until we remove the oauth field
|
|
@@ -24802,12 +26830,17 @@ export declare namespace CreateConnectionParams {
|
|
|
24802
26830
|
namespace ConnectorDatabricksDiscriminatedConnectionSettings {
|
|
24803
26831
|
interface Settings {
|
|
24804
26832
|
/**
|
|
24805
|
-
*
|
|
24806
|
-
*
|
|
24807
|
-
* .cloud.databricks.com
|
|
26833
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
26834
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
24808
26835
|
*/
|
|
24809
|
-
|
|
26836
|
+
http_path: string;
|
|
24810
26837
|
oauth: Settings.OAuth;
|
|
26838
|
+
/**
|
|
26839
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
26840
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
26841
|
+
* Server hostname value.
|
|
26842
|
+
*/
|
|
26843
|
+
server_hostname: string;
|
|
24811
26844
|
/**
|
|
24812
26845
|
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
24813
26846
|
* for backward compatibility until we remove the oauth field
|
|
@@ -25089,6 +27122,54 @@ export declare namespace CreateConnectionParams {
|
|
|
25089
27122
|
}
|
|
25090
27123
|
}
|
|
25091
27124
|
}
|
|
27125
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
27126
|
+
connector_name: 'gitlab-source-control';
|
|
27127
|
+
settings?: ConnectorGitlabSourceControlDiscriminatedConnectionSettings.Settings;
|
|
27128
|
+
}
|
|
27129
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectionSettings {
|
|
27130
|
+
interface Settings {
|
|
27131
|
+
oauth: Settings.OAuth;
|
|
27132
|
+
/**
|
|
27133
|
+
* Same as oauth.credentials.access_token, but more convenient to access. Optional
|
|
27134
|
+
* for backward compatibility until we remove the oauth field
|
|
27135
|
+
*/
|
|
27136
|
+
access_token?: string;
|
|
27137
|
+
}
|
|
27138
|
+
namespace Settings {
|
|
27139
|
+
interface OAuth {
|
|
27140
|
+
created_at?: string;
|
|
27141
|
+
/**
|
|
27142
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
27143
|
+
*/
|
|
27144
|
+
credentials?: OAuth.Credentials;
|
|
27145
|
+
last_fetched_at?: string;
|
|
27146
|
+
metadata?: {
|
|
27147
|
+
[key: string]: unknown;
|
|
27148
|
+
} | null;
|
|
27149
|
+
updated_at?: string;
|
|
27150
|
+
}
|
|
27151
|
+
namespace OAuth {
|
|
27152
|
+
/**
|
|
27153
|
+
* Output of the postConnect hook for oauth2 connectors
|
|
27154
|
+
*/
|
|
27155
|
+
interface Credentials {
|
|
27156
|
+
access_token: string;
|
|
27157
|
+
/**
|
|
27158
|
+
* Client ID used for the connection
|
|
27159
|
+
*/
|
|
27160
|
+
client_id?: string;
|
|
27161
|
+
expires_at?: string;
|
|
27162
|
+
expires_in?: number;
|
|
27163
|
+
raw?: {
|
|
27164
|
+
[key: string]: unknown;
|
|
27165
|
+
};
|
|
27166
|
+
refresh_token?: string;
|
|
27167
|
+
scope?: string;
|
|
27168
|
+
token_type?: string;
|
|
27169
|
+
}
|
|
27170
|
+
}
|
|
27171
|
+
}
|
|
27172
|
+
}
|
|
25092
27173
|
interface ConnectorGoogleCalendarDiscriminatedConnectionSettings {
|
|
25093
27174
|
connector_name: 'google-calendar';
|
|
25094
27175
|
settings?: ConnectorGoogleCalendarDiscriminatedConnectionSettings.Settings;
|
|
@@ -26219,6 +28300,38 @@ export declare namespace CreateConnectionParams {
|
|
|
26219
28300
|
api_key: string;
|
|
26220
28301
|
}
|
|
26221
28302
|
}
|
|
28303
|
+
interface ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
28304
|
+
connector_name: 'custom-mcp';
|
|
28305
|
+
settings?: ConnectorCustomMcpDiscriminatedConnectionSettings.Settings;
|
|
28306
|
+
}
|
|
28307
|
+
namespace ConnectorCustomMcpDiscriminatedConnectionSettings {
|
|
28308
|
+
interface Settings {
|
|
28309
|
+
/**
|
|
28310
|
+
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
28311
|
+
*/
|
|
28312
|
+
base_url: string;
|
|
28313
|
+
/**
|
|
28314
|
+
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
28315
|
+
*/
|
|
28316
|
+
display_name: string;
|
|
28317
|
+
/**
|
|
28318
|
+
* Custom headers to include with every request
|
|
28319
|
+
*/
|
|
28320
|
+
headers: Array<Settings.Header>;
|
|
28321
|
+
}
|
|
28322
|
+
namespace Settings {
|
|
28323
|
+
interface Header {
|
|
28324
|
+
/**
|
|
28325
|
+
* Header name (e.g., Authorization, X-API-Key)
|
|
28326
|
+
*/
|
|
28327
|
+
key: string;
|
|
28328
|
+
/**
|
|
28329
|
+
* Header value (securely stored)
|
|
28330
|
+
*/
|
|
28331
|
+
value: string;
|
|
28332
|
+
}
|
|
28333
|
+
}
|
|
28334
|
+
}
|
|
26222
28335
|
interface ConnectorPlaidDiscriminatedConnectionSettings {
|
|
26223
28336
|
connector_name: 'plaid';
|
|
26224
28337
|
settings?: ConnectorPlaidDiscriminatedConnectionSettings.Settings;
|
|
@@ -26552,12 +28665,12 @@ export declare namespace CreateTokenParams {
|
|
|
26552
28665
|
* Automatically trigger connection flow for the specified connector when the page
|
|
26553
28666
|
* loads. Only works when view is "add" and the connector is available.
|
|
26554
28667
|
*/
|
|
26555
|
-
auto_connect?: 'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom';
|
|
28668
|
+
auto_connect?: 'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'custom-mcp' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'gitlab-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom';
|
|
26556
28669
|
/**
|
|
26557
28670
|
* The names of the connectors to show in the connect page. If not provided, all
|
|
26558
28671
|
* connectors will be shown
|
|
26559
28672
|
*/
|
|
26560
|
-
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
28673
|
+
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'custom-mcp' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'gitlab-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
26561
28674
|
/**
|
|
26562
28675
|
* Whether to enable debug mode
|
|
26563
28676
|
*/
|
|
@@ -26613,7 +28726,7 @@ export interface ListConnectionsParams extends OffsetPaginationParams {
|
|
|
26613
28726
|
* The id of the connector config, starts with `ccfg_`
|
|
26614
28727
|
*/
|
|
26615
28728
|
connector_config_id?: string;
|
|
26616
|
-
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
28729
|
+
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'custom-mcp' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'gitlab-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
26617
28730
|
/**
|
|
26618
28731
|
* The id of the customer in your application. Ensure it is unique for that
|
|
26619
28732
|
* customer.
|
|
@@ -26638,7 +28751,7 @@ export interface ListConnectionsParams extends OffsetPaginationParams {
|
|
|
26638
28751
|
search_query?: string;
|
|
26639
28752
|
}
|
|
26640
28753
|
export interface ListConnectorConfigsParams extends OffsetPaginationParams {
|
|
26641
|
-
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
28754
|
+
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'custom-mcp' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'gitlab-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
26642
28755
|
expand?: Array<'connector' | 'connector.schemas' | 'connection_count'>;
|
|
26643
28756
|
/**
|
|
26644
28757
|
* Include disabled connector configs in the response. By default, disabled configs
|
|
@@ -26660,7 +28773,7 @@ export interface ListConnectorsParams extends OffsetPaginationParams {
|
|
|
26660
28773
|
limit?: number;
|
|
26661
28774
|
}
|
|
26662
28775
|
export interface ListConnnectorConfigsParams extends OffsetPaginationParams {
|
|
26663
|
-
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
28776
|
+
connector_names?: Array<'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'custom-mcp' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'gitlab-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom'>;
|
|
26664
28777
|
expand?: Array<'connector' | 'connector.schemas' | 'connection_count'>;
|
|
26665
28778
|
/**
|
|
26666
28779
|
* Include disabled connector configs in the response. By default, disabled configs
|
|
@@ -26681,6 +28794,8 @@ export interface ListCustomersParams extends OffsetPaginationParams {
|
|
|
26681
28794
|
search_query?: string | null;
|
|
26682
28795
|
}
|
|
26683
28796
|
export interface ListEventsParams extends OffsetPaginationParams {
|
|
28797
|
+
connection_id?: string;
|
|
28798
|
+
connector_name?: string;
|
|
26684
28799
|
include_prompt?: boolean;
|
|
26685
28800
|
/**
|
|
26686
28801
|
* Limit the number of items returned
|
|
@@ -26688,6 +28803,7 @@ export interface ListEventsParams extends OffsetPaginationParams {
|
|
|
26688
28803
|
limit?: number;
|
|
26689
28804
|
search_query?: string;
|
|
26690
28805
|
since?: string;
|
|
28806
|
+
webhook_name?: string;
|
|
26691
28807
|
}
|
|
26692
28808
|
export interface PostConnectParams {
|
|
26693
28809
|
/**
|
|
@@ -26696,7 +28812,7 @@ export interface PostConnectParams {
|
|
|
26696
28812
|
* id alone.
|
|
26697
28813
|
*/
|
|
26698
28814
|
connector_config_id: string;
|
|
26699
|
-
discriminated_data: PostConnectParams.ConnectorAcmeApikeyDiscriminatedConnectOutput | PostConnectParams.ConnectorAcmeOauth2DiscriminatedConnectOutput | PostConnectParams.ConnectorAgentmailDiscriminatedConnectOutput | PostConnectParams.ConnectorAsanaDiscriminatedConnectOutput | PostConnectParams.ConnectorBigqueryDiscriminatedConnectOutput | PostConnectParams.ConnectorBitbucketSourceControlDiscriminatedConnectOutput | PostConnectParams.ConnectorBitbucketDiscriminatedConnectOutput | PostConnectParams.ConnectorBoxDiscriminatedConnectOutput | PostConnectParams.ConnectorCalendlyDiscriminatedConnectOutput | PostConnectParams.ConnectorClickupDiscriminatedConnectOutput | PostConnectParams.ConnectorConfluenceDiscriminatedConnectOutput | PostConnectParams.ConnectorDatabricksDiscriminatedConnectOutput | PostConnectParams.ConnectorDiscordDiscriminatedConnectOutput | PostConnectParams.ConnectorDropboxDiscriminatedConnectOutput | PostConnectParams.ConnectorFigmaDiscriminatedConnectOutput | PostConnectParams.ConnectorGitHubSourceControlDiscriminatedConnectOutput | PostConnectParams.ConnectorGitHubDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleCalendarDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleDocsDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleDriveDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleMailDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleSheetDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleSlidesDiscriminatedConnectOutput | PostConnectParams.ConnectorHubspotDiscriminatedConnectOutput | PostConnectParams.ConnectorInstagramDiscriminatedConnectOutput | PostConnectParams.ConnectorJiraDiscriminatedConnectOutput | PostConnectParams.ConnectorLinearDiscriminatedConnectOutput | PostConnectParams.ConnectorMondayDiscriminatedConnectOutput | PostConnectParams.ConnectorNotionDiscriminatedConnectOutput | PostConnectParams.ConnectorOnedriveDiscriminatedConnectOutput | PostConnectParams.ConnectorOutlookDiscriminatedConnectOutput | PostConnectParams.ConnectorSalesforceDiscriminatedConnectOutput | PostConnectParams.ConnectorSharepointDiscriminatedConnectOutput | PostConnectParams.ConnectorSlackDeployedAgentDiscriminatedConnectOutput | PostConnectParams.ConnectorSlackDiscriminatedConnectOutput | PostConnectParams.ConnectorSnowflakeDiscriminatedConnectOutput | PostConnectParams.ConnectorSpotifyDiscriminatedConnectOutput | PostConnectParams.ConnectorYoutubeDiscriminatedConnectOutput | PostConnectParams.ConnectorZendeskDiscriminatedConnectOutput | PostConnectParams.ConnectorZoomDiscriminatedConnectOutput | PostConnectParams.ConnectorApolloDiscriminatedConnectOutput | PostConnectParams.ConnectorPlaidDiscriminatedConnectOutput | PostConnectParams.ConnectorPostgresDiscriminatedConnectOutput | PostConnectParams.ConnectorResendDiscriminatedConnectOutput | PostConnectParams.ConnectorSendgridDiscriminatedConnectOutput | PostConnectParams.ConnectorSlackAgentDiscriminatedConnectOutput | PostConnectParams.ConnectorSlackAgentBuilderDiscriminatedConnectOutput | PostConnectParams.ConnectorStripeDiscriminatedConnectOutput | PostConnectParams.ConnectorStripeAgentSandboxDiscriminatedConnectOutput | PostConnectParams.ConnectorTwilioDiscriminatedConnectOutput | PostConnectParams.ConnectorWorkatoDiscriminatedConnectOutput;
|
|
28815
|
+
discriminated_data: PostConnectParams.ConnectorAcmeApikeyDiscriminatedConnectOutput | PostConnectParams.ConnectorAcmeOauth2DiscriminatedConnectOutput | PostConnectParams.ConnectorAgentmailDiscriminatedConnectOutput | PostConnectParams.ConnectorAsanaDiscriminatedConnectOutput | PostConnectParams.ConnectorBigqueryDiscriminatedConnectOutput | PostConnectParams.ConnectorBitbucketSourceControlDiscriminatedConnectOutput | PostConnectParams.ConnectorBitbucketDiscriminatedConnectOutput | PostConnectParams.ConnectorBoxDiscriminatedConnectOutput | PostConnectParams.ConnectorCalendlyDiscriminatedConnectOutput | PostConnectParams.ConnectorClickupDiscriminatedConnectOutput | PostConnectParams.ConnectorConfluenceDiscriminatedConnectOutput | PostConnectParams.ConnectorDatabricksDiscriminatedConnectOutput | PostConnectParams.ConnectorDiscordDiscriminatedConnectOutput | PostConnectParams.ConnectorDropboxDiscriminatedConnectOutput | PostConnectParams.ConnectorFigmaDiscriminatedConnectOutput | PostConnectParams.ConnectorGitHubSourceControlDiscriminatedConnectOutput | PostConnectParams.ConnectorGitHubDiscriminatedConnectOutput | PostConnectParams.ConnectorGitlabSourceControlDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleCalendarDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleDocsDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleDriveDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleMailDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleSheetDiscriminatedConnectOutput | PostConnectParams.ConnectorGoogleSlidesDiscriminatedConnectOutput | PostConnectParams.ConnectorHubspotDiscriminatedConnectOutput | PostConnectParams.ConnectorInstagramDiscriminatedConnectOutput | PostConnectParams.ConnectorJiraDiscriminatedConnectOutput | PostConnectParams.ConnectorLinearDiscriminatedConnectOutput | PostConnectParams.ConnectorMondayDiscriminatedConnectOutput | PostConnectParams.ConnectorNotionDiscriminatedConnectOutput | PostConnectParams.ConnectorOnedriveDiscriminatedConnectOutput | PostConnectParams.ConnectorOutlookDiscriminatedConnectOutput | PostConnectParams.ConnectorSalesforceDiscriminatedConnectOutput | PostConnectParams.ConnectorSharepointDiscriminatedConnectOutput | PostConnectParams.ConnectorSlackDeployedAgentDiscriminatedConnectOutput | PostConnectParams.ConnectorSlackDiscriminatedConnectOutput | PostConnectParams.ConnectorSnowflakeDiscriminatedConnectOutput | PostConnectParams.ConnectorSpotifyDiscriminatedConnectOutput | PostConnectParams.ConnectorYoutubeDiscriminatedConnectOutput | PostConnectParams.ConnectorZendeskDiscriminatedConnectOutput | PostConnectParams.ConnectorZoomDiscriminatedConnectOutput | PostConnectParams.ConnectorApolloDiscriminatedConnectOutput | PostConnectParams.ConnectorCustomMcpDiscriminatedConnectOutput | PostConnectParams.ConnectorPlaidDiscriminatedConnectOutput | PostConnectParams.ConnectorPostgresDiscriminatedConnectOutput | PostConnectParams.ConnectorResendDiscriminatedConnectOutput | PostConnectParams.ConnectorSendgridDiscriminatedConnectOutput | PostConnectParams.ConnectorSlackAgentDiscriminatedConnectOutput | PostConnectParams.ConnectorSlackAgentBuilderDiscriminatedConnectOutput | PostConnectParams.ConnectorStripeDiscriminatedConnectOutput | PostConnectParams.ConnectorStripeAgentSandboxDiscriminatedConnectOutput | PostConnectParams.ConnectorTwilioDiscriminatedConnectOutput | PostConnectParams.ConnectorWorkatoDiscriminatedConnectOutput;
|
|
26700
28816
|
options: PostConnectParams.Options;
|
|
26701
28817
|
}
|
|
26702
28818
|
export declare namespace PostConnectParams {
|
|
@@ -27138,6 +29254,34 @@ export declare namespace PostConnectParams {
|
|
|
27138
29254
|
code_verifier?: string;
|
|
27139
29255
|
}
|
|
27140
29256
|
}
|
|
29257
|
+
interface ConnectorGitlabSourceControlDiscriminatedConnectOutput {
|
|
29258
|
+
connect_output: ConnectorGitlabSourceControlDiscriminatedConnectOutput.ConnectOutput;
|
|
29259
|
+
connector_name: 'gitlab-source-control';
|
|
29260
|
+
}
|
|
29261
|
+
namespace ConnectorGitlabSourceControlDiscriminatedConnectOutput {
|
|
29262
|
+
interface ConnectOutput {
|
|
29263
|
+
/**
|
|
29264
|
+
* OAuth2 authorization code used for token exchange
|
|
29265
|
+
*/
|
|
29266
|
+
code: string;
|
|
29267
|
+
/**
|
|
29268
|
+
* OAuth2 state
|
|
29269
|
+
*/
|
|
29270
|
+
state: string;
|
|
29271
|
+
/**
|
|
29272
|
+
* Custom client ID to use for token exchange
|
|
29273
|
+
*/
|
|
29274
|
+
client_id?: string;
|
|
29275
|
+
/**
|
|
29276
|
+
* Custom client secret to use for token exchange
|
|
29277
|
+
*/
|
|
29278
|
+
client_secret?: string;
|
|
29279
|
+
/**
|
|
29280
|
+
* Code verifier for PKCE from the connect input
|
|
29281
|
+
*/
|
|
29282
|
+
code_verifier?: string;
|
|
29283
|
+
}
|
|
29284
|
+
}
|
|
27141
29285
|
interface ConnectorGoogleCalendarDiscriminatedConnectOutput {
|
|
27142
29286
|
connect_output: ConnectorGoogleCalendarDiscriminatedConnectOutput.ConnectOutput;
|
|
27143
29287
|
connector_name: 'google-calendar';
|
|
@@ -27791,6 +29935,38 @@ export declare namespace PostConnectParams {
|
|
|
27791
29935
|
api_key: string;
|
|
27792
29936
|
}
|
|
27793
29937
|
}
|
|
29938
|
+
interface ConnectorCustomMcpDiscriminatedConnectOutput {
|
|
29939
|
+
connect_output: ConnectorCustomMcpDiscriminatedConnectOutput.ConnectOutput;
|
|
29940
|
+
connector_name: 'custom-mcp';
|
|
29941
|
+
}
|
|
29942
|
+
namespace ConnectorCustomMcpDiscriminatedConnectOutput {
|
|
29943
|
+
interface ConnectOutput {
|
|
29944
|
+
/**
|
|
29945
|
+
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
29946
|
+
*/
|
|
29947
|
+
base_url: string;
|
|
29948
|
+
/**
|
|
29949
|
+
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
29950
|
+
*/
|
|
29951
|
+
display_name: string;
|
|
29952
|
+
/**
|
|
29953
|
+
* Custom headers to include with every request
|
|
29954
|
+
*/
|
|
29955
|
+
headers?: Array<ConnectOutput.Header>;
|
|
29956
|
+
}
|
|
29957
|
+
namespace ConnectOutput {
|
|
29958
|
+
interface Header {
|
|
29959
|
+
/**
|
|
29960
|
+
* Header name (e.g., Authorization, X-API-Key)
|
|
29961
|
+
*/
|
|
29962
|
+
key: string;
|
|
29963
|
+
/**
|
|
29964
|
+
* Header value (securely stored)
|
|
29965
|
+
*/
|
|
29966
|
+
value: string;
|
|
29967
|
+
}
|
|
29968
|
+
}
|
|
29969
|
+
}
|
|
27794
29970
|
interface ConnectorPlaidDiscriminatedConnectOutput {
|
|
27795
29971
|
connect_output: ConnectorPlaidDiscriminatedConnectOutput.ConnectOutput;
|
|
27796
29972
|
connector_name: 'plaid';
|
|
@@ -28009,7 +30185,7 @@ export declare namespace PostConnectParams {
|
|
|
28009
30185
|
}
|
|
28010
30186
|
}
|
|
28011
30187
|
export interface PreConfigureConnectorParams {
|
|
28012
|
-
connector_name: 'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom';
|
|
30188
|
+
connector_name: 'acme-apikey' | 'acme-oauth2' | 'agentmail' | 'apollo' | 'asana' | 'bigquery' | 'bitbucket' | 'bitbucket-source-control' | 'box' | 'calendly' | 'clickup' | 'confluence' | 'custom-mcp' | 'databricks' | 'discord' | 'dropbox' | 'figma' | 'github' | 'github-source-control' | 'gitlab-source-control' | 'google-calendar' | 'google-docs' | 'google-drive' | 'google-mail' | 'google-sheet' | 'google-slides' | 'hubspot' | 'instagram' | 'jira' | 'linear' | 'monday' | 'notion' | 'onedrive' | 'outlook' | 'plaid' | 'postgres' | 'resend' | 'salesforce' | 'sendgrid' | 'sharepoint' | 'slack' | 'slack-agent' | 'slack-agent-builder' | 'slack-deployed-agent' | 'snowflake' | 'spotify' | 'stripe' | 'stripe-agent-sandbox' | 'twilio' | 'workato' | 'youtube' | 'zendesk' | 'zoom';
|
|
28013
30189
|
}
|
|
28014
30190
|
export interface PreConnectParams {
|
|
28015
30191
|
/**
|
|
@@ -28018,7 +30194,7 @@ export interface PreConnectParams {
|
|
|
28018
30194
|
* id alone.
|
|
28019
30195
|
*/
|
|
28020
30196
|
connector_config_id: string;
|
|
28021
|
-
discriminated_data?: PreConnectParams.ConnectorAcmeApikeyDiscriminatedPreConnectInput | PreConnectParams.ConnectorAcmeOauth2DiscriminatedPreConnectInput | PreConnectParams.ConnectorAgentmailDiscriminatedPreConnectInput | PreConnectParams.ConnectorAsanaDiscriminatedPreConnectInput | PreConnectParams.ConnectorBigqueryDiscriminatedPreConnectInput | PreConnectParams.ConnectorBitbucketSourceControlDiscriminatedPreConnectInput | PreConnectParams.ConnectorBitbucketDiscriminatedPreConnectInput | PreConnectParams.ConnectorBoxDiscriminatedPreConnectInput | PreConnectParams.ConnectorCalendlyDiscriminatedPreConnectInput | PreConnectParams.ConnectorClickupDiscriminatedPreConnectInput | PreConnectParams.ConnectorConfluenceDiscriminatedPreConnectInput | PreConnectParams.ConnectorDatabricksDiscriminatedPreConnectInput | PreConnectParams.ConnectorDiscordDiscriminatedPreConnectInput | PreConnectParams.ConnectorDropboxDiscriminatedPreConnectInput | PreConnectParams.ConnectorFigmaDiscriminatedPreConnectInput | PreConnectParams.ConnectorGitHubSourceControlDiscriminatedPreConnectInput | PreConnectParams.ConnectorGitHubDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleCalendarDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleDocsDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleDriveDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleMailDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleSheetDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleSlidesDiscriminatedPreConnectInput | PreConnectParams.ConnectorHubspotDiscriminatedPreConnectInput | PreConnectParams.ConnectorInstagramDiscriminatedPreConnectInput | PreConnectParams.ConnectorJiraDiscriminatedPreConnectInput | PreConnectParams.ConnectorLinearDiscriminatedPreConnectInput | PreConnectParams.ConnectorMondayDiscriminatedPreConnectInput | PreConnectParams.ConnectorNotionDiscriminatedPreConnectInput | PreConnectParams.ConnectorOnedriveDiscriminatedPreConnectInput | PreConnectParams.ConnectorOutlookDiscriminatedPreConnectInput | PreConnectParams.ConnectorSalesforceDiscriminatedPreConnectInput | PreConnectParams.ConnectorSharepointDiscriminatedPreConnectInput | PreConnectParams.ConnectorSlackDeployedAgentDiscriminatedPreConnectInput | PreConnectParams.ConnectorSlackDiscriminatedPreConnectInput | PreConnectParams.ConnectorSnowflakeDiscriminatedPreConnectInput | PreConnectParams.ConnectorSpotifyDiscriminatedPreConnectInput | PreConnectParams.ConnectorYoutubeDiscriminatedPreConnectInput | PreConnectParams.ConnectorZendeskDiscriminatedPreConnectInput | PreConnectParams.ConnectorZoomDiscriminatedPreConnectInput | PreConnectParams.ConnectorApolloDiscriminatedPreConnectInput | PreConnectParams.ConnectorPlaidDiscriminatedPreConnectInput | PreConnectParams.ConnectorPostgresDiscriminatedPreConnectInput | PreConnectParams.ConnectorResendDiscriminatedPreConnectInput | PreConnectParams.ConnectorSendgridDiscriminatedPreConnectInput | PreConnectParams.ConnectorSlackAgentDiscriminatedPreConnectInput | PreConnectParams.ConnectorSlackAgentBuilderDiscriminatedPreConnectInput | PreConnectParams.ConnectorStripeDiscriminatedPreConnectInput | PreConnectParams.ConnectorStripeAgentSandboxDiscriminatedPreConnectInput | PreConnectParams.ConnectorTwilioDiscriminatedPreConnectInput | PreConnectParams.ConnectorWorkatoDiscriminatedPreConnectInput;
|
|
30197
|
+
discriminated_data?: PreConnectParams.ConnectorAcmeApikeyDiscriminatedPreConnectInput | PreConnectParams.ConnectorAcmeOauth2DiscriminatedPreConnectInput | PreConnectParams.ConnectorAgentmailDiscriminatedPreConnectInput | PreConnectParams.ConnectorAsanaDiscriminatedPreConnectInput | PreConnectParams.ConnectorBigqueryDiscriminatedPreConnectInput | PreConnectParams.ConnectorBitbucketSourceControlDiscriminatedPreConnectInput | PreConnectParams.ConnectorBitbucketDiscriminatedPreConnectInput | PreConnectParams.ConnectorBoxDiscriminatedPreConnectInput | PreConnectParams.ConnectorCalendlyDiscriminatedPreConnectInput | PreConnectParams.ConnectorClickupDiscriminatedPreConnectInput | PreConnectParams.ConnectorConfluenceDiscriminatedPreConnectInput | PreConnectParams.ConnectorDatabricksDiscriminatedPreConnectInput | PreConnectParams.ConnectorDiscordDiscriminatedPreConnectInput | PreConnectParams.ConnectorDropboxDiscriminatedPreConnectInput | PreConnectParams.ConnectorFigmaDiscriminatedPreConnectInput | PreConnectParams.ConnectorGitHubSourceControlDiscriminatedPreConnectInput | PreConnectParams.ConnectorGitHubDiscriminatedPreConnectInput | PreConnectParams.ConnectorGitlabSourceControlDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleCalendarDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleDocsDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleDriveDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleMailDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleSheetDiscriminatedPreConnectInput | PreConnectParams.ConnectorGoogleSlidesDiscriminatedPreConnectInput | PreConnectParams.ConnectorHubspotDiscriminatedPreConnectInput | PreConnectParams.ConnectorInstagramDiscriminatedPreConnectInput | PreConnectParams.ConnectorJiraDiscriminatedPreConnectInput | PreConnectParams.ConnectorLinearDiscriminatedPreConnectInput | PreConnectParams.ConnectorMondayDiscriminatedPreConnectInput | PreConnectParams.ConnectorNotionDiscriminatedPreConnectInput | PreConnectParams.ConnectorOnedriveDiscriminatedPreConnectInput | PreConnectParams.ConnectorOutlookDiscriminatedPreConnectInput | PreConnectParams.ConnectorSalesforceDiscriminatedPreConnectInput | PreConnectParams.ConnectorSharepointDiscriminatedPreConnectInput | PreConnectParams.ConnectorSlackDeployedAgentDiscriminatedPreConnectInput | PreConnectParams.ConnectorSlackDiscriminatedPreConnectInput | PreConnectParams.ConnectorSnowflakeDiscriminatedPreConnectInput | PreConnectParams.ConnectorSpotifyDiscriminatedPreConnectInput | PreConnectParams.ConnectorYoutubeDiscriminatedPreConnectInput | PreConnectParams.ConnectorZendeskDiscriminatedPreConnectInput | PreConnectParams.ConnectorZoomDiscriminatedPreConnectInput | PreConnectParams.ConnectorApolloDiscriminatedPreConnectInput | PreConnectParams.ConnectorCustomMcpDiscriminatedPreConnectInput | PreConnectParams.ConnectorPlaidDiscriminatedPreConnectInput | PreConnectParams.ConnectorPostgresDiscriminatedPreConnectInput | PreConnectParams.ConnectorResendDiscriminatedPreConnectInput | PreConnectParams.ConnectorSendgridDiscriminatedPreConnectInput | PreConnectParams.ConnectorSlackAgentDiscriminatedPreConnectInput | PreConnectParams.ConnectorSlackAgentBuilderDiscriminatedPreConnectInput | PreConnectParams.ConnectorStripeDiscriminatedPreConnectInput | PreConnectParams.ConnectorStripeAgentSandboxDiscriminatedPreConnectInput | PreConnectParams.ConnectorTwilioDiscriminatedPreConnectInput | PreConnectParams.ConnectorWorkatoDiscriminatedPreConnectInput;
|
|
28022
30198
|
options?: PreConnectParams.Options;
|
|
28023
30199
|
}
|
|
28024
30200
|
export declare namespace PreConnectParams {
|
|
@@ -28040,7 +30216,16 @@ export declare namespace PreConnectParams {
|
|
|
28040
30216
|
}
|
|
28041
30217
|
interface ConnectorBigqueryDiscriminatedPreConnectInput {
|
|
28042
30218
|
connector_name: 'bigquery';
|
|
28043
|
-
pre_connect_input:
|
|
30219
|
+
pre_connect_input: ConnectorBigqueryDiscriminatedPreConnectInput.PreConnectInput;
|
|
30220
|
+
}
|
|
30221
|
+
namespace ConnectorBigqueryDiscriminatedPreConnectInput {
|
|
30222
|
+
interface PreConnectInput {
|
|
30223
|
+
/**
|
|
30224
|
+
* Your Google Cloud Project ID (e.g., my-project-123). This is required to make
|
|
30225
|
+
* API calls to BigQuery.
|
|
30226
|
+
*/
|
|
30227
|
+
project_id: string;
|
|
30228
|
+
}
|
|
28044
30229
|
}
|
|
28045
30230
|
interface ConnectorBitbucketSourceControlDiscriminatedPreConnectInput {
|
|
28046
30231
|
connector_name: 'bitbucket-source-control';
|
|
@@ -28082,11 +30267,16 @@ export declare namespace PreConnectParams {
|
|
|
28082
30267
|
namespace ConnectorDatabricksDiscriminatedPreConnectInput {
|
|
28083
30268
|
interface PreConnectInput {
|
|
28084
30269
|
/**
|
|
28085
|
-
*
|
|
28086
|
-
*
|
|
28087
|
-
|
|
30270
|
+
* The HTTP path for your SQL warehouse. To find this, go to your SQL warehouse in
|
|
30271
|
+
* Databricks and click the "Connection details" button. Copy the HTTP path value.
|
|
30272
|
+
*/
|
|
30273
|
+
http_path: string;
|
|
30274
|
+
/**
|
|
30275
|
+
* The server hostname for your SQL warehouse. To find this, go to your SQL
|
|
30276
|
+
* warehouse in Databricks and click the "Connection details" button. Copy the
|
|
30277
|
+
* Server hostname value.
|
|
28088
30278
|
*/
|
|
28089
|
-
|
|
30279
|
+
server_hostname: string;
|
|
28090
30280
|
}
|
|
28091
30281
|
}
|
|
28092
30282
|
interface ConnectorDiscordDiscriminatedPreConnectInput {
|
|
@@ -28109,6 +30299,10 @@ export declare namespace PreConnectParams {
|
|
|
28109
30299
|
connector_name: 'github';
|
|
28110
30300
|
pre_connect_input: unknown;
|
|
28111
30301
|
}
|
|
30302
|
+
interface ConnectorGitlabSourceControlDiscriminatedPreConnectInput {
|
|
30303
|
+
connector_name: 'gitlab-source-control';
|
|
30304
|
+
pre_connect_input: unknown;
|
|
30305
|
+
}
|
|
28112
30306
|
interface ConnectorGoogleCalendarDiscriminatedPreConnectInput {
|
|
28113
30307
|
connector_name: 'google-calendar';
|
|
28114
30308
|
pre_connect_input: unknown;
|
|
@@ -28232,6 +30426,10 @@ export declare namespace PreConnectParams {
|
|
|
28232
30426
|
connector_name: 'apollo';
|
|
28233
30427
|
pre_connect_input: unknown;
|
|
28234
30428
|
}
|
|
30429
|
+
interface ConnectorCustomMcpDiscriminatedPreConnectInput {
|
|
30430
|
+
connector_name: 'custom-mcp';
|
|
30431
|
+
pre_connect_input: unknown;
|
|
30432
|
+
}
|
|
28235
30433
|
interface ConnectorPlaidDiscriminatedPreConnectInput {
|
|
28236
30434
|
connector_name: 'plaid';
|
|
28237
30435
|
pre_connect_input: ConnectorPlaidDiscriminatedPreConnectInput.PreConnectInput;
|