@renai-labs/sdk 0.1.17 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/@tanstack/react-query.gen.d.ts +141 -13
- package/dist/generated/@tanstack/react-query.gen.js +161 -1
- package/dist/generated/internal/types.gen.d.ts +59 -1
- package/dist/generated/sdk.gen.d.ts +58 -2
- package/dist/generated/sdk.gen.js +120 -1
- package/dist/generated/types.gen.d.ts +486 -12
- package/dist/generated/zod.gen.d.ts +506 -0
- package/dist/generated/zod.gen.js +213 -11
- package/package.json +1 -1
|
@@ -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<{
|
|
@@ -4427,6 +4565,7 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
|
|
|
4427
4565
|
timezone: z.ZodNullable<z.ZodString>;
|
|
4428
4566
|
cronTriggerId: z.ZodString;
|
|
4429
4567
|
agentId: z.ZodNullable<z.ZodString>;
|
|
4568
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
4430
4569
|
}, z.core.$strip>>;
|
|
4431
4570
|
}, z.core.$strip>>;
|
|
4432
4571
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -4643,6 +4782,7 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
|
|
|
4643
4782
|
timezone: z.ZodNullable<z.ZodString>;
|
|
4644
4783
|
cronTriggerId: z.ZodString;
|
|
4645
4784
|
agentId: z.ZodNullable<z.ZodString>;
|
|
4785
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
4646
4786
|
}, z.core.$strip>>;
|
|
4647
4787
|
}, z.core.$strip>>;
|
|
4648
4788
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -4868,6 +5008,7 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
|
|
|
4868
5008
|
timezone: z.ZodNullable<z.ZodString>;
|
|
4869
5009
|
cronTriggerId: z.ZodString;
|
|
4870
5010
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5011
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
4871
5012
|
}, z.core.$strip>>;
|
|
4872
5013
|
}, z.core.$strip>>;
|
|
4873
5014
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5087,6 +5228,7 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
|
|
|
5087
5228
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5088
5229
|
cronTriggerId: z.ZodString;
|
|
5089
5230
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5231
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5090
5232
|
}, z.core.$strip>>;
|
|
5091
5233
|
}, z.core.$strip>>;
|
|
5092
5234
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5285,6 +5427,7 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
|
|
|
5285
5427
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5286
5428
|
cronTriggerId: z.ZodString;
|
|
5287
5429
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5430
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5288
5431
|
}, z.core.$strip>>;
|
|
5289
5432
|
}, z.core.$strip>>;
|
|
5290
5433
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5486,6 +5629,7 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
|
|
|
5486
5629
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5487
5630
|
cronTriggerId: z.ZodString;
|
|
5488
5631
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5632
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5489
5633
|
}, z.core.$strip>>;
|
|
5490
5634
|
}, z.core.$strip>>;
|
|
5491
5635
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5684,6 +5828,7 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
|
|
|
5684
5828
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5685
5829
|
cronTriggerId: z.ZodString;
|
|
5686
5830
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5831
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5687
5832
|
}, z.core.$strip>>;
|
|
5688
5833
|
}, z.core.$strip>>;
|
|
5689
5834
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5882,6 +6027,7 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
|
|
|
5882
6027
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5883
6028
|
cronTriggerId: z.ZodString;
|
|
5884
6029
|
agentId: z.ZodNullable<z.ZodString>;
|
|
6030
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5885
6031
|
}, z.core.$strip>>;
|
|
5886
6032
|
}, z.core.$strip>>;
|
|
5887
6033
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -6612,6 +6758,13 @@ export declare const zGithubStatusResponse: z.ZodObject<{
|
|
|
6612
6758
|
fullName: z.ZodString;
|
|
6613
6759
|
}, z.core.$strip>>>;
|
|
6614
6760
|
appPermissions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6761
|
+
repoMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6762
|
+
repoFullName: z.ZodString;
|
|
6763
|
+
projectId: z.ZodString;
|
|
6764
|
+
fallbackSenderUserId: z.ZodNullable<z.ZodString>;
|
|
6765
|
+
prListenerEnabled: z.ZodBoolean;
|
|
6766
|
+
prListenerPrompt: z.ZodNullable<z.ZodString>;
|
|
6767
|
+
}, z.core.$strip>>;
|
|
6615
6768
|
createdAt: z.ZodISODateTime;
|
|
6616
6769
|
updatedAt: z.ZodISODateTime;
|
|
6617
6770
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -6626,8 +6779,63 @@ export declare const zGithubReposQuery: z.ZodObject<{
|
|
|
6626
6779
|
* Repositories
|
|
6627
6780
|
*/
|
|
6628
6781
|
export declare const zGithubReposResponse: z.ZodArray<z.ZodObject<{
|
|
6782
|
+
installationId: z.ZodString;
|
|
6783
|
+
accountLogin: z.ZodString;
|
|
6784
|
+
repoId: z.ZodString;
|
|
6629
6785
|
fullName: z.ZodString;
|
|
6630
6786
|
}, z.core.$strip>>;
|
|
6787
|
+
export declare const zGithubMappingsListQuery: z.ZodObject<{
|
|
6788
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6789
|
+
user: "user";
|
|
6790
|
+
}>>;
|
|
6791
|
+
}, z.core.$strip>;
|
|
6792
|
+
/**
|
|
6793
|
+
* Repo mappings
|
|
6794
|
+
*/
|
|
6795
|
+
export declare const zGithubMappingsListResponse: z.ZodArray<z.ZodObject<{
|
|
6796
|
+
installationId: z.ZodString;
|
|
6797
|
+
accountLogin: z.ZodString;
|
|
6798
|
+
repoId: z.ZodString;
|
|
6799
|
+
repoFullName: z.ZodString;
|
|
6800
|
+
projectId: z.ZodString;
|
|
6801
|
+
projectName: z.ZodNullable<z.ZodString>;
|
|
6802
|
+
fallbackSenderUserId: z.ZodNullable<z.ZodString>;
|
|
6803
|
+
prListenerEnabled: z.ZodBoolean;
|
|
6804
|
+
prListenerPrompt: z.ZodNullable<z.ZodString>;
|
|
6805
|
+
}, z.core.$strip>>;
|
|
6806
|
+
export declare const zGithubMappingUnsetPath: z.ZodObject<{
|
|
6807
|
+
repoId: z.ZodString;
|
|
6808
|
+
}, z.core.$strip>;
|
|
6809
|
+
export declare const zGithubMappingUnsetQuery: z.ZodObject<{
|
|
6810
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6811
|
+
user: "user";
|
|
6812
|
+
}>>;
|
|
6813
|
+
installationId: z.ZodString;
|
|
6814
|
+
}, z.core.$strip>;
|
|
6815
|
+
/**
|
|
6816
|
+
* Removed
|
|
6817
|
+
*/
|
|
6818
|
+
export declare const zGithubMappingUnsetResponse: z.ZodVoid;
|
|
6819
|
+
export declare const zGithubMappingSetBody: z.ZodObject<{
|
|
6820
|
+
installationId: z.ZodString;
|
|
6821
|
+
repoFullName: z.ZodString;
|
|
6822
|
+
projectId: z.ZodString;
|
|
6823
|
+
fallbackSenderUserId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6824
|
+
prListenerEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6825
|
+
prListenerPrompt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6826
|
+
}, z.core.$strip>;
|
|
6827
|
+
export declare const zGithubMappingSetPath: z.ZodObject<{
|
|
6828
|
+
repoId: z.ZodString;
|
|
6829
|
+
}, z.core.$strip>;
|
|
6830
|
+
export declare const zGithubMappingSetQuery: z.ZodObject<{
|
|
6831
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6832
|
+
user: "user";
|
|
6833
|
+
}>>;
|
|
6834
|
+
}, z.core.$strip>;
|
|
6835
|
+
/**
|
|
6836
|
+
* Mapped
|
|
6837
|
+
*/
|
|
6838
|
+
export declare const zGithubMappingSetResponse: z.ZodVoid;
|
|
6631
6839
|
export declare const zGoogleStatusQuery: z.ZodObject<{
|
|
6632
6840
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
6633
6841
|
user: "user";
|
|
@@ -6743,6 +6951,7 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
6743
6951
|
basic: "basic";
|
|
6744
6952
|
oauth: "oauth";
|
|
6745
6953
|
none: "none";
|
|
6954
|
+
mcp_provider: "mcp_provider";
|
|
6746
6955
|
api_key: "api_key";
|
|
6747
6956
|
}>;
|
|
6748
6957
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -6763,6 +6972,13 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
6763
6972
|
type: z.ZodLiteral<"basic">;
|
|
6764
6973
|
}, z.core.$strip>, z.ZodObject<{
|
|
6765
6974
|
type: z.ZodLiteral<"none">;
|
|
6975
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6976
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
6977
|
+
provider: z.ZodEnum<{
|
|
6978
|
+
composio: "composio";
|
|
6979
|
+
}>;
|
|
6980
|
+
toolkit: z.ZodString;
|
|
6981
|
+
authConfigId: z.ZodString;
|
|
6766
6982
|
}, z.core.$strip>]>>;
|
|
6767
6983
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6768
6984
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -6826,6 +7042,7 @@ export declare const zMcpCreateBody: z.ZodObject<{
|
|
|
6826
7042
|
basic: "basic";
|
|
6827
7043
|
oauth: "oauth";
|
|
6828
7044
|
none: "none";
|
|
7045
|
+
mcp_provider: "mcp_provider";
|
|
6829
7046
|
api_key: "api_key";
|
|
6830
7047
|
}>>>;
|
|
6831
7048
|
authConfig: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -6846,6 +7063,13 @@ export declare const zMcpCreateBody: z.ZodObject<{
|
|
|
6846
7063
|
type: z.ZodLiteral<"basic">;
|
|
6847
7064
|
}, z.core.$strip>, z.ZodObject<{
|
|
6848
7065
|
type: z.ZodLiteral<"none">;
|
|
7066
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7067
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7068
|
+
provider: z.ZodEnum<{
|
|
7069
|
+
composio: "composio";
|
|
7070
|
+
}>;
|
|
7071
|
+
toolkit: z.ZodString;
|
|
7072
|
+
authConfigId: z.ZodString;
|
|
6849
7073
|
}, z.core.$strip>]>>>>;
|
|
6850
7074
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6851
7075
|
}, z.core.$strip>;
|
|
@@ -6887,6 +7111,7 @@ export declare const zMcpCreateResponse: z.ZodObject<{
|
|
|
6887
7111
|
basic: "basic";
|
|
6888
7112
|
oauth: "oauth";
|
|
6889
7113
|
none: "none";
|
|
7114
|
+
mcp_provider: "mcp_provider";
|
|
6890
7115
|
api_key: "api_key";
|
|
6891
7116
|
}>;
|
|
6892
7117
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -6907,6 +7132,13 @@ export declare const zMcpCreateResponse: z.ZodObject<{
|
|
|
6907
7132
|
type: z.ZodLiteral<"basic">;
|
|
6908
7133
|
}, z.core.$strip>, z.ZodObject<{
|
|
6909
7134
|
type: z.ZodLiteral<"none">;
|
|
7135
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7136
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7137
|
+
provider: z.ZodEnum<{
|
|
7138
|
+
composio: "composio";
|
|
7139
|
+
}>;
|
|
7140
|
+
toolkit: z.ZodString;
|
|
7141
|
+
authConfigId: z.ZodString;
|
|
6910
7142
|
}, z.core.$strip>]>>;
|
|
6911
7143
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6912
7144
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7007,6 +7239,7 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
|
|
|
7007
7239
|
basic: "basic";
|
|
7008
7240
|
oauth: "oauth";
|
|
7009
7241
|
none: "none";
|
|
7242
|
+
mcp_provider: "mcp_provider";
|
|
7010
7243
|
api_key: "api_key";
|
|
7011
7244
|
}>;
|
|
7012
7245
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7027,6 +7260,13 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
|
|
|
7027
7260
|
type: z.ZodLiteral<"basic">;
|
|
7028
7261
|
}, z.core.$strip>, z.ZodObject<{
|
|
7029
7262
|
type: z.ZodLiteral<"none">;
|
|
7263
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7264
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7265
|
+
provider: z.ZodEnum<{
|
|
7266
|
+
composio: "composio";
|
|
7267
|
+
}>;
|
|
7268
|
+
toolkit: z.ZodString;
|
|
7269
|
+
authConfigId: z.ZodString;
|
|
7030
7270
|
}, z.core.$strip>]>>;
|
|
7031
7271
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7032
7272
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7097,6 +7337,7 @@ export declare const zMcpGetResponse: z.ZodObject<{
|
|
|
7097
7337
|
basic: "basic";
|
|
7098
7338
|
oauth: "oauth";
|
|
7099
7339
|
none: "none";
|
|
7340
|
+
mcp_provider: "mcp_provider";
|
|
7100
7341
|
api_key: "api_key";
|
|
7101
7342
|
}>;
|
|
7102
7343
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7117,6 +7358,13 @@ export declare const zMcpGetResponse: z.ZodObject<{
|
|
|
7117
7358
|
type: z.ZodLiteral<"basic">;
|
|
7118
7359
|
}, z.core.$strip>, z.ZodObject<{
|
|
7119
7360
|
type: z.ZodLiteral<"none">;
|
|
7361
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7362
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7363
|
+
provider: z.ZodEnum<{
|
|
7364
|
+
composio: "composio";
|
|
7365
|
+
}>;
|
|
7366
|
+
toolkit: z.ZodString;
|
|
7367
|
+
authConfigId: z.ZodString;
|
|
7120
7368
|
}, z.core.$strip>]>>;
|
|
7121
7369
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7122
7370
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7179,6 +7427,7 @@ export declare const zMcpUpdateBody: z.ZodObject<{
|
|
|
7179
7427
|
basic: "basic";
|
|
7180
7428
|
oauth: "oauth";
|
|
7181
7429
|
none: "none";
|
|
7430
|
+
mcp_provider: "mcp_provider";
|
|
7182
7431
|
api_key: "api_key";
|
|
7183
7432
|
}>>;
|
|
7184
7433
|
authConfig: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7199,6 +7448,13 @@ export declare const zMcpUpdateBody: z.ZodObject<{
|
|
|
7199
7448
|
type: z.ZodLiteral<"basic">;
|
|
7200
7449
|
}, z.core.$strip>, z.ZodObject<{
|
|
7201
7450
|
type: z.ZodLiteral<"none">;
|
|
7451
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7452
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7453
|
+
provider: z.ZodEnum<{
|
|
7454
|
+
composio: "composio";
|
|
7455
|
+
}>;
|
|
7456
|
+
toolkit: z.ZodString;
|
|
7457
|
+
authConfigId: z.ZodString;
|
|
7202
7458
|
}, z.core.$strip>]>>>;
|
|
7203
7459
|
websiteMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7204
7460
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -7252,6 +7508,7 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
|
|
|
7252
7508
|
basic: "basic";
|
|
7253
7509
|
oauth: "oauth";
|
|
7254
7510
|
none: "none";
|
|
7511
|
+
mcp_provider: "mcp_provider";
|
|
7255
7512
|
api_key: "api_key";
|
|
7256
7513
|
}>;
|
|
7257
7514
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7272,6 +7529,13 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
|
|
|
7272
7529
|
type: z.ZodLiteral<"basic">;
|
|
7273
7530
|
}, z.core.$strip>, z.ZodObject<{
|
|
7274
7531
|
type: z.ZodLiteral<"none">;
|
|
7532
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7533
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7534
|
+
provider: z.ZodEnum<{
|
|
7535
|
+
composio: "composio";
|
|
7536
|
+
}>;
|
|
7537
|
+
toolkit: z.ZodString;
|
|
7538
|
+
authConfigId: z.ZodString;
|
|
7275
7539
|
}, z.core.$strip>]>>;
|
|
7276
7540
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7277
7541
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7342,6 +7606,7 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
|
|
|
7342
7606
|
basic: "basic";
|
|
7343
7607
|
oauth: "oauth";
|
|
7344
7608
|
none: "none";
|
|
7609
|
+
mcp_provider: "mcp_provider";
|
|
7345
7610
|
api_key: "api_key";
|
|
7346
7611
|
}>;
|
|
7347
7612
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7362,6 +7627,13 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
|
|
|
7362
7627
|
type: z.ZodLiteral<"basic">;
|
|
7363
7628
|
}, z.core.$strip>, z.ZodObject<{
|
|
7364
7629
|
type: z.ZodLiteral<"none">;
|
|
7630
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7631
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7632
|
+
provider: z.ZodEnum<{
|
|
7633
|
+
composio: "composio";
|
|
7634
|
+
}>;
|
|
7635
|
+
toolkit: z.ZodString;
|
|
7636
|
+
authConfigId: z.ZodString;
|
|
7365
7637
|
}, z.core.$strip>]>>;
|
|
7366
7638
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7367
7639
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7432,6 +7704,7 @@ export declare const zMcpPublishResponse: z.ZodObject<{
|
|
|
7432
7704
|
basic: "basic";
|
|
7433
7705
|
oauth: "oauth";
|
|
7434
7706
|
none: "none";
|
|
7707
|
+
mcp_provider: "mcp_provider";
|
|
7435
7708
|
api_key: "api_key";
|
|
7436
7709
|
}>;
|
|
7437
7710
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7452,6 +7725,13 @@ export declare const zMcpPublishResponse: z.ZodObject<{
|
|
|
7452
7725
|
type: z.ZodLiteral<"basic">;
|
|
7453
7726
|
}, z.core.$strip>, z.ZodObject<{
|
|
7454
7727
|
type: z.ZodLiteral<"none">;
|
|
7728
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7729
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7730
|
+
provider: z.ZodEnum<{
|
|
7731
|
+
composio: "composio";
|
|
7732
|
+
}>;
|
|
7733
|
+
toolkit: z.ZodString;
|
|
7734
|
+
authConfigId: z.ZodString;
|
|
7455
7735
|
}, z.core.$strip>]>>;
|
|
7456
7736
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7457
7737
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7525,6 +7805,7 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
|
|
|
7525
7805
|
basic: "basic";
|
|
7526
7806
|
oauth: "oauth";
|
|
7527
7807
|
none: "none";
|
|
7808
|
+
mcp_provider: "mcp_provider";
|
|
7528
7809
|
api_key: "api_key";
|
|
7529
7810
|
}>;
|
|
7530
7811
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7545,6 +7826,13 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
|
|
|
7545
7826
|
type: z.ZodLiteral<"basic">;
|
|
7546
7827
|
}, z.core.$strip>, z.ZodObject<{
|
|
7547
7828
|
type: z.ZodLiteral<"none">;
|
|
7829
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7830
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7831
|
+
provider: z.ZodEnum<{
|
|
7832
|
+
composio: "composio";
|
|
7833
|
+
}>;
|
|
7834
|
+
toolkit: z.ZodString;
|
|
7835
|
+
authConfigId: z.ZodString;
|
|
7548
7836
|
}, z.core.$strip>]>>;
|
|
7549
7837
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7550
7838
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7615,6 +7903,7 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
|
|
|
7615
7903
|
basic: "basic";
|
|
7616
7904
|
oauth: "oauth";
|
|
7617
7905
|
none: "none";
|
|
7906
|
+
mcp_provider: "mcp_provider";
|
|
7618
7907
|
api_key: "api_key";
|
|
7619
7908
|
}>;
|
|
7620
7909
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7635,6 +7924,13 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
|
|
|
7635
7924
|
type: z.ZodLiteral<"basic">;
|
|
7636
7925
|
}, z.core.$strip>, z.ZodObject<{
|
|
7637
7926
|
type: z.ZodLiteral<"none">;
|
|
7927
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7928
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
7929
|
+
provider: z.ZodEnum<{
|
|
7930
|
+
composio: "composio";
|
|
7931
|
+
}>;
|
|
7932
|
+
toolkit: z.ZodString;
|
|
7933
|
+
authConfigId: z.ZodString;
|
|
7638
7934
|
}, z.core.$strip>]>>;
|
|
7639
7935
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7640
7936
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -10494,6 +10790,7 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
|
|
|
10494
10790
|
basic: "basic";
|
|
10495
10791
|
oauth: "oauth";
|
|
10496
10792
|
none: "none";
|
|
10793
|
+
mcp_provider: "mcp_provider";
|
|
10497
10794
|
api_key: "api_key";
|
|
10498
10795
|
}>;
|
|
10499
10796
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -10514,6 +10811,13 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
|
|
|
10514
10811
|
type: z.ZodLiteral<"basic">;
|
|
10515
10812
|
}, z.core.$strip>, z.ZodObject<{
|
|
10516
10813
|
type: z.ZodLiteral<"none">;
|
|
10814
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10815
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
10816
|
+
provider: z.ZodEnum<{
|
|
10817
|
+
composio: "composio";
|
|
10818
|
+
}>;
|
|
10819
|
+
toolkit: z.ZodString;
|
|
10820
|
+
authConfigId: z.ZodString;
|
|
10517
10821
|
}, z.core.$strip>]>>;
|
|
10518
10822
|
satisfied: z.ZodBoolean;
|
|
10519
10823
|
neededByAgentIds: z.ZodArray<z.ZodString>;
|
|
@@ -11390,6 +11694,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
|
|
|
11390
11694
|
basic: "basic";
|
|
11391
11695
|
oauth: "oauth";
|
|
11392
11696
|
none: "none";
|
|
11697
|
+
mcp_provider: "mcp_provider";
|
|
11393
11698
|
api_key: "api_key";
|
|
11394
11699
|
}>>;
|
|
11395
11700
|
credential: z.ZodOptional<z.ZodString>;
|
|
@@ -11415,6 +11720,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
|
|
|
11415
11720
|
basic: "basic";
|
|
11416
11721
|
oauth: "oauth";
|
|
11417
11722
|
env: "env";
|
|
11723
|
+
mcp_provider: "mcp_provider";
|
|
11418
11724
|
api_key: "api_key";
|
|
11419
11725
|
}>>;
|
|
11420
11726
|
vault: z.ZodString;
|
|
@@ -11534,6 +11840,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
|
|
|
11534
11840
|
project: z.ZodString;
|
|
11535
11841
|
schedule: z.ZodString;
|
|
11536
11842
|
timezone: z.ZodOptional<z.ZodString>;
|
|
11843
|
+
until: z.ZodOptional<z.ZodISODateTime>;
|
|
11537
11844
|
inputMessage: z.ZodString;
|
|
11538
11845
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
11539
11846
|
notes: z.ZodOptional<z.ZodString>;
|
|
@@ -11622,6 +11929,7 @@ export declare const zTriggerListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11622
11929
|
inputMessage: z.ZodString;
|
|
11623
11930
|
schedule: z.ZodString;
|
|
11624
11931
|
timezone: z.ZodNullable<z.ZodString>;
|
|
11932
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11625
11933
|
isEnabled: z.ZodBoolean;
|
|
11626
11934
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11627
11935
|
createdAt: z.ZodISODateTime;
|
|
@@ -11635,6 +11943,7 @@ export declare const zTriggerCreateBody: z.ZodObject<{
|
|
|
11635
11943
|
inputMessage: z.ZodString;
|
|
11636
11944
|
schedule: z.ZodString;
|
|
11637
11945
|
timezone: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
11946
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
11638
11947
|
isEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11639
11948
|
}, z.core.$strip>;
|
|
11640
11949
|
export declare const zTriggerCreateQuery: z.ZodObject<{
|
|
@@ -11653,6 +11962,7 @@ export declare const zTriggerCreateResponse: z.ZodObject<{
|
|
|
11653
11962
|
inputMessage: z.ZodString;
|
|
11654
11963
|
schedule: z.ZodString;
|
|
11655
11964
|
timezone: z.ZodNullable<z.ZodString>;
|
|
11965
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11656
11966
|
isEnabled: z.ZodBoolean;
|
|
11657
11967
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11658
11968
|
createdAt: z.ZodISODateTime;
|
|
@@ -11679,6 +11989,7 @@ export declare const zTriggerGetResponse: z.ZodObject<{
|
|
|
11679
11989
|
inputMessage: z.ZodString;
|
|
11680
11990
|
schedule: z.ZodString;
|
|
11681
11991
|
timezone: z.ZodNullable<z.ZodString>;
|
|
11992
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11682
11993
|
isEnabled: z.ZodBoolean;
|
|
11683
11994
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11684
11995
|
createdAt: z.ZodISODateTime;
|
|
@@ -11691,6 +12002,7 @@ export declare const zTriggerUpdateBody: z.ZodObject<{
|
|
|
11691
12002
|
inputMessage: z.ZodOptional<z.ZodString>;
|
|
11692
12003
|
schedule: z.ZodOptional<z.ZodString>;
|
|
11693
12004
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12005
|
+
until: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
11694
12006
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11695
12007
|
projectId: z.ZodString;
|
|
11696
12008
|
}, z.core.$strip>;
|
|
@@ -11713,6 +12025,7 @@ export declare const zTriggerUpdateResponse: z.ZodObject<{
|
|
|
11713
12025
|
inputMessage: z.ZodString;
|
|
11714
12026
|
schedule: z.ZodString;
|
|
11715
12027
|
timezone: z.ZodNullable<z.ZodString>;
|
|
12028
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11716
12029
|
isEnabled: z.ZodBoolean;
|
|
11717
12030
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11718
12031
|
createdAt: z.ZodISODateTime;
|
|
@@ -11741,6 +12054,7 @@ export declare const zTriggerArchiveResponse: z.ZodObject<{
|
|
|
11741
12054
|
inputMessage: z.ZodString;
|
|
11742
12055
|
schedule: z.ZodString;
|
|
11743
12056
|
timezone: z.ZodNullable<z.ZodString>;
|
|
12057
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11744
12058
|
isEnabled: z.ZodBoolean;
|
|
11745
12059
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11746
12060
|
createdAt: z.ZodISODateTime;
|
|
@@ -11766,10 +12080,12 @@ export declare const zWebhookTriggerListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11766
12080
|
senderUserId: z.ZodString;
|
|
11767
12081
|
provider: z.ZodEnum<{
|
|
11768
12082
|
generic: "generic";
|
|
12083
|
+
linear: "linear";
|
|
11769
12084
|
}>;
|
|
11770
12085
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11771
12086
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11772
12087
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12088
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11773
12089
|
}, z.core.$strip>>;
|
|
11774
12090
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11775
12091
|
isEnabled: z.ZodBoolean;
|
|
@@ -11783,10 +12099,12 @@ export declare const zWebhookTriggerCreateBody: z.ZodObject<{
|
|
|
11783
12099
|
senderUserId: z.ZodString;
|
|
11784
12100
|
provider: z.ZodEnum<{
|
|
11785
12101
|
generic: "generic";
|
|
12102
|
+
linear: "linear";
|
|
11786
12103
|
}>;
|
|
11787
12104
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11788
12105
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11789
12106
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12107
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11790
12108
|
}, z.core.$strip>>;
|
|
11791
12109
|
isEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11792
12110
|
}, z.core.$strip>;
|
|
@@ -11806,10 +12124,12 @@ export declare const zWebhookTriggerCreateResponse: z.ZodObject<{
|
|
|
11806
12124
|
senderUserId: z.ZodString;
|
|
11807
12125
|
provider: z.ZodEnum<{
|
|
11808
12126
|
generic: "generic";
|
|
12127
|
+
linear: "linear";
|
|
11809
12128
|
}>;
|
|
11810
12129
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11811
12130
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11812
12131
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12132
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11813
12133
|
}, z.core.$strip>>;
|
|
11814
12134
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11815
12135
|
isEnabled: z.ZodBoolean;
|
|
@@ -11838,10 +12158,12 @@ export declare const zWebhookTriggerGetResponse: z.ZodObject<{
|
|
|
11838
12158
|
senderUserId: z.ZodString;
|
|
11839
12159
|
provider: z.ZodEnum<{
|
|
11840
12160
|
generic: "generic";
|
|
12161
|
+
linear: "linear";
|
|
11841
12162
|
}>;
|
|
11842
12163
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11843
12164
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11844
12165
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12166
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11845
12167
|
}, z.core.$strip>>;
|
|
11846
12168
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11847
12169
|
isEnabled: z.ZodBoolean;
|
|
@@ -11854,6 +12176,7 @@ export declare const zWebhookTriggerUpdateBody: z.ZodObject<{
|
|
|
11854
12176
|
senderUserId: z.ZodOptional<z.ZodString>;
|
|
11855
12177
|
scopeFilter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11856
12178
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12179
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11857
12180
|
}, z.core.$strip>>>;
|
|
11858
12181
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11859
12182
|
projectId: z.ZodString;
|
|
@@ -11876,10 +12199,12 @@ export declare const zWebhookTriggerUpdateResponse: z.ZodObject<{
|
|
|
11876
12199
|
senderUserId: z.ZodString;
|
|
11877
12200
|
provider: z.ZodEnum<{
|
|
11878
12201
|
generic: "generic";
|
|
12202
|
+
linear: "linear";
|
|
11879
12203
|
}>;
|
|
11880
12204
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11881
12205
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11882
12206
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12207
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11883
12208
|
}, z.core.$strip>>;
|
|
11884
12209
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11885
12210
|
isEnabled: z.ZodBoolean;
|
|
@@ -11908,10 +12233,12 @@ export declare const zWebhookTriggerArchiveResponse: z.ZodObject<{
|
|
|
11908
12233
|
senderUserId: z.ZodString;
|
|
11909
12234
|
provider: z.ZodEnum<{
|
|
11910
12235
|
generic: "generic";
|
|
12236
|
+
linear: "linear";
|
|
11911
12237
|
}>;
|
|
11912
12238
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11913
12239
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11914
12240
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12241
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11915
12242
|
}, z.core.$strip>>;
|
|
11916
12243
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11917
12244
|
isEnabled: z.ZodBoolean;
|
|
@@ -12206,6 +12533,115 @@ export declare const zTelegramChatSetResponse: z.ZodObject<{
|
|
|
12206
12533
|
createdAt: z.ZodISODateTime;
|
|
12207
12534
|
updatedAt: z.ZodISODateTime;
|
|
12208
12535
|
}, z.core.$strip>;
|
|
12536
|
+
export declare const zLinearUninstallQuery: z.ZodObject<{
|
|
12537
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
12538
|
+
user: "user";
|
|
12539
|
+
}>>;
|
|
12540
|
+
}, z.core.$strip>;
|
|
12541
|
+
/**
|
|
12542
|
+
* Removed
|
|
12543
|
+
*/
|
|
12544
|
+
export declare const zLinearUninstallResponse: z.ZodVoid;
|
|
12545
|
+
export declare const zLinearInstallQuery: z.ZodObject<{
|
|
12546
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
12547
|
+
user: "user";
|
|
12548
|
+
}>>;
|
|
12549
|
+
returnTo: z.ZodOptional<z.ZodString>;
|
|
12550
|
+
}, z.core.$strip>;
|
|
12551
|
+
/**
|
|
12552
|
+
* Authorization URL for the user to visit
|
|
12553
|
+
*/
|
|
12554
|
+
export declare const zLinearInstallResponse: z.ZodObject<{
|
|
12555
|
+
url: z.ZodURL;
|
|
12556
|
+
}, z.core.$strip>;
|
|
12557
|
+
export declare const zLinearStatusQuery: z.ZodObject<{
|
|
12558
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
12559
|
+
user: "user";
|
|
12560
|
+
}>>;
|
|
12561
|
+
}, z.core.$strip>;
|
|
12562
|
+
/**
|
|
12563
|
+
* Linear installation status
|
|
12564
|
+
*/
|
|
12565
|
+
export declare const zLinearStatusResponse: z.ZodObject<{
|
|
12566
|
+
hasInstallation: z.ZodBoolean;
|
|
12567
|
+
installations: z.ZodArray<z.ZodObject<{
|
|
12568
|
+
id: z.ZodString;
|
|
12569
|
+
orgId: z.ZodString;
|
|
12570
|
+
installedById: z.ZodString;
|
|
12571
|
+
workspaceId: z.ZodString;
|
|
12572
|
+
workspaceName: z.ZodNullable<z.ZodString>;
|
|
12573
|
+
appUserId: z.ZodString;
|
|
12574
|
+
accessTokenExpiresAt: z.ZodNullable<z.ZodISODateTime>;
|
|
12575
|
+
scope: z.ZodString;
|
|
12576
|
+
createdAt: z.ZodISODateTime;
|
|
12577
|
+
updatedAt: z.ZodISODateTime;
|
|
12578
|
+
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
12579
|
+
}, z.core.$strip>>;
|
|
12580
|
+
}, z.core.$strip>;
|
|
12581
|
+
export declare const zLinearProjectsQuery: z.ZodObject<{
|
|
12582
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
12583
|
+
user: "user";
|
|
12584
|
+
}>>;
|
|
12585
|
+
}, z.core.$strip>;
|
|
12586
|
+
/**
|
|
12587
|
+
* Linear projects (with a __global__ entry for issues without a project)
|
|
12588
|
+
*/
|
|
12589
|
+
export declare const zLinearProjectsResponse: z.ZodArray<z.ZodObject<{
|
|
12590
|
+
id: z.ZodString;
|
|
12591
|
+
name: z.ZodString;
|
|
12592
|
+
}, z.core.$strip>>;
|
|
12593
|
+
export declare const zLinearMappingsListQuery: z.ZodObject<{
|
|
12594
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
12595
|
+
user: "user";
|
|
12596
|
+
}>>;
|
|
12597
|
+
}, z.core.$strip>;
|
|
12598
|
+
/**
|
|
12599
|
+
* Linear project mappings
|
|
12600
|
+
*/
|
|
12601
|
+
export declare const zLinearMappingsListResponse: z.ZodArray<z.ZodObject<{
|
|
12602
|
+
id: z.ZodString;
|
|
12603
|
+
renProjectId: z.ZodString;
|
|
12604
|
+
renProjectName: z.ZodNullable<z.ZodString>;
|
|
12605
|
+
linearProjectId: z.ZodNullable<z.ZodString>;
|
|
12606
|
+
senderUserId: z.ZodString;
|
|
12607
|
+
projectAgentId: z.ZodNullable<z.ZodString>;
|
|
12608
|
+
isEnabled: z.ZodBoolean;
|
|
12609
|
+
}, z.core.$strip>>;
|
|
12610
|
+
export declare const zLinearMappingsCreateBody: z.ZodObject<{
|
|
12611
|
+
renProjectId: z.ZodString;
|
|
12612
|
+
linearProjectId: z.ZodString;
|
|
12613
|
+
senderUserId: z.ZodString;
|
|
12614
|
+
projectAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12615
|
+
}, z.core.$strip>;
|
|
12616
|
+
export declare const zLinearMappingsCreateQuery: z.ZodObject<{
|
|
12617
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
12618
|
+
user: "user";
|
|
12619
|
+
}>>;
|
|
12620
|
+
}, z.core.$strip>;
|
|
12621
|
+
/**
|
|
12622
|
+
* Created mapping
|
|
12623
|
+
*/
|
|
12624
|
+
export declare const zLinearMappingsCreateResponse: z.ZodObject<{
|
|
12625
|
+
id: z.ZodString;
|
|
12626
|
+
renProjectId: z.ZodString;
|
|
12627
|
+
renProjectName: z.ZodNullable<z.ZodString>;
|
|
12628
|
+
linearProjectId: z.ZodNullable<z.ZodString>;
|
|
12629
|
+
senderUserId: z.ZodString;
|
|
12630
|
+
projectAgentId: z.ZodNullable<z.ZodString>;
|
|
12631
|
+
isEnabled: z.ZodBoolean;
|
|
12632
|
+
}, z.core.$strip>;
|
|
12633
|
+
export declare const zLinearMappingsRemovePath: z.ZodObject<{
|
|
12634
|
+
triggerId: z.ZodString;
|
|
12635
|
+
}, z.core.$strip>;
|
|
12636
|
+
export declare const zLinearMappingsRemoveQuery: z.ZodObject<{
|
|
12637
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
12638
|
+
user: "user";
|
|
12639
|
+
}>>;
|
|
12640
|
+
}, z.core.$strip>;
|
|
12641
|
+
/**
|
|
12642
|
+
* Removed
|
|
12643
|
+
*/
|
|
12644
|
+
export declare const zLinearMappingsRemoveResponse: z.ZodVoid;
|
|
12209
12645
|
export declare const zVaultListQuery: z.ZodObject<{
|
|
12210
12646
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
12211
12647
|
user: "user";
|
|
@@ -12390,6 +12826,12 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
|
|
|
12390
12826
|
}, z.core.$strip>, z.ZodObject<{
|
|
12391
12827
|
type: z.ZodLiteral<"basic">;
|
|
12392
12828
|
username: z.ZodString;
|
|
12829
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12830
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
12831
|
+
provider: z.ZodEnum<{
|
|
12832
|
+
composio: "composio";
|
|
12833
|
+
}>;
|
|
12834
|
+
userId: z.ZodString;
|
|
12393
12835
|
}, z.core.$strip>]>;
|
|
12394
12836
|
createdAt: z.ZodISODateTime;
|
|
12395
12837
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12438,6 +12880,13 @@ export declare const zCredentialCreateBody: z.ZodObject<{
|
|
|
12438
12880
|
type: z.ZodLiteral<"basic">;
|
|
12439
12881
|
username: z.ZodString;
|
|
12440
12882
|
password: z.ZodString;
|
|
12883
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12884
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
12885
|
+
provider: z.ZodEnum<{
|
|
12886
|
+
composio: "composio";
|
|
12887
|
+
}>;
|
|
12888
|
+
userId: z.ZodString;
|
|
12889
|
+
url: z.ZodURL;
|
|
12441
12890
|
}, z.core.$strip>]>;
|
|
12442
12891
|
}, z.core.$strip>;
|
|
12443
12892
|
export declare const zCredentialCreatePath: z.ZodObject<{
|
|
@@ -12483,6 +12932,12 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
|
|
|
12483
12932
|
}, z.core.$strip>, z.ZodObject<{
|
|
12484
12933
|
type: z.ZodLiteral<"basic">;
|
|
12485
12934
|
username: z.ZodString;
|
|
12935
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12936
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
12937
|
+
provider: z.ZodEnum<{
|
|
12938
|
+
composio: "composio";
|
|
12939
|
+
}>;
|
|
12940
|
+
userId: z.ZodString;
|
|
12486
12941
|
}, z.core.$strip>]>;
|
|
12487
12942
|
createdAt: z.ZodISODateTime;
|
|
12488
12943
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12532,6 +12987,12 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
|
|
|
12532
12987
|
}, z.core.$strip>, z.ZodObject<{
|
|
12533
12988
|
type: z.ZodLiteral<"basic">;
|
|
12534
12989
|
username: z.ZodString;
|
|
12990
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12991
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
12992
|
+
provider: z.ZodEnum<{
|
|
12993
|
+
composio: "composio";
|
|
12994
|
+
}>;
|
|
12995
|
+
userId: z.ZodString;
|
|
12535
12996
|
}, z.core.$strip>]>;
|
|
12536
12997
|
createdAt: z.ZodISODateTime;
|
|
12537
12998
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12581,6 +13042,12 @@ export declare const zCredentialGetResponse: z.ZodObject<{
|
|
|
12581
13042
|
}, z.core.$strip>, z.ZodObject<{
|
|
12582
13043
|
type: z.ZodLiteral<"basic">;
|
|
12583
13044
|
username: z.ZodString;
|
|
13045
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13046
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
13047
|
+
provider: z.ZodEnum<{
|
|
13048
|
+
composio: "composio";
|
|
13049
|
+
}>;
|
|
13050
|
+
userId: z.ZodString;
|
|
12584
13051
|
}, z.core.$strip>]>;
|
|
12585
13052
|
createdAt: z.ZodISODateTime;
|
|
12586
13053
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12627,6 +13094,13 @@ export declare const zCredentialUpdateBody: z.ZodObject<{
|
|
|
12627
13094
|
type: z.ZodLiteral<"basic">;
|
|
12628
13095
|
username: z.ZodString;
|
|
12629
13096
|
password: z.ZodString;
|
|
13097
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13098
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
13099
|
+
provider: z.ZodEnum<{
|
|
13100
|
+
composio: "composio";
|
|
13101
|
+
}>;
|
|
13102
|
+
userId: z.ZodString;
|
|
13103
|
+
url: z.ZodURL;
|
|
12630
13104
|
}, z.core.$strip>]>>;
|
|
12631
13105
|
}, z.core.$strip>;
|
|
12632
13106
|
export declare const zCredentialUpdatePath: z.ZodObject<{
|
|
@@ -12673,6 +13147,12 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
|
|
|
12673
13147
|
}, z.core.$strip>, z.ZodObject<{
|
|
12674
13148
|
type: z.ZodLiteral<"basic">;
|
|
12675
13149
|
username: z.ZodString;
|
|
13150
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13151
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
13152
|
+
provider: z.ZodEnum<{
|
|
13153
|
+
composio: "composio";
|
|
13154
|
+
}>;
|
|
13155
|
+
userId: z.ZodString;
|
|
12676
13156
|
}, z.core.$strip>]>;
|
|
12677
13157
|
createdAt: z.ZodISODateTime;
|
|
12678
13158
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12722,6 +13202,12 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
|
|
|
12722
13202
|
}, z.core.$strip>, z.ZodObject<{
|
|
12723
13203
|
type: z.ZodLiteral<"basic">;
|
|
12724
13204
|
username: z.ZodString;
|
|
13205
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13206
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
13207
|
+
provider: z.ZodEnum<{
|
|
13208
|
+
composio: "composio";
|
|
13209
|
+
}>;
|
|
13210
|
+
userId: z.ZodString;
|
|
12725
13211
|
}, z.core.$strip>]>;
|
|
12726
13212
|
createdAt: z.ZodISODateTime;
|
|
12727
13213
|
updatedAt: z.ZodISODateTime;
|
|
@@ -13027,6 +13513,7 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
13027
13513
|
basic: "basic";
|
|
13028
13514
|
oauth: "oauth";
|
|
13029
13515
|
none: "none";
|
|
13516
|
+
mcp_provider: "mcp_provider";
|
|
13030
13517
|
api_key: "api_key";
|
|
13031
13518
|
}>;
|
|
13032
13519
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -13047,6 +13534,13 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
13047
13534
|
type: z.ZodLiteral<"basic">;
|
|
13048
13535
|
}, z.core.$strip>, z.ZodObject<{
|
|
13049
13536
|
type: z.ZodLiteral<"none">;
|
|
13537
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13538
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
13539
|
+
provider: z.ZodEnum<{
|
|
13540
|
+
composio: "composio";
|
|
13541
|
+
}>;
|
|
13542
|
+
toolkit: z.ZodString;
|
|
13543
|
+
authConfigId: z.ZodString;
|
|
13050
13544
|
}, z.core.$strip>]>>;
|
|
13051
13545
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13052
13546
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -13112,6 +13606,7 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
13112
13606
|
basic: "basic";
|
|
13113
13607
|
oauth: "oauth";
|
|
13114
13608
|
none: "none";
|
|
13609
|
+
mcp_provider: "mcp_provider";
|
|
13115
13610
|
api_key: "api_key";
|
|
13116
13611
|
}>;
|
|
13117
13612
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -13132,6 +13627,13 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
13132
13627
|
type: z.ZodLiteral<"basic">;
|
|
13133
13628
|
}, z.core.$strip>, z.ZodObject<{
|
|
13134
13629
|
type: z.ZodLiteral<"none">;
|
|
13630
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13631
|
+
type: z.ZodLiteral<"mcp_provider">;
|
|
13632
|
+
provider: z.ZodEnum<{
|
|
13633
|
+
composio: "composio";
|
|
13634
|
+
}>;
|
|
13635
|
+
toolkit: z.ZodString;
|
|
13636
|
+
authConfigId: z.ZodString;
|
|
13135
13637
|
}, z.core.$strip>]>>;
|
|
13136
13638
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13137
13639
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -13329,6 +13831,7 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
|
|
|
13329
13831
|
timezone: z.ZodNullable<z.ZodString>;
|
|
13330
13832
|
cronTriggerId: z.ZodString;
|
|
13331
13833
|
agentId: z.ZodNullable<z.ZodString>;
|
|
13834
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
13332
13835
|
}, z.core.$strip>>;
|
|
13333
13836
|
}, z.core.$strip>>;
|
|
13334
13837
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -13480,6 +13983,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
|
|
|
13480
13983
|
basic: "basic";
|
|
13481
13984
|
oauth: "oauth";
|
|
13482
13985
|
none: "none";
|
|
13986
|
+
mcp_provider: "mcp_provider";
|
|
13483
13987
|
api_key: "api_key";
|
|
13484
13988
|
}>>;
|
|
13485
13989
|
credential: z.ZodOptional<z.ZodString>;
|
|
@@ -13505,6 +14009,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
|
|
|
13505
14009
|
basic: "basic";
|
|
13506
14010
|
oauth: "oauth";
|
|
13507
14011
|
env: "env";
|
|
14012
|
+
mcp_provider: "mcp_provider";
|
|
13508
14013
|
api_key: "api_key";
|
|
13509
14014
|
}>>;
|
|
13510
14015
|
vault: z.ZodString;
|
|
@@ -13624,6 +14129,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
|
|
|
13624
14129
|
project: z.ZodString;
|
|
13625
14130
|
schedule: z.ZodString;
|
|
13626
14131
|
timezone: z.ZodOptional<z.ZodString>;
|
|
14132
|
+
until: z.ZodOptional<z.ZodISODateTime>;
|
|
13627
14133
|
inputMessage: z.ZodString;
|
|
13628
14134
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13629
14135
|
notes: z.ZodOptional<z.ZodString>;
|