@renai-labs/sdk 0.1.16 → 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 +142 -14
- package/dist/generated/@tanstack/react-query.gen.js +162 -2
- package/dist/generated/internal/types.gen.d.ts +59 -1
- package/dist/generated/sdk.gen.d.ts +59 -3
- package/dist/generated/sdk.gen.js +121 -2
- package/dist/generated/types.gen.d.ts +487 -12
- package/dist/generated/zod.gen.d.ts +508 -0
- package/dist/generated/zod.gen.js +214 -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>;
|
|
@@ -1395,6 +1493,7 @@ export declare const zSessionMessagesPage: z.ZodObject<{
|
|
|
1395
1493
|
export declare const zSessionUrlResponse: z.ZodObject<{
|
|
1396
1494
|
url: z.ZodString;
|
|
1397
1495
|
authedUrl: z.ZodString;
|
|
1496
|
+
serverUrl: z.ZodString;
|
|
1398
1497
|
serverPassword: z.ZodString;
|
|
1399
1498
|
username: z.ZodString;
|
|
1400
1499
|
}, z.core.$strip>;
|
|
@@ -1960,6 +2059,7 @@ export declare const zMcp: z.ZodObject<{
|
|
|
1960
2059
|
basic: "basic";
|
|
1961
2060
|
oauth: "oauth";
|
|
1962
2061
|
none: "none";
|
|
2062
|
+
mcp_provider: "mcp_provider";
|
|
1963
2063
|
api_key: "api_key";
|
|
1964
2064
|
}>;
|
|
1965
2065
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -1980,6 +2080,13 @@ export declare const zMcp: z.ZodObject<{
|
|
|
1980
2080
|
type: z.ZodLiteral<"basic">;
|
|
1981
2081
|
}, z.core.$strip>, z.ZodObject<{
|
|
1982
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;
|
|
1983
2090
|
}, z.core.$strip>]>>;
|
|
1984
2091
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1985
2092
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -2018,6 +2125,23 @@ export declare const zGoogleWorkspaceStatus: z.ZodObject<{
|
|
|
2018
2125
|
scopes: z.ZodArray<z.ZodString>;
|
|
2019
2126
|
redirectUri: z.ZodURL;
|
|
2020
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>;
|
|
2021
2145
|
export declare const zGithubInstallationResponse: z.ZodObject<{
|
|
2022
2146
|
id: z.ZodString;
|
|
2023
2147
|
orgId: z.ZodString;
|
|
@@ -2036,6 +2160,13 @@ export declare const zGithubInstallationResponse: z.ZodObject<{
|
|
|
2036
2160
|
fullName: z.ZodString;
|
|
2037
2161
|
}, z.core.$strip>>>;
|
|
2038
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>>;
|
|
2039
2170
|
createdAt: z.ZodISODateTime;
|
|
2040
2171
|
updatedAt: z.ZodISODateTime;
|
|
2041
2172
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -2061,6 +2192,13 @@ export declare const zGithubStatus: z.ZodObject<{
|
|
|
2061
2192
|
fullName: z.ZodString;
|
|
2062
2193
|
}, z.core.$strip>>>;
|
|
2063
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>>;
|
|
2064
2202
|
createdAt: z.ZodISODateTime;
|
|
2065
2203
|
updatedAt: z.ZodISODateTime;
|
|
2066
2204
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -2404,6 +2542,7 @@ export declare const zBlueprint: z.ZodObject<{
|
|
|
2404
2542
|
timezone: z.ZodNullable<z.ZodString>;
|
|
2405
2543
|
cronTriggerId: z.ZodString;
|
|
2406
2544
|
agentId: z.ZodNullable<z.ZodString>;
|
|
2545
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
2407
2546
|
}, z.core.$strip>>;
|
|
2408
2547
|
}, z.core.$strip>>;
|
|
2409
2548
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -4426,6 +4565,7 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
|
|
|
4426
4565
|
timezone: z.ZodNullable<z.ZodString>;
|
|
4427
4566
|
cronTriggerId: z.ZodString;
|
|
4428
4567
|
agentId: z.ZodNullable<z.ZodString>;
|
|
4568
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
4429
4569
|
}, z.core.$strip>>;
|
|
4430
4570
|
}, z.core.$strip>>;
|
|
4431
4571
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -4642,6 +4782,7 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
|
|
|
4642
4782
|
timezone: z.ZodNullable<z.ZodString>;
|
|
4643
4783
|
cronTriggerId: z.ZodString;
|
|
4644
4784
|
agentId: z.ZodNullable<z.ZodString>;
|
|
4785
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
4645
4786
|
}, z.core.$strip>>;
|
|
4646
4787
|
}, z.core.$strip>>;
|
|
4647
4788
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -4867,6 +5008,7 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
|
|
|
4867
5008
|
timezone: z.ZodNullable<z.ZodString>;
|
|
4868
5009
|
cronTriggerId: z.ZodString;
|
|
4869
5010
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5011
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
4870
5012
|
}, z.core.$strip>>;
|
|
4871
5013
|
}, z.core.$strip>>;
|
|
4872
5014
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5086,6 +5228,7 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
|
|
|
5086
5228
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5087
5229
|
cronTriggerId: z.ZodString;
|
|
5088
5230
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5231
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5089
5232
|
}, z.core.$strip>>;
|
|
5090
5233
|
}, z.core.$strip>>;
|
|
5091
5234
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5284,6 +5427,7 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
|
|
|
5284
5427
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5285
5428
|
cronTriggerId: z.ZodString;
|
|
5286
5429
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5430
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5287
5431
|
}, z.core.$strip>>;
|
|
5288
5432
|
}, z.core.$strip>>;
|
|
5289
5433
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5485,6 +5629,7 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
|
|
|
5485
5629
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5486
5630
|
cronTriggerId: z.ZodString;
|
|
5487
5631
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5632
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5488
5633
|
}, z.core.$strip>>;
|
|
5489
5634
|
}, z.core.$strip>>;
|
|
5490
5635
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5683,6 +5828,7 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
|
|
|
5683
5828
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5684
5829
|
cronTriggerId: z.ZodString;
|
|
5685
5830
|
agentId: z.ZodNullable<z.ZodString>;
|
|
5831
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5686
5832
|
}, z.core.$strip>>;
|
|
5687
5833
|
}, z.core.$strip>>;
|
|
5688
5834
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -5881,6 +6027,7 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
|
|
|
5881
6027
|
timezone: z.ZodNullable<z.ZodString>;
|
|
5882
6028
|
cronTriggerId: z.ZodString;
|
|
5883
6029
|
agentId: z.ZodNullable<z.ZodString>;
|
|
6030
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
5884
6031
|
}, z.core.$strip>>;
|
|
5885
6032
|
}, z.core.$strip>>;
|
|
5886
6033
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -6611,6 +6758,13 @@ export declare const zGithubStatusResponse: z.ZodObject<{
|
|
|
6611
6758
|
fullName: z.ZodString;
|
|
6612
6759
|
}, z.core.$strip>>>;
|
|
6613
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>>;
|
|
6614
6768
|
createdAt: z.ZodISODateTime;
|
|
6615
6769
|
updatedAt: z.ZodISODateTime;
|
|
6616
6770
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -6625,8 +6779,63 @@ export declare const zGithubReposQuery: z.ZodObject<{
|
|
|
6625
6779
|
* Repositories
|
|
6626
6780
|
*/
|
|
6627
6781
|
export declare const zGithubReposResponse: z.ZodArray<z.ZodObject<{
|
|
6782
|
+
installationId: z.ZodString;
|
|
6783
|
+
accountLogin: z.ZodString;
|
|
6784
|
+
repoId: z.ZodString;
|
|
6628
6785
|
fullName: z.ZodString;
|
|
6629
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;
|
|
6630
6839
|
export declare const zGoogleStatusQuery: z.ZodObject<{
|
|
6631
6840
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
6632
6841
|
user: "user";
|
|
@@ -6742,6 +6951,7 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
6742
6951
|
basic: "basic";
|
|
6743
6952
|
oauth: "oauth";
|
|
6744
6953
|
none: "none";
|
|
6954
|
+
mcp_provider: "mcp_provider";
|
|
6745
6955
|
api_key: "api_key";
|
|
6746
6956
|
}>;
|
|
6747
6957
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -6762,6 +6972,13 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
6762
6972
|
type: z.ZodLiteral<"basic">;
|
|
6763
6973
|
}, z.core.$strip>, z.ZodObject<{
|
|
6764
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;
|
|
6765
6982
|
}, z.core.$strip>]>>;
|
|
6766
6983
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6767
6984
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -6825,6 +7042,7 @@ export declare const zMcpCreateBody: z.ZodObject<{
|
|
|
6825
7042
|
basic: "basic";
|
|
6826
7043
|
oauth: "oauth";
|
|
6827
7044
|
none: "none";
|
|
7045
|
+
mcp_provider: "mcp_provider";
|
|
6828
7046
|
api_key: "api_key";
|
|
6829
7047
|
}>>>;
|
|
6830
7048
|
authConfig: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -6845,6 +7063,13 @@ export declare const zMcpCreateBody: z.ZodObject<{
|
|
|
6845
7063
|
type: z.ZodLiteral<"basic">;
|
|
6846
7064
|
}, z.core.$strip>, z.ZodObject<{
|
|
6847
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;
|
|
6848
7073
|
}, z.core.$strip>]>>>>;
|
|
6849
7074
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6850
7075
|
}, z.core.$strip>;
|
|
@@ -6886,6 +7111,7 @@ export declare const zMcpCreateResponse: z.ZodObject<{
|
|
|
6886
7111
|
basic: "basic";
|
|
6887
7112
|
oauth: "oauth";
|
|
6888
7113
|
none: "none";
|
|
7114
|
+
mcp_provider: "mcp_provider";
|
|
6889
7115
|
api_key: "api_key";
|
|
6890
7116
|
}>;
|
|
6891
7117
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -6906,6 +7132,13 @@ export declare const zMcpCreateResponse: z.ZodObject<{
|
|
|
6906
7132
|
type: z.ZodLiteral<"basic">;
|
|
6907
7133
|
}, z.core.$strip>, z.ZodObject<{
|
|
6908
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;
|
|
6909
7142
|
}, z.core.$strip>]>>;
|
|
6910
7143
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6911
7144
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7006,6 +7239,7 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
|
|
|
7006
7239
|
basic: "basic";
|
|
7007
7240
|
oauth: "oauth";
|
|
7008
7241
|
none: "none";
|
|
7242
|
+
mcp_provider: "mcp_provider";
|
|
7009
7243
|
api_key: "api_key";
|
|
7010
7244
|
}>;
|
|
7011
7245
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7026,6 +7260,13 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
|
|
|
7026
7260
|
type: z.ZodLiteral<"basic">;
|
|
7027
7261
|
}, z.core.$strip>, z.ZodObject<{
|
|
7028
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;
|
|
7029
7270
|
}, z.core.$strip>]>>;
|
|
7030
7271
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7031
7272
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7096,6 +7337,7 @@ export declare const zMcpGetResponse: z.ZodObject<{
|
|
|
7096
7337
|
basic: "basic";
|
|
7097
7338
|
oauth: "oauth";
|
|
7098
7339
|
none: "none";
|
|
7340
|
+
mcp_provider: "mcp_provider";
|
|
7099
7341
|
api_key: "api_key";
|
|
7100
7342
|
}>;
|
|
7101
7343
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7116,6 +7358,13 @@ export declare const zMcpGetResponse: z.ZodObject<{
|
|
|
7116
7358
|
type: z.ZodLiteral<"basic">;
|
|
7117
7359
|
}, z.core.$strip>, z.ZodObject<{
|
|
7118
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;
|
|
7119
7368
|
}, z.core.$strip>]>>;
|
|
7120
7369
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7121
7370
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7178,6 +7427,7 @@ export declare const zMcpUpdateBody: z.ZodObject<{
|
|
|
7178
7427
|
basic: "basic";
|
|
7179
7428
|
oauth: "oauth";
|
|
7180
7429
|
none: "none";
|
|
7430
|
+
mcp_provider: "mcp_provider";
|
|
7181
7431
|
api_key: "api_key";
|
|
7182
7432
|
}>>;
|
|
7183
7433
|
authConfig: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7198,6 +7448,13 @@ export declare const zMcpUpdateBody: z.ZodObject<{
|
|
|
7198
7448
|
type: z.ZodLiteral<"basic">;
|
|
7199
7449
|
}, z.core.$strip>, z.ZodObject<{
|
|
7200
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;
|
|
7201
7458
|
}, z.core.$strip>]>>>;
|
|
7202
7459
|
websiteMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7203
7460
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -7251,6 +7508,7 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
|
|
|
7251
7508
|
basic: "basic";
|
|
7252
7509
|
oauth: "oauth";
|
|
7253
7510
|
none: "none";
|
|
7511
|
+
mcp_provider: "mcp_provider";
|
|
7254
7512
|
api_key: "api_key";
|
|
7255
7513
|
}>;
|
|
7256
7514
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7271,6 +7529,13 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
|
|
|
7271
7529
|
type: z.ZodLiteral<"basic">;
|
|
7272
7530
|
}, z.core.$strip>, z.ZodObject<{
|
|
7273
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;
|
|
7274
7539
|
}, z.core.$strip>]>>;
|
|
7275
7540
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7276
7541
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7341,6 +7606,7 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
|
|
|
7341
7606
|
basic: "basic";
|
|
7342
7607
|
oauth: "oauth";
|
|
7343
7608
|
none: "none";
|
|
7609
|
+
mcp_provider: "mcp_provider";
|
|
7344
7610
|
api_key: "api_key";
|
|
7345
7611
|
}>;
|
|
7346
7612
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7361,6 +7627,13 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
|
|
|
7361
7627
|
type: z.ZodLiteral<"basic">;
|
|
7362
7628
|
}, z.core.$strip>, z.ZodObject<{
|
|
7363
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;
|
|
7364
7637
|
}, z.core.$strip>]>>;
|
|
7365
7638
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7366
7639
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7431,6 +7704,7 @@ export declare const zMcpPublishResponse: z.ZodObject<{
|
|
|
7431
7704
|
basic: "basic";
|
|
7432
7705
|
oauth: "oauth";
|
|
7433
7706
|
none: "none";
|
|
7707
|
+
mcp_provider: "mcp_provider";
|
|
7434
7708
|
api_key: "api_key";
|
|
7435
7709
|
}>;
|
|
7436
7710
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7451,6 +7725,13 @@ export declare const zMcpPublishResponse: z.ZodObject<{
|
|
|
7451
7725
|
type: z.ZodLiteral<"basic">;
|
|
7452
7726
|
}, z.core.$strip>, z.ZodObject<{
|
|
7453
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;
|
|
7454
7735
|
}, z.core.$strip>]>>;
|
|
7455
7736
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7456
7737
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7524,6 +7805,7 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
|
|
|
7524
7805
|
basic: "basic";
|
|
7525
7806
|
oauth: "oauth";
|
|
7526
7807
|
none: "none";
|
|
7808
|
+
mcp_provider: "mcp_provider";
|
|
7527
7809
|
api_key: "api_key";
|
|
7528
7810
|
}>;
|
|
7529
7811
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7544,6 +7826,13 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
|
|
|
7544
7826
|
type: z.ZodLiteral<"basic">;
|
|
7545
7827
|
}, z.core.$strip>, z.ZodObject<{
|
|
7546
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;
|
|
7547
7836
|
}, z.core.$strip>]>>;
|
|
7548
7837
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7549
7838
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -7614,6 +7903,7 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
|
|
|
7614
7903
|
basic: "basic";
|
|
7615
7904
|
oauth: "oauth";
|
|
7616
7905
|
none: "none";
|
|
7906
|
+
mcp_provider: "mcp_provider";
|
|
7617
7907
|
api_key: "api_key";
|
|
7618
7908
|
}>;
|
|
7619
7909
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -7634,6 +7924,13 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
|
|
|
7634
7924
|
type: z.ZodLiteral<"basic">;
|
|
7635
7925
|
}, z.core.$strip>, z.ZodObject<{
|
|
7636
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;
|
|
7637
7934
|
}, z.core.$strip>]>>;
|
|
7638
7935
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7639
7936
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -10428,6 +10725,7 @@ export declare const zSessionUrlQuery: z.ZodObject<{
|
|
|
10428
10725
|
export declare const zSessionUrlResponse2: z.ZodObject<{
|
|
10429
10726
|
url: z.ZodString;
|
|
10430
10727
|
authedUrl: z.ZodString;
|
|
10728
|
+
serverUrl: z.ZodString;
|
|
10431
10729
|
serverPassword: z.ZodString;
|
|
10432
10730
|
username: z.ZodString;
|
|
10433
10731
|
}, z.core.$strip>;
|
|
@@ -10492,6 +10790,7 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
|
|
|
10492
10790
|
basic: "basic";
|
|
10493
10791
|
oauth: "oauth";
|
|
10494
10792
|
none: "none";
|
|
10793
|
+
mcp_provider: "mcp_provider";
|
|
10495
10794
|
api_key: "api_key";
|
|
10496
10795
|
}>;
|
|
10497
10796
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -10512,6 +10811,13 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
|
|
|
10512
10811
|
type: z.ZodLiteral<"basic">;
|
|
10513
10812
|
}, z.core.$strip>, z.ZodObject<{
|
|
10514
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;
|
|
10515
10821
|
}, z.core.$strip>]>>;
|
|
10516
10822
|
satisfied: z.ZodBoolean;
|
|
10517
10823
|
neededByAgentIds: z.ZodArray<z.ZodString>;
|
|
@@ -11388,6 +11694,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
|
|
|
11388
11694
|
basic: "basic";
|
|
11389
11695
|
oauth: "oauth";
|
|
11390
11696
|
none: "none";
|
|
11697
|
+
mcp_provider: "mcp_provider";
|
|
11391
11698
|
api_key: "api_key";
|
|
11392
11699
|
}>>;
|
|
11393
11700
|
credential: z.ZodOptional<z.ZodString>;
|
|
@@ -11413,6 +11720,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
|
|
|
11413
11720
|
basic: "basic";
|
|
11414
11721
|
oauth: "oauth";
|
|
11415
11722
|
env: "env";
|
|
11723
|
+
mcp_provider: "mcp_provider";
|
|
11416
11724
|
api_key: "api_key";
|
|
11417
11725
|
}>>;
|
|
11418
11726
|
vault: z.ZodString;
|
|
@@ -11532,6 +11840,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
|
|
|
11532
11840
|
project: z.ZodString;
|
|
11533
11841
|
schedule: z.ZodString;
|
|
11534
11842
|
timezone: z.ZodOptional<z.ZodString>;
|
|
11843
|
+
until: z.ZodOptional<z.ZodISODateTime>;
|
|
11535
11844
|
inputMessage: z.ZodString;
|
|
11536
11845
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
11537
11846
|
notes: z.ZodOptional<z.ZodString>;
|
|
@@ -11620,6 +11929,7 @@ export declare const zTriggerListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11620
11929
|
inputMessage: z.ZodString;
|
|
11621
11930
|
schedule: z.ZodString;
|
|
11622
11931
|
timezone: z.ZodNullable<z.ZodString>;
|
|
11932
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11623
11933
|
isEnabled: z.ZodBoolean;
|
|
11624
11934
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11625
11935
|
createdAt: z.ZodISODateTime;
|
|
@@ -11633,6 +11943,7 @@ export declare const zTriggerCreateBody: z.ZodObject<{
|
|
|
11633
11943
|
inputMessage: z.ZodString;
|
|
11634
11944
|
schedule: z.ZodString;
|
|
11635
11945
|
timezone: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
11946
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
11636
11947
|
isEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11637
11948
|
}, z.core.$strip>;
|
|
11638
11949
|
export declare const zTriggerCreateQuery: z.ZodObject<{
|
|
@@ -11651,6 +11962,7 @@ export declare const zTriggerCreateResponse: z.ZodObject<{
|
|
|
11651
11962
|
inputMessage: z.ZodString;
|
|
11652
11963
|
schedule: z.ZodString;
|
|
11653
11964
|
timezone: z.ZodNullable<z.ZodString>;
|
|
11965
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11654
11966
|
isEnabled: z.ZodBoolean;
|
|
11655
11967
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11656
11968
|
createdAt: z.ZodISODateTime;
|
|
@@ -11677,6 +11989,7 @@ export declare const zTriggerGetResponse: z.ZodObject<{
|
|
|
11677
11989
|
inputMessage: z.ZodString;
|
|
11678
11990
|
schedule: z.ZodString;
|
|
11679
11991
|
timezone: z.ZodNullable<z.ZodString>;
|
|
11992
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11680
11993
|
isEnabled: z.ZodBoolean;
|
|
11681
11994
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11682
11995
|
createdAt: z.ZodISODateTime;
|
|
@@ -11689,6 +12002,7 @@ export declare const zTriggerUpdateBody: z.ZodObject<{
|
|
|
11689
12002
|
inputMessage: z.ZodOptional<z.ZodString>;
|
|
11690
12003
|
schedule: z.ZodOptional<z.ZodString>;
|
|
11691
12004
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12005
|
+
until: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
11692
12006
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11693
12007
|
projectId: z.ZodString;
|
|
11694
12008
|
}, z.core.$strip>;
|
|
@@ -11711,6 +12025,7 @@ export declare const zTriggerUpdateResponse: z.ZodObject<{
|
|
|
11711
12025
|
inputMessage: z.ZodString;
|
|
11712
12026
|
schedule: z.ZodString;
|
|
11713
12027
|
timezone: z.ZodNullable<z.ZodString>;
|
|
12028
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11714
12029
|
isEnabled: z.ZodBoolean;
|
|
11715
12030
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11716
12031
|
createdAt: z.ZodISODateTime;
|
|
@@ -11739,6 +12054,7 @@ export declare const zTriggerArchiveResponse: z.ZodObject<{
|
|
|
11739
12054
|
inputMessage: z.ZodString;
|
|
11740
12055
|
schedule: z.ZodString;
|
|
11741
12056
|
timezone: z.ZodNullable<z.ZodString>;
|
|
12057
|
+
until: z.ZodNullable<z.ZodISODateTime>;
|
|
11742
12058
|
isEnabled: z.ZodBoolean;
|
|
11743
12059
|
syncedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11744
12060
|
createdAt: z.ZodISODateTime;
|
|
@@ -11764,10 +12080,12 @@ export declare const zWebhookTriggerListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11764
12080
|
senderUserId: z.ZodString;
|
|
11765
12081
|
provider: z.ZodEnum<{
|
|
11766
12082
|
generic: "generic";
|
|
12083
|
+
linear: "linear";
|
|
11767
12084
|
}>;
|
|
11768
12085
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11769
12086
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11770
12087
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12088
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11771
12089
|
}, z.core.$strip>>;
|
|
11772
12090
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11773
12091
|
isEnabled: z.ZodBoolean;
|
|
@@ -11781,10 +12099,12 @@ export declare const zWebhookTriggerCreateBody: z.ZodObject<{
|
|
|
11781
12099
|
senderUserId: z.ZodString;
|
|
11782
12100
|
provider: z.ZodEnum<{
|
|
11783
12101
|
generic: "generic";
|
|
12102
|
+
linear: "linear";
|
|
11784
12103
|
}>;
|
|
11785
12104
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11786
12105
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11787
12106
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12107
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11788
12108
|
}, z.core.$strip>>;
|
|
11789
12109
|
isEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11790
12110
|
}, z.core.$strip>;
|
|
@@ -11804,10 +12124,12 @@ export declare const zWebhookTriggerCreateResponse: z.ZodObject<{
|
|
|
11804
12124
|
senderUserId: z.ZodString;
|
|
11805
12125
|
provider: z.ZodEnum<{
|
|
11806
12126
|
generic: "generic";
|
|
12127
|
+
linear: "linear";
|
|
11807
12128
|
}>;
|
|
11808
12129
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11809
12130
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11810
12131
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12132
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11811
12133
|
}, z.core.$strip>>;
|
|
11812
12134
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11813
12135
|
isEnabled: z.ZodBoolean;
|
|
@@ -11836,10 +12158,12 @@ export declare const zWebhookTriggerGetResponse: z.ZodObject<{
|
|
|
11836
12158
|
senderUserId: z.ZodString;
|
|
11837
12159
|
provider: z.ZodEnum<{
|
|
11838
12160
|
generic: "generic";
|
|
12161
|
+
linear: "linear";
|
|
11839
12162
|
}>;
|
|
11840
12163
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11841
12164
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11842
12165
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12166
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11843
12167
|
}, z.core.$strip>>;
|
|
11844
12168
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11845
12169
|
isEnabled: z.ZodBoolean;
|
|
@@ -11852,6 +12176,7 @@ export declare const zWebhookTriggerUpdateBody: z.ZodObject<{
|
|
|
11852
12176
|
senderUserId: z.ZodOptional<z.ZodString>;
|
|
11853
12177
|
scopeFilter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11854
12178
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12179
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11855
12180
|
}, z.core.$strip>>>;
|
|
11856
12181
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11857
12182
|
projectId: z.ZodString;
|
|
@@ -11874,10 +12199,12 @@ export declare const zWebhookTriggerUpdateResponse: z.ZodObject<{
|
|
|
11874
12199
|
senderUserId: z.ZodString;
|
|
11875
12200
|
provider: z.ZodEnum<{
|
|
11876
12201
|
generic: "generic";
|
|
12202
|
+
linear: "linear";
|
|
11877
12203
|
}>;
|
|
11878
12204
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11879
12205
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11880
12206
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12207
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11881
12208
|
}, z.core.$strip>>;
|
|
11882
12209
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11883
12210
|
isEnabled: z.ZodBoolean;
|
|
@@ -11906,10 +12233,12 @@ export declare const zWebhookTriggerArchiveResponse: z.ZodObject<{
|
|
|
11906
12233
|
senderUserId: z.ZodString;
|
|
11907
12234
|
provider: z.ZodEnum<{
|
|
11908
12235
|
generic: "generic";
|
|
12236
|
+
linear: "linear";
|
|
11909
12237
|
}>;
|
|
11910
12238
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
11911
12239
|
scopeFilter: z.ZodNullable<z.ZodObject<{
|
|
11912
12240
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12241
|
+
linearProjectId: z.ZodOptional<z.ZodString>;
|
|
11913
12242
|
}, z.core.$strip>>;
|
|
11914
12243
|
secretHash: z.ZodNullable<z.ZodString>;
|
|
11915
12244
|
isEnabled: z.ZodBoolean;
|
|
@@ -12204,6 +12533,115 @@ export declare const zTelegramChatSetResponse: z.ZodObject<{
|
|
|
12204
12533
|
createdAt: z.ZodISODateTime;
|
|
12205
12534
|
updatedAt: z.ZodISODateTime;
|
|
12206
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;
|
|
12207
12645
|
export declare const zVaultListQuery: z.ZodObject<{
|
|
12208
12646
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
12209
12647
|
user: "user";
|
|
@@ -12388,6 +12826,12 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
|
|
|
12388
12826
|
}, z.core.$strip>, z.ZodObject<{
|
|
12389
12827
|
type: z.ZodLiteral<"basic">;
|
|
12390
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;
|
|
12391
12835
|
}, z.core.$strip>]>;
|
|
12392
12836
|
createdAt: z.ZodISODateTime;
|
|
12393
12837
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12436,6 +12880,13 @@ export declare const zCredentialCreateBody: z.ZodObject<{
|
|
|
12436
12880
|
type: z.ZodLiteral<"basic">;
|
|
12437
12881
|
username: z.ZodString;
|
|
12438
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;
|
|
12439
12890
|
}, z.core.$strip>]>;
|
|
12440
12891
|
}, z.core.$strip>;
|
|
12441
12892
|
export declare const zCredentialCreatePath: z.ZodObject<{
|
|
@@ -12481,6 +12932,12 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
|
|
|
12481
12932
|
}, z.core.$strip>, z.ZodObject<{
|
|
12482
12933
|
type: z.ZodLiteral<"basic">;
|
|
12483
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;
|
|
12484
12941
|
}, z.core.$strip>]>;
|
|
12485
12942
|
createdAt: z.ZodISODateTime;
|
|
12486
12943
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12530,6 +12987,12 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
|
|
|
12530
12987
|
}, z.core.$strip>, z.ZodObject<{
|
|
12531
12988
|
type: z.ZodLiteral<"basic">;
|
|
12532
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;
|
|
12533
12996
|
}, z.core.$strip>]>;
|
|
12534
12997
|
createdAt: z.ZodISODateTime;
|
|
12535
12998
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12579,6 +13042,12 @@ export declare const zCredentialGetResponse: z.ZodObject<{
|
|
|
12579
13042
|
}, z.core.$strip>, z.ZodObject<{
|
|
12580
13043
|
type: z.ZodLiteral<"basic">;
|
|
12581
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;
|
|
12582
13051
|
}, z.core.$strip>]>;
|
|
12583
13052
|
createdAt: z.ZodISODateTime;
|
|
12584
13053
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12625,6 +13094,13 @@ export declare const zCredentialUpdateBody: z.ZodObject<{
|
|
|
12625
13094
|
type: z.ZodLiteral<"basic">;
|
|
12626
13095
|
username: z.ZodString;
|
|
12627
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;
|
|
12628
13104
|
}, z.core.$strip>]>>;
|
|
12629
13105
|
}, z.core.$strip>;
|
|
12630
13106
|
export declare const zCredentialUpdatePath: z.ZodObject<{
|
|
@@ -12671,6 +13147,12 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
|
|
|
12671
13147
|
}, z.core.$strip>, z.ZodObject<{
|
|
12672
13148
|
type: z.ZodLiteral<"basic">;
|
|
12673
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;
|
|
12674
13156
|
}, z.core.$strip>]>;
|
|
12675
13157
|
createdAt: z.ZodISODateTime;
|
|
12676
13158
|
updatedAt: z.ZodISODateTime;
|
|
@@ -12720,6 +13202,12 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
|
|
|
12720
13202
|
}, z.core.$strip>, z.ZodObject<{
|
|
12721
13203
|
type: z.ZodLiteral<"basic">;
|
|
12722
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;
|
|
12723
13211
|
}, z.core.$strip>]>;
|
|
12724
13212
|
createdAt: z.ZodISODateTime;
|
|
12725
13213
|
updatedAt: z.ZodISODateTime;
|
|
@@ -13025,6 +13513,7 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
13025
13513
|
basic: "basic";
|
|
13026
13514
|
oauth: "oauth";
|
|
13027
13515
|
none: "none";
|
|
13516
|
+
mcp_provider: "mcp_provider";
|
|
13028
13517
|
api_key: "api_key";
|
|
13029
13518
|
}>;
|
|
13030
13519
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -13045,6 +13534,13 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
13045
13534
|
type: z.ZodLiteral<"basic">;
|
|
13046
13535
|
}, z.core.$strip>, z.ZodObject<{
|
|
13047
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;
|
|
13048
13544
|
}, z.core.$strip>]>>;
|
|
13049
13545
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13050
13546
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -13110,6 +13606,7 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
13110
13606
|
basic: "basic";
|
|
13111
13607
|
oauth: "oauth";
|
|
13112
13608
|
none: "none";
|
|
13609
|
+
mcp_provider: "mcp_provider";
|
|
13113
13610
|
api_key: "api_key";
|
|
13114
13611
|
}>;
|
|
13115
13612
|
authConfig: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -13130,6 +13627,13 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
13130
13627
|
type: z.ZodLiteral<"basic">;
|
|
13131
13628
|
}, z.core.$strip>, z.ZodObject<{
|
|
13132
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;
|
|
13133
13637
|
}, z.core.$strip>]>>;
|
|
13134
13638
|
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13135
13639
|
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
@@ -13327,6 +13831,7 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
|
|
|
13327
13831
|
timezone: z.ZodNullable<z.ZodString>;
|
|
13328
13832
|
cronTriggerId: z.ZodString;
|
|
13329
13833
|
agentId: z.ZodNullable<z.ZodString>;
|
|
13834
|
+
until: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>>;
|
|
13330
13835
|
}, z.core.$strip>>;
|
|
13331
13836
|
}, z.core.$strip>>;
|
|
13332
13837
|
agents: z.ZodArray<z.ZodObject<{
|
|
@@ -13478,6 +13983,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
|
|
|
13478
13983
|
basic: "basic";
|
|
13479
13984
|
oauth: "oauth";
|
|
13480
13985
|
none: "none";
|
|
13986
|
+
mcp_provider: "mcp_provider";
|
|
13481
13987
|
api_key: "api_key";
|
|
13482
13988
|
}>>;
|
|
13483
13989
|
credential: z.ZodOptional<z.ZodString>;
|
|
@@ -13503,6 +14009,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
|
|
|
13503
14009
|
basic: "basic";
|
|
13504
14010
|
oauth: "oauth";
|
|
13505
14011
|
env: "env";
|
|
14012
|
+
mcp_provider: "mcp_provider";
|
|
13506
14013
|
api_key: "api_key";
|
|
13507
14014
|
}>>;
|
|
13508
14015
|
vault: z.ZodString;
|
|
@@ -13622,6 +14129,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
|
|
|
13622
14129
|
project: z.ZodString;
|
|
13623
14130
|
schedule: z.ZodString;
|
|
13624
14131
|
timezone: z.ZodOptional<z.ZodString>;
|
|
14132
|
+
until: z.ZodOptional<z.ZodISODateTime>;
|
|
13625
14133
|
inputMessage: z.ZodString;
|
|
13626
14134
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13627
14135
|
notes: z.ZodOptional<z.ZodString>;
|