@renai-labs/sdk 0.1.17 → 0.1.19

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.
@@ -330,6 +330,7 @@ export declare const zBlueprintProjectEntry: z.ZodObject<{
330
330
  timezone: z.ZodNullable<z.ZodString>;
331
331
  cronTriggerId: z.ZodString;
332
332
  agentId: z.ZodNullable<z.ZodString>;
333
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
333
334
  }, z.core.$strip>>;
334
335
  }, z.core.$strip>;
335
336
  export declare const zBlueprintTemplate: z.ZodObject<{
@@ -479,6 +480,7 @@ export declare const zBlueprintTemplate: z.ZodObject<{
479
480
  timezone: z.ZodNullable<z.ZodString>;
480
481
  cronTriggerId: z.ZodString;
481
482
  agentId: z.ZodNullable<z.ZodString>;
483
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
482
484
  }, z.core.$strip>>;
483
485
  }, z.core.$strip>>;
484
486
  agents: z.ZodArray<z.ZodObject<{
@@ -658,6 +660,7 @@ export declare const zBlueprintPublicView: z.ZodObject<{
658
660
  timezone: z.ZodNullable<z.ZodString>;
659
661
  cronTriggerId: z.ZodString;
660
662
  agentId: z.ZodNullable<z.ZodString>;
663
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
661
664
  }, z.core.$strip>>;
662
665
  }, z.core.$strip>>;
663
666
  agents: z.ZodArray<z.ZodObject<{
@@ -760,6 +763,13 @@ export declare const zCredentialAuth: z.ZodUnion<readonly [z.ZodObject<{
760
763
  type: z.ZodLiteral<"basic">;
761
764
  username: z.ZodString;
762
765
  password: z.ZodString;
766
+ }, z.core.$strip>, z.ZodObject<{
767
+ type: z.ZodLiteral<"mcp_provider">;
768
+ provider: z.ZodEnum<{
769
+ composio: "composio";
770
+ }>;
771
+ userId: z.ZodString;
772
+ url: z.ZodURL;
763
773
  }, z.core.$strip>]>;
764
774
  export declare const zCredentialAuthPublic: z.ZodUnion<readonly [z.ZodObject<{
765
775
  type: z.ZodLiteral<"bearer">;
@@ -782,6 +792,12 @@ export declare const zCredentialAuthPublic: z.ZodUnion<readonly [z.ZodObject<{
782
792
  }, z.core.$strip>, z.ZodObject<{
783
793
  type: z.ZodLiteral<"basic">;
784
794
  username: z.ZodString;
795
+ }, z.core.$strip>, z.ZodObject<{
796
+ type: z.ZodLiteral<"mcp_provider">;
797
+ provider: z.ZodEnum<{
798
+ composio: "composio";
799
+ }>;
800
+ userId: z.ZodString;
785
801
  }, z.core.$strip>]>;
786
802
  export declare const zCredential: z.ZodObject<{
787
803
  id: z.ZodString;
@@ -815,6 +831,12 @@ export declare const zCredential: z.ZodObject<{
815
831
  }, z.core.$strip>, z.ZodObject<{
816
832
  type: z.ZodLiteral<"basic">;
817
833
  username: z.ZodString;
834
+ }, z.core.$strip>, z.ZodObject<{
835
+ type: z.ZodLiteral<"mcp_provider">;
836
+ provider: z.ZodEnum<{
837
+ composio: "composio";
838
+ }>;
839
+ userId: z.ZodString;
818
840
  }, z.core.$strip>]>;
819
841
  createdAt: z.ZodISODateTime;
820
842
  updatedAt: z.ZodISODateTime;
@@ -831,6 +853,51 @@ export declare const zVault: z.ZodObject<{
831
853
  updatedAt: z.ZodISODateTime;
832
854
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
833
855
  }, z.core.$strip>;
856
+ export declare const zLinearMapping: z.ZodObject<{
857
+ id: z.ZodString;
858
+ renProjectId: z.ZodString;
859
+ renProjectName: z.ZodNullable<z.ZodString>;
860
+ linearProjectId: z.ZodNullable<z.ZodString>;
861
+ senderUserId: z.ZodString;
862
+ projectAgentId: z.ZodNullable<z.ZodString>;
863
+ isEnabled: z.ZodBoolean;
864
+ }, z.core.$strip>;
865
+ export declare const zLinearProject: z.ZodObject<{
866
+ id: z.ZodString;
867
+ name: z.ZodString;
868
+ }, z.core.$strip>;
869
+ export declare const zLinearInstallation: z.ZodObject<{
870
+ id: z.ZodString;
871
+ orgId: z.ZodString;
872
+ installedById: z.ZodString;
873
+ workspaceId: z.ZodString;
874
+ workspaceName: z.ZodNullable<z.ZodString>;
875
+ appUserId: z.ZodString;
876
+ accessTokenExpiresAt: z.ZodNullable<z.ZodISODateTime>;
877
+ scope: z.ZodString;
878
+ createdAt: z.ZodISODateTime;
879
+ updatedAt: z.ZodISODateTime;
880
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
881
+ }, z.core.$strip>;
882
+ export declare const zLinearStatus: z.ZodObject<{
883
+ hasInstallation: z.ZodBoolean;
884
+ installations: z.ZodArray<z.ZodObject<{
885
+ id: z.ZodString;
886
+ orgId: z.ZodString;
887
+ installedById: z.ZodString;
888
+ workspaceId: z.ZodString;
889
+ workspaceName: z.ZodNullable<z.ZodString>;
890
+ appUserId: z.ZodString;
891
+ accessTokenExpiresAt: z.ZodNullable<z.ZodISODateTime>;
892
+ scope: z.ZodString;
893
+ createdAt: z.ZodISODateTime;
894
+ updatedAt: z.ZodISODateTime;
895
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
896
+ }, z.core.$strip>>;
897
+ }, z.core.$strip>;
898
+ export declare const zLinearOAuthStartResult: z.ZodObject<{
899
+ url: z.ZodURL;
900
+ }, z.core.$strip>;
834
901
  export declare const zTelegramChatMapping: z.ZodObject<{
835
902
  id: z.ZodString;
836
903
  chatId: z.ZodString;
@@ -930,10 +997,12 @@ export declare const zWebhookTrigger: z.ZodObject<{
930
997
  senderUserId: z.ZodString;
931
998
  provider: z.ZodEnum<{
932
999
  generic: "generic";
1000
+ linear: "linear";
933
1001
  }>;
934
1002
  providerInstallId: z.ZodNullable<z.ZodString>;
935
1003
  scopeFilter: z.ZodNullable<z.ZodObject<{
936
1004
  channelId: z.ZodOptional<z.ZodString>;
1005
+ linearProjectId: z.ZodOptional<z.ZodString>;
937
1006
  }, z.core.$strip>>;
938
1007
  secretHash: z.ZodNullable<z.ZodString>;
939
1008
  isEnabled: z.ZodBoolean;
@@ -949,10 +1018,12 @@ export declare const zWebhookTriggerCreateResult: z.ZodObject<{
949
1018
  senderUserId: z.ZodString;
950
1019
  provider: z.ZodEnum<{
951
1020
  generic: "generic";
1021
+ linear: "linear";
952
1022
  }>;
953
1023
  providerInstallId: z.ZodNullable<z.ZodString>;
954
1024
  scopeFilter: z.ZodNullable<z.ZodObject<{
955
1025
  channelId: z.ZodOptional<z.ZodString>;
1026
+ linearProjectId: z.ZodOptional<z.ZodString>;
956
1027
  }, z.core.$strip>>;
957
1028
  secretHash: z.ZodNullable<z.ZodString>;
958
1029
  isEnabled: z.ZodBoolean;
@@ -970,6 +1041,7 @@ export declare const zCronTrigger: z.ZodObject<{
970
1041
  inputMessage: z.ZodString;
971
1042
  schedule: z.ZodString;
972
1043
  timezone: z.ZodNullable<z.ZodString>;
1044
+ until: z.ZodNullable<z.ZodISODateTime>;
973
1045
  isEnabled: z.ZodBoolean;
974
1046
  syncedAt: z.ZodNullable<z.ZodISODateTime>;
975
1047
  createdAt: z.ZodISODateTime;
@@ -1020,6 +1092,7 @@ export declare const zTopology: z.ZodObject<{
1020
1092
  basic: "basic";
1021
1093
  oauth: "oauth";
1022
1094
  none: "none";
1095
+ mcp_provider: "mcp_provider";
1023
1096
  api_key: "api_key";
1024
1097
  }>>;
1025
1098
  credential: z.ZodOptional<z.ZodString>;
@@ -1045,6 +1118,7 @@ export declare const zTopology: z.ZodObject<{
1045
1118
  basic: "basic";
1046
1119
  oauth: "oauth";
1047
1120
  env: "env";
1121
+ mcp_provider: "mcp_provider";
1048
1122
  api_key: "api_key";
1049
1123
  }>>;
1050
1124
  vault: z.ZodString;
@@ -1164,6 +1238,7 @@ export declare const zTopology: z.ZodObject<{
1164
1238
  project: z.ZodString;
1165
1239
  schedule: z.ZodString;
1166
1240
  timezone: z.ZodOptional<z.ZodString>;
1241
+ until: z.ZodOptional<z.ZodISODateTime>;
1167
1242
  inputMessage: z.ZodString;
1168
1243
  enabled: z.ZodOptional<z.ZodBoolean>;
1169
1244
  notes: z.ZodOptional<z.ZodString>;
@@ -1297,6 +1372,13 @@ export declare const zMcpAuthConfig: z.ZodUnion<readonly [z.ZodObject<{
1297
1372
  type: z.ZodLiteral<"basic">;
1298
1373
  }, z.core.$strip>, z.ZodObject<{
1299
1374
  type: z.ZodLiteral<"none">;
1375
+ }, z.core.$strip>, z.ZodObject<{
1376
+ type: z.ZodLiteral<"mcp_provider">;
1377
+ provider: z.ZodEnum<{
1378
+ composio: "composio";
1379
+ }>;
1380
+ toolkit: z.ZodString;
1381
+ authConfigId: z.ZodString;
1300
1382
  }, z.core.$strip>]>;
1301
1383
  export declare const zAuthRequirementMcp: z.ZodObject<{
1302
1384
  mcpId: z.ZodString;
@@ -1307,6 +1389,7 @@ export declare const zAuthRequirementMcp: z.ZodObject<{
1307
1389
  basic: "basic";
1308
1390
  oauth: "oauth";
1309
1391
  none: "none";
1392
+ mcp_provider: "mcp_provider";
1310
1393
  api_key: "api_key";
1311
1394
  }>;
1312
1395
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -1327,6 +1410,13 @@ export declare const zAuthRequirementMcp: z.ZodObject<{
1327
1410
  type: z.ZodLiteral<"basic">;
1328
1411
  }, z.core.$strip>, z.ZodObject<{
1329
1412
  type: z.ZodLiteral<"none">;
1413
+ }, z.core.$strip>, z.ZodObject<{
1414
+ type: z.ZodLiteral<"mcp_provider">;
1415
+ provider: z.ZodEnum<{
1416
+ composio: "composio";
1417
+ }>;
1418
+ toolkit: z.ZodString;
1419
+ authConfigId: z.ZodString;
1330
1420
  }, z.core.$strip>]>>;
1331
1421
  satisfied: z.ZodBoolean;
1332
1422
  neededByAgentIds: z.ZodArray<z.ZodString>;
@@ -1341,6 +1431,7 @@ export declare const zAuthRequirements: z.ZodObject<{
1341
1431
  basic: "basic";
1342
1432
  oauth: "oauth";
1343
1433
  none: "none";
1434
+ mcp_provider: "mcp_provider";
1344
1435
  api_key: "api_key";
1345
1436
  }>;
1346
1437
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -1361,6 +1452,13 @@ export declare const zAuthRequirements: z.ZodObject<{
1361
1452
  type: z.ZodLiteral<"basic">;
1362
1453
  }, z.core.$strip>, z.ZodObject<{
1363
1454
  type: z.ZodLiteral<"none">;
1455
+ }, z.core.$strip>, z.ZodObject<{
1456
+ type: z.ZodLiteral<"mcp_provider">;
1457
+ provider: z.ZodEnum<{
1458
+ composio: "composio";
1459
+ }>;
1460
+ toolkit: z.ZodString;
1461
+ authConfigId: z.ZodString;
1364
1462
  }, z.core.$strip>]>>;
1365
1463
  satisfied: z.ZodBoolean;
1366
1464
  neededByAgentIds: z.ZodArray<z.ZodString>;
@@ -1961,6 +2059,7 @@ export declare const zMcp: z.ZodObject<{
1961
2059
  basic: "basic";
1962
2060
  oauth: "oauth";
1963
2061
  none: "none";
2062
+ mcp_provider: "mcp_provider";
1964
2063
  api_key: "api_key";
1965
2064
  }>;
1966
2065
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -1981,6 +2080,13 @@ export declare const zMcp: z.ZodObject<{
1981
2080
  type: z.ZodLiteral<"basic">;
1982
2081
  }, z.core.$strip>, z.ZodObject<{
1983
2082
  type: z.ZodLiteral<"none">;
2083
+ }, z.core.$strip>, z.ZodObject<{
2084
+ type: z.ZodLiteral<"mcp_provider">;
2085
+ provider: z.ZodEnum<{
2086
+ composio: "composio";
2087
+ }>;
2088
+ toolkit: z.ZodString;
2089
+ authConfigId: z.ZodString;
1984
2090
  }, z.core.$strip>]>>;
1985
2091
  env: z.ZodRecord<z.ZodString, z.ZodString>;
1986
2092
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -2019,6 +2125,23 @@ export declare const zGoogleWorkspaceStatus: z.ZodObject<{
2019
2125
  scopes: z.ZodArray<z.ZodString>;
2020
2126
  redirectUri: z.ZodURL;
2021
2127
  }, z.core.$strip>;
2128
+ export declare const zGithubRepoMapping: z.ZodObject<{
2129
+ installationId: z.ZodString;
2130
+ accountLogin: z.ZodString;
2131
+ repoId: z.ZodString;
2132
+ repoFullName: z.ZodString;
2133
+ projectId: z.ZodString;
2134
+ projectName: z.ZodNullable<z.ZodString>;
2135
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
2136
+ prListenerEnabled: z.ZodBoolean;
2137
+ prListenerPrompt: z.ZodNullable<z.ZodString>;
2138
+ }, z.core.$strip>;
2139
+ export declare const zGithubRepo: z.ZodObject<{
2140
+ installationId: z.ZodString;
2141
+ accountLogin: z.ZodString;
2142
+ repoId: z.ZodString;
2143
+ fullName: z.ZodString;
2144
+ }, z.core.$strip>;
2022
2145
  export declare const zGithubInstallationResponse: z.ZodObject<{
2023
2146
  id: z.ZodString;
2024
2147
  orgId: z.ZodString;
@@ -2037,6 +2160,13 @@ export declare const zGithubInstallationResponse: z.ZodObject<{
2037
2160
  fullName: z.ZodString;
2038
2161
  }, z.core.$strip>>>;
2039
2162
  appPermissions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
2163
+ repoMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
2164
+ repoFullName: z.ZodString;
2165
+ projectId: z.ZodString;
2166
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
2167
+ prListenerEnabled: z.ZodBoolean;
2168
+ prListenerPrompt: z.ZodNullable<z.ZodString>;
2169
+ }, z.core.$strip>>;
2040
2170
  createdAt: z.ZodISODateTime;
2041
2171
  updatedAt: z.ZodISODateTime;
2042
2172
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -2062,6 +2192,13 @@ export declare const zGithubStatus: z.ZodObject<{
2062
2192
  fullName: z.ZodString;
2063
2193
  }, z.core.$strip>>>;
2064
2194
  appPermissions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
2195
+ repoMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
2196
+ repoFullName: z.ZodString;
2197
+ projectId: z.ZodString;
2198
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
2199
+ prListenerEnabled: z.ZodBoolean;
2200
+ prListenerPrompt: z.ZodNullable<z.ZodString>;
2201
+ }, z.core.$strip>>;
2065
2202
  createdAt: z.ZodISODateTime;
2066
2203
  updatedAt: z.ZodISODateTime;
2067
2204
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -2405,6 +2542,7 @@ export declare const zBlueprint: z.ZodObject<{
2405
2542
  timezone: z.ZodNullable<z.ZodString>;
2406
2543
  cronTriggerId: z.ZodString;
2407
2544
  agentId: z.ZodNullable<z.ZodString>;
2545
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
2408
2546
  }, z.core.$strip>>;
2409
2547
  }, z.core.$strip>>;
2410
2548
  agents: z.ZodArray<z.ZodObject<{
@@ -3304,6 +3442,74 @@ export declare const zAgentPublishResponse: z.ZodObject<{
3304
3442
  }, z.core.$strip>>;
3305
3443
  }, z.core.$strip>>>;
3306
3444
  }, z.core.$strip>;
3445
+ export declare const zAgentCopyToOrgBody: z.ZodObject<{
3446
+ name: z.ZodOptional<z.ZodString>;
3447
+ version: z.ZodOptional<z.ZodString>;
3448
+ }, z.core.$strip>;
3449
+ export declare const zAgentCopyToOrgPath: z.ZodObject<{
3450
+ id: z.ZodString;
3451
+ }, z.core.$strip>;
3452
+ export declare const zAgentCopyToOrgQuery: z.ZodObject<{
3453
+ scope: z.ZodOptional<z.ZodEnum<{
3454
+ user: "user";
3455
+ }>>;
3456
+ }, z.core.$strip>;
3457
+ /**
3458
+ * Copied agent
3459
+ */
3460
+ export declare const zAgentCopyToOrgResponse: z.ZodObject<{
3461
+ id: z.ZodString;
3462
+ slug: z.ZodString;
3463
+ name: z.ZodString;
3464
+ icon: z.ZodNullable<z.ZodString>;
3465
+ orgId: z.ZodString;
3466
+ userId: z.ZodNullable<z.ZodString>;
3467
+ publisherId: z.ZodNullable<z.ZodString>;
3468
+ parentId: z.ZodNullable<z.ZodString>;
3469
+ websiteMetadata: z.ZodNullable<z.ZodObject<{
3470
+ title: z.ZodOptional<z.ZodString>;
3471
+ description: z.ZodOptional<z.ZodString>;
3472
+ longDescription: z.ZodOptional<z.ZodString>;
3473
+ image: z.ZodOptional<z.ZodURL>;
3474
+ favicon: z.ZodOptional<z.ZodURL>;
3475
+ supportUrl: z.ZodOptional<z.ZodURL>;
3476
+ privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
3477
+ }, z.core.$strip>>;
3478
+ latestVersionId: z.ZodNullable<z.ZodString>;
3479
+ createdAt: z.ZodISODateTime;
3480
+ updatedAt: z.ZodISODateTime;
3481
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
3482
+ deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
3483
+ deprecationMessage: z.ZodNullable<z.ZodString>;
3484
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
3485
+ latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3486
+ id: z.ZodString;
3487
+ agentId: z.ZodString;
3488
+ version: z.ZodString;
3489
+ description: z.ZodNullable<z.ZodString>;
3490
+ prompt: z.ZodNullable<z.ZodString>;
3491
+ model: z.ZodNullable<z.ZodString>;
3492
+ skills: z.ZodArray<z.ZodObject<{
3493
+ skillId: z.ZodString;
3494
+ skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
3495
+ skill: z.ZodObject<{
3496
+ id: z.ZodString;
3497
+ slug: z.ZodString;
3498
+ name: z.ZodString;
3499
+ icon: z.ZodNullable<z.ZodString>;
3500
+ }, z.core.$strip>;
3501
+ }, z.core.$strip>>;
3502
+ mcps: z.ZodArray<z.ZodObject<{
3503
+ mcpId: z.ZodString;
3504
+ mcp: z.ZodObject<{
3505
+ id: z.ZodString;
3506
+ slug: z.ZodString;
3507
+ name: z.ZodString;
3508
+ icon: z.ZodNullable<z.ZodString>;
3509
+ }, z.core.$strip>;
3510
+ }, z.core.$strip>>;
3511
+ }, z.core.$strip>>>;
3512
+ }, z.core.$strip>;
3307
3513
  export declare const zAgentDeprecateBody: z.ZodObject<{
3308
3514
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3309
3515
  }, z.core.$strip>;
@@ -4427,6 +4633,7 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
4427
4633
  timezone: z.ZodNullable<z.ZodString>;
4428
4634
  cronTriggerId: z.ZodString;
4429
4635
  agentId: z.ZodNullable<z.ZodString>;
4636
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
4430
4637
  }, z.core.$strip>>;
4431
4638
  }, z.core.$strip>>;
4432
4639
  agents: z.ZodArray<z.ZodObject<{
@@ -4643,6 +4850,7 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
4643
4850
  timezone: z.ZodNullable<z.ZodString>;
4644
4851
  cronTriggerId: z.ZodString;
4645
4852
  agentId: z.ZodNullable<z.ZodString>;
4853
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
4646
4854
  }, z.core.$strip>>;
4647
4855
  }, z.core.$strip>>;
4648
4856
  agents: z.ZodArray<z.ZodObject<{
@@ -4868,6 +5076,7 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
4868
5076
  timezone: z.ZodNullable<z.ZodString>;
4869
5077
  cronTriggerId: z.ZodString;
4870
5078
  agentId: z.ZodNullable<z.ZodString>;
5079
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
4871
5080
  }, z.core.$strip>>;
4872
5081
  }, z.core.$strip>>;
4873
5082
  agents: z.ZodArray<z.ZodObject<{
@@ -5087,6 +5296,7 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
5087
5296
  timezone: z.ZodNullable<z.ZodString>;
5088
5297
  cronTriggerId: z.ZodString;
5089
5298
  agentId: z.ZodNullable<z.ZodString>;
5299
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
5090
5300
  }, z.core.$strip>>;
5091
5301
  }, z.core.$strip>>;
5092
5302
  agents: z.ZodArray<z.ZodObject<{
@@ -5285,6 +5495,7 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
5285
5495
  timezone: z.ZodNullable<z.ZodString>;
5286
5496
  cronTriggerId: z.ZodString;
5287
5497
  agentId: z.ZodNullable<z.ZodString>;
5498
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
5288
5499
  }, z.core.$strip>>;
5289
5500
  }, z.core.$strip>>;
5290
5501
  agents: z.ZodArray<z.ZodObject<{
@@ -5486,6 +5697,7 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
5486
5697
  timezone: z.ZodNullable<z.ZodString>;
5487
5698
  cronTriggerId: z.ZodString;
5488
5699
  agentId: z.ZodNullable<z.ZodString>;
5700
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
5489
5701
  }, z.core.$strip>>;
5490
5702
  }, z.core.$strip>>;
5491
5703
  agents: z.ZodArray<z.ZodObject<{
@@ -5684,6 +5896,7 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
5684
5896
  timezone: z.ZodNullable<z.ZodString>;
5685
5897
  cronTriggerId: z.ZodString;
5686
5898
  agentId: z.ZodNullable<z.ZodString>;
5899
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
5687
5900
  }, z.core.$strip>>;
5688
5901
  }, z.core.$strip>>;
5689
5902
  agents: z.ZodArray<z.ZodObject<{
@@ -5882,6 +6095,7 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
5882
6095
  timezone: z.ZodNullable<z.ZodString>;
5883
6096
  cronTriggerId: z.ZodString;
5884
6097
  agentId: z.ZodNullable<z.ZodString>;
6098
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
5885
6099
  }, z.core.$strip>>;
5886
6100
  }, z.core.$strip>>;
5887
6101
  agents: z.ZodArray<z.ZodObject<{
@@ -6612,6 +6826,13 @@ export declare const zGithubStatusResponse: z.ZodObject<{
6612
6826
  fullName: z.ZodString;
6613
6827
  }, z.core.$strip>>>;
6614
6828
  appPermissions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
6829
+ repoMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
6830
+ repoFullName: z.ZodString;
6831
+ projectId: z.ZodString;
6832
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
6833
+ prListenerEnabled: z.ZodBoolean;
6834
+ prListenerPrompt: z.ZodNullable<z.ZodString>;
6835
+ }, z.core.$strip>>;
6615
6836
  createdAt: z.ZodISODateTime;
6616
6837
  updatedAt: z.ZodISODateTime;
6617
6838
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -6626,8 +6847,63 @@ export declare const zGithubReposQuery: z.ZodObject<{
6626
6847
  * Repositories
6627
6848
  */
6628
6849
  export declare const zGithubReposResponse: z.ZodArray<z.ZodObject<{
6850
+ installationId: z.ZodString;
6851
+ accountLogin: z.ZodString;
6852
+ repoId: z.ZodString;
6629
6853
  fullName: z.ZodString;
6630
6854
  }, z.core.$strip>>;
6855
+ export declare const zGithubMappingsListQuery: z.ZodObject<{
6856
+ scope: z.ZodOptional<z.ZodEnum<{
6857
+ user: "user";
6858
+ }>>;
6859
+ }, z.core.$strip>;
6860
+ /**
6861
+ * Repo mappings
6862
+ */
6863
+ export declare const zGithubMappingsListResponse: z.ZodArray<z.ZodObject<{
6864
+ installationId: z.ZodString;
6865
+ accountLogin: z.ZodString;
6866
+ repoId: z.ZodString;
6867
+ repoFullName: z.ZodString;
6868
+ projectId: z.ZodString;
6869
+ projectName: z.ZodNullable<z.ZodString>;
6870
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
6871
+ prListenerEnabled: z.ZodBoolean;
6872
+ prListenerPrompt: z.ZodNullable<z.ZodString>;
6873
+ }, z.core.$strip>>;
6874
+ export declare const zGithubMappingUnsetPath: z.ZodObject<{
6875
+ repoId: z.ZodString;
6876
+ }, z.core.$strip>;
6877
+ export declare const zGithubMappingUnsetQuery: z.ZodObject<{
6878
+ scope: z.ZodOptional<z.ZodEnum<{
6879
+ user: "user";
6880
+ }>>;
6881
+ installationId: z.ZodString;
6882
+ }, z.core.$strip>;
6883
+ /**
6884
+ * Removed
6885
+ */
6886
+ export declare const zGithubMappingUnsetResponse: z.ZodVoid;
6887
+ export declare const zGithubMappingSetBody: z.ZodObject<{
6888
+ installationId: z.ZodString;
6889
+ repoFullName: z.ZodString;
6890
+ projectId: z.ZodString;
6891
+ fallbackSenderUserId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6892
+ prListenerEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
6893
+ prListenerPrompt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6894
+ }, z.core.$strip>;
6895
+ export declare const zGithubMappingSetPath: z.ZodObject<{
6896
+ repoId: z.ZodString;
6897
+ }, z.core.$strip>;
6898
+ export declare const zGithubMappingSetQuery: z.ZodObject<{
6899
+ scope: z.ZodOptional<z.ZodEnum<{
6900
+ user: "user";
6901
+ }>>;
6902
+ }, z.core.$strip>;
6903
+ /**
6904
+ * Mapped
6905
+ */
6906
+ export declare const zGithubMappingSetResponse: z.ZodVoid;
6631
6907
  export declare const zGoogleStatusQuery: z.ZodObject<{
6632
6908
  scope: z.ZodOptional<z.ZodEnum<{
6633
6909
  user: "user";
@@ -6743,6 +7019,7 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
6743
7019
  basic: "basic";
6744
7020
  oauth: "oauth";
6745
7021
  none: "none";
7022
+ mcp_provider: "mcp_provider";
6746
7023
  api_key: "api_key";
6747
7024
  }>;
6748
7025
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -6763,6 +7040,13 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
6763
7040
  type: z.ZodLiteral<"basic">;
6764
7041
  }, z.core.$strip>, z.ZodObject<{
6765
7042
  type: z.ZodLiteral<"none">;
7043
+ }, z.core.$strip>, z.ZodObject<{
7044
+ type: z.ZodLiteral<"mcp_provider">;
7045
+ provider: z.ZodEnum<{
7046
+ composio: "composio";
7047
+ }>;
7048
+ toolkit: z.ZodString;
7049
+ authConfigId: z.ZodString;
6766
7050
  }, z.core.$strip>]>>;
6767
7051
  env: z.ZodRecord<z.ZodString, z.ZodString>;
6768
7052
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -6826,6 +7110,7 @@ export declare const zMcpCreateBody: z.ZodObject<{
6826
7110
  basic: "basic";
6827
7111
  oauth: "oauth";
6828
7112
  none: "none";
7113
+ mcp_provider: "mcp_provider";
6829
7114
  api_key: "api_key";
6830
7115
  }>>>;
6831
7116
  authConfig: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -6846,6 +7131,13 @@ export declare const zMcpCreateBody: z.ZodObject<{
6846
7131
  type: z.ZodLiteral<"basic">;
6847
7132
  }, z.core.$strip>, z.ZodObject<{
6848
7133
  type: z.ZodLiteral<"none">;
7134
+ }, z.core.$strip>, z.ZodObject<{
7135
+ type: z.ZodLiteral<"mcp_provider">;
7136
+ provider: z.ZodEnum<{
7137
+ composio: "composio";
7138
+ }>;
7139
+ toolkit: z.ZodString;
7140
+ authConfigId: z.ZodString;
6849
7141
  }, z.core.$strip>]>>>>;
6850
7142
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
6851
7143
  }, z.core.$strip>;
@@ -6887,6 +7179,7 @@ export declare const zMcpCreateResponse: z.ZodObject<{
6887
7179
  basic: "basic";
6888
7180
  oauth: "oauth";
6889
7181
  none: "none";
7182
+ mcp_provider: "mcp_provider";
6890
7183
  api_key: "api_key";
6891
7184
  }>;
6892
7185
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -6907,6 +7200,13 @@ export declare const zMcpCreateResponse: z.ZodObject<{
6907
7200
  type: z.ZodLiteral<"basic">;
6908
7201
  }, z.core.$strip>, z.ZodObject<{
6909
7202
  type: z.ZodLiteral<"none">;
7203
+ }, z.core.$strip>, z.ZodObject<{
7204
+ type: z.ZodLiteral<"mcp_provider">;
7205
+ provider: z.ZodEnum<{
7206
+ composio: "composio";
7207
+ }>;
7208
+ toolkit: z.ZodString;
7209
+ authConfigId: z.ZodString;
6910
7210
  }, z.core.$strip>]>>;
6911
7211
  env: z.ZodRecord<z.ZodString, z.ZodString>;
6912
7212
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -7007,6 +7307,7 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
7007
7307
  basic: "basic";
7008
7308
  oauth: "oauth";
7009
7309
  none: "none";
7310
+ mcp_provider: "mcp_provider";
7010
7311
  api_key: "api_key";
7011
7312
  }>;
7012
7313
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -7027,6 +7328,13 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
7027
7328
  type: z.ZodLiteral<"basic">;
7028
7329
  }, z.core.$strip>, z.ZodObject<{
7029
7330
  type: z.ZodLiteral<"none">;
7331
+ }, z.core.$strip>, z.ZodObject<{
7332
+ type: z.ZodLiteral<"mcp_provider">;
7333
+ provider: z.ZodEnum<{
7334
+ composio: "composio";
7335
+ }>;
7336
+ toolkit: z.ZodString;
7337
+ authConfigId: z.ZodString;
7030
7338
  }, z.core.$strip>]>>;
7031
7339
  env: z.ZodRecord<z.ZodString, z.ZodString>;
7032
7340
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -7097,6 +7405,7 @@ export declare const zMcpGetResponse: z.ZodObject<{
7097
7405
  basic: "basic";
7098
7406
  oauth: "oauth";
7099
7407
  none: "none";
7408
+ mcp_provider: "mcp_provider";
7100
7409
  api_key: "api_key";
7101
7410
  }>;
7102
7411
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -7117,6 +7426,13 @@ export declare const zMcpGetResponse: z.ZodObject<{
7117
7426
  type: z.ZodLiteral<"basic">;
7118
7427
  }, z.core.$strip>, z.ZodObject<{
7119
7428
  type: z.ZodLiteral<"none">;
7429
+ }, z.core.$strip>, z.ZodObject<{
7430
+ type: z.ZodLiteral<"mcp_provider">;
7431
+ provider: z.ZodEnum<{
7432
+ composio: "composio";
7433
+ }>;
7434
+ toolkit: z.ZodString;
7435
+ authConfigId: z.ZodString;
7120
7436
  }, z.core.$strip>]>>;
7121
7437
  env: z.ZodRecord<z.ZodString, z.ZodString>;
7122
7438
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -7179,6 +7495,7 @@ export declare const zMcpUpdateBody: z.ZodObject<{
7179
7495
  basic: "basic";
7180
7496
  oauth: "oauth";
7181
7497
  none: "none";
7498
+ mcp_provider: "mcp_provider";
7182
7499
  api_key: "api_key";
7183
7500
  }>>;
7184
7501
  authConfig: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -7199,6 +7516,13 @@ export declare const zMcpUpdateBody: z.ZodObject<{
7199
7516
  type: z.ZodLiteral<"basic">;
7200
7517
  }, z.core.$strip>, z.ZodObject<{
7201
7518
  type: z.ZodLiteral<"none">;
7519
+ }, z.core.$strip>, z.ZodObject<{
7520
+ type: z.ZodLiteral<"mcp_provider">;
7521
+ provider: z.ZodEnum<{
7522
+ composio: "composio";
7523
+ }>;
7524
+ toolkit: z.ZodString;
7525
+ authConfigId: z.ZodString;
7202
7526
  }, z.core.$strip>]>>>;
7203
7527
  websiteMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7204
7528
  title: z.ZodOptional<z.ZodString>;
@@ -7252,6 +7576,7 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
7252
7576
  basic: "basic";
7253
7577
  oauth: "oauth";
7254
7578
  none: "none";
7579
+ mcp_provider: "mcp_provider";
7255
7580
  api_key: "api_key";
7256
7581
  }>;
7257
7582
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -7272,6 +7597,13 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
7272
7597
  type: z.ZodLiteral<"basic">;
7273
7598
  }, z.core.$strip>, z.ZodObject<{
7274
7599
  type: z.ZodLiteral<"none">;
7600
+ }, z.core.$strip>, z.ZodObject<{
7601
+ type: z.ZodLiteral<"mcp_provider">;
7602
+ provider: z.ZodEnum<{
7603
+ composio: "composio";
7604
+ }>;
7605
+ toolkit: z.ZodString;
7606
+ authConfigId: z.ZodString;
7275
7607
  }, z.core.$strip>]>>;
7276
7608
  env: z.ZodRecord<z.ZodString, z.ZodString>;
7277
7609
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -7342,6 +7674,7 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
7342
7674
  basic: "basic";
7343
7675
  oauth: "oauth";
7344
7676
  none: "none";
7677
+ mcp_provider: "mcp_provider";
7345
7678
  api_key: "api_key";
7346
7679
  }>;
7347
7680
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -7362,6 +7695,13 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
7362
7695
  type: z.ZodLiteral<"basic">;
7363
7696
  }, z.core.$strip>, z.ZodObject<{
7364
7697
  type: z.ZodLiteral<"none">;
7698
+ }, z.core.$strip>, z.ZodObject<{
7699
+ type: z.ZodLiteral<"mcp_provider">;
7700
+ provider: z.ZodEnum<{
7701
+ composio: "composio";
7702
+ }>;
7703
+ toolkit: z.ZodString;
7704
+ authConfigId: z.ZodString;
7365
7705
  }, z.core.$strip>]>>;
7366
7706
  env: z.ZodRecord<z.ZodString, z.ZodString>;
7367
7707
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -7432,6 +7772,108 @@ export declare const zMcpPublishResponse: z.ZodObject<{
7432
7772
  basic: "basic";
7433
7773
  oauth: "oauth";
7434
7774
  none: "none";
7775
+ mcp_provider: "mcp_provider";
7776
+ api_key: "api_key";
7777
+ }>;
7778
+ authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
7779
+ type: z.ZodLiteral<"oauth">;
7780
+ scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
7781
+ tokenEndpoint: z.ZodOptional<z.ZodString>;
7782
+ authorizationEndpoint: z.ZodOptional<z.ZodString>;
7783
+ tokenEndpointAuth: z.ZodOptional<z.ZodEnum<{
7784
+ none: "none";
7785
+ client_secret_basic: "client_secret_basic";
7786
+ client_secret_post: "client_secret_post";
7787
+ }>>;
7788
+ }, z.core.$strip>, z.ZodObject<{
7789
+ type: z.ZodLiteral<"api_key">;
7790
+ headerName: z.ZodOptional<z.ZodString>;
7791
+ queryParam: z.ZodOptional<z.ZodString>;
7792
+ }, z.core.$strip>, z.ZodObject<{
7793
+ type: z.ZodLiteral<"basic">;
7794
+ }, z.core.$strip>, z.ZodObject<{
7795
+ type: z.ZodLiteral<"none">;
7796
+ }, z.core.$strip>, z.ZodObject<{
7797
+ type: z.ZodLiteral<"mcp_provider">;
7798
+ provider: z.ZodEnum<{
7799
+ composio: "composio";
7800
+ }>;
7801
+ toolkit: z.ZodString;
7802
+ authConfigId: z.ZodString;
7803
+ }, z.core.$strip>]>>;
7804
+ env: z.ZodRecord<z.ZodString, z.ZodString>;
7805
+ requiredCredentials: z.ZodArray<z.ZodObject<{
7806
+ name: z.ZodString;
7807
+ description: z.ZodOptional<z.ZodString>;
7808
+ }, z.core.$strip>>;
7809
+ orgId: z.ZodString;
7810
+ userId: z.ZodNullable<z.ZodString>;
7811
+ publisherId: z.ZodNullable<z.ZodString>;
7812
+ websiteMetadata: z.ZodNullable<z.ZodObject<{
7813
+ title: z.ZodOptional<z.ZodString>;
7814
+ description: z.ZodOptional<z.ZodString>;
7815
+ longDescription: z.ZodOptional<z.ZodString>;
7816
+ image: z.ZodOptional<z.ZodURL>;
7817
+ favicon: z.ZodOptional<z.ZodURL>;
7818
+ supportUrl: z.ZodOptional<z.ZodURL>;
7819
+ privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
7820
+ }, z.core.$strip>>;
7821
+ sortOrder: z.ZodNullable<z.ZodInt>;
7822
+ popularityScore: z.ZodNullable<z.ZodInt>;
7823
+ trendingScore: z.ZodNullable<z.ZodInt>;
7824
+ rank: z.ZodNullable<z.ZodInt>;
7825
+ createdAt: z.ZodISODateTime;
7826
+ updatedAt: z.ZodISODateTime;
7827
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
7828
+ deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
7829
+ deprecationMessage: z.ZodNullable<z.ZodString>;
7830
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
7831
+ }, z.core.$strip>;
7832
+ export declare const zMcpCopyToOrgBody: z.ZodObject<{
7833
+ name: z.ZodOptional<z.ZodString>;
7834
+ }, z.core.$strip>;
7835
+ export declare const zMcpCopyToOrgPath: z.ZodObject<{
7836
+ id: z.ZodString;
7837
+ }, z.core.$strip>;
7838
+ export declare const zMcpCopyToOrgQuery: z.ZodObject<{
7839
+ scope: z.ZodOptional<z.ZodEnum<{
7840
+ user: "user";
7841
+ }>>;
7842
+ }, z.core.$strip>;
7843
+ /**
7844
+ * Copied MCP
7845
+ */
7846
+ export declare const zMcpCopyToOrgResponse: z.ZodObject<{
7847
+ id: z.ZodString;
7848
+ slug: z.ZodString;
7849
+ name: z.ZodString;
7850
+ description: z.ZodNullable<z.ZodString>;
7851
+ icon: z.ZodNullable<z.ZodString>;
7852
+ mcpServerUrl: z.ZodNullable<z.ZodString>;
7853
+ docUrl: z.ZodNullable<z.ZodString>;
7854
+ type: z.ZodEnum<{
7855
+ remote: "remote";
7856
+ local: "local";
7857
+ }>;
7858
+ transport: z.ZodEnum<{
7859
+ "streamable-http": "streamable-http";
7860
+ sse: "sse";
7861
+ stdio: "stdio";
7862
+ }>;
7863
+ command: z.ZodNullable<z.ZodString>;
7864
+ args: z.ZodArray<z.ZodString>;
7865
+ version: z.ZodNullable<z.ZodString>;
7866
+ repository: z.ZodNullable<z.ZodObject<{
7867
+ url: z.ZodOptional<z.ZodURL>;
7868
+ source: z.ZodOptional<z.ZodString>;
7869
+ }, z.core.$strip>>;
7870
+ tools: z.ZodArray<z.ZodString>;
7871
+ prompts: z.ZodArray<z.ZodString>;
7872
+ auth: z.ZodEnum<{
7873
+ basic: "basic";
7874
+ oauth: "oauth";
7875
+ none: "none";
7876
+ mcp_provider: "mcp_provider";
7435
7877
  api_key: "api_key";
7436
7878
  }>;
7437
7879
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -7452,6 +7894,13 @@ export declare const zMcpPublishResponse: z.ZodObject<{
7452
7894
  type: z.ZodLiteral<"basic">;
7453
7895
  }, z.core.$strip>, z.ZodObject<{
7454
7896
  type: z.ZodLiteral<"none">;
7897
+ }, z.core.$strip>, z.ZodObject<{
7898
+ type: z.ZodLiteral<"mcp_provider">;
7899
+ provider: z.ZodEnum<{
7900
+ composio: "composio";
7901
+ }>;
7902
+ toolkit: z.ZodString;
7903
+ authConfigId: z.ZodString;
7455
7904
  }, z.core.$strip>]>>;
7456
7905
  env: z.ZodRecord<z.ZodString, z.ZodString>;
7457
7906
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -7525,6 +7974,7 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
7525
7974
  basic: "basic";
7526
7975
  oauth: "oauth";
7527
7976
  none: "none";
7977
+ mcp_provider: "mcp_provider";
7528
7978
  api_key: "api_key";
7529
7979
  }>;
7530
7980
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -7545,6 +7995,13 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
7545
7995
  type: z.ZodLiteral<"basic">;
7546
7996
  }, z.core.$strip>, z.ZodObject<{
7547
7997
  type: z.ZodLiteral<"none">;
7998
+ }, z.core.$strip>, z.ZodObject<{
7999
+ type: z.ZodLiteral<"mcp_provider">;
8000
+ provider: z.ZodEnum<{
8001
+ composio: "composio";
8002
+ }>;
8003
+ toolkit: z.ZodString;
8004
+ authConfigId: z.ZodString;
7548
8005
  }, z.core.$strip>]>>;
7549
8006
  env: z.ZodRecord<z.ZodString, z.ZodString>;
7550
8007
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -7615,6 +8072,7 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
7615
8072
  basic: "basic";
7616
8073
  oauth: "oauth";
7617
8074
  none: "none";
8075
+ mcp_provider: "mcp_provider";
7618
8076
  api_key: "api_key";
7619
8077
  }>;
7620
8078
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -7635,6 +8093,13 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
7635
8093
  type: z.ZodLiteral<"basic">;
7636
8094
  }, z.core.$strip>, z.ZodObject<{
7637
8095
  type: z.ZodLiteral<"none">;
8096
+ }, z.core.$strip>, z.ZodObject<{
8097
+ type: z.ZodLiteral<"mcp_provider">;
8098
+ provider: z.ZodEnum<{
8099
+ composio: "composio";
8100
+ }>;
8101
+ toolkit: z.ZodString;
8102
+ authConfigId: z.ZodString;
7638
8103
  }, z.core.$strip>]>>;
7639
8104
  env: z.ZodRecord<z.ZodString, z.ZodString>;
7640
8105
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -10494,6 +10959,7 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
10494
10959
  basic: "basic";
10495
10960
  oauth: "oauth";
10496
10961
  none: "none";
10962
+ mcp_provider: "mcp_provider";
10497
10963
  api_key: "api_key";
10498
10964
  }>;
10499
10965
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -10514,6 +10980,13 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
10514
10980
  type: z.ZodLiteral<"basic">;
10515
10981
  }, z.core.$strip>, z.ZodObject<{
10516
10982
  type: z.ZodLiteral<"none">;
10983
+ }, z.core.$strip>, z.ZodObject<{
10984
+ type: z.ZodLiteral<"mcp_provider">;
10985
+ provider: z.ZodEnum<{
10986
+ composio: "composio";
10987
+ }>;
10988
+ toolkit: z.ZodString;
10989
+ authConfigId: z.ZodString;
10517
10990
  }, z.core.$strip>]>>;
10518
10991
  satisfied: z.ZodBoolean;
10519
10992
  neededByAgentIds: z.ZodArray<z.ZodString>;
@@ -11179,6 +11652,57 @@ export declare const zSkillCopyResponse: z.ZodObject<{
11179
11652
  deprecationMessage: z.ZodNullable<z.ZodString>;
11180
11653
  tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
11181
11654
  }, z.core.$strip>;
11655
+ export declare const zSkillCopyToOrgBody: z.ZodObject<{
11656
+ name: z.ZodOptional<z.ZodString>;
11657
+ version: z.ZodOptional<z.ZodString>;
11658
+ }, z.core.$strip>;
11659
+ export declare const zSkillCopyToOrgPath: z.ZodObject<{
11660
+ id: z.ZodString;
11661
+ }, z.core.$strip>;
11662
+ export declare const zSkillCopyToOrgQuery: z.ZodObject<{
11663
+ scope: z.ZodOptional<z.ZodEnum<{
11664
+ user: "user";
11665
+ }>>;
11666
+ }, z.core.$strip>;
11667
+ /**
11668
+ * Copied skill
11669
+ */
11670
+ export declare const zSkillCopyToOrgResponse: z.ZodObject<{
11671
+ id: z.ZodString;
11672
+ slug: z.ZodString;
11673
+ name: z.ZodString;
11674
+ description: z.ZodNullable<z.ZodString>;
11675
+ icon: z.ZodNullable<z.ZodString>;
11676
+ docUrl: z.ZodNullable<z.ZodString>;
11677
+ repository: z.ZodNullable<z.ZodObject<{
11678
+ url: z.ZodOptional<z.ZodURL>;
11679
+ source: z.ZodOptional<z.ZodString>;
11680
+ }, z.core.$strip>>;
11681
+ orgId: z.ZodString;
11682
+ userId: z.ZodNullable<z.ZodString>;
11683
+ publisherId: z.ZodNullable<z.ZodString>;
11684
+ parentId: z.ZodNullable<z.ZodString>;
11685
+ websiteMetadata: z.ZodNullable<z.ZodObject<{
11686
+ title: z.ZodOptional<z.ZodString>;
11687
+ description: z.ZodOptional<z.ZodString>;
11688
+ longDescription: z.ZodOptional<z.ZodString>;
11689
+ image: z.ZodOptional<z.ZodURL>;
11690
+ favicon: z.ZodOptional<z.ZodURL>;
11691
+ supportUrl: z.ZodOptional<z.ZodURL>;
11692
+ privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
11693
+ }, z.core.$strip>>;
11694
+ sortOrder: z.ZodNullable<z.ZodInt>;
11695
+ popularityScore: z.ZodNullable<z.ZodInt>;
11696
+ trendingScore: z.ZodNullable<z.ZodInt>;
11697
+ rank: z.ZodNullable<z.ZodInt>;
11698
+ latestVersionId: z.ZodNullable<z.ZodString>;
11699
+ createdAt: z.ZodISODateTime;
11700
+ updatedAt: z.ZodISODateTime;
11701
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11702
+ deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
11703
+ deprecationMessage: z.ZodNullable<z.ZodString>;
11704
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
11705
+ }, z.core.$strip>;
11182
11706
  export declare const zSkillVersionListPath: z.ZodObject<{
11183
11707
  id: z.ZodString;
11184
11708
  }, z.core.$strip>;
@@ -11390,6 +11914,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
11390
11914
  basic: "basic";
11391
11915
  oauth: "oauth";
11392
11916
  none: "none";
11917
+ mcp_provider: "mcp_provider";
11393
11918
  api_key: "api_key";
11394
11919
  }>>;
11395
11920
  credential: z.ZodOptional<z.ZodString>;
@@ -11415,6 +11940,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
11415
11940
  basic: "basic";
11416
11941
  oauth: "oauth";
11417
11942
  env: "env";
11943
+ mcp_provider: "mcp_provider";
11418
11944
  api_key: "api_key";
11419
11945
  }>>;
11420
11946
  vault: z.ZodString;
@@ -11534,6 +12060,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
11534
12060
  project: z.ZodString;
11535
12061
  schedule: z.ZodString;
11536
12062
  timezone: z.ZodOptional<z.ZodString>;
12063
+ until: z.ZodOptional<z.ZodISODateTime>;
11537
12064
  inputMessage: z.ZodString;
11538
12065
  enabled: z.ZodOptional<z.ZodBoolean>;
11539
12066
  notes: z.ZodOptional<z.ZodString>;
@@ -11622,6 +12149,7 @@ export declare const zTriggerListResponse: z.ZodArray<z.ZodObject<{
11622
12149
  inputMessage: z.ZodString;
11623
12150
  schedule: z.ZodString;
11624
12151
  timezone: z.ZodNullable<z.ZodString>;
12152
+ until: z.ZodNullable<z.ZodISODateTime>;
11625
12153
  isEnabled: z.ZodBoolean;
11626
12154
  syncedAt: z.ZodNullable<z.ZodISODateTime>;
11627
12155
  createdAt: z.ZodISODateTime;
@@ -11635,6 +12163,7 @@ export declare const zTriggerCreateBody: z.ZodObject<{
11635
12163
  inputMessage: z.ZodString;
11636
12164
  schedule: z.ZodString;
11637
12165
  timezone: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12166
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
11638
12167
  isEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11639
12168
  }, z.core.$strip>;
11640
12169
  export declare const zTriggerCreateQuery: z.ZodObject<{
@@ -11653,6 +12182,7 @@ export declare const zTriggerCreateResponse: z.ZodObject<{
11653
12182
  inputMessage: z.ZodString;
11654
12183
  schedule: z.ZodString;
11655
12184
  timezone: z.ZodNullable<z.ZodString>;
12185
+ until: z.ZodNullable<z.ZodISODateTime>;
11656
12186
  isEnabled: z.ZodBoolean;
11657
12187
  syncedAt: z.ZodNullable<z.ZodISODateTime>;
11658
12188
  createdAt: z.ZodISODateTime;
@@ -11679,6 +12209,7 @@ export declare const zTriggerGetResponse: z.ZodObject<{
11679
12209
  inputMessage: z.ZodString;
11680
12210
  schedule: z.ZodString;
11681
12211
  timezone: z.ZodNullable<z.ZodString>;
12212
+ until: z.ZodNullable<z.ZodISODateTime>;
11682
12213
  isEnabled: z.ZodBoolean;
11683
12214
  syncedAt: z.ZodNullable<z.ZodISODateTime>;
11684
12215
  createdAt: z.ZodISODateTime;
@@ -11691,6 +12222,7 @@ export declare const zTriggerUpdateBody: z.ZodObject<{
11691
12222
  inputMessage: z.ZodOptional<z.ZodString>;
11692
12223
  schedule: z.ZodOptional<z.ZodString>;
11693
12224
  timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12225
+ until: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
11694
12226
  isEnabled: z.ZodOptional<z.ZodBoolean>;
11695
12227
  projectId: z.ZodString;
11696
12228
  }, z.core.$strip>;
@@ -11713,6 +12245,7 @@ export declare const zTriggerUpdateResponse: z.ZodObject<{
11713
12245
  inputMessage: z.ZodString;
11714
12246
  schedule: z.ZodString;
11715
12247
  timezone: z.ZodNullable<z.ZodString>;
12248
+ until: z.ZodNullable<z.ZodISODateTime>;
11716
12249
  isEnabled: z.ZodBoolean;
11717
12250
  syncedAt: z.ZodNullable<z.ZodISODateTime>;
11718
12251
  createdAt: z.ZodISODateTime;
@@ -11741,6 +12274,7 @@ export declare const zTriggerArchiveResponse: z.ZodObject<{
11741
12274
  inputMessage: z.ZodString;
11742
12275
  schedule: z.ZodString;
11743
12276
  timezone: z.ZodNullable<z.ZodString>;
12277
+ until: z.ZodNullable<z.ZodISODateTime>;
11744
12278
  isEnabled: z.ZodBoolean;
11745
12279
  syncedAt: z.ZodNullable<z.ZodISODateTime>;
11746
12280
  createdAt: z.ZodISODateTime;
@@ -11766,10 +12300,12 @@ export declare const zWebhookTriggerListResponse: z.ZodArray<z.ZodObject<{
11766
12300
  senderUserId: z.ZodString;
11767
12301
  provider: z.ZodEnum<{
11768
12302
  generic: "generic";
12303
+ linear: "linear";
11769
12304
  }>;
11770
12305
  providerInstallId: z.ZodNullable<z.ZodString>;
11771
12306
  scopeFilter: z.ZodNullable<z.ZodObject<{
11772
12307
  channelId: z.ZodOptional<z.ZodString>;
12308
+ linearProjectId: z.ZodOptional<z.ZodString>;
11773
12309
  }, z.core.$strip>>;
11774
12310
  secretHash: z.ZodNullable<z.ZodString>;
11775
12311
  isEnabled: z.ZodBoolean;
@@ -11783,10 +12319,12 @@ export declare const zWebhookTriggerCreateBody: z.ZodObject<{
11783
12319
  senderUserId: z.ZodString;
11784
12320
  provider: z.ZodEnum<{
11785
12321
  generic: "generic";
12322
+ linear: "linear";
11786
12323
  }>;
11787
12324
  providerInstallId: z.ZodNullable<z.ZodString>;
11788
12325
  scopeFilter: z.ZodNullable<z.ZodObject<{
11789
12326
  channelId: z.ZodOptional<z.ZodString>;
12327
+ linearProjectId: z.ZodOptional<z.ZodString>;
11790
12328
  }, z.core.$strip>>;
11791
12329
  isEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11792
12330
  }, z.core.$strip>;
@@ -11806,10 +12344,12 @@ export declare const zWebhookTriggerCreateResponse: z.ZodObject<{
11806
12344
  senderUserId: z.ZodString;
11807
12345
  provider: z.ZodEnum<{
11808
12346
  generic: "generic";
12347
+ linear: "linear";
11809
12348
  }>;
11810
12349
  providerInstallId: z.ZodNullable<z.ZodString>;
11811
12350
  scopeFilter: z.ZodNullable<z.ZodObject<{
11812
12351
  channelId: z.ZodOptional<z.ZodString>;
12352
+ linearProjectId: z.ZodOptional<z.ZodString>;
11813
12353
  }, z.core.$strip>>;
11814
12354
  secretHash: z.ZodNullable<z.ZodString>;
11815
12355
  isEnabled: z.ZodBoolean;
@@ -11838,10 +12378,12 @@ export declare const zWebhookTriggerGetResponse: z.ZodObject<{
11838
12378
  senderUserId: z.ZodString;
11839
12379
  provider: z.ZodEnum<{
11840
12380
  generic: "generic";
12381
+ linear: "linear";
11841
12382
  }>;
11842
12383
  providerInstallId: z.ZodNullable<z.ZodString>;
11843
12384
  scopeFilter: z.ZodNullable<z.ZodObject<{
11844
12385
  channelId: z.ZodOptional<z.ZodString>;
12386
+ linearProjectId: z.ZodOptional<z.ZodString>;
11845
12387
  }, z.core.$strip>>;
11846
12388
  secretHash: z.ZodNullable<z.ZodString>;
11847
12389
  isEnabled: z.ZodBoolean;
@@ -11854,6 +12396,7 @@ export declare const zWebhookTriggerUpdateBody: z.ZodObject<{
11854
12396
  senderUserId: z.ZodOptional<z.ZodString>;
11855
12397
  scopeFilter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11856
12398
  channelId: z.ZodOptional<z.ZodString>;
12399
+ linearProjectId: z.ZodOptional<z.ZodString>;
11857
12400
  }, z.core.$strip>>>;
11858
12401
  isEnabled: z.ZodOptional<z.ZodBoolean>;
11859
12402
  projectId: z.ZodString;
@@ -11876,10 +12419,12 @@ export declare const zWebhookTriggerUpdateResponse: z.ZodObject<{
11876
12419
  senderUserId: z.ZodString;
11877
12420
  provider: z.ZodEnum<{
11878
12421
  generic: "generic";
12422
+ linear: "linear";
11879
12423
  }>;
11880
12424
  providerInstallId: z.ZodNullable<z.ZodString>;
11881
12425
  scopeFilter: z.ZodNullable<z.ZodObject<{
11882
12426
  channelId: z.ZodOptional<z.ZodString>;
12427
+ linearProjectId: z.ZodOptional<z.ZodString>;
11883
12428
  }, z.core.$strip>>;
11884
12429
  secretHash: z.ZodNullable<z.ZodString>;
11885
12430
  isEnabled: z.ZodBoolean;
@@ -11908,10 +12453,12 @@ export declare const zWebhookTriggerArchiveResponse: z.ZodObject<{
11908
12453
  senderUserId: z.ZodString;
11909
12454
  provider: z.ZodEnum<{
11910
12455
  generic: "generic";
12456
+ linear: "linear";
11911
12457
  }>;
11912
12458
  providerInstallId: z.ZodNullable<z.ZodString>;
11913
12459
  scopeFilter: z.ZodNullable<z.ZodObject<{
11914
12460
  channelId: z.ZodOptional<z.ZodString>;
12461
+ linearProjectId: z.ZodOptional<z.ZodString>;
11915
12462
  }, z.core.$strip>>;
11916
12463
  secretHash: z.ZodNullable<z.ZodString>;
11917
12464
  isEnabled: z.ZodBoolean;
@@ -12206,6 +12753,115 @@ export declare const zTelegramChatSetResponse: z.ZodObject<{
12206
12753
  createdAt: z.ZodISODateTime;
12207
12754
  updatedAt: z.ZodISODateTime;
12208
12755
  }, z.core.$strip>;
12756
+ export declare const zLinearUninstallQuery: z.ZodObject<{
12757
+ scope: z.ZodOptional<z.ZodEnum<{
12758
+ user: "user";
12759
+ }>>;
12760
+ }, z.core.$strip>;
12761
+ /**
12762
+ * Removed
12763
+ */
12764
+ export declare const zLinearUninstallResponse: z.ZodVoid;
12765
+ export declare const zLinearInstallQuery: z.ZodObject<{
12766
+ scope: z.ZodOptional<z.ZodEnum<{
12767
+ user: "user";
12768
+ }>>;
12769
+ returnTo: z.ZodOptional<z.ZodString>;
12770
+ }, z.core.$strip>;
12771
+ /**
12772
+ * Authorization URL for the user to visit
12773
+ */
12774
+ export declare const zLinearInstallResponse: z.ZodObject<{
12775
+ url: z.ZodURL;
12776
+ }, z.core.$strip>;
12777
+ export declare const zLinearStatusQuery: z.ZodObject<{
12778
+ scope: z.ZodOptional<z.ZodEnum<{
12779
+ user: "user";
12780
+ }>>;
12781
+ }, z.core.$strip>;
12782
+ /**
12783
+ * Linear installation status
12784
+ */
12785
+ export declare const zLinearStatusResponse: z.ZodObject<{
12786
+ hasInstallation: z.ZodBoolean;
12787
+ installations: z.ZodArray<z.ZodObject<{
12788
+ id: z.ZodString;
12789
+ orgId: z.ZodString;
12790
+ installedById: z.ZodString;
12791
+ workspaceId: z.ZodString;
12792
+ workspaceName: z.ZodNullable<z.ZodString>;
12793
+ appUserId: z.ZodString;
12794
+ accessTokenExpiresAt: z.ZodNullable<z.ZodISODateTime>;
12795
+ scope: z.ZodString;
12796
+ createdAt: z.ZodISODateTime;
12797
+ updatedAt: z.ZodISODateTime;
12798
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
12799
+ }, z.core.$strip>>;
12800
+ }, z.core.$strip>;
12801
+ export declare const zLinearProjectsQuery: z.ZodObject<{
12802
+ scope: z.ZodOptional<z.ZodEnum<{
12803
+ user: "user";
12804
+ }>>;
12805
+ }, z.core.$strip>;
12806
+ /**
12807
+ * Linear projects (with a __global__ entry for issues without a project)
12808
+ */
12809
+ export declare const zLinearProjectsResponse: z.ZodArray<z.ZodObject<{
12810
+ id: z.ZodString;
12811
+ name: z.ZodString;
12812
+ }, z.core.$strip>>;
12813
+ export declare const zLinearMappingsListQuery: z.ZodObject<{
12814
+ scope: z.ZodOptional<z.ZodEnum<{
12815
+ user: "user";
12816
+ }>>;
12817
+ }, z.core.$strip>;
12818
+ /**
12819
+ * Linear project mappings
12820
+ */
12821
+ export declare const zLinearMappingsListResponse: z.ZodArray<z.ZodObject<{
12822
+ id: z.ZodString;
12823
+ renProjectId: z.ZodString;
12824
+ renProjectName: z.ZodNullable<z.ZodString>;
12825
+ linearProjectId: z.ZodNullable<z.ZodString>;
12826
+ senderUserId: z.ZodString;
12827
+ projectAgentId: z.ZodNullable<z.ZodString>;
12828
+ isEnabled: z.ZodBoolean;
12829
+ }, z.core.$strip>>;
12830
+ export declare const zLinearMappingsCreateBody: z.ZodObject<{
12831
+ renProjectId: z.ZodString;
12832
+ linearProjectId: z.ZodString;
12833
+ senderUserId: z.ZodString;
12834
+ projectAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12835
+ }, z.core.$strip>;
12836
+ export declare const zLinearMappingsCreateQuery: z.ZodObject<{
12837
+ scope: z.ZodOptional<z.ZodEnum<{
12838
+ user: "user";
12839
+ }>>;
12840
+ }, z.core.$strip>;
12841
+ /**
12842
+ * Created mapping
12843
+ */
12844
+ export declare const zLinearMappingsCreateResponse: z.ZodObject<{
12845
+ id: z.ZodString;
12846
+ renProjectId: z.ZodString;
12847
+ renProjectName: z.ZodNullable<z.ZodString>;
12848
+ linearProjectId: z.ZodNullable<z.ZodString>;
12849
+ senderUserId: z.ZodString;
12850
+ projectAgentId: z.ZodNullable<z.ZodString>;
12851
+ isEnabled: z.ZodBoolean;
12852
+ }, z.core.$strip>;
12853
+ export declare const zLinearMappingsRemovePath: z.ZodObject<{
12854
+ triggerId: z.ZodString;
12855
+ }, z.core.$strip>;
12856
+ export declare const zLinearMappingsRemoveQuery: z.ZodObject<{
12857
+ scope: z.ZodOptional<z.ZodEnum<{
12858
+ user: "user";
12859
+ }>>;
12860
+ }, z.core.$strip>;
12861
+ /**
12862
+ * Removed
12863
+ */
12864
+ export declare const zLinearMappingsRemoveResponse: z.ZodVoid;
12209
12865
  export declare const zVaultListQuery: z.ZodObject<{
12210
12866
  scope: z.ZodOptional<z.ZodEnum<{
12211
12867
  user: "user";
@@ -12390,6 +13046,12 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
12390
13046
  }, z.core.$strip>, z.ZodObject<{
12391
13047
  type: z.ZodLiteral<"basic">;
12392
13048
  username: z.ZodString;
13049
+ }, z.core.$strip>, z.ZodObject<{
13050
+ type: z.ZodLiteral<"mcp_provider">;
13051
+ provider: z.ZodEnum<{
13052
+ composio: "composio";
13053
+ }>;
13054
+ userId: z.ZodString;
12393
13055
  }, z.core.$strip>]>;
12394
13056
  createdAt: z.ZodISODateTime;
12395
13057
  updatedAt: z.ZodISODateTime;
@@ -12438,6 +13100,13 @@ export declare const zCredentialCreateBody: z.ZodObject<{
12438
13100
  type: z.ZodLiteral<"basic">;
12439
13101
  username: z.ZodString;
12440
13102
  password: z.ZodString;
13103
+ }, z.core.$strip>, z.ZodObject<{
13104
+ type: z.ZodLiteral<"mcp_provider">;
13105
+ provider: z.ZodEnum<{
13106
+ composio: "composio";
13107
+ }>;
13108
+ userId: z.ZodString;
13109
+ url: z.ZodURL;
12441
13110
  }, z.core.$strip>]>;
12442
13111
  }, z.core.$strip>;
12443
13112
  export declare const zCredentialCreatePath: z.ZodObject<{
@@ -12483,6 +13152,12 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
12483
13152
  }, z.core.$strip>, z.ZodObject<{
12484
13153
  type: z.ZodLiteral<"basic">;
12485
13154
  username: z.ZodString;
13155
+ }, z.core.$strip>, z.ZodObject<{
13156
+ type: z.ZodLiteral<"mcp_provider">;
13157
+ provider: z.ZodEnum<{
13158
+ composio: "composio";
13159
+ }>;
13160
+ userId: z.ZodString;
12486
13161
  }, z.core.$strip>]>;
12487
13162
  createdAt: z.ZodISODateTime;
12488
13163
  updatedAt: z.ZodISODateTime;
@@ -12532,6 +13207,12 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
12532
13207
  }, z.core.$strip>, z.ZodObject<{
12533
13208
  type: z.ZodLiteral<"basic">;
12534
13209
  username: z.ZodString;
13210
+ }, z.core.$strip>, z.ZodObject<{
13211
+ type: z.ZodLiteral<"mcp_provider">;
13212
+ provider: z.ZodEnum<{
13213
+ composio: "composio";
13214
+ }>;
13215
+ userId: z.ZodString;
12535
13216
  }, z.core.$strip>]>;
12536
13217
  createdAt: z.ZodISODateTime;
12537
13218
  updatedAt: z.ZodISODateTime;
@@ -12581,6 +13262,12 @@ export declare const zCredentialGetResponse: z.ZodObject<{
12581
13262
  }, z.core.$strip>, z.ZodObject<{
12582
13263
  type: z.ZodLiteral<"basic">;
12583
13264
  username: z.ZodString;
13265
+ }, z.core.$strip>, z.ZodObject<{
13266
+ type: z.ZodLiteral<"mcp_provider">;
13267
+ provider: z.ZodEnum<{
13268
+ composio: "composio";
13269
+ }>;
13270
+ userId: z.ZodString;
12584
13271
  }, z.core.$strip>]>;
12585
13272
  createdAt: z.ZodISODateTime;
12586
13273
  updatedAt: z.ZodISODateTime;
@@ -12627,6 +13314,13 @@ export declare const zCredentialUpdateBody: z.ZodObject<{
12627
13314
  type: z.ZodLiteral<"basic">;
12628
13315
  username: z.ZodString;
12629
13316
  password: z.ZodString;
13317
+ }, z.core.$strip>, z.ZodObject<{
13318
+ type: z.ZodLiteral<"mcp_provider">;
13319
+ provider: z.ZodEnum<{
13320
+ composio: "composio";
13321
+ }>;
13322
+ userId: z.ZodString;
13323
+ url: z.ZodURL;
12630
13324
  }, z.core.$strip>]>>;
12631
13325
  }, z.core.$strip>;
12632
13326
  export declare const zCredentialUpdatePath: z.ZodObject<{
@@ -12673,6 +13367,12 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
12673
13367
  }, z.core.$strip>, z.ZodObject<{
12674
13368
  type: z.ZodLiteral<"basic">;
12675
13369
  username: z.ZodString;
13370
+ }, z.core.$strip>, z.ZodObject<{
13371
+ type: z.ZodLiteral<"mcp_provider">;
13372
+ provider: z.ZodEnum<{
13373
+ composio: "composio";
13374
+ }>;
13375
+ userId: z.ZodString;
12676
13376
  }, z.core.$strip>]>;
12677
13377
  createdAt: z.ZodISODateTime;
12678
13378
  updatedAt: z.ZodISODateTime;
@@ -12722,6 +13422,12 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
12722
13422
  }, z.core.$strip>, z.ZodObject<{
12723
13423
  type: z.ZodLiteral<"basic">;
12724
13424
  username: z.ZodString;
13425
+ }, z.core.$strip>, z.ZodObject<{
13426
+ type: z.ZodLiteral<"mcp_provider">;
13427
+ provider: z.ZodEnum<{
13428
+ composio: "composio";
13429
+ }>;
13430
+ userId: z.ZodString;
12725
13431
  }, z.core.$strip>]>;
12726
13432
  createdAt: z.ZodISODateTime;
12727
13433
  updatedAt: z.ZodISODateTime;
@@ -13027,6 +13733,7 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
13027
13733
  basic: "basic";
13028
13734
  oauth: "oauth";
13029
13735
  none: "none";
13736
+ mcp_provider: "mcp_provider";
13030
13737
  api_key: "api_key";
13031
13738
  }>;
13032
13739
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -13047,6 +13754,13 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
13047
13754
  type: z.ZodLiteral<"basic">;
13048
13755
  }, z.core.$strip>, z.ZodObject<{
13049
13756
  type: z.ZodLiteral<"none">;
13757
+ }, z.core.$strip>, z.ZodObject<{
13758
+ type: z.ZodLiteral<"mcp_provider">;
13759
+ provider: z.ZodEnum<{
13760
+ composio: "composio";
13761
+ }>;
13762
+ toolkit: z.ZodString;
13763
+ authConfigId: z.ZodString;
13050
13764
  }, z.core.$strip>]>>;
13051
13765
  env: z.ZodRecord<z.ZodString, z.ZodString>;
13052
13766
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -13112,6 +13826,7 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
13112
13826
  basic: "basic";
13113
13827
  oauth: "oauth";
13114
13828
  none: "none";
13829
+ mcp_provider: "mcp_provider";
13115
13830
  api_key: "api_key";
13116
13831
  }>;
13117
13832
  authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
@@ -13132,6 +13847,13 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
13132
13847
  type: z.ZodLiteral<"basic">;
13133
13848
  }, z.core.$strip>, z.ZodObject<{
13134
13849
  type: z.ZodLiteral<"none">;
13850
+ }, z.core.$strip>, z.ZodObject<{
13851
+ type: z.ZodLiteral<"mcp_provider">;
13852
+ provider: z.ZodEnum<{
13853
+ composio: "composio";
13854
+ }>;
13855
+ toolkit: z.ZodString;
13856
+ authConfigId: z.ZodString;
13135
13857
  }, z.core.$strip>]>>;
13136
13858
  env: z.ZodRecord<z.ZodString, z.ZodString>;
13137
13859
  requiredCredentials: z.ZodArray<z.ZodObject<{
@@ -13329,6 +14051,7 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
13329
14051
  timezone: z.ZodNullable<z.ZodString>;
13330
14052
  cronTriggerId: z.ZodString;
13331
14053
  agentId: z.ZodNullable<z.ZodString>;
14054
+ until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
13332
14055
  }, z.core.$strip>>;
13333
14056
  }, z.core.$strip>>;
13334
14057
  agents: z.ZodArray<z.ZodObject<{
@@ -13480,6 +14203,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
13480
14203
  basic: "basic";
13481
14204
  oauth: "oauth";
13482
14205
  none: "none";
14206
+ mcp_provider: "mcp_provider";
13483
14207
  api_key: "api_key";
13484
14208
  }>>;
13485
14209
  credential: z.ZodOptional<z.ZodString>;
@@ -13505,6 +14229,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
13505
14229
  basic: "basic";
13506
14230
  oauth: "oauth";
13507
14231
  env: "env";
14232
+ mcp_provider: "mcp_provider";
13508
14233
  api_key: "api_key";
13509
14234
  }>>;
13510
14235
  vault: z.ZodString;
@@ -13624,6 +14349,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
13624
14349
  project: z.ZodString;
13625
14350
  schedule: z.ZodString;
13626
14351
  timezone: z.ZodOptional<z.ZodString>;
14352
+ until: z.ZodOptional<z.ZodISODateTime>;
13627
14353
  inputMessage: z.ZodString;
13628
14354
  enabled: z.ZodOptional<z.ZodBoolean>;
13629
14355
  notes: z.ZodOptional<z.ZodString>;