@replit/connectors 0.3.0 → 0.4.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.
@@ -73,6 +73,7 @@ export interface Integration {
73
73
  connector_name:
74
74
  | 'acme-apikey'
75
75
  | 'acme-oauth2'
76
+ | 'agentmail'
76
77
  | 'apollo'
77
78
  | 'asana'
78
79
  | 'bigquery'
@@ -177,6 +178,7 @@ export type ConnectorRpcResponse = { [key: string]: unknown };
177
178
  export type CreateConnectionResponse =
178
179
  | CreateConnectionResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings
179
180
  | CreateConnectionResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings
181
+ | CreateConnectionResponse.ConnectorAgentmailDiscriminatedConnectionSettings
180
182
  | CreateConnectionResponse.ConnectorAsanaDiscriminatedConnectionSettings
181
183
  | CreateConnectionResponse.ConnectorBigqueryDiscriminatedConnectionSettings
182
184
  | CreateConnectionResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings
@@ -365,6 +367,51 @@ export namespace CreateConnectionResponse {
365
367
  }
366
368
  }
367
369
 
370
+ export interface ConnectorAgentmailDiscriminatedConnectionSettings {
371
+ connector_name: 'agentmail';
372
+
373
+ id?: string;
374
+
375
+ connector?: TopLevelAPI.Connector;
376
+
377
+ connector_config_id?: string | null;
378
+
379
+ created_at?: string;
380
+
381
+ customer_id?: string | null;
382
+
383
+ disabled?: boolean | null;
384
+
385
+ display_name?: string | null;
386
+
387
+ environment?: 'production' | 'development';
388
+
389
+ integration?: TopLevelAPI.Integration;
390
+
391
+ integration_id?: string | null;
392
+
393
+ /**
394
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
395
+ * separate 1-1 table just for simple key values in your application. During
396
+ * updates this object will be shallowly merged
397
+ */
398
+ metadata?: { [key: string]: unknown } | null;
399
+
400
+ settings?: ConnectorAgentmailDiscriminatedConnectionSettings.Settings;
401
+
402
+ status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
403
+
404
+ status_message?: string | null;
405
+
406
+ updated_at?: string;
407
+ }
408
+
409
+ export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
410
+ export interface Settings {
411
+ api_key: string;
412
+ }
413
+ }
414
+
368
415
  export interface ConnectorAsanaDiscriminatedConnectionSettings {
369
416
  connector_name: 'asana';
370
417
 
@@ -4305,17 +4352,12 @@ export namespace CreateConnectionResponse {
4305
4352
  export namespace ConnectorStripeDiscriminatedConnectionSettings {
4306
4353
  export interface Settings {
4307
4354
  /**
4308
- * MCP access token
4309
- */
4310
- mcp: string;
4311
-
4312
- /**
4313
- * Stripe publishable key for production
4355
+ * Stripe publishable key
4314
4356
  */
4315
4357
  publishable: string;
4316
4358
 
4317
4359
  /**
4318
- * Stripe secret key for production
4360
+ * Stripe secret key
4319
4361
  */
4320
4362
  secret: string;
4321
4363
 
@@ -4324,6 +4366,26 @@ export namespace CreateConnectionResponse {
4324
4366
  */
4325
4367
  account_id?: string;
4326
4368
 
4369
+ /**
4370
+ * URL to claim/access the Stripe sandbox (development environment only)
4371
+ */
4372
+ claim_url?: string;
4373
+
4374
+ /**
4375
+ * Timestamp when the sandbox was claimed (development environment only)
4376
+ */
4377
+ claimed_at?: string;
4378
+
4379
+ /**
4380
+ * MCP access token
4381
+ */
4382
+ mcp?: string;
4383
+
4384
+ /**
4385
+ * Stripe claimable sandbox ID (development environment only)
4386
+ */
4387
+ sandbox_id?: string;
4388
+
4327
4389
  /**
4328
4390
  * Stripe webhook endpoint ID
4329
4391
  */
@@ -4541,6 +4603,7 @@ export namespace CreateConnectionResponse {
4541
4603
  export type CreateConnnectorConfigResponse =
4542
4604
  | CreateConnnectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig
4543
4605
  | CreateConnnectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig
4606
+ | CreateConnnectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig
4544
4607
  | CreateConnnectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig
4545
4608
  | CreateConnnectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig
4546
4609
  | CreateConnnectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig
@@ -4670,6 +4733,34 @@ export namespace CreateConnnectorConfigResponse {
4670
4733
  }
4671
4734
  }
4672
4735
 
4736
+ export interface ConnectorAgentmailDiscriminatedConnectorConfig {
4737
+ /**
4738
+ * Base configuration for api key connector
4739
+ */
4740
+ config: unknown;
4741
+
4742
+ connector_name: 'agentmail';
4743
+
4744
+ id?: string;
4745
+
4746
+ created_at?: string;
4747
+
4748
+ disabled?: boolean | null;
4749
+
4750
+ display_name?: string | null;
4751
+
4752
+ /**
4753
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
4754
+ * separate 1-1 table just for simple key values in your application. During
4755
+ * updates this object will be shallowly merged
4756
+ */
4757
+ metadata?: { [key: string]: unknown } | null;
4758
+
4759
+ org_id?: string;
4760
+
4761
+ updated_at?: string;
4762
+ }
4763
+
4673
4764
  export interface ConnectorAsanaDiscriminatedConnectorConfig {
4674
4765
  config: ConnectorAsanaDiscriminatedConnectorConfig.Config;
4675
4766
 
@@ -7021,6 +7112,7 @@ export interface DeleteConnectorConfigResponse {
7021
7112
  export type GetConectorConfigResponse =
7022
7113
  | GetConectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig
7023
7114
  | GetConectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig
7115
+ | GetConectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig
7024
7116
  | GetConectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig
7025
7117
  | GetConectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig
7026
7118
  | GetConectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig
@@ -7162,6 +7254,40 @@ export namespace GetConectorConfigResponse {
7162
7254
  }
7163
7255
  }
7164
7256
 
7257
+ export interface ConnectorAgentmailDiscriminatedConnectorConfig {
7258
+ /**
7259
+ * Base configuration for api key connector
7260
+ */
7261
+ config: unknown;
7262
+
7263
+ connector_name: 'agentmail';
7264
+
7265
+ id?: string;
7266
+
7267
+ connection_count?: number;
7268
+
7269
+ connector?: TopLevelAPI.Connector;
7270
+
7271
+ created_at?: string;
7272
+
7273
+ disabled?: boolean | null;
7274
+
7275
+ display_name?: string | null;
7276
+
7277
+ integrations?: { [key: string]: TopLevelAPI.Integration };
7278
+
7279
+ /**
7280
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
7281
+ * separate 1-1 table just for simple key values in your application. During
7282
+ * updates this object will be shallowly merged
7283
+ */
7284
+ metadata?: { [key: string]: unknown } | null;
7285
+
7286
+ org_id?: string;
7287
+
7288
+ updated_at?: string;
7289
+ }
7290
+
7165
7291
  export interface ConnectorAsanaDiscriminatedConnectorConfig {
7166
7292
  config: ConnectorAsanaDiscriminatedConnectorConfig.Config;
7167
7293
 
@@ -9753,6 +9879,7 @@ export namespace GetConectorConfigResponse {
9753
9879
  export type GetConnectionResponse =
9754
9880
  | GetConnectionResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings
9755
9881
  | GetConnectionResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings
9882
+ | GetConnectionResponse.ConnectorAgentmailDiscriminatedConnectionSettings
9756
9883
  | GetConnectionResponse.ConnectorAsanaDiscriminatedConnectionSettings
9757
9884
  | GetConnectionResponse.ConnectorBigqueryDiscriminatedConnectionSettings
9758
9885
  | GetConnectionResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings
@@ -9941,6 +10068,51 @@ export namespace GetConnectionResponse {
9941
10068
  }
9942
10069
  }
9943
10070
 
10071
+ export interface ConnectorAgentmailDiscriminatedConnectionSettings {
10072
+ connector_name: 'agentmail';
10073
+
10074
+ id?: string;
10075
+
10076
+ connector?: TopLevelAPI.Connector;
10077
+
10078
+ connector_config_id?: string | null;
10079
+
10080
+ created_at?: string;
10081
+
10082
+ customer_id?: string | null;
10083
+
10084
+ disabled?: boolean | null;
10085
+
10086
+ display_name?: string | null;
10087
+
10088
+ environment?: 'production' | 'development';
10089
+
10090
+ integration?: TopLevelAPI.Integration;
10091
+
10092
+ integration_id?: string | null;
10093
+
10094
+ /**
10095
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
10096
+ * separate 1-1 table just for simple key values in your application. During
10097
+ * updates this object will be shallowly merged
10098
+ */
10099
+ metadata?: { [key: string]: unknown } | null;
10100
+
10101
+ settings?: ConnectorAgentmailDiscriminatedConnectionSettings.Settings;
10102
+
10103
+ status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
10104
+
10105
+ status_message?: string | null;
10106
+
10107
+ updated_at?: string;
10108
+ }
10109
+
10110
+ export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
10111
+ export interface Settings {
10112
+ api_key: string;
10113
+ }
10114
+ }
10115
+
9944
10116
  export interface ConnectorAsanaDiscriminatedConnectionSettings {
9945
10117
  connector_name: 'asana';
9946
10118
 
@@ -13881,17 +14053,12 @@ export namespace GetConnectionResponse {
13881
14053
  export namespace ConnectorStripeDiscriminatedConnectionSettings {
13882
14054
  export interface Settings {
13883
14055
  /**
13884
- * MCP access token
13885
- */
13886
- mcp: string;
13887
-
13888
- /**
13889
- * Stripe publishable key for production
14056
+ * Stripe publishable key
13890
14057
  */
13891
14058
  publishable: string;
13892
14059
 
13893
14060
  /**
13894
- * Stripe secret key for production
14061
+ * Stripe secret key
13895
14062
  */
13896
14063
  secret: string;
13897
14064
 
@@ -13900,6 +14067,26 @@ export namespace GetConnectionResponse {
13900
14067
  */
13901
14068
  account_id?: string;
13902
14069
 
14070
+ /**
14071
+ * URL to claim/access the Stripe sandbox (development environment only)
14072
+ */
14073
+ claim_url?: string;
14074
+
14075
+ /**
14076
+ * Timestamp when the sandbox was claimed (development environment only)
14077
+ */
14078
+ claimed_at?: string;
14079
+
14080
+ /**
14081
+ * MCP access token
14082
+ */
14083
+ mcp?: string;
14084
+
14085
+ /**
14086
+ * Stripe claimable sandbox ID (development environment only)
14087
+ */
14088
+ sandbox_id?: string;
14089
+
13903
14090
  /**
13904
14091
  * Stripe webhook endpoint ID
13905
14092
  */
@@ -14143,6 +14330,7 @@ export namespace ListAssignmentsResponse {
14143
14330
  export type ListConnectionsResponse =
14144
14331
  | ListConnectionsResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings
14145
14332
  | ListConnectionsResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings
14333
+ | ListConnectionsResponse.ConnectorAgentmailDiscriminatedConnectionSettings
14146
14334
  | ListConnectionsResponse.ConnectorAsanaDiscriminatedConnectionSettings
14147
14335
  | ListConnectionsResponse.ConnectorBigqueryDiscriminatedConnectionSettings
14148
14336
  | ListConnectionsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings
@@ -14331,6 +14519,51 @@ export namespace ListConnectionsResponse {
14331
14519
  }
14332
14520
  }
14333
14521
 
14522
+ export interface ConnectorAgentmailDiscriminatedConnectionSettings {
14523
+ connector_name: 'agentmail';
14524
+
14525
+ id?: string;
14526
+
14527
+ connector?: TopLevelAPI.Connector;
14528
+
14529
+ connector_config_id?: string | null;
14530
+
14531
+ created_at?: string;
14532
+
14533
+ customer_id?: string | null;
14534
+
14535
+ disabled?: boolean | null;
14536
+
14537
+ display_name?: string | null;
14538
+
14539
+ environment?: 'production' | 'development';
14540
+
14541
+ integration?: TopLevelAPI.Integration;
14542
+
14543
+ integration_id?: string | null;
14544
+
14545
+ /**
14546
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
14547
+ * separate 1-1 table just for simple key values in your application. During
14548
+ * updates this object will be shallowly merged
14549
+ */
14550
+ metadata?: { [key: string]: unknown } | null;
14551
+
14552
+ settings?: ConnectorAgentmailDiscriminatedConnectionSettings.Settings;
14553
+
14554
+ status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
14555
+
14556
+ status_message?: string | null;
14557
+
14558
+ updated_at?: string;
14559
+ }
14560
+
14561
+ export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
14562
+ export interface Settings {
14563
+ api_key: string;
14564
+ }
14565
+ }
14566
+
14334
14567
  export interface ConnectorAsanaDiscriminatedConnectionSettings {
14335
14568
  connector_name: 'asana';
14336
14569
 
@@ -18271,17 +18504,12 @@ export namespace ListConnectionsResponse {
18271
18504
  export namespace ConnectorStripeDiscriminatedConnectionSettings {
18272
18505
  export interface Settings {
18273
18506
  /**
18274
- * MCP access token
18275
- */
18276
- mcp: string;
18277
-
18278
- /**
18279
- * Stripe publishable key for production
18507
+ * Stripe publishable key
18280
18508
  */
18281
18509
  publishable: string;
18282
18510
 
18283
18511
  /**
18284
- * Stripe secret key for production
18512
+ * Stripe secret key
18285
18513
  */
18286
18514
  secret: string;
18287
18515
 
@@ -18290,6 +18518,26 @@ export namespace ListConnectionsResponse {
18290
18518
  */
18291
18519
  account_id?: string;
18292
18520
 
18521
+ /**
18522
+ * URL to claim/access the Stripe sandbox (development environment only)
18523
+ */
18524
+ claim_url?: string;
18525
+
18526
+ /**
18527
+ * Timestamp when the sandbox was claimed (development environment only)
18528
+ */
18529
+ claimed_at?: string;
18530
+
18531
+ /**
18532
+ * MCP access token
18533
+ */
18534
+ mcp?: string;
18535
+
18536
+ /**
18537
+ * Stripe claimable sandbox ID (development environment only)
18538
+ */
18539
+ sandbox_id?: string;
18540
+
18293
18541
  /**
18294
18542
  * Stripe webhook endpoint ID
18295
18543
  */
@@ -18507,6 +18755,7 @@ export namespace ListConnectionsResponse {
18507
18755
  export type ListConnectorConfigsResponse =
18508
18756
  | ListConnectorConfigsResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig
18509
18757
  | ListConnectorConfigsResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig
18758
+ | ListConnectorConfigsResponse.ConnectorAgentmailDiscriminatedConnectorConfig
18510
18759
  | ListConnectorConfigsResponse.ConnectorAsanaDiscriminatedConnectorConfig
18511
18760
  | ListConnectorConfigsResponse.ConnectorBigqueryDiscriminatedConnectorConfig
18512
18761
  | ListConnectorConfigsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig
@@ -18648,6 +18897,40 @@ export namespace ListConnectorConfigsResponse {
18648
18897
  }
18649
18898
  }
18650
18899
 
18900
+ export interface ConnectorAgentmailDiscriminatedConnectorConfig {
18901
+ /**
18902
+ * Base configuration for api key connector
18903
+ */
18904
+ config: unknown;
18905
+
18906
+ connector_name: 'agentmail';
18907
+
18908
+ id?: string;
18909
+
18910
+ connection_count?: number;
18911
+
18912
+ connector?: TopLevelAPI.Connector;
18913
+
18914
+ created_at?: string;
18915
+
18916
+ disabled?: boolean | null;
18917
+
18918
+ display_name?: string | null;
18919
+
18920
+ integrations?: { [key: string]: TopLevelAPI.Integration };
18921
+
18922
+ /**
18923
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
18924
+ * separate 1-1 table just for simple key values in your application. During
18925
+ * updates this object will be shallowly merged
18926
+ */
18927
+ metadata?: { [key: string]: unknown } | null;
18928
+
18929
+ org_id?: string;
18930
+
18931
+ updated_at?: string;
18932
+ }
18933
+
18651
18934
  export interface ConnectorAsanaDiscriminatedConnectorConfig {
18652
18935
  config: ConnectorAsanaDiscriminatedConnectorConfig.Config;
18653
18936
 
@@ -21240,6 +21523,7 @@ export interface ListConnectorsResponse extends Connector {
21240
21523
  export type ListConnnectorConfigsResponse =
21241
21524
  | ListConnnectorConfigsResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig
21242
21525
  | ListConnnectorConfigsResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig
21526
+ | ListConnnectorConfigsResponse.ConnectorAgentmailDiscriminatedConnectorConfig
21243
21527
  | ListConnnectorConfigsResponse.ConnectorAsanaDiscriminatedConnectorConfig
21244
21528
  | ListConnnectorConfigsResponse.ConnectorBigqueryDiscriminatedConnectorConfig
21245
21529
  | ListConnnectorConfigsResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig
@@ -21381,6 +21665,40 @@ export namespace ListConnnectorConfigsResponse {
21381
21665
  }
21382
21666
  }
21383
21667
 
21668
+ export interface ConnectorAgentmailDiscriminatedConnectorConfig {
21669
+ /**
21670
+ * Base configuration for api key connector
21671
+ */
21672
+ config: unknown;
21673
+
21674
+ connector_name: 'agentmail';
21675
+
21676
+ id?: string;
21677
+
21678
+ connection_count?: number;
21679
+
21680
+ connector?: TopLevelAPI.Connector;
21681
+
21682
+ created_at?: string;
21683
+
21684
+ disabled?: boolean | null;
21685
+
21686
+ display_name?: string | null;
21687
+
21688
+ integrations?: { [key: string]: TopLevelAPI.Integration };
21689
+
21690
+ /**
21691
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
21692
+ * separate 1-1 table just for simple key values in your application. During
21693
+ * updates this object will be shallowly merged
21694
+ */
21695
+ metadata?: { [key: string]: unknown } | null;
21696
+
21697
+ org_id?: string;
21698
+
21699
+ updated_at?: string;
21700
+ }
21701
+
21384
21702
  export interface ConnectorAsanaDiscriminatedConnectorConfig {
21385
21703
  config: ConnectorAsanaDiscriminatedConnectorConfig.Config;
21386
21704
 
@@ -24594,6 +24912,7 @@ export namespace ListEventsResponse {
24594
24912
  export type PostConnectResponse =
24595
24913
  | PostConnectResponse.ConnectorAcmeApikeyDiscriminatedConnectionSettings
24596
24914
  | PostConnectResponse.ConnectorAcmeOauth2DiscriminatedConnectionSettings
24915
+ | PostConnectResponse.ConnectorAgentmailDiscriminatedConnectionSettings
24597
24916
  | PostConnectResponse.ConnectorAsanaDiscriminatedConnectionSettings
24598
24917
  | PostConnectResponse.ConnectorBigqueryDiscriminatedConnectionSettings
24599
24918
  | PostConnectResponse.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings
@@ -24774,6 +25093,47 @@ export namespace PostConnectResponse {
24774
25093
  }
24775
25094
  }
24776
25095
 
25096
+ export interface ConnectorAgentmailDiscriminatedConnectionSettings {
25097
+ connector_name: 'agentmail';
25098
+
25099
+ id?: string;
25100
+
25101
+ connector_config_id?: string | null;
25102
+
25103
+ created_at?: string;
25104
+
25105
+ customer_id?: string | null;
25106
+
25107
+ disabled?: boolean | null;
25108
+
25109
+ display_name?: string | null;
25110
+
25111
+ environment?: 'production' | 'development';
25112
+
25113
+ integration_id?: string | null;
25114
+
25115
+ /**
25116
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
25117
+ * separate 1-1 table just for simple key values in your application. During
25118
+ * updates this object will be shallowly merged
25119
+ */
25120
+ metadata?: { [key: string]: unknown } | null;
25121
+
25122
+ settings?: ConnectorAgentmailDiscriminatedConnectionSettings.Settings;
25123
+
25124
+ status?: 'healthy' | 'disconnected' | 'error' | 'manual' | 'unknown' | null;
25125
+
25126
+ status_message?: string | null;
25127
+
25128
+ updated_at?: string;
25129
+ }
25130
+
25131
+ export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
25132
+ export interface Settings {
25133
+ api_key: string;
25134
+ }
25135
+ }
25136
+
24777
25137
  export interface ConnectorAsanaDiscriminatedConnectionSettings {
24778
25138
  connector_name: 'asana';
24779
25139
 
@@ -28538,17 +28898,12 @@ export namespace PostConnectResponse {
28538
28898
  export namespace ConnectorStripeDiscriminatedConnectionSettings {
28539
28899
  export interface Settings {
28540
28900
  /**
28541
- * MCP access token
28542
- */
28543
- mcp: string;
28544
-
28545
- /**
28546
- * Stripe publishable key for production
28901
+ * Stripe publishable key
28547
28902
  */
28548
28903
  publishable: string;
28549
28904
 
28550
28905
  /**
28551
- * Stripe secret key for production
28906
+ * Stripe secret key
28552
28907
  */
28553
28908
  secret: string;
28554
28909
 
@@ -28557,6 +28912,26 @@ export namespace PostConnectResponse {
28557
28912
  */
28558
28913
  account_id?: string;
28559
28914
 
28915
+ /**
28916
+ * URL to claim/access the Stripe sandbox (development environment only)
28917
+ */
28918
+ claim_url?: string;
28919
+
28920
+ /**
28921
+ * Timestamp when the sandbox was claimed (development environment only)
28922
+ */
28923
+ claimed_at?: string;
28924
+
28925
+ /**
28926
+ * MCP access token
28927
+ */
28928
+ mcp?: string;
28929
+
28930
+ /**
28931
+ * Stripe claimable sandbox ID (development environment only)
28932
+ */
28933
+ sandbox_id?: string;
28934
+
28560
28935
  /**
28561
28936
  * Stripe webhook endpoint ID
28562
28937
  */
@@ -28764,6 +29139,7 @@ export type PreConfigureConnectorResponse = { [key: string]: unknown };
28764
29139
  export type PreConnectResponse =
28765
29140
  | PreConnectResponse.ConnectorAcmeApikeyDiscriminatedConnectInput
28766
29141
  | PreConnectResponse.ConnectorAcmeOauth2DiscriminatedConnectInput
29142
+ | PreConnectResponse.ConnectorAgentmailDiscriminatedConnectInput
28767
29143
  | PreConnectResponse.ConnectorAsanaDiscriminatedConnectInput
28768
29144
  | PreConnectResponse.ConnectorBigqueryDiscriminatedConnectInput
28769
29145
  | PreConnectResponse.ConnectorBitbucketSourceControlDiscriminatedConnectInput
@@ -28839,6 +29215,12 @@ export namespace PreConnectResponse {
28839
29215
  }
28840
29216
  }
28841
29217
 
29218
+ export interface ConnectorAgentmailDiscriminatedConnectInput {
29219
+ connect_input: unknown;
29220
+
29221
+ connector_name: 'agentmail';
29222
+ }
29223
+
28842
29224
  export interface ConnectorAsanaDiscriminatedConnectInput {
28843
29225
  connect_input: ConnectorAsanaDiscriminatedConnectInput.ConnectInput;
28844
29226
 
@@ -29650,14 +30032,24 @@ export namespace PreConnectResponse {
29650
30032
  mcp: string;
29651
30033
 
29652
30034
  /**
29653
- * Stripe publishable key for the sandbox
30035
+ * Stripe publishable key
29654
30036
  */
29655
30037
  publishable: string;
29656
30038
 
29657
30039
  /**
29658
- * Stripe secret key for the sandbox
30040
+ * Stripe secret key
29659
30041
  */
29660
30042
  secret: string;
30043
+
30044
+ /**
30045
+ * URL to claim/access the Stripe sandbox (development environment only)
30046
+ */
30047
+ claim_url?: string;
30048
+
30049
+ /**
30050
+ * Stripe claimable sandbox ID (development environment only)
30051
+ */
30052
+ sandbox_id?: string;
29661
30053
  }
29662
30054
  }
29663
30055
 
@@ -29712,6 +30104,7 @@ export namespace PreConnectResponse {
29712
30104
  export type UpsertConnnectorConfigResponse =
29713
30105
  | UpsertConnnectorConfigResponse.ConnectorAcmeApikeyDiscriminatedConnectorConfig
29714
30106
  | UpsertConnnectorConfigResponse.ConnectorAcmeOauth2DiscriminatedConnectorConfig
30107
+ | UpsertConnnectorConfigResponse.ConnectorAgentmailDiscriminatedConnectorConfig
29715
30108
  | UpsertConnnectorConfigResponse.ConnectorAsanaDiscriminatedConnectorConfig
29716
30109
  | UpsertConnnectorConfigResponse.ConnectorBigqueryDiscriminatedConnectorConfig
29717
30110
  | UpsertConnnectorConfigResponse.ConnectorBitbucketSourceControlDiscriminatedConnectorConfig
@@ -29841,6 +30234,34 @@ export namespace UpsertConnnectorConfigResponse {
29841
30234
  }
29842
30235
  }
29843
30236
 
30237
+ export interface ConnectorAgentmailDiscriminatedConnectorConfig {
30238
+ /**
30239
+ * Base configuration for api key connector
30240
+ */
30241
+ config: unknown;
30242
+
30243
+ connector_name: 'agentmail';
30244
+
30245
+ id?: string;
30246
+
30247
+ created_at?: string;
30248
+
30249
+ disabled?: boolean | null;
30250
+
30251
+ display_name?: string | null;
30252
+
30253
+ /**
30254
+ * JSON object can can be used to associate arbitrary metadata to avoid needing a
30255
+ * separate 1-1 table just for simple key values in your application. During
30256
+ * updates this object will be shallowly merged
30257
+ */
30258
+ metadata?: { [key: string]: unknown } | null;
30259
+
30260
+ org_id?: string;
30261
+
30262
+ updated_at?: string;
30263
+ }
30264
+
29844
30265
  export interface ConnectorAsanaDiscriminatedConnectorConfig {
29845
30266
  config: ConnectorAsanaDiscriminatedConnectorConfig.Config;
29846
30267
 
@@ -32202,6 +32623,7 @@ export interface CreateConnectionParams {
32202
32623
  data:
32203
32624
  | CreateConnectionParams.ConnectorAcmeApikeyDiscriminatedConnectionSettings
32204
32625
  | CreateConnectionParams.ConnectorAcmeOauth2DiscriminatedConnectionSettings
32626
+ | CreateConnectionParams.ConnectorAgentmailDiscriminatedConnectionSettings
32205
32627
  | CreateConnectionParams.ConnectorAsanaDiscriminatedConnectionSettings
32206
32628
  | CreateConnectionParams.ConnectorBigqueryDiscriminatedConnectionSettings
32207
32629
  | CreateConnectionParams.ConnectorBitbucketSourceControlDiscriminatedConnectionSettings
@@ -32343,6 +32765,18 @@ export namespace CreateConnectionParams {
32343
32765
  }
32344
32766
  }
32345
32767
 
32768
+ export interface ConnectorAgentmailDiscriminatedConnectionSettings {
32769
+ connector_name: 'agentmail';
32770
+
32771
+ settings?: ConnectorAgentmailDiscriminatedConnectionSettings.Settings;
32772
+ }
32773
+
32774
+ export namespace ConnectorAgentmailDiscriminatedConnectionSettings {
32775
+ export interface Settings {
32776
+ api_key: string;
32777
+ }
32778
+ }
32779
+
32346
32780
  export interface ConnectorAsanaDiscriminatedConnectionSettings {
32347
32781
  connector_name: 'asana';
32348
32782
 
@@ -34831,17 +35265,12 @@ export namespace CreateConnectionParams {
34831
35265
  export namespace ConnectorStripeDiscriminatedConnectionSettings {
34832
35266
  export interface Settings {
34833
35267
  /**
34834
- * MCP access token
34835
- */
34836
- mcp: string;
34837
-
34838
- /**
34839
- * Stripe publishable key for production
35268
+ * Stripe publishable key
34840
35269
  */
34841
35270
  publishable: string;
34842
35271
 
34843
35272
  /**
34844
- * Stripe secret key for production
35273
+ * Stripe secret key
34845
35274
  */
34846
35275
  secret: string;
34847
35276
 
@@ -34850,6 +35279,26 @@ export namespace CreateConnectionParams {
34850
35279
  */
34851
35280
  account_id?: string;
34852
35281
 
35282
+ /**
35283
+ * URL to claim/access the Stripe sandbox (development environment only)
35284
+ */
35285
+ claim_url?: string;
35286
+
35287
+ /**
35288
+ * Timestamp when the sandbox was claimed (development environment only)
35289
+ */
35290
+ claimed_at?: string;
35291
+
35292
+ /**
35293
+ * MCP access token
35294
+ */
35295
+ mcp?: string;
35296
+
35297
+ /**
35298
+ * Stripe claimable sandbox ID (development environment only)
35299
+ */
35300
+ sandbox_id?: string;
35301
+
34853
35302
  /**
34854
35303
  * Stripe webhook endpoint ID
34855
35304
  */
@@ -34997,6 +35446,7 @@ export namespace CreateTokenParams {
34997
35446
  auto_connect?:
34998
35447
  | 'acme-apikey'
34999
35448
  | 'acme-oauth2'
35449
+ | 'agentmail'
35000
35450
  | 'apollo'
35001
35451
  | 'asana'
35002
35452
  | 'bigquery'
@@ -35052,6 +35502,7 @@ export namespace CreateTokenParams {
35052
35502
  connector_names?: Array<
35053
35503
  | 'acme-apikey'
35054
35504
  | 'acme-oauth2'
35505
+ | 'agentmail'
35055
35506
  | 'apollo'
35056
35507
  | 'asana'
35057
35508
  | 'bigquery'
@@ -35172,6 +35623,7 @@ export interface ListConnectionsParams extends OffsetPaginationParams {
35172
35623
  connector_names?: Array<
35173
35624
  | 'acme-apikey'
35174
35625
  | 'acme-oauth2'
35626
+ | 'agentmail'
35175
35627
  | 'apollo'
35176
35628
  | 'asana'
35177
35629
  | 'bigquery'
@@ -35256,6 +35708,7 @@ export interface ListConnectorConfigsParams extends OffsetPaginationParams {
35256
35708
  connector_names?: Array<
35257
35709
  | 'acme-apikey'
35258
35710
  | 'acme-oauth2'
35711
+ | 'agentmail'
35259
35712
  | 'apollo'
35260
35713
  | 'asana'
35261
35714
  | 'bigquery'
@@ -35336,6 +35789,7 @@ export interface ListConnnectorConfigsParams extends OffsetPaginationParams {
35336
35789
  connector_names?: Array<
35337
35790
  | 'acme-apikey'
35338
35791
  | 'acme-oauth2'
35792
+ | 'agentmail'
35339
35793
  | 'apollo'
35340
35794
  | 'asana'
35341
35795
  | 'bigquery'
@@ -35434,6 +35888,7 @@ export interface PostConnectParams {
35434
35888
  discriminated_data:
35435
35889
  | PostConnectParams.ConnectorAcmeApikeyDiscriminatedConnectOutput
35436
35890
  | PostConnectParams.ConnectorAcmeOauth2DiscriminatedConnectOutput
35891
+ | PostConnectParams.ConnectorAgentmailDiscriminatedConnectOutput
35437
35892
  | PostConnectParams.ConnectorAsanaDiscriminatedConnectOutput
35438
35893
  | PostConnectParams.ConnectorBigqueryDiscriminatedConnectOutput
35439
35894
  | PostConnectParams.ConnectorBitbucketSourceControlDiscriminatedConnectOutput
@@ -35533,6 +35988,18 @@ export namespace PostConnectParams {
35533
35988
  }
35534
35989
  }
35535
35990
 
35991
+ export interface ConnectorAgentmailDiscriminatedConnectOutput {
35992
+ connect_output: ConnectorAgentmailDiscriminatedConnectOutput.ConnectOutput;
35993
+
35994
+ connector_name: 'agentmail';
35995
+ }
35996
+
35997
+ export namespace ConnectorAgentmailDiscriminatedConnectOutput {
35998
+ export interface ConnectOutput {
35999
+ api_key: string;
36000
+ }
36001
+ }
36002
+
35536
36003
  export interface ConnectorAsanaDiscriminatedConnectOutput {
35537
36004
  connect_output: ConnectorAsanaDiscriminatedConnectOutput.ConnectOutput;
35538
36005
 
@@ -36924,17 +37391,12 @@ export namespace PostConnectParams {
36924
37391
  export namespace ConnectorStripeDiscriminatedConnectOutput {
36925
37392
  export interface ConnectOutput {
36926
37393
  /**
36927
- * MCP access token
36928
- */
36929
- mcp: string;
36930
-
36931
- /**
36932
- * Stripe publishable key for production
37394
+ * Stripe publishable key
36933
37395
  */
36934
37396
  publishable: string;
36935
37397
 
36936
37398
  /**
36937
- * Stripe secret key for production
37399
+ * Stripe secret key
36938
37400
  */
36939
37401
  secret: string;
36940
37402
 
@@ -36943,6 +37405,26 @@ export namespace PostConnectParams {
36943
37405
  */
36944
37406
  account_id?: string;
36945
37407
 
37408
+ /**
37409
+ * URL to claim/access the Stripe sandbox (development environment only)
37410
+ */
37411
+ claim_url?: string;
37412
+
37413
+ /**
37414
+ * Timestamp when the sandbox was claimed (development environment only)
37415
+ */
37416
+ claimed_at?: string;
37417
+
37418
+ /**
37419
+ * MCP access token
37420
+ */
37421
+ mcp?: string;
37422
+
37423
+ /**
37424
+ * Stripe claimable sandbox ID (development environment only)
37425
+ */
37426
+ sandbox_id?: string;
37427
+
36946
37428
  /**
36947
37429
  * Stripe webhook endpoint ID
36948
37430
  */
@@ -37075,6 +37557,7 @@ export interface PreConfigureConnectorParams {
37075
37557
  connector_name:
37076
37558
  | 'acme-apikey'
37077
37559
  | 'acme-oauth2'
37560
+ | 'agentmail'
37078
37561
  | 'apollo'
37079
37562
  | 'asana'
37080
37563
  | 'bigquery'
@@ -37135,6 +37618,7 @@ export interface PreConnectParams {
37135
37618
  discriminated_data?:
37136
37619
  | PreConnectParams.ConnectorAcmeApikeyDiscriminatedPreConnectInput
37137
37620
  | PreConnectParams.ConnectorAcmeOauth2DiscriminatedPreConnectInput
37621
+ | PreConnectParams.ConnectorAgentmailDiscriminatedPreConnectInput
37138
37622
  | PreConnectParams.ConnectorAsanaDiscriminatedPreConnectInput
37139
37623
  | PreConnectParams.ConnectorBigqueryDiscriminatedPreConnectInput
37140
37624
  | PreConnectParams.ConnectorBitbucketSourceControlDiscriminatedPreConnectInput
@@ -37199,6 +37683,12 @@ export namespace PreConnectParams {
37199
37683
  pre_connect_input: unknown;
37200
37684
  }
37201
37685
 
37686
+ export interface ConnectorAgentmailDiscriminatedPreConnectInput {
37687
+ connector_name: 'agentmail';
37688
+
37689
+ pre_connect_input: unknown;
37690
+ }
37691
+
37202
37692
  export interface ConnectorAsanaDiscriminatedPreConnectInput {
37203
37693
  connector_name: 'asana';
37204
37694
 
@@ -37519,7 +38009,26 @@ export namespace PreConnectParams {
37519
38009
  export interface ConnectorStripeDiscriminatedPreConnectInput {
37520
38010
  connector_name: 'stripe';
37521
38011
 
37522
- pre_connect_input: unknown;
38012
+ pre_connect_input: ConnectorStripeDiscriminatedPreConnectInput.PreConnectInput;
38013
+ }
38014
+
38015
+ export namespace ConnectorStripeDiscriminatedPreConnectInput {
38016
+ export interface PreConnectInput {
38017
+ /**
38018
+ * Country code for sandbox prefill (development environment only)
38019
+ */
38020
+ country?: string;
38021
+
38022
+ /**
38023
+ * Email address of the user for sandbox prefill (development environment only)
38024
+ */
38025
+ email?: string;
38026
+
38027
+ /**
38028
+ * Name of the sandbox (development environment only)
38029
+ */
38030
+ name?: string;
38031
+ }
37523
38032
  }
37524
38033
 
37525
38034
  export interface ConnectorStripeAgentSandboxDiscriminatedPreConnectInput {