@renai-labs/sdk 0.1.7 → 0.1.8
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 +73 -1
- package/dist/generated/@tanstack/react-query.gen.js +96 -0
- package/dist/generated/internal/types.gen.d.ts +528 -0
- package/dist/generated/sdk.gen.d.ts +37 -1
- package/dist/generated/sdk.gen.js +73 -0
- package/dist/generated/types.gen.d.ts +340 -10
- package/dist/generated/zod.gen.d.ts +400 -18
- package/dist/generated/zod.gen.js +169 -19
- package/package.json +1 -1
|
@@ -681,6 +681,10 @@ export declare const zBlueprintPublicView: z.ZodObject<{
|
|
|
681
681
|
}, z.core.$strip>>;
|
|
682
682
|
}, z.core.$strip>;
|
|
683
683
|
}, z.core.$strip>;
|
|
684
|
+
export declare const zRequiredCredential: z.ZodObject<{
|
|
685
|
+
name: z.ZodString;
|
|
686
|
+
description: z.ZodOptional<z.ZodString>;
|
|
687
|
+
}, z.core.$strip>;
|
|
684
688
|
export declare const zRepository: z.ZodObject<{
|
|
685
689
|
url: z.ZodOptional<z.ZodURL>;
|
|
686
690
|
source: z.ZodOptional<z.ZodString>;
|
|
@@ -742,15 +746,25 @@ export declare const zCredentialAuth: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
742
746
|
scope: z.ZodOptional<z.ZodString>;
|
|
743
747
|
resource: z.ZodOptional<z.ZodString>;
|
|
744
748
|
}, z.core.$strip>>>;
|
|
745
|
-
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
749
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
746
750
|
service: z.ZodLiteral<"github">;
|
|
747
751
|
id: z.ZodNumber;
|
|
748
752
|
login: z.ZodString;
|
|
749
753
|
name: z.ZodNullable<z.ZodString>;
|
|
750
|
-
}, z.core.$strip
|
|
754
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
755
|
+
service: z.ZodLiteral<"google_workspace">;
|
|
756
|
+
sub: z.ZodString;
|
|
757
|
+
email: z.ZodString;
|
|
758
|
+
name: z.ZodNullable<z.ZodString>;
|
|
759
|
+
hd: z.ZodNullable<z.ZodString>;
|
|
760
|
+
}, z.core.$strip>]>>>;
|
|
751
761
|
}, z.core.$strip>, z.ZodObject<{
|
|
752
762
|
type: z.ZodLiteral<"env">;
|
|
753
763
|
value: z.ZodString;
|
|
764
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
765
|
+
type: z.ZodLiteral<"basic">;
|
|
766
|
+
username: z.ZodString;
|
|
767
|
+
password: z.ZodString;
|
|
754
768
|
}, z.core.$strip>]>;
|
|
755
769
|
export declare const zCredentialAuthPublic: z.ZodUnion<readonly [z.ZodObject<{
|
|
756
770
|
type: z.ZodLiteral<"bearer">;
|
|
@@ -770,6 +784,9 @@ export declare const zCredentialAuthPublic: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
770
784
|
}, z.core.$strip>>>;
|
|
771
785
|
}, z.core.$strip>, z.ZodObject<{
|
|
772
786
|
type: z.ZodLiteral<"env">;
|
|
787
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
788
|
+
type: z.ZodLiteral<"basic">;
|
|
789
|
+
username: z.ZodString;
|
|
773
790
|
}, z.core.$strip>]>;
|
|
774
791
|
export declare const zCredential: z.ZodObject<{
|
|
775
792
|
id: z.ZodString;
|
|
@@ -778,6 +795,7 @@ export declare const zCredential: z.ZodObject<{
|
|
|
778
795
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
779
796
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
780
797
|
github: "github";
|
|
798
|
+
google_workspace: "google_workspace";
|
|
781
799
|
}>>;
|
|
782
800
|
label: z.ZodNullable<z.ZodString>;
|
|
783
801
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -799,6 +817,9 @@ export declare const zCredential: z.ZodObject<{
|
|
|
799
817
|
}, z.core.$strip>>>;
|
|
800
818
|
}, z.core.$strip>, z.ZodObject<{
|
|
801
819
|
type: z.ZodLiteral<"env">;
|
|
820
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
821
|
+
type: z.ZodLiteral<"basic">;
|
|
822
|
+
username: z.ZodString;
|
|
802
823
|
}, z.core.$strip>]>;
|
|
803
824
|
createdAt: z.ZodISODateTime;
|
|
804
825
|
updatedAt: z.ZodISODateTime;
|
|
@@ -906,9 +927,80 @@ export declare const zCronTrigger: z.ZodObject<{
|
|
|
906
927
|
updatedAt: z.ZodISODateTime;
|
|
907
928
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
908
929
|
}, z.core.$strip>;
|
|
909
|
-
export declare const
|
|
910
|
-
|
|
911
|
-
|
|
930
|
+
export declare const zTopology: z.ZodObject<{
|
|
931
|
+
surfaces: z.ZodArray<z.ZodObject<{
|
|
932
|
+
id: z.ZodString;
|
|
933
|
+
kind: z.ZodEnum<{
|
|
934
|
+
github: "github";
|
|
935
|
+
mcp: "mcp";
|
|
936
|
+
cron: "cron";
|
|
937
|
+
webhook: "webhook";
|
|
938
|
+
slack: "slack";
|
|
939
|
+
}>;
|
|
940
|
+
name: z.ZodString;
|
|
941
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
942
|
+
tags: z.ZodArray<z.ZodString>;
|
|
943
|
+
ports: z.ZodArray<z.ZodObject<{
|
|
944
|
+
id: z.ZodString;
|
|
945
|
+
label: z.ZodString;
|
|
946
|
+
targetProjectId: z.ZodString;
|
|
947
|
+
}, z.core.$strip>>;
|
|
948
|
+
vaultIds: z.ZodArray<z.ZodString>;
|
|
949
|
+
}, z.core.$strip>>;
|
|
950
|
+
pods: z.ZodArray<z.ZodObject<{
|
|
951
|
+
id: z.ZodString;
|
|
952
|
+
name: z.ZodString;
|
|
953
|
+
isPrivate: z.ZodBoolean;
|
|
954
|
+
}, z.core.$strip>>;
|
|
955
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
956
|
+
id: z.ZodString;
|
|
957
|
+
podId: z.ZodString;
|
|
958
|
+
name: z.ZodString;
|
|
959
|
+
agents: z.ZodArray<z.ZodObject<{
|
|
960
|
+
id: z.ZodString;
|
|
961
|
+
name: z.ZodString;
|
|
962
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
963
|
+
model: z.ZodOptional<z.ZodString>;
|
|
964
|
+
}, z.core.$strip>>;
|
|
965
|
+
skillsCount: z.ZodNumber;
|
|
966
|
+
}, z.core.$strip>>;
|
|
967
|
+
vaults: z.ZodArray<z.ZodObject<{
|
|
968
|
+
id: z.ZodString;
|
|
969
|
+
name: z.ZodString;
|
|
970
|
+
podIds: z.ZodArray<z.ZodString>;
|
|
971
|
+
credentials: z.ZodArray<z.ZodObject<{
|
|
972
|
+
id: z.ZodString;
|
|
973
|
+
label: z.ZodString;
|
|
974
|
+
forSurfaceId: z.ZodOptional<z.ZodString>;
|
|
975
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
976
|
+
}, z.core.$strip>>;
|
|
977
|
+
}, z.core.$strip>>;
|
|
978
|
+
stores: z.ZodArray<z.ZodObject<{
|
|
979
|
+
id: z.ZodString;
|
|
980
|
+
kind: z.ZodEnum<{
|
|
981
|
+
file: "file";
|
|
982
|
+
memory: "memory";
|
|
983
|
+
}>;
|
|
984
|
+
name: z.ZodString;
|
|
985
|
+
mounts: z.ZodArray<z.ZodObject<{
|
|
986
|
+
projectId: z.ZodString;
|
|
987
|
+
}, z.core.$strip>>;
|
|
988
|
+
}, z.core.$strip>>;
|
|
989
|
+
env: z.ZodNullable<z.ZodObject<{
|
|
990
|
+
id: z.ZodString;
|
|
991
|
+
}, z.core.$strip>>;
|
|
992
|
+
edges: z.ZodArray<z.ZodObject<{
|
|
993
|
+
id: z.ZodString;
|
|
994
|
+
kind: z.ZodEnum<{
|
|
995
|
+
route: "route";
|
|
996
|
+
state: "state";
|
|
997
|
+
cred: "cred";
|
|
998
|
+
}>;
|
|
999
|
+
sourceId: z.ZodString;
|
|
1000
|
+
sourcePortId: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
targetId: z.ZodString;
|
|
1002
|
+
targetCredId: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
}, z.core.$strip>>;
|
|
912
1004
|
}, z.core.$strip>;
|
|
913
1005
|
export declare const zSkillVersion: z.ZodObject<{
|
|
914
1006
|
id: z.ZodString;
|
|
@@ -993,13 +1085,25 @@ export declare const zSessionFilesPresignUploadResponse: z.ZodObject<{
|
|
|
993
1085
|
}, z.core.$strip>;
|
|
994
1086
|
expiresAt: z.ZodISODateTime;
|
|
995
1087
|
}, z.core.$strip>;
|
|
1088
|
+
export declare const zAuthRequirementEnvSource: z.ZodObject<{
|
|
1089
|
+
kind: z.ZodEnum<{
|
|
1090
|
+
skill: "skill";
|
|
1091
|
+
mcp: "mcp";
|
|
1092
|
+
}>;
|
|
1093
|
+
id: z.ZodString;
|
|
1094
|
+
name: z.ZodString;
|
|
1095
|
+
}, z.core.$strip>;
|
|
996
1096
|
export declare const zAuthRequirementEnv: z.ZodObject<{
|
|
997
1097
|
name: z.ZodString;
|
|
998
1098
|
description: z.ZodOptional<z.ZodString>;
|
|
999
1099
|
satisfied: z.ZodBoolean;
|
|
1000
1100
|
neededBy: z.ZodArray<z.ZodObject<{
|
|
1001
|
-
|
|
1002
|
-
|
|
1101
|
+
kind: z.ZodEnum<{
|
|
1102
|
+
skill: "skill";
|
|
1103
|
+
mcp: "mcp";
|
|
1104
|
+
}>;
|
|
1105
|
+
id: z.ZodString;
|
|
1106
|
+
name: z.ZodString;
|
|
1003
1107
|
}, z.core.$strip>>;
|
|
1004
1108
|
}, z.core.$strip>;
|
|
1005
1109
|
export declare const zMcpAuthConfig: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -1093,8 +1197,12 @@ export declare const zAuthRequirements: z.ZodObject<{
|
|
|
1093
1197
|
description: z.ZodOptional<z.ZodString>;
|
|
1094
1198
|
satisfied: z.ZodBoolean;
|
|
1095
1199
|
neededBy: z.ZodArray<z.ZodObject<{
|
|
1096
|
-
|
|
1097
|
-
|
|
1200
|
+
kind: z.ZodEnum<{
|
|
1201
|
+
skill: "skill";
|
|
1202
|
+
mcp: "mcp";
|
|
1203
|
+
}>;
|
|
1204
|
+
id: z.ZodString;
|
|
1205
|
+
name: z.ZodString;
|
|
1098
1206
|
}, z.core.$strip>>;
|
|
1099
1207
|
}, z.core.$strip>>;
|
|
1100
1208
|
}, z.core.$strip>;
|
|
@@ -1678,6 +1786,11 @@ export declare const zMcp: z.ZodObject<{
|
|
|
1678
1786
|
}, z.core.$strip>, z.ZodObject<{
|
|
1679
1787
|
type: z.ZodLiteral<"none">;
|
|
1680
1788
|
}, z.core.$strip>]>>;
|
|
1789
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1790
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
1791
|
+
name: z.ZodString;
|
|
1792
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1793
|
+
}, z.core.$strip>>;
|
|
1681
1794
|
orgId: z.ZodString;
|
|
1682
1795
|
userId: z.ZodNullable<z.ZodString>;
|
|
1683
1796
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -1701,6 +1814,15 @@ export declare const zMcp: z.ZodObject<{
|
|
|
1701
1814
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
1702
1815
|
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
1703
1816
|
}, z.core.$strip>;
|
|
1817
|
+
export declare const zGoogleWorkspaceOAuthStartResult: z.ZodObject<{
|
|
1818
|
+
url: z.ZodURL;
|
|
1819
|
+
}, z.core.$strip>;
|
|
1820
|
+
export declare const zGoogleWorkspaceStatus: z.ZodObject<{
|
|
1821
|
+
isConfigured: z.ZodBoolean;
|
|
1822
|
+
clientId: z.ZodNullable<z.ZodString>;
|
|
1823
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
1824
|
+
redirectUri: z.ZodURL;
|
|
1825
|
+
}, z.core.$strip>;
|
|
1704
1826
|
export declare const zGithubInstallationResponse: z.ZodObject<{
|
|
1705
1827
|
id: z.ZodString;
|
|
1706
1828
|
orgId: z.ZodString;
|
|
@@ -1917,8 +2039,8 @@ export declare const zBlueprintInstallReport: z.ZodObject<{
|
|
|
1917
2039
|
skipped: z.ZodArray<z.ZodObject<{
|
|
1918
2040
|
kind: z.ZodEnum<{
|
|
1919
2041
|
skill: "skill";
|
|
1920
|
-
agent: "agent";
|
|
1921
2042
|
mcp: "mcp";
|
|
2043
|
+
agent: "agent";
|
|
1922
2044
|
}>;
|
|
1923
2045
|
sourceId: z.ZodString;
|
|
1924
2046
|
reason: z.ZodString;
|
|
@@ -4279,8 +4401,8 @@ export declare const zBlueprintInstallResponse: z.ZodObject<{
|
|
|
4279
4401
|
skipped: z.ZodArray<z.ZodObject<{
|
|
4280
4402
|
kind: z.ZodEnum<{
|
|
4281
4403
|
skill: "skill";
|
|
4282
|
-
agent: "agent";
|
|
4283
4404
|
mcp: "mcp";
|
|
4405
|
+
agent: "agent";
|
|
4284
4406
|
}>;
|
|
4285
4407
|
sourceId: z.ZodString;
|
|
4286
4408
|
reason: z.ZodString;
|
|
@@ -6210,6 +6332,75 @@ export declare const zGithubReposQuery: z.ZodObject<{
|
|
|
6210
6332
|
export declare const zGithubReposResponse: z.ZodArray<z.ZodObject<{
|
|
6211
6333
|
fullName: z.ZodString;
|
|
6212
6334
|
}, z.core.$strip>>;
|
|
6335
|
+
export declare const zGoogleStatusQuery: z.ZodObject<{
|
|
6336
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6337
|
+
user: "user";
|
|
6338
|
+
}>>;
|
|
6339
|
+
}, z.core.$strip>;
|
|
6340
|
+
/**
|
|
6341
|
+
* Google Workspace configuration status
|
|
6342
|
+
*/
|
|
6343
|
+
export declare const zGoogleStatusResponse: z.ZodObject<{
|
|
6344
|
+
isConfigured: z.ZodBoolean;
|
|
6345
|
+
clientId: z.ZodNullable<z.ZodString>;
|
|
6346
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
6347
|
+
redirectUri: z.ZodURL;
|
|
6348
|
+
}, z.core.$strip>;
|
|
6349
|
+
export declare const zGoogleConfigDeleteQuery: z.ZodObject<{
|
|
6350
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6351
|
+
user: "user";
|
|
6352
|
+
}>>;
|
|
6353
|
+
}, z.core.$strip>;
|
|
6354
|
+
/**
|
|
6355
|
+
* Removed
|
|
6356
|
+
*/
|
|
6357
|
+
export declare const zGoogleConfigDeleteResponse: z.ZodVoid;
|
|
6358
|
+
export declare const zGoogleConfigSaveBody: z.ZodObject<{
|
|
6359
|
+
clientId: z.ZodString;
|
|
6360
|
+
clientSecret: z.ZodString;
|
|
6361
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6362
|
+
}, z.core.$strip>;
|
|
6363
|
+
export declare const zGoogleConfigSaveQuery: z.ZodObject<{
|
|
6364
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6365
|
+
user: "user";
|
|
6366
|
+
}>>;
|
|
6367
|
+
}, z.core.$strip>;
|
|
6368
|
+
/**
|
|
6369
|
+
* Updated Google Workspace configuration status
|
|
6370
|
+
*/
|
|
6371
|
+
export declare const zGoogleConfigSaveResponse: z.ZodObject<{
|
|
6372
|
+
isConfigured: z.ZodBoolean;
|
|
6373
|
+
clientId: z.ZodNullable<z.ZodString>;
|
|
6374
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
6375
|
+
redirectUri: z.ZodURL;
|
|
6376
|
+
}, z.core.$strip>;
|
|
6377
|
+
export declare const zGoogleDisconnectPath: z.ZodObject<{
|
|
6378
|
+
vaultId: z.ZodString;
|
|
6379
|
+
}, z.core.$strip>;
|
|
6380
|
+
export declare const zGoogleDisconnectQuery: z.ZodObject<{
|
|
6381
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6382
|
+
user: "user";
|
|
6383
|
+
}>>;
|
|
6384
|
+
}, z.core.$strip>;
|
|
6385
|
+
/**
|
|
6386
|
+
* Removed
|
|
6387
|
+
*/
|
|
6388
|
+
export declare const zGoogleDisconnectResponse: z.ZodVoid;
|
|
6389
|
+
export declare const zGoogleConnectPath: z.ZodObject<{
|
|
6390
|
+
vaultId: z.ZodString;
|
|
6391
|
+
}, z.core.$strip>;
|
|
6392
|
+
export declare const zGoogleConnectQuery: z.ZodObject<{
|
|
6393
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6394
|
+
user: "user";
|
|
6395
|
+
}>>;
|
|
6396
|
+
returnTo: z.ZodOptional<z.ZodString>;
|
|
6397
|
+
}, z.core.$strip>;
|
|
6398
|
+
/**
|
|
6399
|
+
* Authorization URL for the user to visit
|
|
6400
|
+
*/
|
|
6401
|
+
export declare const zGoogleConnectResponse: z.ZodObject<{
|
|
6402
|
+
url: z.ZodURL;
|
|
6403
|
+
}, z.core.$strip>;
|
|
6213
6404
|
export declare const zMcpListQuery: z.ZodObject<{
|
|
6214
6405
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
6215
6406
|
user: "user";
|
|
@@ -6276,6 +6467,11 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
6276
6467
|
}, z.core.$strip>, z.ZodObject<{
|
|
6277
6468
|
type: z.ZodLiteral<"none">;
|
|
6278
6469
|
}, z.core.$strip>]>>;
|
|
6470
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6471
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6472
|
+
name: z.ZodString;
|
|
6473
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6474
|
+
}, z.core.$strip>>;
|
|
6279
6475
|
orgId: z.ZodString;
|
|
6280
6476
|
userId: z.ZodNullable<z.ZodString>;
|
|
6281
6477
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6303,7 +6499,7 @@ export declare const zMcpCreateBody: z.ZodObject<{
|
|
|
6303
6499
|
name: z.ZodString;
|
|
6304
6500
|
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6305
6501
|
icon: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6306
|
-
mcpServerUrl: z.ZodURL
|
|
6502
|
+
mcpServerUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
|
|
6307
6503
|
docUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
|
|
6308
6504
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
6309
6505
|
remote: "remote";
|
|
@@ -6316,6 +6512,11 @@ export declare const zMcpCreateBody: z.ZodObject<{
|
|
|
6316
6512
|
}>>>;
|
|
6317
6513
|
command: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6318
6514
|
args: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
6515
|
+
env: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6516
|
+
requiredCredentials: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6517
|
+
name: z.ZodString;
|
|
6518
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6519
|
+
}, z.core.$strip>>>>;
|
|
6319
6520
|
version: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6320
6521
|
repository: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6321
6522
|
url: z.ZodOptional<z.ZodURL>;
|
|
@@ -6409,6 +6610,11 @@ export declare const zMcpCreateResponse: z.ZodObject<{
|
|
|
6409
6610
|
}, z.core.$strip>, z.ZodObject<{
|
|
6410
6611
|
type: z.ZodLiteral<"none">;
|
|
6411
6612
|
}, z.core.$strip>]>>;
|
|
6613
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6614
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6615
|
+
name: z.ZodString;
|
|
6616
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6617
|
+
}, z.core.$strip>>;
|
|
6412
6618
|
orgId: z.ZodString;
|
|
6413
6619
|
userId: z.ZodNullable<z.ZodString>;
|
|
6414
6620
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6524,6 +6730,11 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
|
|
|
6524
6730
|
}, z.core.$strip>, z.ZodObject<{
|
|
6525
6731
|
type: z.ZodLiteral<"none">;
|
|
6526
6732
|
}, z.core.$strip>]>>;
|
|
6733
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6734
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6735
|
+
name: z.ZodString;
|
|
6736
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6737
|
+
}, z.core.$strip>>;
|
|
6527
6738
|
orgId: z.ZodString;
|
|
6528
6739
|
userId: z.ZodNullable<z.ZodString>;
|
|
6529
6740
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6609,6 +6820,11 @@ export declare const zMcpGetResponse: z.ZodObject<{
|
|
|
6609
6820
|
}, z.core.$strip>, z.ZodObject<{
|
|
6610
6821
|
type: z.ZodLiteral<"none">;
|
|
6611
6822
|
}, z.core.$strip>]>>;
|
|
6823
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6824
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6825
|
+
name: z.ZodString;
|
|
6826
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6827
|
+
}, z.core.$strip>>;
|
|
6612
6828
|
orgId: z.ZodString;
|
|
6613
6829
|
userId: z.ZodNullable<z.ZodString>;
|
|
6614
6830
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6649,6 +6865,11 @@ export declare const zMcpUpdateBody: z.ZodObject<{
|
|
|
6649
6865
|
}>>;
|
|
6650
6866
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6651
6867
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6868
|
+
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6869
|
+
requiredCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6870
|
+
name: z.ZodString;
|
|
6871
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6872
|
+
}, z.core.$strip>>>;
|
|
6652
6873
|
version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6653
6874
|
repository: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6654
6875
|
url: z.ZodOptional<z.ZodURL>;
|
|
@@ -6754,6 +6975,11 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
|
|
|
6754
6975
|
}, z.core.$strip>, z.ZodObject<{
|
|
6755
6976
|
type: z.ZodLiteral<"none">;
|
|
6756
6977
|
}, z.core.$strip>]>>;
|
|
6978
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6979
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6980
|
+
name: z.ZodString;
|
|
6981
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6982
|
+
}, z.core.$strip>>;
|
|
6757
6983
|
orgId: z.ZodString;
|
|
6758
6984
|
userId: z.ZodNullable<z.ZodString>;
|
|
6759
6985
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6839,6 +7065,11 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
|
|
|
6839
7065
|
}, z.core.$strip>, z.ZodObject<{
|
|
6840
7066
|
type: z.ZodLiteral<"none">;
|
|
6841
7067
|
}, z.core.$strip>]>>;
|
|
7068
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7069
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7070
|
+
name: z.ZodString;
|
|
7071
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7072
|
+
}, z.core.$strip>>;
|
|
6842
7073
|
orgId: z.ZodString;
|
|
6843
7074
|
userId: z.ZodNullable<z.ZodString>;
|
|
6844
7075
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6924,6 +7155,11 @@ export declare const zMcpPublishResponse: z.ZodObject<{
|
|
|
6924
7155
|
}, z.core.$strip>, z.ZodObject<{
|
|
6925
7156
|
type: z.ZodLiteral<"none">;
|
|
6926
7157
|
}, z.core.$strip>]>>;
|
|
7158
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7159
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7160
|
+
name: z.ZodString;
|
|
7161
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7162
|
+
}, z.core.$strip>>;
|
|
6927
7163
|
orgId: z.ZodString;
|
|
6928
7164
|
userId: z.ZodNullable<z.ZodString>;
|
|
6929
7165
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -7012,6 +7248,11 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
|
|
|
7012
7248
|
}, z.core.$strip>, z.ZodObject<{
|
|
7013
7249
|
type: z.ZodLiteral<"none">;
|
|
7014
7250
|
}, z.core.$strip>]>>;
|
|
7251
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7252
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7253
|
+
name: z.ZodString;
|
|
7254
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7255
|
+
}, z.core.$strip>>;
|
|
7015
7256
|
orgId: z.ZodString;
|
|
7016
7257
|
userId: z.ZodNullable<z.ZodString>;
|
|
7017
7258
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -7097,6 +7338,11 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
|
|
|
7097
7338
|
}, z.core.$strip>, z.ZodObject<{
|
|
7098
7339
|
type: z.ZodLiteral<"none">;
|
|
7099
7340
|
}, z.core.$strip>]>>;
|
|
7341
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7342
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7343
|
+
name: z.ZodString;
|
|
7344
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7345
|
+
}, z.core.$strip>>;
|
|
7100
7346
|
orgId: z.ZodString;
|
|
7101
7347
|
userId: z.ZodNullable<z.ZodString>;
|
|
7102
7348
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -9921,8 +10167,12 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
|
|
|
9921
10167
|
description: z.ZodOptional<z.ZodString>;
|
|
9922
10168
|
satisfied: z.ZodBoolean;
|
|
9923
10169
|
neededBy: z.ZodArray<z.ZodObject<{
|
|
9924
|
-
|
|
9925
|
-
|
|
10170
|
+
kind: z.ZodEnum<{
|
|
10171
|
+
skill: "skill";
|
|
10172
|
+
mcp: "mcp";
|
|
10173
|
+
}>;
|
|
10174
|
+
id: z.ZodString;
|
|
10175
|
+
name: z.ZodString;
|
|
9926
10176
|
}, z.core.$strip>>;
|
|
9927
10177
|
}, z.core.$strip>>;
|
|
9928
10178
|
}, z.core.$strip>;
|
|
@@ -10743,6 +10993,84 @@ export declare const zSkillVersionArchiveResponse: z.ZodObject<{
|
|
|
10743
10993
|
}, z.core.$strip>>;
|
|
10744
10994
|
releaseNotes: z.ZodNullable<z.ZodString>;
|
|
10745
10995
|
}, z.core.$strip>;
|
|
10996
|
+
/**
|
|
10997
|
+
* Agent-stack topology
|
|
10998
|
+
*/
|
|
10999
|
+
export declare const zTopologyGetResponse: z.ZodObject<{
|
|
11000
|
+
surfaces: z.ZodArray<z.ZodObject<{
|
|
11001
|
+
id: z.ZodString;
|
|
11002
|
+
kind: z.ZodEnum<{
|
|
11003
|
+
github: "github";
|
|
11004
|
+
mcp: "mcp";
|
|
11005
|
+
cron: "cron";
|
|
11006
|
+
webhook: "webhook";
|
|
11007
|
+
slack: "slack";
|
|
11008
|
+
}>;
|
|
11009
|
+
name: z.ZodString;
|
|
11010
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11011
|
+
tags: z.ZodArray<z.ZodString>;
|
|
11012
|
+
ports: z.ZodArray<z.ZodObject<{
|
|
11013
|
+
id: z.ZodString;
|
|
11014
|
+
label: z.ZodString;
|
|
11015
|
+
targetProjectId: z.ZodString;
|
|
11016
|
+
}, z.core.$strip>>;
|
|
11017
|
+
vaultIds: z.ZodArray<z.ZodString>;
|
|
11018
|
+
}, z.core.$strip>>;
|
|
11019
|
+
pods: z.ZodArray<z.ZodObject<{
|
|
11020
|
+
id: z.ZodString;
|
|
11021
|
+
name: z.ZodString;
|
|
11022
|
+
isPrivate: z.ZodBoolean;
|
|
11023
|
+
}, z.core.$strip>>;
|
|
11024
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
11025
|
+
id: z.ZodString;
|
|
11026
|
+
podId: z.ZodString;
|
|
11027
|
+
name: z.ZodString;
|
|
11028
|
+
agents: z.ZodArray<z.ZodObject<{
|
|
11029
|
+
id: z.ZodString;
|
|
11030
|
+
name: z.ZodString;
|
|
11031
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11032
|
+
model: z.ZodOptional<z.ZodString>;
|
|
11033
|
+
}, z.core.$strip>>;
|
|
11034
|
+
skillsCount: z.ZodNumber;
|
|
11035
|
+
}, z.core.$strip>>;
|
|
11036
|
+
vaults: z.ZodArray<z.ZodObject<{
|
|
11037
|
+
id: z.ZodString;
|
|
11038
|
+
name: z.ZodString;
|
|
11039
|
+
podIds: z.ZodArray<z.ZodString>;
|
|
11040
|
+
credentials: z.ZodArray<z.ZodObject<{
|
|
11041
|
+
id: z.ZodString;
|
|
11042
|
+
label: z.ZodString;
|
|
11043
|
+
forSurfaceId: z.ZodOptional<z.ZodString>;
|
|
11044
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
11045
|
+
}, z.core.$strip>>;
|
|
11046
|
+
}, z.core.$strip>>;
|
|
11047
|
+
stores: z.ZodArray<z.ZodObject<{
|
|
11048
|
+
id: z.ZodString;
|
|
11049
|
+
kind: z.ZodEnum<{
|
|
11050
|
+
file: "file";
|
|
11051
|
+
memory: "memory";
|
|
11052
|
+
}>;
|
|
11053
|
+
name: z.ZodString;
|
|
11054
|
+
mounts: z.ZodArray<z.ZodObject<{
|
|
11055
|
+
projectId: z.ZodString;
|
|
11056
|
+
}, z.core.$strip>>;
|
|
11057
|
+
}, z.core.$strip>>;
|
|
11058
|
+
env: z.ZodNullable<z.ZodObject<{
|
|
11059
|
+
id: z.ZodString;
|
|
11060
|
+
}, z.core.$strip>>;
|
|
11061
|
+
edges: z.ZodArray<z.ZodObject<{
|
|
11062
|
+
id: z.ZodString;
|
|
11063
|
+
kind: z.ZodEnum<{
|
|
11064
|
+
route: "route";
|
|
11065
|
+
state: "state";
|
|
11066
|
+
cred: "cred";
|
|
11067
|
+
}>;
|
|
11068
|
+
sourceId: z.ZodString;
|
|
11069
|
+
sourcePortId: z.ZodOptional<z.ZodString>;
|
|
11070
|
+
targetId: z.ZodString;
|
|
11071
|
+
targetCredId: z.ZodOptional<z.ZodString>;
|
|
11072
|
+
}, z.core.$strip>>;
|
|
11073
|
+
}, z.core.$strip>;
|
|
10746
11074
|
export declare const zTriggerListQuery: z.ZodObject<{
|
|
10747
11075
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
10748
11076
|
user: "user";
|
|
@@ -11326,6 +11654,7 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11326
11654
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11327
11655
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11328
11656
|
github: "github";
|
|
11657
|
+
google_workspace: "google_workspace";
|
|
11329
11658
|
}>>;
|
|
11330
11659
|
label: z.ZodNullable<z.ZodString>;
|
|
11331
11660
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11347,6 +11676,9 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11347
11676
|
}, z.core.$strip>>>;
|
|
11348
11677
|
}, z.core.$strip>, z.ZodObject<{
|
|
11349
11678
|
type: z.ZodLiteral<"env">;
|
|
11679
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11680
|
+
type: z.ZodLiteral<"basic">;
|
|
11681
|
+
username: z.ZodString;
|
|
11350
11682
|
}, z.core.$strip>]>;
|
|
11351
11683
|
createdAt: z.ZodISODateTime;
|
|
11352
11684
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11376,15 +11708,25 @@ export declare const zCredentialCreateBody: z.ZodObject<{
|
|
|
11376
11708
|
scope: z.ZodOptional<z.ZodString>;
|
|
11377
11709
|
resource: z.ZodOptional<z.ZodString>;
|
|
11378
11710
|
}, z.core.$strip>>>;
|
|
11379
|
-
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11711
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
11380
11712
|
service: z.ZodLiteral<"github">;
|
|
11381
11713
|
id: z.ZodNumber;
|
|
11382
11714
|
login: z.ZodString;
|
|
11383
11715
|
name: z.ZodNullable<z.ZodString>;
|
|
11384
|
-
}, z.core.$strip
|
|
11716
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11717
|
+
service: z.ZodLiteral<"google_workspace">;
|
|
11718
|
+
sub: z.ZodString;
|
|
11719
|
+
email: z.ZodString;
|
|
11720
|
+
name: z.ZodNullable<z.ZodString>;
|
|
11721
|
+
hd: z.ZodNullable<z.ZodString>;
|
|
11722
|
+
}, z.core.$strip>]>>>;
|
|
11385
11723
|
}, z.core.$strip>, z.ZodObject<{
|
|
11386
11724
|
type: z.ZodLiteral<"env">;
|
|
11387
11725
|
value: z.ZodString;
|
|
11726
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11727
|
+
type: z.ZodLiteral<"basic">;
|
|
11728
|
+
username: z.ZodString;
|
|
11729
|
+
password: z.ZodString;
|
|
11388
11730
|
}, z.core.$strip>]>;
|
|
11389
11731
|
}, z.core.$strip>;
|
|
11390
11732
|
export declare const zCredentialCreatePath: z.ZodObject<{
|
|
@@ -11405,6 +11747,7 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
|
|
|
11405
11747
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11406
11748
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11407
11749
|
github: "github";
|
|
11750
|
+
google_workspace: "google_workspace";
|
|
11408
11751
|
}>>;
|
|
11409
11752
|
label: z.ZodNullable<z.ZodString>;
|
|
11410
11753
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11426,6 +11769,9 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
|
|
|
11426
11769
|
}, z.core.$strip>>>;
|
|
11427
11770
|
}, z.core.$strip>, z.ZodObject<{
|
|
11428
11771
|
type: z.ZodLiteral<"env">;
|
|
11772
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11773
|
+
type: z.ZodLiteral<"basic">;
|
|
11774
|
+
username: z.ZodString;
|
|
11429
11775
|
}, z.core.$strip>]>;
|
|
11430
11776
|
createdAt: z.ZodISODateTime;
|
|
11431
11777
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11450,6 +11796,7 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
|
|
|
11450
11796
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11451
11797
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11452
11798
|
github: "github";
|
|
11799
|
+
google_workspace: "google_workspace";
|
|
11453
11800
|
}>>;
|
|
11454
11801
|
label: z.ZodNullable<z.ZodString>;
|
|
11455
11802
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11471,6 +11818,9 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
|
|
|
11471
11818
|
}, z.core.$strip>>>;
|
|
11472
11819
|
}, z.core.$strip>, z.ZodObject<{
|
|
11473
11820
|
type: z.ZodLiteral<"env">;
|
|
11821
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11822
|
+
type: z.ZodLiteral<"basic">;
|
|
11823
|
+
username: z.ZodString;
|
|
11474
11824
|
}, z.core.$strip>]>;
|
|
11475
11825
|
createdAt: z.ZodISODateTime;
|
|
11476
11826
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11495,6 +11845,7 @@ export declare const zCredentialGetResponse: z.ZodObject<{
|
|
|
11495
11845
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11496
11846
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11497
11847
|
github: "github";
|
|
11848
|
+
google_workspace: "google_workspace";
|
|
11498
11849
|
}>>;
|
|
11499
11850
|
label: z.ZodNullable<z.ZodString>;
|
|
11500
11851
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11516,6 +11867,9 @@ export declare const zCredentialGetResponse: z.ZodObject<{
|
|
|
11516
11867
|
}, z.core.$strip>>>;
|
|
11517
11868
|
}, z.core.$strip>, z.ZodObject<{
|
|
11518
11869
|
type: z.ZodLiteral<"env">;
|
|
11870
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11871
|
+
type: z.ZodLiteral<"basic">;
|
|
11872
|
+
username: z.ZodString;
|
|
11519
11873
|
}, z.core.$strip>]>;
|
|
11520
11874
|
createdAt: z.ZodISODateTime;
|
|
11521
11875
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11543,15 +11897,25 @@ export declare const zCredentialUpdateBody: z.ZodObject<{
|
|
|
11543
11897
|
scope: z.ZodOptional<z.ZodString>;
|
|
11544
11898
|
resource: z.ZodOptional<z.ZodString>;
|
|
11545
11899
|
}, z.core.$strip>>>;
|
|
11546
|
-
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11900
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
11547
11901
|
service: z.ZodLiteral<"github">;
|
|
11548
11902
|
id: z.ZodNumber;
|
|
11549
11903
|
login: z.ZodString;
|
|
11550
11904
|
name: z.ZodNullable<z.ZodString>;
|
|
11551
|
-
}, z.core.$strip
|
|
11905
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11906
|
+
service: z.ZodLiteral<"google_workspace">;
|
|
11907
|
+
sub: z.ZodString;
|
|
11908
|
+
email: z.ZodString;
|
|
11909
|
+
name: z.ZodNullable<z.ZodString>;
|
|
11910
|
+
hd: z.ZodNullable<z.ZodString>;
|
|
11911
|
+
}, z.core.$strip>]>>>;
|
|
11552
11912
|
}, z.core.$strip>, z.ZodObject<{
|
|
11553
11913
|
type: z.ZodLiteral<"env">;
|
|
11554
11914
|
value: z.ZodString;
|
|
11915
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11916
|
+
type: z.ZodLiteral<"basic">;
|
|
11917
|
+
username: z.ZodString;
|
|
11918
|
+
password: z.ZodString;
|
|
11555
11919
|
}, z.core.$strip>]>>;
|
|
11556
11920
|
}, z.core.$strip>;
|
|
11557
11921
|
export declare const zCredentialUpdatePath: z.ZodObject<{
|
|
@@ -11573,6 +11937,7 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
|
|
|
11573
11937
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11574
11938
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11575
11939
|
github: "github";
|
|
11940
|
+
google_workspace: "google_workspace";
|
|
11576
11941
|
}>>;
|
|
11577
11942
|
label: z.ZodNullable<z.ZodString>;
|
|
11578
11943
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11594,6 +11959,9 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
|
|
|
11594
11959
|
}, z.core.$strip>>>;
|
|
11595
11960
|
}, z.core.$strip>, z.ZodObject<{
|
|
11596
11961
|
type: z.ZodLiteral<"env">;
|
|
11962
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11963
|
+
type: z.ZodLiteral<"basic">;
|
|
11964
|
+
username: z.ZodString;
|
|
11597
11965
|
}, z.core.$strip>]>;
|
|
11598
11966
|
createdAt: z.ZodISODateTime;
|
|
11599
11967
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11618,6 +11986,7 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
|
|
|
11618
11986
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11619
11987
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11620
11988
|
github: "github";
|
|
11989
|
+
google_workspace: "google_workspace";
|
|
11621
11990
|
}>>;
|
|
11622
11991
|
label: z.ZodNullable<z.ZodString>;
|
|
11623
11992
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11639,6 +12008,9 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
|
|
|
11639
12008
|
}, z.core.$strip>>>;
|
|
11640
12009
|
}, z.core.$strip>, z.ZodObject<{
|
|
11641
12010
|
type: z.ZodLiteral<"env">;
|
|
12011
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12012
|
+
type: z.ZodLiteral<"basic">;
|
|
12013
|
+
username: z.ZodString;
|
|
11642
12014
|
}, z.core.$strip>]>;
|
|
11643
12015
|
createdAt: z.ZodISODateTime;
|
|
11644
12016
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11965,6 +12337,11 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11965
12337
|
}, z.core.$strip>, z.ZodObject<{
|
|
11966
12338
|
type: z.ZodLiteral<"none">;
|
|
11967
12339
|
}, z.core.$strip>]>>;
|
|
12340
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12341
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
12342
|
+
name: z.ZodString;
|
|
12343
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12344
|
+
}, z.core.$strip>>;
|
|
11968
12345
|
orgId: z.ZodString;
|
|
11969
12346
|
userId: z.ZodNullable<z.ZodString>;
|
|
11970
12347
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -12045,6 +12422,11 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
12045
12422
|
}, z.core.$strip>, z.ZodObject<{
|
|
12046
12423
|
type: z.ZodLiteral<"none">;
|
|
12047
12424
|
}, z.core.$strip>]>>;
|
|
12425
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12426
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
12427
|
+
name: z.ZodString;
|
|
12428
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12429
|
+
}, z.core.$strip>>;
|
|
12048
12430
|
orgId: z.ZodString;
|
|
12049
12431
|
userId: z.ZodNullable<z.ZodString>;
|
|
12050
12432
|
publisherId: z.ZodNullable<z.ZodString>;
|