@renai-labs/sdk 0.1.6 → 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.
@@ -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>;
@@ -690,6 +694,8 @@ export declare const zAgentLatestVersion: z.ZodObject<{
690
694
  agentId: z.ZodString;
691
695
  version: z.ZodString;
692
696
  description: z.ZodNullable<z.ZodString>;
697
+ prompt: z.ZodNullable<z.ZodString>;
698
+ model: z.ZodNullable<z.ZodString>;
693
699
  skills: z.ZodArray<z.ZodObject<{
694
700
  skillId: z.ZodString;
695
701
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -740,15 +746,25 @@ export declare const zCredentialAuth: z.ZodUnion<readonly [z.ZodObject<{
740
746
  scope: z.ZodOptional<z.ZodString>;
741
747
  resource: z.ZodOptional<z.ZodString>;
742
748
  }, z.core.$strip>>>;
743
- profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
749
+ profile: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
744
750
  service: z.ZodLiteral<"github">;
745
751
  id: z.ZodNumber;
746
752
  login: z.ZodString;
747
753
  name: z.ZodNullable<z.ZodString>;
748
- }, 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>]>>>;
749
761
  }, z.core.$strip>, z.ZodObject<{
750
762
  type: z.ZodLiteral<"env">;
751
763
  value: z.ZodString;
764
+ }, z.core.$strip>, z.ZodObject<{
765
+ type: z.ZodLiteral<"basic">;
766
+ username: z.ZodString;
767
+ password: z.ZodString;
752
768
  }, z.core.$strip>]>;
753
769
  export declare const zCredentialAuthPublic: z.ZodUnion<readonly [z.ZodObject<{
754
770
  type: z.ZodLiteral<"bearer">;
@@ -768,6 +784,9 @@ export declare const zCredentialAuthPublic: z.ZodUnion<readonly [z.ZodObject<{
768
784
  }, z.core.$strip>>>;
769
785
  }, z.core.$strip>, z.ZodObject<{
770
786
  type: z.ZodLiteral<"env">;
787
+ }, z.core.$strip>, z.ZodObject<{
788
+ type: z.ZodLiteral<"basic">;
789
+ username: z.ZodString;
771
790
  }, z.core.$strip>]>;
772
791
  export declare const zCredential: z.ZodObject<{
773
792
  id: z.ZodString;
@@ -776,6 +795,7 @@ export declare const zCredential: z.ZodObject<{
776
795
  mcpId: z.ZodNullable<z.ZodString>;
777
796
  provider: z.ZodNullable<z.ZodEnum<{
778
797
  github: "github";
798
+ google_workspace: "google_workspace";
779
799
  }>>;
780
800
  label: z.ZodNullable<z.ZodString>;
781
801
  keyPreview: z.ZodNullable<z.ZodString>;
@@ -797,6 +817,9 @@ export declare const zCredential: z.ZodObject<{
797
817
  }, z.core.$strip>>>;
798
818
  }, z.core.$strip>, z.ZodObject<{
799
819
  type: z.ZodLiteral<"env">;
820
+ }, z.core.$strip>, z.ZodObject<{
821
+ type: z.ZodLiteral<"basic">;
822
+ username: z.ZodString;
800
823
  }, z.core.$strip>]>;
801
824
  createdAt: z.ZodISODateTime;
802
825
  updatedAt: z.ZodISODateTime;
@@ -904,9 +927,80 @@ export declare const zCronTrigger: z.ZodObject<{
904
927
  updatedAt: z.ZodISODateTime;
905
928
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
906
929
  }, z.core.$strip>;
907
- export declare const zRequiredCredential: z.ZodObject<{
908
- name: z.ZodString;
909
- description: z.ZodOptional<z.ZodString>;
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>>;
910
1004
  }, z.core.$strip>;
911
1005
  export declare const zSkillVersion: z.ZodObject<{
912
1006
  id: z.ZodString;
@@ -991,13 +1085,25 @@ export declare const zSessionFilesPresignUploadResponse: z.ZodObject<{
991
1085
  }, z.core.$strip>;
992
1086
  expiresAt: z.ZodISODateTime;
993
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>;
994
1096
  export declare const zAuthRequirementEnv: z.ZodObject<{
995
1097
  name: z.ZodString;
996
1098
  description: z.ZodOptional<z.ZodString>;
997
1099
  satisfied: z.ZodBoolean;
998
1100
  neededBy: z.ZodArray<z.ZodObject<{
999
- skillId: z.ZodString;
1000
- skillName: z.ZodString;
1101
+ kind: z.ZodEnum<{
1102
+ skill: "skill";
1103
+ mcp: "mcp";
1104
+ }>;
1105
+ id: z.ZodString;
1106
+ name: z.ZodString;
1001
1107
  }, z.core.$strip>>;
1002
1108
  }, z.core.$strip>;
1003
1109
  export declare const zMcpAuthConfig: z.ZodUnion<readonly [z.ZodObject<{
@@ -1091,8 +1197,12 @@ export declare const zAuthRequirements: z.ZodObject<{
1091
1197
  description: z.ZodOptional<z.ZodString>;
1092
1198
  satisfied: z.ZodBoolean;
1093
1199
  neededBy: z.ZodArray<z.ZodObject<{
1094
- skillId: z.ZodString;
1095
- skillName: z.ZodString;
1200
+ kind: z.ZodEnum<{
1201
+ skill: "skill";
1202
+ mcp: "mcp";
1203
+ }>;
1204
+ id: z.ZodString;
1205
+ name: z.ZodString;
1096
1206
  }, z.core.$strip>>;
1097
1207
  }, z.core.$strip>>;
1098
1208
  }, z.core.$strip>;
@@ -1676,6 +1786,11 @@ export declare const zMcp: z.ZodObject<{
1676
1786
  }, z.core.$strip>, z.ZodObject<{
1677
1787
  type: z.ZodLiteral<"none">;
1678
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>>;
1679
1794
  orgId: z.ZodString;
1680
1795
  userId: z.ZodNullable<z.ZodString>;
1681
1796
  publisherId: z.ZodNullable<z.ZodString>;
@@ -1699,6 +1814,15 @@ export declare const zMcp: z.ZodObject<{
1699
1814
  deprecationMessage: z.ZodNullable<z.ZodString>;
1700
1815
  tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
1701
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>;
1702
1826
  export declare const zGithubInstallationResponse: z.ZodObject<{
1703
1827
  id: z.ZodString;
1704
1828
  orgId: z.ZodString;
@@ -1915,8 +2039,8 @@ export declare const zBlueprintInstallReport: z.ZodObject<{
1915
2039
  skipped: z.ZodArray<z.ZodObject<{
1916
2040
  kind: z.ZodEnum<{
1917
2041
  skill: "skill";
1918
- agent: "agent";
1919
2042
  mcp: "mcp";
2043
+ agent: "agent";
1920
2044
  }>;
1921
2045
  sourceId: z.ZodString;
1922
2046
  reason: z.ZodString;
@@ -2299,6 +2423,8 @@ export declare const zAgent: z.ZodObject<{
2299
2423
  agentId: z.ZodString;
2300
2424
  version: z.ZodString;
2301
2425
  description: z.ZodNullable<z.ZodString>;
2426
+ prompt: z.ZodNullable<z.ZodString>;
2427
+ model: z.ZodNullable<z.ZodString>;
2302
2428
  skills: z.ZodArray<z.ZodObject<{
2303
2429
  skillId: z.ZodString;
2304
2430
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2366,6 +2492,8 @@ export declare const zAgentListResponse: z.ZodArray<z.ZodObject<{
2366
2492
  agentId: z.ZodString;
2367
2493
  version: z.ZodString;
2368
2494
  description: z.ZodNullable<z.ZodString>;
2495
+ prompt: z.ZodNullable<z.ZodString>;
2496
+ model: z.ZodNullable<z.ZodString>;
2369
2497
  skills: z.ZodArray<z.ZodObject<{
2370
2498
  skillId: z.ZodString;
2371
2499
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2573,6 +2701,8 @@ export declare const zAgentCreateResponse: z.ZodObject<{
2573
2701
  agentId: z.ZodString;
2574
2702
  version: z.ZodString;
2575
2703
  description: z.ZodNullable<z.ZodString>;
2704
+ prompt: z.ZodNullable<z.ZodString>;
2705
+ model: z.ZodNullable<z.ZodString>;
2576
2706
  skills: z.ZodArray<z.ZodObject<{
2577
2707
  skillId: z.ZodString;
2578
2708
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2665,6 +2795,8 @@ export declare const zAgentGetBySlugResponse: z.ZodObject<{
2665
2795
  agentId: z.ZodString;
2666
2796
  version: z.ZodString;
2667
2797
  description: z.ZodNullable<z.ZodString>;
2798
+ prompt: z.ZodNullable<z.ZodString>;
2799
+ model: z.ZodNullable<z.ZodString>;
2668
2800
  skills: z.ZodArray<z.ZodObject<{
2669
2801
  skillId: z.ZodString;
2670
2802
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2727,6 +2859,8 @@ export declare const zAgentGetResponse: z.ZodObject<{
2727
2859
  agentId: z.ZodString;
2728
2860
  version: z.ZodString;
2729
2861
  description: z.ZodNullable<z.ZodString>;
2862
+ prompt: z.ZodNullable<z.ZodString>;
2863
+ model: z.ZodNullable<z.ZodString>;
2730
2864
  skills: z.ZodArray<z.ZodObject<{
2731
2865
  skillId: z.ZodString;
2732
2866
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2803,6 +2937,8 @@ export declare const zAgentUpdateResponse: z.ZodObject<{
2803
2937
  agentId: z.ZodString;
2804
2938
  version: z.ZodString;
2805
2939
  description: z.ZodNullable<z.ZodString>;
2940
+ prompt: z.ZodNullable<z.ZodString>;
2941
+ model: z.ZodNullable<z.ZodString>;
2806
2942
  skills: z.ZodArray<z.ZodObject<{
2807
2943
  skillId: z.ZodString;
2808
2944
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2865,6 +3001,8 @@ export declare const zAgentArchiveResponse: z.ZodObject<{
2865
3001
  agentId: z.ZodString;
2866
3002
  version: z.ZodString;
2867
3003
  description: z.ZodNullable<z.ZodString>;
3004
+ prompt: z.ZodNullable<z.ZodString>;
3005
+ model: z.ZodNullable<z.ZodString>;
2868
3006
  skills: z.ZodArray<z.ZodObject<{
2869
3007
  skillId: z.ZodString;
2870
3008
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2927,6 +3065,8 @@ export declare const zAgentPublishResponse: z.ZodObject<{
2927
3065
  agentId: z.ZodString;
2928
3066
  version: z.ZodString;
2929
3067
  description: z.ZodNullable<z.ZodString>;
3068
+ prompt: z.ZodNullable<z.ZodString>;
3069
+ model: z.ZodNullable<z.ZodString>;
2930
3070
  skills: z.ZodArray<z.ZodObject<{
2931
3071
  skillId: z.ZodString;
2932
3072
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2992,6 +3132,8 @@ export declare const zAgentDeprecateResponse: z.ZodObject<{
2992
3132
  agentId: z.ZodString;
2993
3133
  version: z.ZodString;
2994
3134
  description: z.ZodNullable<z.ZodString>;
3135
+ prompt: z.ZodNullable<z.ZodString>;
3136
+ model: z.ZodNullable<z.ZodString>;
2995
3137
  skills: z.ZodArray<z.ZodObject<{
2996
3138
  skillId: z.ZodString;
2997
3139
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -3054,6 +3196,8 @@ export declare const zAgentUndeprecateResponse: z.ZodObject<{
3054
3196
  agentId: z.ZodString;
3055
3197
  version: z.ZodString;
3056
3198
  description: z.ZodNullable<z.ZodString>;
3199
+ prompt: z.ZodNullable<z.ZodString>;
3200
+ model: z.ZodNullable<z.ZodString>;
3057
3201
  skills: z.ZodArray<z.ZodObject<{
3058
3202
  skillId: z.ZodString;
3059
3203
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -4257,8 +4401,8 @@ export declare const zBlueprintInstallResponse: z.ZodObject<{
4257
4401
  skipped: z.ZodArray<z.ZodObject<{
4258
4402
  kind: z.ZodEnum<{
4259
4403
  skill: "skill";
4260
- agent: "agent";
4261
4404
  mcp: "mcp";
4405
+ agent: "agent";
4262
4406
  }>;
4263
4407
  sourceId: z.ZodString;
4264
4408
  reason: z.ZodString;
@@ -6188,6 +6332,75 @@ export declare const zGithubReposQuery: z.ZodObject<{
6188
6332
  export declare const zGithubReposResponse: z.ZodArray<z.ZodObject<{
6189
6333
  fullName: z.ZodString;
6190
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>;
6191
6404
  export declare const zMcpListQuery: z.ZodObject<{
6192
6405
  scope: z.ZodOptional<z.ZodEnum<{
6193
6406
  user: "user";
@@ -6254,6 +6467,11 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
6254
6467
  }, z.core.$strip>, z.ZodObject<{
6255
6468
  type: z.ZodLiteral<"none">;
6256
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>>;
6257
6475
  orgId: z.ZodString;
6258
6476
  userId: z.ZodNullable<z.ZodString>;
6259
6477
  publisherId: z.ZodNullable<z.ZodString>;
@@ -6281,7 +6499,7 @@ export declare const zMcpCreateBody: z.ZodObject<{
6281
6499
  name: z.ZodString;
6282
6500
  description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6283
6501
  icon: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6284
- mcpServerUrl: z.ZodURL;
6502
+ mcpServerUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
6285
6503
  docUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
6286
6504
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
6287
6505
  remote: "remote";
@@ -6294,6 +6512,11 @@ export declare const zMcpCreateBody: z.ZodObject<{
6294
6512
  }>>>;
6295
6513
  command: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6296
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>>>>;
6297
6520
  version: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6298
6521
  repository: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
6299
6522
  url: z.ZodOptional<z.ZodURL>;
@@ -6387,6 +6610,11 @@ export declare const zMcpCreateResponse: z.ZodObject<{
6387
6610
  }, z.core.$strip>, z.ZodObject<{
6388
6611
  type: z.ZodLiteral<"none">;
6389
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>>;
6390
6618
  orgId: z.ZodString;
6391
6619
  userId: z.ZodNullable<z.ZodString>;
6392
6620
  publisherId: z.ZodNullable<z.ZodString>;
@@ -6502,6 +6730,11 @@ export declare const zMcpGetBySlugResponse: z.ZodObject<{
6502
6730
  }, z.core.$strip>, z.ZodObject<{
6503
6731
  type: z.ZodLiteral<"none">;
6504
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>>;
6505
6738
  orgId: z.ZodString;
6506
6739
  userId: z.ZodNullable<z.ZodString>;
6507
6740
  publisherId: z.ZodNullable<z.ZodString>;
@@ -6587,6 +6820,11 @@ export declare const zMcpGetResponse: z.ZodObject<{
6587
6820
  }, z.core.$strip>, z.ZodObject<{
6588
6821
  type: z.ZodLiteral<"none">;
6589
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>>;
6590
6828
  orgId: z.ZodString;
6591
6829
  userId: z.ZodNullable<z.ZodString>;
6592
6830
  publisherId: z.ZodNullable<z.ZodString>;
@@ -6627,6 +6865,11 @@ export declare const zMcpUpdateBody: z.ZodObject<{
6627
6865
  }>>;
6628
6866
  command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6629
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>>>;
6630
6873
  version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6631
6874
  repository: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6632
6875
  url: z.ZodOptional<z.ZodURL>;
@@ -6732,6 +6975,11 @@ export declare const zMcpUpdateResponse: z.ZodObject<{
6732
6975
  }, z.core.$strip>, z.ZodObject<{
6733
6976
  type: z.ZodLiteral<"none">;
6734
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>>;
6735
6983
  orgId: z.ZodString;
6736
6984
  userId: z.ZodNullable<z.ZodString>;
6737
6985
  publisherId: z.ZodNullable<z.ZodString>;
@@ -6817,6 +7065,11 @@ export declare const zMcpArchiveResponse: z.ZodObject<{
6817
7065
  }, z.core.$strip>, z.ZodObject<{
6818
7066
  type: z.ZodLiteral<"none">;
6819
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>>;
6820
7073
  orgId: z.ZodString;
6821
7074
  userId: z.ZodNullable<z.ZodString>;
6822
7075
  publisherId: z.ZodNullable<z.ZodString>;
@@ -6902,6 +7155,11 @@ export declare const zMcpPublishResponse: z.ZodObject<{
6902
7155
  }, z.core.$strip>, z.ZodObject<{
6903
7156
  type: z.ZodLiteral<"none">;
6904
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>>;
6905
7163
  orgId: z.ZodString;
6906
7164
  userId: z.ZodNullable<z.ZodString>;
6907
7165
  publisherId: z.ZodNullable<z.ZodString>;
@@ -6990,6 +7248,11 @@ export declare const zMcpDeprecateResponse: z.ZodObject<{
6990
7248
  }, z.core.$strip>, z.ZodObject<{
6991
7249
  type: z.ZodLiteral<"none">;
6992
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>>;
6993
7256
  orgId: z.ZodString;
6994
7257
  userId: z.ZodNullable<z.ZodString>;
6995
7258
  publisherId: z.ZodNullable<z.ZodString>;
@@ -7075,6 +7338,11 @@ export declare const zMcpUndeprecateResponse: z.ZodObject<{
7075
7338
  }, z.core.$strip>, z.ZodObject<{
7076
7339
  type: z.ZodLiteral<"none">;
7077
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>>;
7078
7346
  orgId: z.ZodString;
7079
7347
  userId: z.ZodNullable<z.ZodString>;
7080
7348
  publisherId: z.ZodNullable<z.ZodString>;
@@ -8824,6 +9092,39 @@ export declare const zProjectAgentRemoveResponse: z.ZodObject<{
8824
9092
  createdAt: z.ZodISODateTime;
8825
9093
  updatedAt: z.ZodISODateTime;
8826
9094
  }, z.core.$strip>;
9095
+ export declare const zProjectAgentUpdateBody: z.ZodObject<{
9096
+ agentVersionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9097
+ type: z.ZodOptional<z.ZodEnum<{
9098
+ primary: "primary";
9099
+ subagent: "subagent";
9100
+ all: "all";
9101
+ }>>;
9102
+ }, z.core.$strip>;
9103
+ export declare const zProjectAgentUpdatePath: z.ZodObject<{
9104
+ id: z.ZodString;
9105
+ agentId: z.ZodString;
9106
+ }, z.core.$strip>;
9107
+ export declare const zProjectAgentUpdateQuery: z.ZodObject<{
9108
+ scope: z.ZodOptional<z.ZodEnum<{
9109
+ user: "user";
9110
+ }>>;
9111
+ }, z.core.$strip>;
9112
+ /**
9113
+ * Updated agent membership
9114
+ */
9115
+ export declare const zProjectAgentUpdateResponse: z.ZodObject<{
9116
+ id: z.ZodString;
9117
+ projectId: z.ZodString;
9118
+ agentId: z.ZodString;
9119
+ agentVersionId: z.ZodNullable<z.ZodString>;
9120
+ type: z.ZodEnum<{
9121
+ primary: "primary";
9122
+ subagent: "subagent";
9123
+ all: "all";
9124
+ }>;
9125
+ createdAt: z.ZodISODateTime;
9126
+ updatedAt: z.ZodISODateTime;
9127
+ }, z.core.$strip>;
8827
9128
  export declare const zProjectFileStoreListPath: z.ZodObject<{
8828
9129
  id: z.ZodString;
8829
9130
  }, z.core.$strip>;
@@ -9866,8 +10167,12 @@ export declare const zSessionAuthRequirementsResponse: z.ZodObject<{
9866
10167
  description: z.ZodOptional<z.ZodString>;
9867
10168
  satisfied: z.ZodBoolean;
9868
10169
  neededBy: z.ZodArray<z.ZodObject<{
9869
- skillId: z.ZodString;
9870
- skillName: z.ZodString;
10170
+ kind: z.ZodEnum<{
10171
+ skill: "skill";
10172
+ mcp: "mcp";
10173
+ }>;
10174
+ id: z.ZodString;
10175
+ name: z.ZodString;
9871
10176
  }, z.core.$strip>>;
9872
10177
  }, z.core.$strip>>;
9873
10178
  }, z.core.$strip>;
@@ -10688,6 +10993,84 @@ export declare const zSkillVersionArchiveResponse: z.ZodObject<{
10688
10993
  }, z.core.$strip>>;
10689
10994
  releaseNotes: z.ZodNullable<z.ZodString>;
10690
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>;
10691
11074
  export declare const zTriggerListQuery: z.ZodObject<{
10692
11075
  scope: z.ZodOptional<z.ZodEnum<{
10693
11076
  user: "user";
@@ -11271,6 +11654,7 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
11271
11654
  mcpId: z.ZodNullable<z.ZodString>;
11272
11655
  provider: z.ZodNullable<z.ZodEnum<{
11273
11656
  github: "github";
11657
+ google_workspace: "google_workspace";
11274
11658
  }>>;
11275
11659
  label: z.ZodNullable<z.ZodString>;
11276
11660
  keyPreview: z.ZodNullable<z.ZodString>;
@@ -11292,6 +11676,9 @@ export declare const zCredentialListResponse: z.ZodArray<z.ZodObject<{
11292
11676
  }, z.core.$strip>>>;
11293
11677
  }, z.core.$strip>, z.ZodObject<{
11294
11678
  type: z.ZodLiteral<"env">;
11679
+ }, z.core.$strip>, z.ZodObject<{
11680
+ type: z.ZodLiteral<"basic">;
11681
+ username: z.ZodString;
11295
11682
  }, z.core.$strip>]>;
11296
11683
  createdAt: z.ZodISODateTime;
11297
11684
  updatedAt: z.ZodISODateTime;
@@ -11321,15 +11708,25 @@ export declare const zCredentialCreateBody: z.ZodObject<{
11321
11708
  scope: z.ZodOptional<z.ZodString>;
11322
11709
  resource: z.ZodOptional<z.ZodString>;
11323
11710
  }, z.core.$strip>>>;
11324
- profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11711
+ profile: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
11325
11712
  service: z.ZodLiteral<"github">;
11326
11713
  id: z.ZodNumber;
11327
11714
  login: z.ZodString;
11328
11715
  name: z.ZodNullable<z.ZodString>;
11329
- }, 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>]>>>;
11330
11723
  }, z.core.$strip>, z.ZodObject<{
11331
11724
  type: z.ZodLiteral<"env">;
11332
11725
  value: z.ZodString;
11726
+ }, z.core.$strip>, z.ZodObject<{
11727
+ type: z.ZodLiteral<"basic">;
11728
+ username: z.ZodString;
11729
+ password: z.ZodString;
11333
11730
  }, z.core.$strip>]>;
11334
11731
  }, z.core.$strip>;
11335
11732
  export declare const zCredentialCreatePath: z.ZodObject<{
@@ -11350,6 +11747,7 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
11350
11747
  mcpId: z.ZodNullable<z.ZodString>;
11351
11748
  provider: z.ZodNullable<z.ZodEnum<{
11352
11749
  github: "github";
11750
+ google_workspace: "google_workspace";
11353
11751
  }>>;
11354
11752
  label: z.ZodNullable<z.ZodString>;
11355
11753
  keyPreview: z.ZodNullable<z.ZodString>;
@@ -11371,6 +11769,9 @@ export declare const zCredentialCreateResponse: z.ZodObject<{
11371
11769
  }, z.core.$strip>>>;
11372
11770
  }, z.core.$strip>, z.ZodObject<{
11373
11771
  type: z.ZodLiteral<"env">;
11772
+ }, z.core.$strip>, z.ZodObject<{
11773
+ type: z.ZodLiteral<"basic">;
11774
+ username: z.ZodString;
11374
11775
  }, z.core.$strip>]>;
11375
11776
  createdAt: z.ZodISODateTime;
11376
11777
  updatedAt: z.ZodISODateTime;
@@ -11395,6 +11796,7 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
11395
11796
  mcpId: z.ZodNullable<z.ZodString>;
11396
11797
  provider: z.ZodNullable<z.ZodEnum<{
11397
11798
  github: "github";
11799
+ google_workspace: "google_workspace";
11398
11800
  }>>;
11399
11801
  label: z.ZodNullable<z.ZodString>;
11400
11802
  keyPreview: z.ZodNullable<z.ZodString>;
@@ -11416,6 +11818,9 @@ export declare const zCredentialDeleteResponse: z.ZodObject<{
11416
11818
  }, z.core.$strip>>>;
11417
11819
  }, z.core.$strip>, z.ZodObject<{
11418
11820
  type: z.ZodLiteral<"env">;
11821
+ }, z.core.$strip>, z.ZodObject<{
11822
+ type: z.ZodLiteral<"basic">;
11823
+ username: z.ZodString;
11419
11824
  }, z.core.$strip>]>;
11420
11825
  createdAt: z.ZodISODateTime;
11421
11826
  updatedAt: z.ZodISODateTime;
@@ -11440,6 +11845,7 @@ export declare const zCredentialGetResponse: z.ZodObject<{
11440
11845
  mcpId: z.ZodNullable<z.ZodString>;
11441
11846
  provider: z.ZodNullable<z.ZodEnum<{
11442
11847
  github: "github";
11848
+ google_workspace: "google_workspace";
11443
11849
  }>>;
11444
11850
  label: z.ZodNullable<z.ZodString>;
11445
11851
  keyPreview: z.ZodNullable<z.ZodString>;
@@ -11461,6 +11867,9 @@ export declare const zCredentialGetResponse: z.ZodObject<{
11461
11867
  }, z.core.$strip>>>;
11462
11868
  }, z.core.$strip>, z.ZodObject<{
11463
11869
  type: z.ZodLiteral<"env">;
11870
+ }, z.core.$strip>, z.ZodObject<{
11871
+ type: z.ZodLiteral<"basic">;
11872
+ username: z.ZodString;
11464
11873
  }, z.core.$strip>]>;
11465
11874
  createdAt: z.ZodISODateTime;
11466
11875
  updatedAt: z.ZodISODateTime;
@@ -11488,15 +11897,25 @@ export declare const zCredentialUpdateBody: z.ZodObject<{
11488
11897
  scope: z.ZodOptional<z.ZodString>;
11489
11898
  resource: z.ZodOptional<z.ZodString>;
11490
11899
  }, z.core.$strip>>>;
11491
- profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11900
+ profile: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
11492
11901
  service: z.ZodLiteral<"github">;
11493
11902
  id: z.ZodNumber;
11494
11903
  login: z.ZodString;
11495
11904
  name: z.ZodNullable<z.ZodString>;
11496
- }, 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>]>>>;
11497
11912
  }, z.core.$strip>, z.ZodObject<{
11498
11913
  type: z.ZodLiteral<"env">;
11499
11914
  value: z.ZodString;
11915
+ }, z.core.$strip>, z.ZodObject<{
11916
+ type: z.ZodLiteral<"basic">;
11917
+ username: z.ZodString;
11918
+ password: z.ZodString;
11500
11919
  }, z.core.$strip>]>>;
11501
11920
  }, z.core.$strip>;
11502
11921
  export declare const zCredentialUpdatePath: z.ZodObject<{
@@ -11518,6 +11937,7 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
11518
11937
  mcpId: z.ZodNullable<z.ZodString>;
11519
11938
  provider: z.ZodNullable<z.ZodEnum<{
11520
11939
  github: "github";
11940
+ google_workspace: "google_workspace";
11521
11941
  }>>;
11522
11942
  label: z.ZodNullable<z.ZodString>;
11523
11943
  keyPreview: z.ZodNullable<z.ZodString>;
@@ -11539,6 +11959,9 @@ export declare const zCredentialUpdateResponse: z.ZodObject<{
11539
11959
  }, z.core.$strip>>>;
11540
11960
  }, z.core.$strip>, z.ZodObject<{
11541
11961
  type: z.ZodLiteral<"env">;
11962
+ }, z.core.$strip>, z.ZodObject<{
11963
+ type: z.ZodLiteral<"basic">;
11964
+ username: z.ZodString;
11542
11965
  }, z.core.$strip>]>;
11543
11966
  createdAt: z.ZodISODateTime;
11544
11967
  updatedAt: z.ZodISODateTime;
@@ -11563,6 +11986,7 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
11563
11986
  mcpId: z.ZodNullable<z.ZodString>;
11564
11987
  provider: z.ZodNullable<z.ZodEnum<{
11565
11988
  github: "github";
11989
+ google_workspace: "google_workspace";
11566
11990
  }>>;
11567
11991
  label: z.ZodNullable<z.ZodString>;
11568
11992
  keyPreview: z.ZodNullable<z.ZodString>;
@@ -11584,6 +12008,9 @@ export declare const zCredentialArchiveResponse: z.ZodObject<{
11584
12008
  }, z.core.$strip>>>;
11585
12009
  }, z.core.$strip>, z.ZodObject<{
11586
12010
  type: z.ZodLiteral<"env">;
12011
+ }, z.core.$strip>, z.ZodObject<{
12012
+ type: z.ZodLiteral<"basic">;
12013
+ username: z.ZodString;
11587
12014
  }, z.core.$strip>]>;
11588
12015
  createdAt: z.ZodISODateTime;
11589
12016
  updatedAt: z.ZodISODateTime;
@@ -11673,6 +12100,8 @@ export declare const zRegistryAgentListResponse: z.ZodArray<z.ZodObject<{
11673
12100
  agentId: z.ZodString;
11674
12101
  version: z.ZodString;
11675
12102
  description: z.ZodNullable<z.ZodString>;
12103
+ prompt: z.ZodNullable<z.ZodString>;
12104
+ model: z.ZodNullable<z.ZodString>;
11676
12105
  skills: z.ZodArray<z.ZodObject<{
11677
12106
  skillId: z.ZodString;
11678
12107
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -11730,6 +12159,8 @@ export declare const zRegistryAgentGetResponse: z.ZodObject<{
11730
12159
  agentId: z.ZodString;
11731
12160
  version: z.ZodString;
11732
12161
  description: z.ZodNullable<z.ZodString>;
12162
+ prompt: z.ZodNullable<z.ZodString>;
12163
+ model: z.ZodNullable<z.ZodString>;
11733
12164
  skills: z.ZodArray<z.ZodObject<{
11734
12165
  skillId: z.ZodString;
11735
12166
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -11906,6 +12337,11 @@ export declare const zRegistryMcpListResponse: z.ZodArray<z.ZodObject<{
11906
12337
  }, z.core.$strip>, z.ZodObject<{
11907
12338
  type: z.ZodLiteral<"none">;
11908
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>>;
11909
12345
  orgId: z.ZodString;
11910
12346
  userId: z.ZodNullable<z.ZodString>;
11911
12347
  publisherId: z.ZodNullable<z.ZodString>;
@@ -11986,6 +12422,11 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
11986
12422
  }, z.core.$strip>, z.ZodObject<{
11987
12423
  type: z.ZodLiteral<"none">;
11988
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>>;
11989
12430
  orgId: z.ZodString;
11990
12431
  userId: z.ZodNullable<z.ZodString>;
11991
12432
  publisherId: z.ZodNullable<z.ZodString>;