@renai-labs/sdk 0.1.8 → 0.1.10

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.
@@ -836,6 +836,20 @@ export declare const zVault: z.ZodObject<{
836
836
  updatedAt: z.ZodISODateTime;
837
837
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
838
838
  }, z.core.$strip>;
839
+ export declare const zProjectEmailResponse: z.ZodObject<{
840
+ id: z.ZodString;
841
+ orgId: z.ZodString;
842
+ podId: z.ZodString;
843
+ projectId: z.ZodString;
844
+ defaultProjectAgentId: z.ZodNullable<z.ZodString>;
845
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
846
+ localPart: z.ZodString;
847
+ createdAt: z.ZodISODateTime;
848
+ updatedAt: z.ZodISODateTime;
849
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
850
+ address: z.ZodString;
851
+ projectName: z.ZodNullable<z.ZodString>;
852
+ }, z.core.$strip>;
839
853
  export declare const zSlackChannel: z.ZodObject<{
840
854
  id: z.ZodString;
841
855
  name: z.ZodString;
@@ -927,80 +941,198 @@ export declare const zCronTrigger: z.ZodObject<{
927
941
  updatedAt: z.ZodISODateTime;
928
942
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
929
943
  }, z.core.$strip>;
944
+ export declare const zTopologyShare: z.ZodObject<{
945
+ id: z.ZodString;
946
+ shareToken: z.ZodString;
947
+ orgId: z.ZodString;
948
+ userId: z.ZodNullable<z.ZodString>;
949
+ createdAt: z.ZodISODateTime;
950
+ updatedAt: z.ZodISODateTime;
951
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
952
+ }, z.core.$strip>;
930
953
  export declare const zTopology: z.ZodObject<{
931
- surfaces: z.ZodArray<z.ZodObject<{
954
+ meta: z.ZodObject<{
955
+ org: z.ZodString;
956
+ orgId: z.ZodString;
957
+ ownerUserId: z.ZodOptional<z.ZodString>;
958
+ specVersion: z.ZodOptional<z.ZodString>;
959
+ snapshotDate: z.ZodOptional<z.ZodString>;
960
+ notes: z.ZodOptional<z.ZodString>;
961
+ }, z.core.$strip>;
962
+ agents: z.ZodArray<z.ZodObject<{
932
963
  id: z.ZodString;
933
- kind: z.ZodEnum<{
934
- github: "github";
935
- mcp: "mcp";
936
- cron: "cron";
937
- webhook: "webhook";
938
- slack: "slack";
939
- }>;
964
+ slug: z.ZodString;
940
965
  name: z.ZodString;
966
+ model: z.ZodOptional<z.ZodString>;
967
+ scope: z.ZodOptional<z.ZodEnum<{
968
+ org: "org";
969
+ user: "user";
970
+ registry: "registry";
971
+ }>>;
941
972
  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>;
973
+ promptRef: z.ZodOptional<z.ZodString>;
974
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
975
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString>>;
976
+ notes: z.ZodOptional<z.ZodString>;
949
977
  }, z.core.$strip>>;
978
+ mcps: z.ZodOptional<z.ZodArray<z.ZodObject<{
979
+ id: z.ZodString;
980
+ slug: z.ZodString;
981
+ name: z.ZodString;
982
+ registrySlug: z.ZodOptional<z.ZodString>;
983
+ remoteUrl: z.ZodOptional<z.ZodURL>;
984
+ auth: z.ZodOptional<z.ZodEnum<{
985
+ basic: "basic";
986
+ oauth: "oauth";
987
+ none: "none";
988
+ api_key: "api_key";
989
+ }>>;
990
+ credential: z.ZodOptional<z.ZodString>;
991
+ icon: z.ZodOptional<z.ZodString>;
992
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
993
+ notes: z.ZodOptional<z.ZodString>;
994
+ }, z.core.$strip>>>;
995
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
996
+ id: z.ZodString;
997
+ slug: z.ZodString;
998
+ source: z.ZodOptional<z.ZodEnum<{
999
+ org: "org";
1000
+ user: "user";
1001
+ registry: "registry";
1002
+ }>>;
1003
+ notes: z.ZodOptional<z.ZodString>;
1004
+ }, z.core.$strip>>>;
1005
+ credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
1006
+ id: z.ZodString;
1007
+ slug: z.ZodString;
1008
+ provider: z.ZodString;
1009
+ authType: z.ZodOptional<z.ZodEnum<{
1010
+ basic: "basic";
1011
+ oauth: "oauth";
1012
+ env: "env";
1013
+ api_key: "api_key";
1014
+ }>>;
1015
+ vault: z.ZodString;
1016
+ notes: z.ZodOptional<z.ZodString>;
1017
+ }, z.core.$strip>>>;
1018
+ vaults: z.ZodOptional<z.ZodArray<z.ZodObject<{
1019
+ id: z.ZodString;
1020
+ slug: z.ZodString;
1021
+ name: z.ZodString;
1022
+ scope: z.ZodEnum<{
1023
+ org: "org";
1024
+ user: "user";
1025
+ registry: "registry";
1026
+ }>;
1027
+ attachedPods: z.ZodOptional<z.ZodArray<z.ZodString>>;
1028
+ notes: z.ZodOptional<z.ZodString>;
1029
+ }, z.core.$strip>>>;
1030
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
1031
+ id: z.ZodString;
1032
+ slug: z.ZodString;
1033
+ name: z.ZodString;
1034
+ scope: z.ZodEnum<{
1035
+ org: "org";
1036
+ user: "user";
1037
+ registry: "registry";
1038
+ }>;
1039
+ notes: z.ZodOptional<z.ZodString>;
1040
+ }, z.core.$strip>>>;
1041
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
1042
+ id: z.ZodString;
1043
+ slug: z.ZodString;
1044
+ name: z.ZodString;
1045
+ scope: z.ZodEnum<{
1046
+ org: "org";
1047
+ user: "user";
1048
+ registry: "registry";
1049
+ }>;
1050
+ notes: z.ZodOptional<z.ZodString>;
1051
+ }, z.core.$strip>>>;
950
1052
  pods: z.ZodArray<z.ZodObject<{
951
1053
  id: z.ZodString;
1054
+ slug: z.ZodString;
952
1055
  name: z.ZodString;
953
- isPrivate: z.ZodBoolean;
1056
+ scope: z.ZodOptional<z.ZodEnum<{
1057
+ org: "org";
1058
+ user: "user";
1059
+ registry: "registry";
1060
+ }>>;
1061
+ vaults: z.ZodOptional<z.ZodArray<z.ZodString>>;
1062
+ notes: z.ZodOptional<z.ZodString>;
954
1063
  }, z.core.$strip>>;
955
1064
  projects: z.ZodArray<z.ZodObject<{
956
1065
  id: z.ZodString;
957
- podId: z.ZodString;
1066
+ slug: z.ZodString;
958
1067
  name: z.ZodString;
959
- agents: z.ZodArray<z.ZodObject<{
1068
+ pod: z.ZodString;
1069
+ buildOrder: z.ZodOptional<z.ZodInt>;
1070
+ slackChannel: z.ZodOptional<z.ZodString>;
1071
+ primaryAgent: z.ZodOptional<z.ZodString>;
1072
+ subAgents: z.ZodOptional<z.ZodArray<z.ZodString>>;
1073
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
1074
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
1075
+ restricted: z.ZodOptional<z.ZodBoolean>;
1076
+ requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
960
1077
  id: z.ZodString;
1078
+ kind: z.ZodEnum<{
1079
+ agent_attached: "agent_attached";
1080
+ skill_attached: "skill_attached";
1081
+ mcp_wired: "mcp_wired";
1082
+ credential_present: "credential_present";
1083
+ trigger_configured: "trigger_configured";
1084
+ slack_mapped: "slack_mapped";
1085
+ file_store_attached: "file_store_attached";
1086
+ memory_store_attached: "memory_store_attached";
1087
+ vault_attached: "vault_attached";
1088
+ capability: "capability";
1089
+ other: "other";
1090
+ }>;
1091
+ must: z.ZodString;
1092
+ agent: z.ZodOptional<z.ZodString>;
1093
+ mcp: z.ZodOptional<z.ZodString>;
1094
+ skill: z.ZodOptional<z.ZodString>;
1095
+ credential: z.ZodOptional<z.ZodString>;
1096
+ trigger: z.ZodOptional<z.ZodString>;
1097
+ vault: z.ZodOptional<z.ZodString>;
1098
+ store: z.ZodOptional<z.ZodString>;
1099
+ channel: z.ZodOptional<z.ZodString>;
1100
+ blocking: z.ZodOptional<z.ZodBoolean>;
1101
+ reason: z.ZodOptional<z.ZodString>;
1102
+ verify: z.ZodOptional<z.ZodString>;
1103
+ blockedBy: z.ZodOptional<z.ZodString>;
1104
+ }, z.core.$strip>>>;
1105
+ notes: z.ZodOptional<z.ZodString>;
1106
+ }, z.core.$strip>>;
1107
+ slack: z.ZodOptional<z.ZodObject<{
1108
+ workspace: z.ZodOptional<z.ZodString>;
1109
+ teamId: z.ZodOptional<z.ZodString>;
1110
+ installationId: z.ZodOptional<z.ZodString>;
1111
+ botUserId: z.ZodOptional<z.ZodString>;
1112
+ channels: z.ZodArray<z.ZodObject<{
961
1113
  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>;
1114
+ id: z.ZodOptional<z.ZodString>;
1115
+ project: z.ZodNullable<z.ZodString>;
976
1116
  }, z.core.$strip>>;
977
1117
  }, 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;
1118
+ github: z.ZodOptional<z.ZodObject<{
1119
+ installationId: z.ZodOptional<z.ZodString>;
1120
+ repos: z.ZodArray<z.ZodObject<{
1121
+ name: z.ZodString;
1122
+ project: z.ZodString;
1123
+ baseBranch: z.ZodOptional<z.ZodString>;
987
1124
  }, z.core.$strip>>;
988
1125
  }, z.core.$strip>>;
989
- env: z.ZodNullable<z.ZodObject<{
990
- id: z.ZodString;
991
- }, z.core.$strip>>;
992
- edges: z.ZodArray<z.ZodObject<{
1126
+ triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
993
1127
  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>>;
1128
+ slug: z.ZodString;
1129
+ project: z.ZodString;
1130
+ schedule: z.ZodString;
1131
+ timezone: z.ZodOptional<z.ZodString>;
1132
+ inputMessage: z.ZodString;
1133
+ enabled: z.ZodOptional<z.ZodBoolean>;
1134
+ notes: z.ZodOptional<z.ZodString>;
1135
+ }, z.core.$strip>>>;
1004
1136
  }, z.core.$strip>;
1005
1137
  export declare const zSkillVersion: z.ZodObject<{
1006
1138
  id: z.ZodString;
@@ -1217,6 +1349,9 @@ export declare const zSessionMessagesPage: z.ZodObject<{
1217
1349
  }, z.core.$strip>;
1218
1350
  export declare const zSessionUrlResponse: z.ZodObject<{
1219
1351
  url: z.ZodString;
1352
+ authedUrl: z.ZodString;
1353
+ serverPassword: z.ZodString;
1354
+ username: z.ZodString;
1220
1355
  }, z.core.$strip>;
1221
1356
  export declare const zOpencodeSession: z.ZodObject<{
1222
1357
  id: z.ZodString;
@@ -2379,6 +2514,25 @@ export declare const zAgentVersion: z.ZodObject<{
2379
2514
  deny: "deny";
2380
2515
  ask: "ask";
2381
2516
  }>]>;
2517
+ skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2518
+ skillId: z.ZodString;
2519
+ skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
2520
+ skill: z.ZodObject<{
2521
+ id: z.ZodString;
2522
+ slug: z.ZodString;
2523
+ name: z.ZodString;
2524
+ icon: z.ZodNullable<z.ZodString>;
2525
+ }, z.core.$strip>;
2526
+ }, z.core.$strip>>>>;
2527
+ mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2528
+ mcpId: z.ZodString;
2529
+ mcp: z.ZodObject<{
2530
+ id: z.ZodString;
2531
+ slug: z.ZodString;
2532
+ name: z.ZodString;
2533
+ icon: z.ZodNullable<z.ZodString>;
2534
+ }, z.core.$strip>;
2535
+ }, z.core.$strip>>>>;
2382
2536
  }, z.core.$strip>;
2383
2537
  export declare const zSearchResult: z.ZodObject<{
2384
2538
  id: z.ZodString;
@@ -2387,8 +2541,8 @@ export declare const zSearchResult: z.ZodObject<{
2387
2541
  description: z.ZodNullable<z.ZodString>;
2388
2542
  icon: z.ZodNullable<z.ZodString>;
2389
2543
  source: z.ZodEnum<{
2390
- user: "user";
2391
2544
  org: "org";
2545
+ user: "user";
2392
2546
  registry: "registry";
2393
2547
  }>;
2394
2548
  updatedAt: z.ZodISODateTime;
@@ -2458,6 +2612,7 @@ export declare const zAgentListQuery: z.ZodObject<{
2458
2612
  }>>;
2459
2613
  limit: z.ZodOptional<z.ZodNumber>;
2460
2614
  offset: z.ZodOptional<z.ZodNumber>;
2615
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
2461
2616
  }, z.core.$strip>;
2462
2617
  /**
2463
2618
  * List of agents
@@ -2727,8 +2882,8 @@ export declare const zAgentCreateResponse: z.ZodObject<{
2727
2882
  export declare const zAgentSearchBody: z.ZodObject<{
2728
2883
  query: z.ZodOptional<z.ZodString>;
2729
2884
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2730
- user: "user";
2731
2885
  org: "org";
2886
+ user: "user";
2732
2887
  registry: "registry";
2733
2888
  }>>>>;
2734
2889
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -2748,8 +2903,8 @@ export declare const zAgentSearchResponse: z.ZodArray<z.ZodObject<{
2748
2903
  description: z.ZodNullable<z.ZodString>;
2749
2904
  icon: z.ZodNullable<z.ZodString>;
2750
2905
  source: z.ZodEnum<{
2751
- user: "user";
2752
2906
  org: "org";
2907
+ user: "user";
2753
2908
  registry: "registry";
2754
2909
  }>;
2755
2910
  updatedAt: z.ZodISODateTime;
@@ -3228,6 +3383,7 @@ export declare const zAgentVersionListQuery: z.ZodObject<{
3228
3383
  }>>;
3229
3384
  limit: z.ZodOptional<z.ZodNumber>;
3230
3385
  offset: z.ZodOptional<z.ZodNumber>;
3386
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
3231
3387
  }, z.core.$strip>;
3232
3388
  /**
3233
3389
  * List of agent versions
@@ -3370,6 +3526,25 @@ export declare const zAgentVersionListResponse: z.ZodArray<z.ZodObject<{
3370
3526
  deny: "deny";
3371
3527
  ask: "ask";
3372
3528
  }>]>;
3529
+ skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3530
+ skillId: z.ZodString;
3531
+ skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
3532
+ skill: z.ZodObject<{
3533
+ id: z.ZodString;
3534
+ slug: z.ZodString;
3535
+ name: z.ZodString;
3536
+ icon: z.ZodNullable<z.ZodString>;
3537
+ }, z.core.$strip>;
3538
+ }, z.core.$strip>>>>;
3539
+ mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3540
+ mcpId: z.ZodString;
3541
+ mcp: z.ZodObject<{
3542
+ id: z.ZodString;
3543
+ slug: z.ZodString;
3544
+ name: z.ZodString;
3545
+ icon: z.ZodNullable<z.ZodString>;
3546
+ }, z.core.$strip>;
3547
+ }, z.core.$strip>>>>;
3373
3548
  }, z.core.$strip>>;
3374
3549
  export declare const zAgentVersionCreateBody: z.ZodObject<{
3375
3550
  version: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodEnum<{
@@ -3665,6 +3840,25 @@ export declare const zAgentVersionCreateResponse: z.ZodObject<{
3665
3840
  deny: "deny";
3666
3841
  ask: "ask";
3667
3842
  }>]>;
3843
+ skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3844
+ skillId: z.ZodString;
3845
+ skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
3846
+ skill: z.ZodObject<{
3847
+ id: z.ZodString;
3848
+ slug: z.ZodString;
3849
+ name: z.ZodString;
3850
+ icon: z.ZodNullable<z.ZodString>;
3851
+ }, z.core.$strip>;
3852
+ }, z.core.$strip>>>>;
3853
+ mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3854
+ mcpId: z.ZodString;
3855
+ mcp: z.ZodObject<{
3856
+ id: z.ZodString;
3857
+ slug: z.ZodString;
3858
+ name: z.ZodString;
3859
+ icon: z.ZodNullable<z.ZodString>;
3860
+ }, z.core.$strip>;
3861
+ }, z.core.$strip>>>>;
3668
3862
  }, z.core.$strip>;
3669
3863
  export declare const zAgentVersionGetPath: z.ZodObject<{
3670
3864
  id: z.ZodString;
@@ -3816,6 +4010,25 @@ export declare const zAgentVersionGetResponse: z.ZodObject<{
3816
4010
  deny: "deny";
3817
4011
  ask: "ask";
3818
4012
  }>]>;
4013
+ skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4014
+ skillId: z.ZodString;
4015
+ skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4016
+ skill: z.ZodObject<{
4017
+ id: z.ZodString;
4018
+ slug: z.ZodString;
4019
+ name: z.ZodString;
4020
+ icon: z.ZodNullable<z.ZodString>;
4021
+ }, z.core.$strip>;
4022
+ }, z.core.$strip>>>>;
4023
+ mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4024
+ mcpId: z.ZodString;
4025
+ mcp: z.ZodObject<{
4026
+ id: z.ZodString;
4027
+ slug: z.ZodString;
4028
+ name: z.ZodString;
4029
+ icon: z.ZodNullable<z.ZodString>;
4030
+ }, z.core.$strip>;
4031
+ }, z.core.$strip>>>>;
3819
4032
  }, z.core.$strip>;
3820
4033
  export declare const zAgentVersionArchivePath: z.ZodObject<{
3821
4034
  id: z.ZodString;
@@ -3967,6 +4180,25 @@ export declare const zAgentVersionArchiveResponse: z.ZodObject<{
3967
4180
  deny: "deny";
3968
4181
  ask: "ask";
3969
4182
  }>]>;
4183
+ skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4184
+ skillId: z.ZodString;
4185
+ skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4186
+ skill: z.ZodObject<{
4187
+ id: z.ZodString;
4188
+ slug: z.ZodString;
4189
+ name: z.ZodString;
4190
+ icon: z.ZodNullable<z.ZodString>;
4191
+ }, z.core.$strip>;
4192
+ }, z.core.$strip>>>>;
4193
+ mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4194
+ mcpId: z.ZodString;
4195
+ mcp: z.ZodObject<{
4196
+ id: z.ZodString;
4197
+ slug: z.ZodString;
4198
+ name: z.ZodString;
4199
+ icon: z.ZodNullable<z.ZodString>;
4200
+ }, z.core.$strip>;
4201
+ }, z.core.$strip>>>>;
3970
4202
  }, z.core.$strip>;
3971
4203
  export declare const zBlueprintListQuery: z.ZodObject<{
3972
4204
  scope: z.ZodOptional<z.ZodEnum<{
@@ -3974,6 +4206,7 @@ export declare const zBlueprintListQuery: z.ZodObject<{
3974
4206
  }>>;
3975
4207
  limit: z.ZodOptional<z.ZodNumber>;
3976
4208
  offset: z.ZodOptional<z.ZodNumber>;
4209
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
3977
4210
  }, z.core.$strip>;
3978
4211
  /**
3979
4212
  * List of blueprints
@@ -5767,6 +6000,7 @@ export declare const zEnvironmentListQuery: z.ZodObject<{
5767
6000
  orgId: z.ZodOptional<z.ZodString>;
5768
6001
  limit: z.ZodOptional<z.ZodNumber>;
5769
6002
  offset: z.ZodOptional<z.ZodNumber>;
6003
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
5770
6004
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5771
6005
  }, z.core.$strip>;
5772
6006
  /**
@@ -6048,6 +6282,7 @@ export declare const zFileStoreListQuery: z.ZodObject<{
6048
6282
  orgId: z.ZodOptional<z.ZodString>;
6049
6283
  limit: z.ZodOptional<z.ZodNumber>;
6050
6284
  offset: z.ZodOptional<z.ZodNumber>;
6285
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
6051
6286
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6052
6287
  }, z.core.$strip>;
6053
6288
  /**
@@ -6407,6 +6642,7 @@ export declare const zMcpListQuery: z.ZodObject<{
6407
6642
  }>>;
6408
6643
  limit: z.ZodOptional<z.ZodNumber>;
6409
6644
  offset: z.ZodOptional<z.ZodNumber>;
6645
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
6410
6646
  sort: z.ZodOptional<z.ZodEnum<{
6411
6647
  popular: "popular";
6412
6648
  trending: "trending";
@@ -6497,6 +6733,7 @@ export declare const zMcpListResponse: z.ZodArray<z.ZodObject<{
6497
6733
  }, z.core.$strip>>;
6498
6734
  export declare const zMcpCreateBody: z.ZodObject<{
6499
6735
  name: z.ZodString;
6736
+ slug: z.ZodOptional<z.ZodString>;
6500
6737
  description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6501
6738
  icon: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6502
6739
  mcpServerUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
@@ -6641,8 +6878,8 @@ export declare const zMcpCreateResponse: z.ZodObject<{
6641
6878
  export declare const zMcpSearchBody: z.ZodObject<{
6642
6879
  query: z.ZodOptional<z.ZodString>;
6643
6880
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
6644
- user: "user";
6645
6881
  org: "org";
6882
+ user: "user";
6646
6883
  registry: "registry";
6647
6884
  }>>>>;
6648
6885
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -6662,8 +6899,8 @@ export declare const zMcpSearchResponse: z.ZodArray<z.ZodObject<{
6662
6899
  description: z.ZodNullable<z.ZodString>;
6663
6900
  icon: z.ZodNullable<z.ZodString>;
6664
6901
  source: z.ZodEnum<{
6665
- user: "user";
6666
6902
  org: "org";
6903
+ user: "user";
6667
6904
  registry: "registry";
6668
6905
  }>;
6669
6906
  updatedAt: z.ZodISODateTime;
@@ -7443,6 +7680,7 @@ export declare const zMemoryStoreListQuery: z.ZodObject<{
7443
7680
  orgId: z.ZodOptional<z.ZodString>;
7444
7681
  limit: z.ZodOptional<z.ZodNumber>;
7445
7682
  offset: z.ZodOptional<z.ZodNumber>;
7683
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
7446
7684
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7447
7685
  }, z.core.$strip>;
7448
7686
  /**
@@ -7779,6 +8017,7 @@ export declare const zPodListQuery: z.ZodObject<{
7779
8017
  orgId: z.ZodOptional<z.ZodString>;
7780
8018
  limit: z.ZodOptional<z.ZodNumber>;
7781
8019
  offset: z.ZodOptional<z.ZodNumber>;
8020
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
7782
8021
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7783
8022
  }, z.core.$strip>;
7784
8023
  /**
@@ -8126,6 +8365,7 @@ export declare const zProjectListQuery: z.ZodObject<{
8126
8365
  }>>;
8127
8366
  limit: z.ZodOptional<z.ZodNumber>;
8128
8367
  offset: z.ZodOptional<z.ZodNumber>;
8368
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
8129
8369
  podId: z.ZodOptional<z.ZodString>;
8130
8370
  }, z.core.$strip>;
8131
8371
  /**
@@ -9504,6 +9744,7 @@ export declare const zReplayListQuery: z.ZodObject<{
9504
9744
  }>>;
9505
9745
  limit: z.ZodOptional<z.ZodNumber>;
9506
9746
  offset: z.ZodOptional<z.ZodNumber>;
9747
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
9507
9748
  publisherId: z.ZodOptional<z.ZodString>;
9508
9749
  }, z.core.$strip>;
9509
9750
  /**
@@ -9847,6 +10088,7 @@ export declare const zSessionListQuery: z.ZodObject<{
9847
10088
  createdById: z.ZodOptional<z.ZodString>;
9848
10089
  limit: z.ZodOptional<z.ZodNumber>;
9849
10090
  offset: z.ZodOptional<z.ZodNumber>;
10091
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
9850
10092
  }, z.core.$strip>;
9851
10093
  /**
9852
10094
  * List of sessions
@@ -10094,6 +10336,9 @@ export declare const zSessionUrlQuery: z.ZodObject<{
10094
10336
  */
10095
10337
  export declare const zSessionUrlResponse2: z.ZodObject<{
10096
10338
  url: z.ZodString;
10339
+ authedUrl: z.ZodString;
10340
+ serverPassword: z.ZodString;
10341
+ username: z.ZodString;
10097
10342
  }, z.core.$strip>;
10098
10343
  export declare const zSessionMessagesListPath: z.ZodObject<{
10099
10344
  id: z.ZodString;
@@ -10289,6 +10534,7 @@ export declare const zSkillListQuery: z.ZodObject<{
10289
10534
  }>>;
10290
10535
  limit: z.ZodOptional<z.ZodNumber>;
10291
10536
  offset: z.ZodOptional<z.ZodNumber>;
10537
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
10292
10538
  sort: z.ZodOptional<z.ZodEnum<{
10293
10539
  popular: "popular";
10294
10540
  trending: "trending";
@@ -10335,6 +10581,7 @@ export declare const zSkillListResponse: z.ZodArray<z.ZodObject<{
10335
10581
  tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
10336
10582
  }, z.core.$strip>>;
10337
10583
  export declare const zSkillCreateBody: z.ZodObject<{
10584
+ slug: z.ZodOptional<z.ZodString>;
10338
10585
  name: z.ZodString;
10339
10586
  description: z.ZodOptional<z.ZodString>;
10340
10587
  icon: z.ZodOptional<z.ZodString>;
@@ -10391,8 +10638,8 @@ export declare const zSkillCreateResponse: z.ZodObject<{
10391
10638
  export declare const zSkillSearchBody: z.ZodObject<{
10392
10639
  query: z.ZodOptional<z.ZodString>;
10393
10640
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
10394
- user: "user";
10395
10641
  org: "org";
10642
+ user: "user";
10396
10643
  registry: "registry";
10397
10644
  }>>>>;
10398
10645
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -10412,8 +10659,8 @@ export declare const zSkillSearchResponse: z.ZodArray<z.ZodObject<{
10412
10659
  description: z.ZodNullable<z.ZodString>;
10413
10660
  icon: z.ZodNullable<z.ZodString>;
10414
10661
  source: z.ZodEnum<{
10415
- user: "user";
10416
10662
  org: "org";
10663
+ user: "user";
10417
10664
  registry: "registry";
10418
10665
  }>;
10419
10666
  updatedAt: z.ZodISODateTime;
@@ -10830,6 +11077,7 @@ export declare const zSkillVersionListQuery: z.ZodObject<{
10830
11077
  }>>;
10831
11078
  limit: z.ZodOptional<z.ZodNumber>;
10832
11079
  offset: z.ZodOptional<z.ZodNumber>;
11080
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
10833
11081
  }, z.core.$strip>;
10834
11082
  /**
10835
11083
  * List of skill versions
@@ -10997,79 +11245,245 @@ export declare const zSkillVersionArchiveResponse: z.ZodObject<{
10997
11245
  * Agent-stack topology
10998
11246
  */
10999
11247
  export declare const zTopologyGetResponse: z.ZodObject<{
11000
- surfaces: z.ZodArray<z.ZodObject<{
11248
+ meta: z.ZodObject<{
11249
+ org: z.ZodString;
11250
+ orgId: z.ZodString;
11251
+ ownerUserId: z.ZodOptional<z.ZodString>;
11252
+ specVersion: z.ZodOptional<z.ZodString>;
11253
+ snapshotDate: z.ZodOptional<z.ZodString>;
11254
+ notes: z.ZodOptional<z.ZodString>;
11255
+ }, z.core.$strip>;
11256
+ agents: z.ZodArray<z.ZodObject<{
11001
11257
  id: z.ZodString;
11002
- kind: z.ZodEnum<{
11003
- github: "github";
11004
- mcp: "mcp";
11005
- cron: "cron";
11006
- webhook: "webhook";
11007
- slack: "slack";
11008
- }>;
11258
+ slug: z.ZodString;
11009
11259
  name: z.ZodString;
11260
+ model: z.ZodOptional<z.ZodString>;
11261
+ scope: z.ZodOptional<z.ZodEnum<{
11262
+ org: "org";
11263
+ user: "user";
11264
+ registry: "registry";
11265
+ }>>;
11010
11266
  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>;
11267
+ promptRef: z.ZodOptional<z.ZodString>;
11268
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
11269
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString>>;
11270
+ notes: z.ZodOptional<z.ZodString>;
11018
11271
  }, z.core.$strip>>;
11272
+ mcps: z.ZodOptional<z.ZodArray<z.ZodObject<{
11273
+ id: z.ZodString;
11274
+ slug: z.ZodString;
11275
+ name: z.ZodString;
11276
+ registrySlug: z.ZodOptional<z.ZodString>;
11277
+ remoteUrl: z.ZodOptional<z.ZodURL>;
11278
+ auth: z.ZodOptional<z.ZodEnum<{
11279
+ basic: "basic";
11280
+ oauth: "oauth";
11281
+ none: "none";
11282
+ api_key: "api_key";
11283
+ }>>;
11284
+ credential: z.ZodOptional<z.ZodString>;
11285
+ icon: z.ZodOptional<z.ZodString>;
11286
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
11287
+ notes: z.ZodOptional<z.ZodString>;
11288
+ }, z.core.$strip>>>;
11289
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
11290
+ id: z.ZodString;
11291
+ slug: z.ZodString;
11292
+ source: z.ZodOptional<z.ZodEnum<{
11293
+ org: "org";
11294
+ user: "user";
11295
+ registry: "registry";
11296
+ }>>;
11297
+ notes: z.ZodOptional<z.ZodString>;
11298
+ }, z.core.$strip>>>;
11299
+ credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
11300
+ id: z.ZodString;
11301
+ slug: z.ZodString;
11302
+ provider: z.ZodString;
11303
+ authType: z.ZodOptional<z.ZodEnum<{
11304
+ basic: "basic";
11305
+ oauth: "oauth";
11306
+ env: "env";
11307
+ api_key: "api_key";
11308
+ }>>;
11309
+ vault: z.ZodString;
11310
+ notes: z.ZodOptional<z.ZodString>;
11311
+ }, z.core.$strip>>>;
11312
+ vaults: z.ZodOptional<z.ZodArray<z.ZodObject<{
11313
+ id: z.ZodString;
11314
+ slug: z.ZodString;
11315
+ name: z.ZodString;
11316
+ scope: z.ZodEnum<{
11317
+ org: "org";
11318
+ user: "user";
11319
+ registry: "registry";
11320
+ }>;
11321
+ attachedPods: z.ZodOptional<z.ZodArray<z.ZodString>>;
11322
+ notes: z.ZodOptional<z.ZodString>;
11323
+ }, z.core.$strip>>>;
11324
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
11325
+ id: z.ZodString;
11326
+ slug: z.ZodString;
11327
+ name: z.ZodString;
11328
+ scope: z.ZodEnum<{
11329
+ org: "org";
11330
+ user: "user";
11331
+ registry: "registry";
11332
+ }>;
11333
+ notes: z.ZodOptional<z.ZodString>;
11334
+ }, z.core.$strip>>>;
11335
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
11336
+ id: z.ZodString;
11337
+ slug: z.ZodString;
11338
+ name: z.ZodString;
11339
+ scope: z.ZodEnum<{
11340
+ org: "org";
11341
+ user: "user";
11342
+ registry: "registry";
11343
+ }>;
11344
+ notes: z.ZodOptional<z.ZodString>;
11345
+ }, z.core.$strip>>>;
11019
11346
  pods: z.ZodArray<z.ZodObject<{
11020
11347
  id: z.ZodString;
11348
+ slug: z.ZodString;
11021
11349
  name: z.ZodString;
11022
- isPrivate: z.ZodBoolean;
11350
+ scope: z.ZodOptional<z.ZodEnum<{
11351
+ org: "org";
11352
+ user: "user";
11353
+ registry: "registry";
11354
+ }>>;
11355
+ vaults: z.ZodOptional<z.ZodArray<z.ZodString>>;
11356
+ notes: z.ZodOptional<z.ZodString>;
11023
11357
  }, z.core.$strip>>;
11024
11358
  projects: z.ZodArray<z.ZodObject<{
11025
11359
  id: z.ZodString;
11026
- podId: z.ZodString;
11360
+ slug: z.ZodString;
11027
11361
  name: z.ZodString;
11028
- agents: z.ZodArray<z.ZodObject<{
11362
+ pod: z.ZodString;
11363
+ buildOrder: z.ZodOptional<z.ZodInt>;
11364
+ slackChannel: z.ZodOptional<z.ZodString>;
11365
+ primaryAgent: z.ZodOptional<z.ZodString>;
11366
+ subAgents: z.ZodOptional<z.ZodArray<z.ZodString>>;
11367
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
11368
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
11369
+ restricted: z.ZodOptional<z.ZodBoolean>;
11370
+ requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
11029
11371
  id: z.ZodString;
11372
+ kind: z.ZodEnum<{
11373
+ agent_attached: "agent_attached";
11374
+ skill_attached: "skill_attached";
11375
+ mcp_wired: "mcp_wired";
11376
+ credential_present: "credential_present";
11377
+ trigger_configured: "trigger_configured";
11378
+ slack_mapped: "slack_mapped";
11379
+ file_store_attached: "file_store_attached";
11380
+ memory_store_attached: "memory_store_attached";
11381
+ vault_attached: "vault_attached";
11382
+ capability: "capability";
11383
+ other: "other";
11384
+ }>;
11385
+ must: z.ZodString;
11386
+ agent: z.ZodOptional<z.ZodString>;
11387
+ mcp: z.ZodOptional<z.ZodString>;
11388
+ skill: z.ZodOptional<z.ZodString>;
11389
+ credential: z.ZodOptional<z.ZodString>;
11390
+ trigger: z.ZodOptional<z.ZodString>;
11391
+ vault: z.ZodOptional<z.ZodString>;
11392
+ store: z.ZodOptional<z.ZodString>;
11393
+ channel: z.ZodOptional<z.ZodString>;
11394
+ blocking: z.ZodOptional<z.ZodBoolean>;
11395
+ reason: z.ZodOptional<z.ZodString>;
11396
+ verify: z.ZodOptional<z.ZodString>;
11397
+ blockedBy: z.ZodOptional<z.ZodString>;
11398
+ }, z.core.$strip>>>;
11399
+ notes: z.ZodOptional<z.ZodString>;
11400
+ }, z.core.$strip>>;
11401
+ slack: z.ZodOptional<z.ZodObject<{
11402
+ workspace: z.ZodOptional<z.ZodString>;
11403
+ teamId: z.ZodOptional<z.ZodString>;
11404
+ installationId: z.ZodOptional<z.ZodString>;
11405
+ botUserId: z.ZodOptional<z.ZodString>;
11406
+ channels: z.ZodArray<z.ZodObject<{
11030
11407
  name: z.ZodString;
11031
- icon: z.ZodOptional<z.ZodString>;
11032
- model: z.ZodOptional<z.ZodString>;
11408
+ id: z.ZodOptional<z.ZodString>;
11409
+ project: z.ZodNullable<z.ZodString>;
11033
11410
  }, z.core.$strip>>;
11034
- skillsCount: z.ZodNumber;
11035
11411
  }, 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;
11412
+ github: z.ZodOptional<z.ZodObject<{
11413
+ installationId: z.ZodOptional<z.ZodString>;
11414
+ repos: z.ZodArray<z.ZodObject<{
11415
+ name: z.ZodString;
11416
+ project: z.ZodString;
11417
+ baseBranch: z.ZodOptional<z.ZodString>;
11056
11418
  }, z.core.$strip>>;
11057
11419
  }, z.core.$strip>>;
11058
- env: z.ZodNullable<z.ZodObject<{
11059
- id: z.ZodString;
11060
- }, z.core.$strip>>;
11061
- edges: z.ZodArray<z.ZodObject<{
11420
+ triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
11062
11421
  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>>;
11422
+ slug: z.ZodString;
11423
+ project: z.ZodString;
11424
+ schedule: z.ZodString;
11425
+ timezone: z.ZodOptional<z.ZodString>;
11426
+ inputMessage: z.ZodString;
11427
+ enabled: z.ZodOptional<z.ZodBoolean>;
11428
+ notes: z.ZodOptional<z.ZodString>;
11429
+ }, z.core.$strip>>>;
11430
+ }, z.core.$strip>;
11431
+ export declare const zTopologyShareListQuery: z.ZodObject<{
11432
+ scope: z.ZodOptional<z.ZodEnum<{
11433
+ user: "user";
11434
+ }>>;
11435
+ limit: z.ZodOptional<z.ZodNumber>;
11436
+ offset: z.ZodOptional<z.ZodNumber>;
11437
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11438
+ }, z.core.$strip>;
11439
+ /**
11440
+ * List of topology shares
11441
+ */
11442
+ export declare const zTopologyShareListResponse: z.ZodArray<z.ZodObject<{
11443
+ id: z.ZodString;
11444
+ shareToken: z.ZodString;
11445
+ orgId: z.ZodString;
11446
+ userId: z.ZodNullable<z.ZodString>;
11447
+ createdAt: z.ZodISODateTime;
11448
+ updatedAt: z.ZodISODateTime;
11449
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11450
+ }, z.core.$strip>>;
11451
+ export declare const zTopologyShareCreateQuery: z.ZodObject<{
11452
+ scope: z.ZodOptional<z.ZodEnum<{
11453
+ user: "user";
11454
+ }>>;
11455
+ }, z.core.$strip>;
11456
+ /**
11457
+ * Created topology share
11458
+ */
11459
+ export declare const zTopologyShareCreateResponse: z.ZodObject<{
11460
+ id: z.ZodString;
11461
+ shareToken: z.ZodString;
11462
+ orgId: z.ZodString;
11463
+ userId: z.ZodNullable<z.ZodString>;
11464
+ createdAt: z.ZodISODateTime;
11465
+ updatedAt: z.ZodISODateTime;
11466
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11467
+ }, z.core.$strip>;
11468
+ export declare const zTopologyShareArchivePath: z.ZodObject<{
11469
+ id: z.ZodString;
11470
+ }, z.core.$strip>;
11471
+ export declare const zTopologyShareArchiveQuery: z.ZodObject<{
11472
+ scope: z.ZodOptional<z.ZodEnum<{
11473
+ user: "user";
11474
+ }>>;
11475
+ }, z.core.$strip>;
11476
+ /**
11477
+ * Archived topology share
11478
+ */
11479
+ export declare const zTopologyShareArchiveResponse: z.ZodObject<{
11480
+ id: z.ZodString;
11481
+ shareToken: z.ZodString;
11482
+ orgId: z.ZodString;
11483
+ userId: z.ZodNullable<z.ZodString>;
11484
+ createdAt: z.ZodISODateTime;
11485
+ updatedAt: z.ZodISODateTime;
11486
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11073
11487
  }, z.core.$strip>;
11074
11488
  export declare const zTriggerListQuery: z.ZodObject<{
11075
11489
  scope: z.ZodOptional<z.ZodEnum<{
@@ -11077,6 +11491,7 @@ export declare const zTriggerListQuery: z.ZodObject<{
11077
11491
  }>>;
11078
11492
  limit: z.ZodOptional<z.ZodNumber>;
11079
11493
  offset: z.ZodOptional<z.ZodNumber>;
11494
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11080
11495
  projectId: z.ZodString;
11081
11496
  }, z.core.$strip>;
11082
11497
  /**
@@ -11221,6 +11636,7 @@ export declare const zWebhookTriggerListQuery: z.ZodObject<{
11221
11636
  }>>;
11222
11637
  limit: z.ZodOptional<z.ZodNumber>;
11223
11638
  offset: z.ZodOptional<z.ZodNumber>;
11639
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11224
11640
  projectId: z.ZodString;
11225
11641
  }, z.core.$strip>;
11226
11642
  /**
@@ -11497,12 +11913,76 @@ export declare const zSlackChannelSetResponse: z.ZodObject<{
11497
11913
  updatedAt: z.ZodISODateTime;
11498
11914
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
11499
11915
  }, z.core.$strip>;
11916
+ export declare const zEmailListQuery: z.ZodObject<{
11917
+ scope: z.ZodOptional<z.ZodEnum<{
11918
+ user: "user";
11919
+ }>>;
11920
+ }, z.core.$strip>;
11921
+ /**
11922
+ * Email mailboxes
11923
+ */
11924
+ export declare const zEmailListResponse: z.ZodArray<z.ZodObject<{
11925
+ id: z.ZodString;
11926
+ orgId: z.ZodString;
11927
+ podId: z.ZodString;
11928
+ projectId: z.ZodString;
11929
+ defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11930
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11931
+ localPart: z.ZodString;
11932
+ createdAt: z.ZodISODateTime;
11933
+ updatedAt: z.ZodISODateTime;
11934
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11935
+ address: z.ZodString;
11936
+ projectName: z.ZodNullable<z.ZodString>;
11937
+ }, z.core.$strip>>;
11938
+ export declare const zEmailUnsetPath: z.ZodObject<{
11939
+ projectId: z.ZodString;
11940
+ }, z.core.$strip>;
11941
+ export declare const zEmailUnsetQuery: z.ZodObject<{
11942
+ scope: z.ZodOptional<z.ZodEnum<{
11943
+ user: "user";
11944
+ }>>;
11945
+ }, z.core.$strip>;
11946
+ /**
11947
+ * Removed
11948
+ */
11949
+ export declare const zEmailUnsetResponse: z.ZodVoid;
11950
+ export declare const zEmailSetBody: z.ZodObject<{
11951
+ defaultProjectAgentId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11952
+ fallbackSenderUserId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11953
+ }, z.core.$strip>;
11954
+ export declare const zEmailSetPath: z.ZodObject<{
11955
+ projectId: z.ZodString;
11956
+ }, z.core.$strip>;
11957
+ export declare const zEmailSetQuery: z.ZodObject<{
11958
+ scope: z.ZodOptional<z.ZodEnum<{
11959
+ user: "user";
11960
+ }>>;
11961
+ }, z.core.$strip>;
11962
+ /**
11963
+ * The project's email mailbox
11964
+ */
11965
+ export declare const zEmailSetResponse: z.ZodObject<{
11966
+ id: z.ZodString;
11967
+ orgId: z.ZodString;
11968
+ podId: z.ZodString;
11969
+ projectId: z.ZodString;
11970
+ defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11971
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11972
+ localPart: z.ZodString;
11973
+ createdAt: z.ZodISODateTime;
11974
+ updatedAt: z.ZodISODateTime;
11975
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11976
+ address: z.ZodString;
11977
+ projectName: z.ZodNullable<z.ZodString>;
11978
+ }, z.core.$strip>;
11500
11979
  export declare const zVaultListQuery: z.ZodObject<{
11501
11980
  scope: z.ZodOptional<z.ZodEnum<{
11502
11981
  user: "user";
11503
11982
  }>>;
11504
11983
  limit: z.ZodOptional<z.ZodNumber>;
11505
11984
  offset: z.ZodOptional<z.ZodNumber>;
11985
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11506
11986
  }, z.core.$strip>;
11507
11987
  /**
11508
11988
  * List of vaults
@@ -11643,6 +12123,7 @@ export declare const zCredentialListQuery: z.ZodObject<{
11643
12123
  }>>;
11644
12124
  limit: z.ZodOptional<z.ZodNumber>;
11645
12125
  offset: z.ZodOptional<z.ZodNumber>;
12126
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11646
12127
  }, z.core.$strip>;
11647
12128
  /**
11648
12129
  * List of credentials
@@ -12185,12 +12666,12 @@ export declare const zRegistryAgentGetResponse: z.ZodObject<{
12185
12666
  export declare const zRegistrySkillListQuery: z.ZodObject<{
12186
12667
  limit: z.ZodOptional<z.ZodNumber>;
12187
12668
  offset: z.ZodOptional<z.ZodNumber>;
12669
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12188
12670
  sort: z.ZodOptional<z.ZodEnum<{
12189
12671
  popular: "popular";
12190
12672
  trending: "trending";
12191
12673
  recent: "recent";
12192
12674
  }>>;
12193
- includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12194
12675
  }, z.core.$strip>;
12195
12676
  /**
12196
12677
  * List of published skills
@@ -12276,12 +12757,12 @@ export declare const zRegistrySkillGetResponse: z.ZodObject<{
12276
12757
  export declare const zRegistryMcpListQuery: z.ZodObject<{
12277
12758
  limit: z.ZodOptional<z.ZodNumber>;
12278
12759
  offset: z.ZodOptional<z.ZodNumber>;
12760
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12279
12761
  sort: z.ZodOptional<z.ZodEnum<{
12280
12762
  popular: "popular";
12281
12763
  trending: "trending";
12282
12764
  recent: "recent";
12283
12765
  }>>;
12284
- includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12285
12766
  }, z.core.$strip>;
12286
12767
  /**
12287
12768
  * List of published MCPs
@@ -12728,3 +13209,193 @@ export declare const zRegistryReplaySharedFilesPresignDownloadResponse: z.ZodObj
12728
13209
  url: z.ZodString;
12729
13210
  expiresAt: z.ZodISODateTime;
12730
13211
  }, z.core.$strip>;
13212
+ export declare const zRegistryTopologyShareGetPath: z.ZodObject<{
13213
+ token: z.ZodString;
13214
+ }, z.core.$strip>;
13215
+ /**
13216
+ * Live topology for the shared org
13217
+ */
13218
+ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
13219
+ meta: z.ZodObject<{
13220
+ org: z.ZodString;
13221
+ orgId: z.ZodString;
13222
+ ownerUserId: z.ZodOptional<z.ZodString>;
13223
+ specVersion: z.ZodOptional<z.ZodString>;
13224
+ snapshotDate: z.ZodOptional<z.ZodString>;
13225
+ notes: z.ZodOptional<z.ZodString>;
13226
+ }, z.core.$strip>;
13227
+ agents: z.ZodArray<z.ZodObject<{
13228
+ id: z.ZodString;
13229
+ slug: z.ZodString;
13230
+ name: z.ZodString;
13231
+ model: z.ZodOptional<z.ZodString>;
13232
+ scope: z.ZodOptional<z.ZodEnum<{
13233
+ org: "org";
13234
+ user: "user";
13235
+ registry: "registry";
13236
+ }>>;
13237
+ icon: z.ZodOptional<z.ZodString>;
13238
+ promptRef: z.ZodOptional<z.ZodString>;
13239
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
13240
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString>>;
13241
+ notes: z.ZodOptional<z.ZodString>;
13242
+ }, z.core.$strip>>;
13243
+ mcps: z.ZodOptional<z.ZodArray<z.ZodObject<{
13244
+ id: z.ZodString;
13245
+ slug: z.ZodString;
13246
+ name: z.ZodString;
13247
+ registrySlug: z.ZodOptional<z.ZodString>;
13248
+ remoteUrl: z.ZodOptional<z.ZodURL>;
13249
+ auth: z.ZodOptional<z.ZodEnum<{
13250
+ basic: "basic";
13251
+ oauth: "oauth";
13252
+ none: "none";
13253
+ api_key: "api_key";
13254
+ }>>;
13255
+ credential: z.ZodOptional<z.ZodString>;
13256
+ icon: z.ZodOptional<z.ZodString>;
13257
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
13258
+ notes: z.ZodOptional<z.ZodString>;
13259
+ }, z.core.$strip>>>;
13260
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
13261
+ id: z.ZodString;
13262
+ slug: z.ZodString;
13263
+ source: z.ZodOptional<z.ZodEnum<{
13264
+ org: "org";
13265
+ user: "user";
13266
+ registry: "registry";
13267
+ }>>;
13268
+ notes: z.ZodOptional<z.ZodString>;
13269
+ }, z.core.$strip>>>;
13270
+ credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
13271
+ id: z.ZodString;
13272
+ slug: z.ZodString;
13273
+ provider: z.ZodString;
13274
+ authType: z.ZodOptional<z.ZodEnum<{
13275
+ basic: "basic";
13276
+ oauth: "oauth";
13277
+ env: "env";
13278
+ api_key: "api_key";
13279
+ }>>;
13280
+ vault: z.ZodString;
13281
+ notes: z.ZodOptional<z.ZodString>;
13282
+ }, z.core.$strip>>>;
13283
+ vaults: z.ZodOptional<z.ZodArray<z.ZodObject<{
13284
+ id: z.ZodString;
13285
+ slug: z.ZodString;
13286
+ name: z.ZodString;
13287
+ scope: z.ZodEnum<{
13288
+ org: "org";
13289
+ user: "user";
13290
+ registry: "registry";
13291
+ }>;
13292
+ attachedPods: z.ZodOptional<z.ZodArray<z.ZodString>>;
13293
+ notes: z.ZodOptional<z.ZodString>;
13294
+ }, z.core.$strip>>>;
13295
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
13296
+ id: z.ZodString;
13297
+ slug: z.ZodString;
13298
+ name: z.ZodString;
13299
+ scope: z.ZodEnum<{
13300
+ org: "org";
13301
+ user: "user";
13302
+ registry: "registry";
13303
+ }>;
13304
+ notes: z.ZodOptional<z.ZodString>;
13305
+ }, z.core.$strip>>>;
13306
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
13307
+ id: z.ZodString;
13308
+ slug: z.ZodString;
13309
+ name: z.ZodString;
13310
+ scope: z.ZodEnum<{
13311
+ org: "org";
13312
+ user: "user";
13313
+ registry: "registry";
13314
+ }>;
13315
+ notes: z.ZodOptional<z.ZodString>;
13316
+ }, z.core.$strip>>>;
13317
+ pods: z.ZodArray<z.ZodObject<{
13318
+ id: z.ZodString;
13319
+ slug: z.ZodString;
13320
+ name: z.ZodString;
13321
+ scope: z.ZodOptional<z.ZodEnum<{
13322
+ org: "org";
13323
+ user: "user";
13324
+ registry: "registry";
13325
+ }>>;
13326
+ vaults: z.ZodOptional<z.ZodArray<z.ZodString>>;
13327
+ notes: z.ZodOptional<z.ZodString>;
13328
+ }, z.core.$strip>>;
13329
+ projects: z.ZodArray<z.ZodObject<{
13330
+ id: z.ZodString;
13331
+ slug: z.ZodString;
13332
+ name: z.ZodString;
13333
+ pod: z.ZodString;
13334
+ buildOrder: z.ZodOptional<z.ZodInt>;
13335
+ slackChannel: z.ZodOptional<z.ZodString>;
13336
+ primaryAgent: z.ZodOptional<z.ZodString>;
13337
+ subAgents: z.ZodOptional<z.ZodArray<z.ZodString>>;
13338
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
13339
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
13340
+ restricted: z.ZodOptional<z.ZodBoolean>;
13341
+ requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
13342
+ id: z.ZodString;
13343
+ kind: z.ZodEnum<{
13344
+ agent_attached: "agent_attached";
13345
+ skill_attached: "skill_attached";
13346
+ mcp_wired: "mcp_wired";
13347
+ credential_present: "credential_present";
13348
+ trigger_configured: "trigger_configured";
13349
+ slack_mapped: "slack_mapped";
13350
+ file_store_attached: "file_store_attached";
13351
+ memory_store_attached: "memory_store_attached";
13352
+ vault_attached: "vault_attached";
13353
+ capability: "capability";
13354
+ other: "other";
13355
+ }>;
13356
+ must: z.ZodString;
13357
+ agent: z.ZodOptional<z.ZodString>;
13358
+ mcp: z.ZodOptional<z.ZodString>;
13359
+ skill: z.ZodOptional<z.ZodString>;
13360
+ credential: z.ZodOptional<z.ZodString>;
13361
+ trigger: z.ZodOptional<z.ZodString>;
13362
+ vault: z.ZodOptional<z.ZodString>;
13363
+ store: z.ZodOptional<z.ZodString>;
13364
+ channel: z.ZodOptional<z.ZodString>;
13365
+ blocking: z.ZodOptional<z.ZodBoolean>;
13366
+ reason: z.ZodOptional<z.ZodString>;
13367
+ verify: z.ZodOptional<z.ZodString>;
13368
+ blockedBy: z.ZodOptional<z.ZodString>;
13369
+ }, z.core.$strip>>>;
13370
+ notes: z.ZodOptional<z.ZodString>;
13371
+ }, z.core.$strip>>;
13372
+ slack: z.ZodOptional<z.ZodObject<{
13373
+ workspace: z.ZodOptional<z.ZodString>;
13374
+ teamId: z.ZodOptional<z.ZodString>;
13375
+ installationId: z.ZodOptional<z.ZodString>;
13376
+ botUserId: z.ZodOptional<z.ZodString>;
13377
+ channels: z.ZodArray<z.ZodObject<{
13378
+ name: z.ZodString;
13379
+ id: z.ZodOptional<z.ZodString>;
13380
+ project: z.ZodNullable<z.ZodString>;
13381
+ }, z.core.$strip>>;
13382
+ }, z.core.$strip>>;
13383
+ github: z.ZodOptional<z.ZodObject<{
13384
+ installationId: z.ZodOptional<z.ZodString>;
13385
+ repos: z.ZodArray<z.ZodObject<{
13386
+ name: z.ZodString;
13387
+ project: z.ZodString;
13388
+ baseBranch: z.ZodOptional<z.ZodString>;
13389
+ }, z.core.$strip>>;
13390
+ }, z.core.$strip>>;
13391
+ triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
13392
+ id: z.ZodString;
13393
+ slug: z.ZodString;
13394
+ project: z.ZodString;
13395
+ schedule: z.ZodString;
13396
+ timezone: z.ZodOptional<z.ZodString>;
13397
+ inputMessage: z.ZodString;
13398
+ enabled: z.ZodOptional<z.ZodBoolean>;
13399
+ notes: z.ZodOptional<z.ZodString>;
13400
+ }, z.core.$strip>>>;
13401
+ }, z.core.$strip>;