@renai-labs/sdk 0.1.7 → 0.1.9
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 +361 -10
- package/dist/generated/zod.gen.d.ts +497 -18
- package/dist/generated/zod.gen.js +196 -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;
|
|
@@ -2257,6 +2379,25 @@ export declare const zAgentVersion: z.ZodObject<{
|
|
|
2257
2379
|
deny: "deny";
|
|
2258
2380
|
ask: "ask";
|
|
2259
2381
|
}>]>;
|
|
2382
|
+
skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2383
|
+
skillId: z.ZodString;
|
|
2384
|
+
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2385
|
+
skill: z.ZodObject<{
|
|
2386
|
+
id: z.ZodString;
|
|
2387
|
+
slug: z.ZodString;
|
|
2388
|
+
name: z.ZodString;
|
|
2389
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
2390
|
+
}, z.core.$strip>;
|
|
2391
|
+
}, z.core.$strip>>>>;
|
|
2392
|
+
mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2393
|
+
mcpId: z.ZodString;
|
|
2394
|
+
mcp: z.ZodObject<{
|
|
2395
|
+
id: z.ZodString;
|
|
2396
|
+
slug: z.ZodString;
|
|
2397
|
+
name: z.ZodString;
|
|
2398
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
2399
|
+
}, z.core.$strip>;
|
|
2400
|
+
}, z.core.$strip>>>>;
|
|
2260
2401
|
}, z.core.$strip>;
|
|
2261
2402
|
export declare const zSearchResult: z.ZodObject<{
|
|
2262
2403
|
id: z.ZodString;
|
|
@@ -3248,6 +3389,25 @@ export declare const zAgentVersionListResponse: z.ZodArray<z.ZodObject<{
|
|
|
3248
3389
|
deny: "deny";
|
|
3249
3390
|
ask: "ask";
|
|
3250
3391
|
}>]>;
|
|
3392
|
+
skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3393
|
+
skillId: z.ZodString;
|
|
3394
|
+
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3395
|
+
skill: z.ZodObject<{
|
|
3396
|
+
id: z.ZodString;
|
|
3397
|
+
slug: z.ZodString;
|
|
3398
|
+
name: z.ZodString;
|
|
3399
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
3400
|
+
}, z.core.$strip>;
|
|
3401
|
+
}, z.core.$strip>>>>;
|
|
3402
|
+
mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3403
|
+
mcpId: z.ZodString;
|
|
3404
|
+
mcp: z.ZodObject<{
|
|
3405
|
+
id: z.ZodString;
|
|
3406
|
+
slug: z.ZodString;
|
|
3407
|
+
name: z.ZodString;
|
|
3408
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
3409
|
+
}, z.core.$strip>;
|
|
3410
|
+
}, z.core.$strip>>>>;
|
|
3251
3411
|
}, z.core.$strip>>;
|
|
3252
3412
|
export declare const zAgentVersionCreateBody: z.ZodObject<{
|
|
3253
3413
|
version: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodEnum<{
|
|
@@ -3543,6 +3703,25 @@ export declare const zAgentVersionCreateResponse: z.ZodObject<{
|
|
|
3543
3703
|
deny: "deny";
|
|
3544
3704
|
ask: "ask";
|
|
3545
3705
|
}>]>;
|
|
3706
|
+
skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3707
|
+
skillId: z.ZodString;
|
|
3708
|
+
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3709
|
+
skill: z.ZodObject<{
|
|
3710
|
+
id: z.ZodString;
|
|
3711
|
+
slug: z.ZodString;
|
|
3712
|
+
name: z.ZodString;
|
|
3713
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
3714
|
+
}, z.core.$strip>;
|
|
3715
|
+
}, z.core.$strip>>>>;
|
|
3716
|
+
mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3717
|
+
mcpId: z.ZodString;
|
|
3718
|
+
mcp: z.ZodObject<{
|
|
3719
|
+
id: z.ZodString;
|
|
3720
|
+
slug: z.ZodString;
|
|
3721
|
+
name: z.ZodString;
|
|
3722
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
3723
|
+
}, z.core.$strip>;
|
|
3724
|
+
}, z.core.$strip>>>>;
|
|
3546
3725
|
}, z.core.$strip>;
|
|
3547
3726
|
export declare const zAgentVersionGetPath: z.ZodObject<{
|
|
3548
3727
|
id: z.ZodString;
|
|
@@ -3694,6 +3873,25 @@ export declare const zAgentVersionGetResponse: z.ZodObject<{
|
|
|
3694
3873
|
deny: "deny";
|
|
3695
3874
|
ask: "ask";
|
|
3696
3875
|
}>]>;
|
|
3876
|
+
skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3877
|
+
skillId: z.ZodString;
|
|
3878
|
+
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3879
|
+
skill: z.ZodObject<{
|
|
3880
|
+
id: z.ZodString;
|
|
3881
|
+
slug: z.ZodString;
|
|
3882
|
+
name: z.ZodString;
|
|
3883
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
3884
|
+
}, z.core.$strip>;
|
|
3885
|
+
}, z.core.$strip>>>>;
|
|
3886
|
+
mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3887
|
+
mcpId: z.ZodString;
|
|
3888
|
+
mcp: z.ZodObject<{
|
|
3889
|
+
id: z.ZodString;
|
|
3890
|
+
slug: z.ZodString;
|
|
3891
|
+
name: z.ZodString;
|
|
3892
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
3893
|
+
}, z.core.$strip>;
|
|
3894
|
+
}, z.core.$strip>>>>;
|
|
3697
3895
|
}, z.core.$strip>;
|
|
3698
3896
|
export declare const zAgentVersionArchivePath: z.ZodObject<{
|
|
3699
3897
|
id: z.ZodString;
|
|
@@ -3845,6 +4043,25 @@ export declare const zAgentVersionArchiveResponse: z.ZodObject<{
|
|
|
3845
4043
|
deny: "deny";
|
|
3846
4044
|
ask: "ask";
|
|
3847
4045
|
}>]>;
|
|
4046
|
+
skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4047
|
+
skillId: z.ZodString;
|
|
4048
|
+
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4049
|
+
skill: z.ZodObject<{
|
|
4050
|
+
id: z.ZodString;
|
|
4051
|
+
slug: z.ZodString;
|
|
4052
|
+
name: z.ZodString;
|
|
4053
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
4054
|
+
}, z.core.$strip>;
|
|
4055
|
+
}, z.core.$strip>>>>;
|
|
4056
|
+
mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4057
|
+
mcpId: z.ZodString;
|
|
4058
|
+
mcp: z.ZodObject<{
|
|
4059
|
+
id: z.ZodString;
|
|
4060
|
+
slug: z.ZodString;
|
|
4061
|
+
name: z.ZodString;
|
|
4062
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
4063
|
+
}, z.core.$strip>;
|
|
4064
|
+
}, z.core.$strip>>>>;
|
|
3848
4065
|
}, z.core.$strip>;
|
|
3849
4066
|
export declare const zBlueprintListQuery: z.ZodObject<{
|
|
3850
4067
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4279,8 +4496,8 @@ export declare const zBlueprintInstallResponse: z.ZodObject<{
|
|
|
4279
4496
|
skipped: z.ZodArray<z.ZodObject<{
|
|
4280
4497
|
kind: z.ZodEnum<{
|
|
4281
4498
|
skill: "skill";
|
|
4282
|
-
agent: "agent";
|
|
4283
4499
|
mcp: "mcp";
|
|
4500
|
+
agent: "agent";
|
|
4284
4501
|
}>;
|
|
4285
4502
|
sourceId: z.ZodString;
|
|
4286
4503
|
reason: z.ZodString;
|
|
@@ -6210,6 +6427,75 @@ export declare const zGithubReposQuery: z.ZodObject<{
|
|
|
6210
6427
|
export declare const zGithubReposResponse: z.ZodArray<z.ZodObject<{
|
|
6211
6428
|
fullName: z.ZodString;
|
|
6212
6429
|
}, z.core.$strip>>;
|
|
6430
|
+
export declare const zGoogleStatusQuery: z.ZodObject<{
|
|
6431
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6432
|
+
user: "user";
|
|
6433
|
+
}>>;
|
|
6434
|
+
}, z.core.$strip>;
|
|
6435
|
+
/**
|
|
6436
|
+
* Google Workspace configuration status
|
|
6437
|
+
*/
|
|
6438
|
+
export declare const zGoogleStatusResponse: z.ZodObject<{
|
|
6439
|
+
isConfigured: z.ZodBoolean;
|
|
6440
|
+
clientId: z.ZodNullable<z.ZodString>;
|
|
6441
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
6442
|
+
redirectUri: z.ZodURL;
|
|
6443
|
+
}, z.core.$strip>;
|
|
6444
|
+
export declare const zGoogleConfigDeleteQuery: z.ZodObject<{
|
|
6445
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6446
|
+
user: "user";
|
|
6447
|
+
}>>;
|
|
6448
|
+
}, z.core.$strip>;
|
|
6449
|
+
/**
|
|
6450
|
+
* Removed
|
|
6451
|
+
*/
|
|
6452
|
+
export declare const zGoogleConfigDeleteResponse: z.ZodVoid;
|
|
6453
|
+
export declare const zGoogleConfigSaveBody: z.ZodObject<{
|
|
6454
|
+
clientId: z.ZodString;
|
|
6455
|
+
clientSecret: z.ZodString;
|
|
6456
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6457
|
+
}, z.core.$strip>;
|
|
6458
|
+
export declare const zGoogleConfigSaveQuery: z.ZodObject<{
|
|
6459
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6460
|
+
user: "user";
|
|
6461
|
+
}>>;
|
|
6462
|
+
}, z.core.$strip>;
|
|
6463
|
+
/**
|
|
6464
|
+
* Updated Google Workspace configuration status
|
|
6465
|
+
*/
|
|
6466
|
+
export declare const zGoogleConfigSaveResponse: z.ZodObject<{
|
|
6467
|
+
isConfigured: z.ZodBoolean;
|
|
6468
|
+
clientId: z.ZodNullable<z.ZodString>;
|
|
6469
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
6470
|
+
redirectUri: z.ZodURL;
|
|
6471
|
+
}, z.core.$strip>;
|
|
6472
|
+
export declare const zGoogleDisconnectPath: z.ZodObject<{
|
|
6473
|
+
vaultId: z.ZodString;
|
|
6474
|
+
}, z.core.$strip>;
|
|
6475
|
+
export declare const zGoogleDisconnectQuery: z.ZodObject<{
|
|
6476
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6477
|
+
user: "user";
|
|
6478
|
+
}>>;
|
|
6479
|
+
}, z.core.$strip>;
|
|
6480
|
+
/**
|
|
6481
|
+
* Removed
|
|
6482
|
+
*/
|
|
6483
|
+
export declare const zGoogleDisconnectResponse: z.ZodVoid;
|
|
6484
|
+
export declare const zGoogleConnectPath: z.ZodObject<{
|
|
6485
|
+
vaultId: z.ZodString;
|
|
6486
|
+
}, z.core.$strip>;
|
|
6487
|
+
export declare const zGoogleConnectQuery: z.ZodObject<{
|
|
6488
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
6489
|
+
user: "user";
|
|
6490
|
+
}>>;
|
|
6491
|
+
returnTo: z.ZodOptional<z.ZodString>;
|
|
6492
|
+
}, z.core.$strip>;
|
|
6493
|
+
/**
|
|
6494
|
+
* Authorization URL for the user to visit
|
|
6495
|
+
*/
|
|
6496
|
+
export declare const zGoogleConnectResponse: z.ZodObject<{
|
|
6497
|
+
url: z.ZodURL;
|
|
6498
|
+
}, z.core.$strip>;
|
|
6213
6499
|
export declare const zMcpListQuery: z.ZodObject<{
|
|
6214
6500
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
6215
6501
|
user: "user";
|
|
@@ -6276,6 +6562,11 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
6276
6562
|
}, z.core.$strip>, z.ZodObject<{
|
|
6277
6563
|
type: z.ZodLiteral<"none">;
|
|
6278
6564
|
}, z.core.$strip>]>>;
|
|
6565
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6566
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6567
|
+
name: z.ZodString;
|
|
6568
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6569
|
+
}, z.core.$strip>>;
|
|
6279
6570
|
orgId: z.ZodString;
|
|
6280
6571
|
userId: z.ZodNullable<z.ZodString>;
|
|
6281
6572
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6301,9 +6592,10 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
6301
6592
|
}, z.core.$strip>>;
|
|
6302
6593
|
export declare const zMcpCreateBody: z.ZodObject<{
|
|
6303
6594
|
name: z.ZodString;
|
|
6595
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
6304
6596
|
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6305
6597
|
icon: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6306
|
-
mcpServerUrl: z.ZodURL
|
|
6598
|
+
mcpServerUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
|
|
6307
6599
|
docUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
|
|
6308
6600
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
6309
6601
|
remote: "remote";
|
|
@@ -6316,6 +6608,11 @@ export declare const zMcpCreateBody: z.ZodObject<{
|
|
|
6316
6608
|
}>>>;
|
|
6317
6609
|
command: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6318
6610
|
args: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
6611
|
+
env: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6612
|
+
requiredCredentials: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6613
|
+
name: z.ZodString;
|
|
6614
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6615
|
+
}, z.core.$strip>>>>;
|
|
6319
6616
|
version: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6320
6617
|
repository: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6321
6618
|
url: z.ZodOptional<z.ZodURL>;
|
|
@@ -6409,6 +6706,11 @@ export declare const zMcpCreateResponse: z.ZodObject<{
|
|
|
6409
6706
|
}, z.core.$strip>, z.ZodObject<{
|
|
6410
6707
|
type: z.ZodLiteral<"none">;
|
|
6411
6708
|
}, z.core.$strip>]>>;
|
|
6709
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6710
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6711
|
+
name: z.ZodString;
|
|
6712
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6713
|
+
}, z.core.$strip>>;
|
|
6412
6714
|
orgId: z.ZodString;
|
|
6413
6715
|
userId: z.ZodNullable<z.ZodString>;
|
|
6414
6716
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6524,6 +6826,11 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
|
|
|
6524
6826
|
}, z.core.$strip>, z.ZodObject<{
|
|
6525
6827
|
type: z.ZodLiteral<"none">;
|
|
6526
6828
|
}, z.core.$strip>]>>;
|
|
6829
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6830
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6831
|
+
name: z.ZodString;
|
|
6832
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6833
|
+
}, z.core.$strip>>;
|
|
6527
6834
|
orgId: z.ZodString;
|
|
6528
6835
|
userId: z.ZodNullable<z.ZodString>;
|
|
6529
6836
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6609,6 +6916,11 @@ export declare const zMcpGetResponse: z.ZodObject<{
|
|
|
6609
6916
|
}, z.core.$strip>, z.ZodObject<{
|
|
6610
6917
|
type: z.ZodLiteral<"none">;
|
|
6611
6918
|
}, z.core.$strip>]>>;
|
|
6919
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6920
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
6921
|
+
name: z.ZodString;
|
|
6922
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6923
|
+
}, z.core.$strip>>;
|
|
6612
6924
|
orgId: z.ZodString;
|
|
6613
6925
|
userId: z.ZodNullable<z.ZodString>;
|
|
6614
6926
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6649,6 +6961,11 @@ export declare const zMcpUpdateBody: z.ZodObject<{
|
|
|
6649
6961
|
}>>;
|
|
6650
6962
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6651
6963
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6964
|
+
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6965
|
+
requiredCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6966
|
+
name: z.ZodString;
|
|
6967
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6968
|
+
}, z.core.$strip>>>;
|
|
6652
6969
|
version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6653
6970
|
repository: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6654
6971
|
url: z.ZodOptional<z.ZodURL>;
|
|
@@ -6754,6 +7071,11 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
|
|
|
6754
7071
|
}, z.core.$strip>, z.ZodObject<{
|
|
6755
7072
|
type: z.ZodLiteral<"none">;
|
|
6756
7073
|
}, z.core.$strip>]>>;
|
|
7074
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7075
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7076
|
+
name: z.ZodString;
|
|
7077
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7078
|
+
}, z.core.$strip>>;
|
|
6757
7079
|
orgId: z.ZodString;
|
|
6758
7080
|
userId: z.ZodNullable<z.ZodString>;
|
|
6759
7081
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6839,6 +7161,11 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
|
|
|
6839
7161
|
}, z.core.$strip>, z.ZodObject<{
|
|
6840
7162
|
type: z.ZodLiteral<"none">;
|
|
6841
7163
|
}, z.core.$strip>]>>;
|
|
7164
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7165
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7166
|
+
name: z.ZodString;
|
|
7167
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7168
|
+
}, z.core.$strip>>;
|
|
6842
7169
|
orgId: z.ZodString;
|
|
6843
7170
|
userId: z.ZodNullable<z.ZodString>;
|
|
6844
7171
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -6924,6 +7251,11 @@ export declare const zMcpPublishResponse: z.ZodObject<{
|
|
|
6924
7251
|
}, z.core.$strip>, z.ZodObject<{
|
|
6925
7252
|
type: z.ZodLiteral<"none">;
|
|
6926
7253
|
}, z.core.$strip>]>>;
|
|
7254
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7255
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7256
|
+
name: z.ZodString;
|
|
7257
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7258
|
+
}, z.core.$strip>>;
|
|
6927
7259
|
orgId: z.ZodString;
|
|
6928
7260
|
userId: z.ZodNullable<z.ZodString>;
|
|
6929
7261
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -7012,6 +7344,11 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
|
|
|
7012
7344
|
}, z.core.$strip>, z.ZodObject<{
|
|
7013
7345
|
type: z.ZodLiteral<"none">;
|
|
7014
7346
|
}, z.core.$strip>]>>;
|
|
7347
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7348
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7349
|
+
name: z.ZodString;
|
|
7350
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7351
|
+
}, z.core.$strip>>;
|
|
7015
7352
|
orgId: z.ZodString;
|
|
7016
7353
|
userId: z.ZodNullable<z.ZodString>;
|
|
7017
7354
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -7097,6 +7434,11 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
|
|
|
7097
7434
|
}, z.core.$strip>, z.ZodObject<{
|
|
7098
7435
|
type: z.ZodLiteral<"none">;
|
|
7099
7436
|
}, z.core.$strip>]>>;
|
|
7437
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7438
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
7439
|
+
name: z.ZodString;
|
|
7440
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7441
|
+
}, z.core.$strip>>;
|
|
7100
7442
|
orgId: z.ZodString;
|
|
7101
7443
|
userId: z.ZodNullable<z.ZodString>;
|
|
7102
7444
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -9921,8 +10263,12 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
|
|
|
9921
10263
|
description: z.ZodOptional<z.ZodString>;
|
|
9922
10264
|
satisfied: z.ZodBoolean;
|
|
9923
10265
|
neededBy: z.ZodArray<z.ZodObject<{
|
|
9924
|
-
|
|
9925
|
-
|
|
10266
|
+
kind: z.ZodEnum<{
|
|
10267
|
+
skill: "skill";
|
|
10268
|
+
mcp: "mcp";
|
|
10269
|
+
}>;
|
|
10270
|
+
id: z.ZodString;
|
|
10271
|
+
name: z.ZodString;
|
|
9926
10272
|
}, z.core.$strip>>;
|
|
9927
10273
|
}, z.core.$strip>>;
|
|
9928
10274
|
}, z.core.$strip>;
|
|
@@ -10085,6 +10431,7 @@ export declare const zSkillListResponse: z.ZodArray<z.ZodObject<{
|
|
|
10085
10431
|
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
10086
10432
|
}, z.core.$strip>>;
|
|
10087
10433
|
export declare const zSkillCreateBody: z.ZodObject<{
|
|
10434
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
10088
10435
|
name: z.ZodString;
|
|
10089
10436
|
description: z.ZodOptional<z.ZodString>;
|
|
10090
10437
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -10743,6 +11090,84 @@ export declare const zSkillVersionArchiveResponse: z.ZodObject<{
|
|
|
10743
11090
|
}, z.core.$strip>>;
|
|
10744
11091
|
releaseNotes: z.ZodNullable<z.ZodString>;
|
|
10745
11092
|
}, z.core.$strip>;
|
|
11093
|
+
/**
|
|
11094
|
+
* Agent-stack topology
|
|
11095
|
+
*/
|
|
11096
|
+
export declare const zTopologyGetResponse: z.ZodObject<{
|
|
11097
|
+
surfaces: z.ZodArray<z.ZodObject<{
|
|
11098
|
+
id: z.ZodString;
|
|
11099
|
+
kind: z.ZodEnum<{
|
|
11100
|
+
github: "github";
|
|
11101
|
+
mcp: "mcp";
|
|
11102
|
+
cron: "cron";
|
|
11103
|
+
webhook: "webhook";
|
|
11104
|
+
slack: "slack";
|
|
11105
|
+
}>;
|
|
11106
|
+
name: z.ZodString;
|
|
11107
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11108
|
+
tags: z.ZodArray<z.ZodString>;
|
|
11109
|
+
ports: z.ZodArray<z.ZodObject<{
|
|
11110
|
+
id: z.ZodString;
|
|
11111
|
+
label: z.ZodString;
|
|
11112
|
+
targetProjectId: z.ZodString;
|
|
11113
|
+
}, z.core.$strip>>;
|
|
11114
|
+
vaultIds: z.ZodArray<z.ZodString>;
|
|
11115
|
+
}, z.core.$strip>>;
|
|
11116
|
+
pods: z.ZodArray<z.ZodObject<{
|
|
11117
|
+
id: z.ZodString;
|
|
11118
|
+
name: z.ZodString;
|
|
11119
|
+
isPrivate: z.ZodBoolean;
|
|
11120
|
+
}, z.core.$strip>>;
|
|
11121
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
11122
|
+
id: z.ZodString;
|
|
11123
|
+
podId: z.ZodString;
|
|
11124
|
+
name: z.ZodString;
|
|
11125
|
+
agents: z.ZodArray<z.ZodObject<{
|
|
11126
|
+
id: z.ZodString;
|
|
11127
|
+
name: z.ZodString;
|
|
11128
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11129
|
+
model: z.ZodOptional<z.ZodString>;
|
|
11130
|
+
}, z.core.$strip>>;
|
|
11131
|
+
skillsCount: z.ZodNumber;
|
|
11132
|
+
}, z.core.$strip>>;
|
|
11133
|
+
vaults: z.ZodArray<z.ZodObject<{
|
|
11134
|
+
id: z.ZodString;
|
|
11135
|
+
name: z.ZodString;
|
|
11136
|
+
podIds: z.ZodArray<z.ZodString>;
|
|
11137
|
+
credentials: z.ZodArray<z.ZodObject<{
|
|
11138
|
+
id: z.ZodString;
|
|
11139
|
+
label: z.ZodString;
|
|
11140
|
+
forSurfaceId: z.ZodOptional<z.ZodString>;
|
|
11141
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
11142
|
+
}, z.core.$strip>>;
|
|
11143
|
+
}, z.core.$strip>>;
|
|
11144
|
+
stores: z.ZodArray<z.ZodObject<{
|
|
11145
|
+
id: z.ZodString;
|
|
11146
|
+
kind: z.ZodEnum<{
|
|
11147
|
+
file: "file";
|
|
11148
|
+
memory: "memory";
|
|
11149
|
+
}>;
|
|
11150
|
+
name: z.ZodString;
|
|
11151
|
+
mounts: z.ZodArray<z.ZodObject<{
|
|
11152
|
+
projectId: z.ZodString;
|
|
11153
|
+
}, z.core.$strip>>;
|
|
11154
|
+
}, z.core.$strip>>;
|
|
11155
|
+
env: z.ZodNullable<z.ZodObject<{
|
|
11156
|
+
id: z.ZodString;
|
|
11157
|
+
}, z.core.$strip>>;
|
|
11158
|
+
edges: z.ZodArray<z.ZodObject<{
|
|
11159
|
+
id: z.ZodString;
|
|
11160
|
+
kind: z.ZodEnum<{
|
|
11161
|
+
route: "route";
|
|
11162
|
+
state: "state";
|
|
11163
|
+
cred: "cred";
|
|
11164
|
+
}>;
|
|
11165
|
+
sourceId: z.ZodString;
|
|
11166
|
+
sourcePortId: z.ZodOptional<z.ZodString>;
|
|
11167
|
+
targetId: z.ZodString;
|
|
11168
|
+
targetCredId: z.ZodOptional<z.ZodString>;
|
|
11169
|
+
}, z.core.$strip>>;
|
|
11170
|
+
}, z.core.$strip>;
|
|
10746
11171
|
export declare const zTriggerListQuery: z.ZodObject<{
|
|
10747
11172
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
10748
11173
|
user: "user";
|
|
@@ -11326,6 +11751,7 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11326
11751
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11327
11752
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11328
11753
|
github: "github";
|
|
11754
|
+
google_workspace: "google_workspace";
|
|
11329
11755
|
}>>;
|
|
11330
11756
|
label: z.ZodNullable<z.ZodString>;
|
|
11331
11757
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11347,6 +11773,9 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11347
11773
|
}, z.core.$strip>>>;
|
|
11348
11774
|
}, z.core.$strip>, z.ZodObject<{
|
|
11349
11775
|
type: z.ZodLiteral<"env">;
|
|
11776
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11777
|
+
type: z.ZodLiteral<"basic">;
|
|
11778
|
+
username: z.ZodString;
|
|
11350
11779
|
}, z.core.$strip>]>;
|
|
11351
11780
|
createdAt: z.ZodISODateTime;
|
|
11352
11781
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11376,15 +11805,25 @@ export declare const zCredentialCreateBody: z.ZodObject<{
|
|
|
11376
11805
|
scope: z.ZodOptional<z.ZodString>;
|
|
11377
11806
|
resource: z.ZodOptional<z.ZodString>;
|
|
11378
11807
|
}, z.core.$strip>>>;
|
|
11379
|
-
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11808
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
11380
11809
|
service: z.ZodLiteral<"github">;
|
|
11381
11810
|
id: z.ZodNumber;
|
|
11382
11811
|
login: z.ZodString;
|
|
11383
11812
|
name: z.ZodNullable<z.ZodString>;
|
|
11384
|
-
}, z.core.$strip
|
|
11813
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11814
|
+
service: z.ZodLiteral<"google_workspace">;
|
|
11815
|
+
sub: z.ZodString;
|
|
11816
|
+
email: z.ZodString;
|
|
11817
|
+
name: z.ZodNullable<z.ZodString>;
|
|
11818
|
+
hd: z.ZodNullable<z.ZodString>;
|
|
11819
|
+
}, z.core.$strip>]>>>;
|
|
11385
11820
|
}, z.core.$strip>, z.ZodObject<{
|
|
11386
11821
|
type: z.ZodLiteral<"env">;
|
|
11387
11822
|
value: z.ZodString;
|
|
11823
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11824
|
+
type: z.ZodLiteral<"basic">;
|
|
11825
|
+
username: z.ZodString;
|
|
11826
|
+
password: z.ZodString;
|
|
11388
11827
|
}, z.core.$strip>]>;
|
|
11389
11828
|
}, z.core.$strip>;
|
|
11390
11829
|
export declare const zCredentialCreatePath: z.ZodObject<{
|
|
@@ -11405,6 +11844,7 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
|
|
|
11405
11844
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11406
11845
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11407
11846
|
github: "github";
|
|
11847
|
+
google_workspace: "google_workspace";
|
|
11408
11848
|
}>>;
|
|
11409
11849
|
label: z.ZodNullable<z.ZodString>;
|
|
11410
11850
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11426,6 +11866,9 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
|
|
|
11426
11866
|
}, z.core.$strip>>>;
|
|
11427
11867
|
}, z.core.$strip>, z.ZodObject<{
|
|
11428
11868
|
type: z.ZodLiteral<"env">;
|
|
11869
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11870
|
+
type: z.ZodLiteral<"basic">;
|
|
11871
|
+
username: z.ZodString;
|
|
11429
11872
|
}, z.core.$strip>]>;
|
|
11430
11873
|
createdAt: z.ZodISODateTime;
|
|
11431
11874
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11450,6 +11893,7 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
|
|
|
11450
11893
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11451
11894
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11452
11895
|
github: "github";
|
|
11896
|
+
google_workspace: "google_workspace";
|
|
11453
11897
|
}>>;
|
|
11454
11898
|
label: z.ZodNullable<z.ZodString>;
|
|
11455
11899
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11471,6 +11915,9 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
|
|
|
11471
11915
|
}, z.core.$strip>>>;
|
|
11472
11916
|
}, z.core.$strip>, z.ZodObject<{
|
|
11473
11917
|
type: z.ZodLiteral<"env">;
|
|
11918
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11919
|
+
type: z.ZodLiteral<"basic">;
|
|
11920
|
+
username: z.ZodString;
|
|
11474
11921
|
}, z.core.$strip>]>;
|
|
11475
11922
|
createdAt: z.ZodISODateTime;
|
|
11476
11923
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11495,6 +11942,7 @@ export declare const zCredentialGetResponse: z.ZodObject<{
|
|
|
11495
11942
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11496
11943
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11497
11944
|
github: "github";
|
|
11945
|
+
google_workspace: "google_workspace";
|
|
11498
11946
|
}>>;
|
|
11499
11947
|
label: z.ZodNullable<z.ZodString>;
|
|
11500
11948
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11516,6 +11964,9 @@ export declare const zCredentialGetResponse: z.ZodObject<{
|
|
|
11516
11964
|
}, z.core.$strip>>>;
|
|
11517
11965
|
}, z.core.$strip>, z.ZodObject<{
|
|
11518
11966
|
type: z.ZodLiteral<"env">;
|
|
11967
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11968
|
+
type: z.ZodLiteral<"basic">;
|
|
11969
|
+
username: z.ZodString;
|
|
11519
11970
|
}, z.core.$strip>]>;
|
|
11520
11971
|
createdAt: z.ZodISODateTime;
|
|
11521
11972
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11543,15 +11994,25 @@ export declare const zCredentialUpdateBody: z.ZodObject<{
|
|
|
11543
11994
|
scope: z.ZodOptional<z.ZodString>;
|
|
11544
11995
|
resource: z.ZodOptional<z.ZodString>;
|
|
11545
11996
|
}, z.core.$strip>>>;
|
|
11546
|
-
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11997
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
11547
11998
|
service: z.ZodLiteral<"github">;
|
|
11548
11999
|
id: z.ZodNumber;
|
|
11549
12000
|
login: z.ZodString;
|
|
11550
12001
|
name: z.ZodNullable<z.ZodString>;
|
|
11551
|
-
}, z.core.$strip
|
|
12002
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12003
|
+
service: z.ZodLiteral<"google_workspace">;
|
|
12004
|
+
sub: z.ZodString;
|
|
12005
|
+
email: z.ZodString;
|
|
12006
|
+
name: z.ZodNullable<z.ZodString>;
|
|
12007
|
+
hd: z.ZodNullable<z.ZodString>;
|
|
12008
|
+
}, z.core.$strip>]>>>;
|
|
11552
12009
|
}, z.core.$strip>, z.ZodObject<{
|
|
11553
12010
|
type: z.ZodLiteral<"env">;
|
|
11554
12011
|
value: z.ZodString;
|
|
12012
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12013
|
+
type: z.ZodLiteral<"basic">;
|
|
12014
|
+
username: z.ZodString;
|
|
12015
|
+
password: z.ZodString;
|
|
11555
12016
|
}, z.core.$strip>]>>;
|
|
11556
12017
|
}, z.core.$strip>;
|
|
11557
12018
|
export declare const zCredentialUpdatePath: z.ZodObject<{
|
|
@@ -11573,6 +12034,7 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
|
|
|
11573
12034
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11574
12035
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11575
12036
|
github: "github";
|
|
12037
|
+
google_workspace: "google_workspace";
|
|
11576
12038
|
}>>;
|
|
11577
12039
|
label: z.ZodNullable<z.ZodString>;
|
|
11578
12040
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11594,6 +12056,9 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
|
|
|
11594
12056
|
}, z.core.$strip>>>;
|
|
11595
12057
|
}, z.core.$strip>, z.ZodObject<{
|
|
11596
12058
|
type: z.ZodLiteral<"env">;
|
|
12059
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12060
|
+
type: z.ZodLiteral<"basic">;
|
|
12061
|
+
username: z.ZodString;
|
|
11597
12062
|
}, z.core.$strip>]>;
|
|
11598
12063
|
createdAt: z.ZodISODateTime;
|
|
11599
12064
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11618,6 +12083,7 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
|
|
|
11618
12083
|
mcpId: z.ZodNullable<z.ZodString>;
|
|
11619
12084
|
provider: z.ZodNullable<z.ZodEnum<{
|
|
11620
12085
|
github: "github";
|
|
12086
|
+
google_workspace: "google_workspace";
|
|
11621
12087
|
}>>;
|
|
11622
12088
|
label: z.ZodNullable<z.ZodString>;
|
|
11623
12089
|
keyPreview: z.ZodNullable<z.ZodString>;
|
|
@@ -11639,6 +12105,9 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
|
|
|
11639
12105
|
}, z.core.$strip>>>;
|
|
11640
12106
|
}, z.core.$strip>, z.ZodObject<{
|
|
11641
12107
|
type: z.ZodLiteral<"env">;
|
|
12108
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12109
|
+
type: z.ZodLiteral<"basic">;
|
|
12110
|
+
username: z.ZodString;
|
|
11642
12111
|
}, z.core.$strip>]>;
|
|
11643
12112
|
createdAt: z.ZodISODateTime;
|
|
11644
12113
|
updatedAt: z.ZodISODateTime;
|
|
@@ -11965,6 +12434,11 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11965
12434
|
}, z.core.$strip>, z.ZodObject<{
|
|
11966
12435
|
type: z.ZodLiteral<"none">;
|
|
11967
12436
|
}, z.core.$strip>]>>;
|
|
12437
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12438
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
12439
|
+
name: z.ZodString;
|
|
12440
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12441
|
+
}, z.core.$strip>>;
|
|
11968
12442
|
orgId: z.ZodString;
|
|
11969
12443
|
userId: z.ZodNullable<z.ZodString>;
|
|
11970
12444
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
@@ -12045,6 +12519,11 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
12045
12519
|
}, z.core.$strip>, z.ZodObject<{
|
|
12046
12520
|
type: z.ZodLiteral<"none">;
|
|
12047
12521
|
}, z.core.$strip>]>>;
|
|
12522
|
+
env: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12523
|
+
requiredCredentials: z.ZodArray<z.ZodObject<{
|
|
12524
|
+
name: z.ZodString;
|
|
12525
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12526
|
+
}, z.core.$strip>>;
|
|
12048
12527
|
orgId: z.ZodString;
|
|
12049
12528
|
userId: z.ZodNullable<z.ZodString>;
|
|
12050
12529
|
publisherId: z.ZodNullable<z.ZodString>;
|