@renai-labs/sdk 0.1.9 → 0.1.11

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,204 @@ 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<{
1126
+ triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
990
1127
  id: z.ZodString;
991
- }, z.core.$strip>>;
992
- edges: z.ZodArray<z.ZodObject<{
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>>>;
1136
+ emails: z.ZodOptional<z.ZodArray<z.ZodObject<{
993
1137
  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>>;
1138
+ project: z.ZodString;
1139
+ localPart: z.ZodString;
1140
+ address: z.ZodEmail;
1141
+ }, z.core.$strip>>>;
1004
1142
  }, z.core.$strip>;
1005
1143
  export declare const zSkillVersion: z.ZodObject<{
1006
1144
  id: z.ZodString;
@@ -1217,6 +1355,9 @@ export declare const zSessionMessagesPage: z.ZodObject<{
1217
1355
  }, z.core.$strip>;
1218
1356
  export declare const zSessionUrlResponse: z.ZodObject<{
1219
1357
  url: z.ZodString;
1358
+ authedUrl: z.ZodString;
1359
+ serverPassword: z.ZodString;
1360
+ username: z.ZodString;
1220
1361
  }, z.core.$strip>;
1221
1362
  export declare const zOpencodeSession: z.ZodObject<{
1222
1363
  id: z.ZodString;
@@ -2406,8 +2547,8 @@ export declare const zSearchResult: z.ZodObject<{
2406
2547
  description: z.ZodNullable<z.ZodString>;
2407
2548
  icon: z.ZodNullable<z.ZodString>;
2408
2549
  source: z.ZodEnum<{
2409
- user: "user";
2410
2550
  org: "org";
2551
+ user: "user";
2411
2552
  registry: "registry";
2412
2553
  }>;
2413
2554
  updatedAt: z.ZodISODateTime;
@@ -2477,6 +2618,7 @@ export declare const zAgentListQuery: z.ZodObject<{
2477
2618
  }>>;
2478
2619
  limit: z.ZodOptional<z.ZodNumber>;
2479
2620
  offset: z.ZodOptional<z.ZodNumber>;
2621
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
2480
2622
  }, z.core.$strip>;
2481
2623
  /**
2482
2624
  * List of agents
@@ -2746,8 +2888,8 @@ export declare const zAgentCreateResponse: z.ZodObject<{
2746
2888
  export declare const zAgentSearchBody: z.ZodObject<{
2747
2889
  query: z.ZodOptional<z.ZodString>;
2748
2890
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2749
- user: "user";
2750
2891
  org: "org";
2892
+ user: "user";
2751
2893
  registry: "registry";
2752
2894
  }>>>>;
2753
2895
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -2767,8 +2909,8 @@ export declare const zAgentSearchResponse: z.ZodArray<z.ZodObject<{
2767
2909
  description: z.ZodNullable<z.ZodString>;
2768
2910
  icon: z.ZodNullable<z.ZodString>;
2769
2911
  source: z.ZodEnum<{
2770
- user: "user";
2771
2912
  org: "org";
2913
+ user: "user";
2772
2914
  registry: "registry";
2773
2915
  }>;
2774
2916
  updatedAt: z.ZodISODateTime;
@@ -3247,6 +3389,7 @@ export declare const zAgentVersionListQuery: z.ZodObject<{
3247
3389
  }>>;
3248
3390
  limit: z.ZodOptional<z.ZodNumber>;
3249
3391
  offset: z.ZodOptional<z.ZodNumber>;
3392
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
3250
3393
  }, z.core.$strip>;
3251
3394
  /**
3252
3395
  * List of agent versions
@@ -4069,6 +4212,7 @@ export declare const zBlueprintListQuery: z.ZodObject<{
4069
4212
  }>>;
4070
4213
  limit: z.ZodOptional<z.ZodNumber>;
4071
4214
  offset: z.ZodOptional<z.ZodNumber>;
4215
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
4072
4216
  }, z.core.$strip>;
4073
4217
  /**
4074
4218
  * List of blueprints
@@ -5862,6 +6006,7 @@ export declare const zEnvironmentListQuery: z.ZodObject<{
5862
6006
  orgId: z.ZodOptional<z.ZodString>;
5863
6007
  limit: z.ZodOptional<z.ZodNumber>;
5864
6008
  offset: z.ZodOptional<z.ZodNumber>;
6009
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
5865
6010
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5866
6011
  }, z.core.$strip>;
5867
6012
  /**
@@ -6143,6 +6288,7 @@ export declare const zFileStoreListQuery: z.ZodObject<{
6143
6288
  orgId: z.ZodOptional<z.ZodString>;
6144
6289
  limit: z.ZodOptional<z.ZodNumber>;
6145
6290
  offset: z.ZodOptional<z.ZodNumber>;
6291
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
6146
6292
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6147
6293
  }, z.core.$strip>;
6148
6294
  /**
@@ -6502,6 +6648,7 @@ export declare const zMcpListQuery: z.ZodObject<{
6502
6648
  }>>;
6503
6649
  limit: z.ZodOptional<z.ZodNumber>;
6504
6650
  offset: z.ZodOptional<z.ZodNumber>;
6651
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
6505
6652
  sort: z.ZodOptional<z.ZodEnum<{
6506
6653
  popular: "popular";
6507
6654
  trending: "trending";
@@ -6737,8 +6884,8 @@ export declare const zMcpCreateResponse: z.ZodObject<{
6737
6884
  export declare const zMcpSearchBody: z.ZodObject<{
6738
6885
  query: z.ZodOptional<z.ZodString>;
6739
6886
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
6740
- user: "user";
6741
6887
  org: "org";
6888
+ user: "user";
6742
6889
  registry: "registry";
6743
6890
  }>>>>;
6744
6891
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -6758,8 +6905,8 @@ export declare const zMcpSearchResponse: z.ZodArray<z.ZodObject<{
6758
6905
  description: z.ZodNullable<z.ZodString>;
6759
6906
  icon: z.ZodNullable<z.ZodString>;
6760
6907
  source: z.ZodEnum<{
6761
- user: "user";
6762
6908
  org: "org";
6909
+ user: "user";
6763
6910
  registry: "registry";
6764
6911
  }>;
6765
6912
  updatedAt: z.ZodISODateTime;
@@ -7539,6 +7686,7 @@ export declare const zMemoryStoreListQuery: z.ZodObject<{
7539
7686
  orgId: z.ZodOptional<z.ZodString>;
7540
7687
  limit: z.ZodOptional<z.ZodNumber>;
7541
7688
  offset: z.ZodOptional<z.ZodNumber>;
7689
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
7542
7690
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7543
7691
  }, z.core.$strip>;
7544
7692
  /**
@@ -7875,6 +8023,7 @@ export declare const zPodListQuery: z.ZodObject<{
7875
8023
  orgId: z.ZodOptional<z.ZodString>;
7876
8024
  limit: z.ZodOptional<z.ZodNumber>;
7877
8025
  offset: z.ZodOptional<z.ZodNumber>;
8026
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
7878
8027
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7879
8028
  }, z.core.$strip>;
7880
8029
  /**
@@ -8222,6 +8371,7 @@ export declare const zProjectListQuery: z.ZodObject<{
8222
8371
  }>>;
8223
8372
  limit: z.ZodOptional<z.ZodNumber>;
8224
8373
  offset: z.ZodOptional<z.ZodNumber>;
8374
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
8225
8375
  podId: z.ZodOptional<z.ZodString>;
8226
8376
  }, z.core.$strip>;
8227
8377
  /**
@@ -9600,6 +9750,7 @@ export declare const zReplayListQuery: z.ZodObject<{
9600
9750
  }>>;
9601
9751
  limit: z.ZodOptional<z.ZodNumber>;
9602
9752
  offset: z.ZodOptional<z.ZodNumber>;
9753
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
9603
9754
  publisherId: z.ZodOptional<z.ZodString>;
9604
9755
  }, z.core.$strip>;
9605
9756
  /**
@@ -9943,6 +10094,7 @@ export declare const zSessionListQuery: z.ZodObject<{
9943
10094
  createdById: z.ZodOptional<z.ZodString>;
9944
10095
  limit: z.ZodOptional<z.ZodNumber>;
9945
10096
  offset: z.ZodOptional<z.ZodNumber>;
10097
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
9946
10098
  }, z.core.$strip>;
9947
10099
  /**
9948
10100
  * List of sessions
@@ -10190,6 +10342,9 @@ export declare const zSessionUrlQuery: z.ZodObject<{
10190
10342
  */
10191
10343
  export declare const zSessionUrlResponse2: z.ZodObject<{
10192
10344
  url: z.ZodString;
10345
+ authedUrl: z.ZodString;
10346
+ serverPassword: z.ZodString;
10347
+ username: z.ZodString;
10193
10348
  }, z.core.$strip>;
10194
10349
  export declare const zSessionMessagesListPath: z.ZodObject<{
10195
10350
  id: z.ZodString;
@@ -10385,6 +10540,7 @@ export declare const zSkillListQuery: z.ZodObject<{
10385
10540
  }>>;
10386
10541
  limit: z.ZodOptional<z.ZodNumber>;
10387
10542
  offset: z.ZodOptional<z.ZodNumber>;
10543
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
10388
10544
  sort: z.ZodOptional<z.ZodEnum<{
10389
10545
  popular: "popular";
10390
10546
  trending: "trending";
@@ -10488,8 +10644,8 @@ export declare const zSkillCreateResponse: z.ZodObject<{
10488
10644
  export declare const zSkillSearchBody: z.ZodObject<{
10489
10645
  query: z.ZodOptional<z.ZodString>;
10490
10646
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
10491
- user: "user";
10492
10647
  org: "org";
10648
+ user: "user";
10493
10649
  registry: "registry";
10494
10650
  }>>>>;
10495
10651
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -10509,8 +10665,8 @@ export declare const zSkillSearchResponse: z.ZodArray<z.ZodObject<{
10509
10665
  description: z.ZodNullable<z.ZodString>;
10510
10666
  icon: z.ZodNullable<z.ZodString>;
10511
10667
  source: z.ZodEnum<{
10512
- user: "user";
10513
10668
  org: "org";
10669
+ user: "user";
10514
10670
  registry: "registry";
10515
10671
  }>;
10516
10672
  updatedAt: z.ZodISODateTime;
@@ -10927,6 +11083,7 @@ export declare const zSkillVersionListQuery: z.ZodObject<{
10927
11083
  }>>;
10928
11084
  limit: z.ZodOptional<z.ZodNumber>;
10929
11085
  offset: z.ZodOptional<z.ZodNumber>;
11086
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
10930
11087
  }, z.core.$strip>;
10931
11088
  /**
10932
11089
  * List of skill versions
@@ -11094,79 +11251,251 @@ export declare const zSkillVersionArchiveResponse: z.ZodObject<{
11094
11251
  * Agent-stack topology
11095
11252
  */
11096
11253
  export declare const zTopologyGetResponse: z.ZodObject<{
11097
- surfaces: z.ZodArray<z.ZodObject<{
11254
+ meta: z.ZodObject<{
11255
+ org: z.ZodString;
11256
+ orgId: z.ZodString;
11257
+ ownerUserId: z.ZodOptional<z.ZodString>;
11258
+ specVersion: z.ZodOptional<z.ZodString>;
11259
+ snapshotDate: z.ZodOptional<z.ZodString>;
11260
+ notes: z.ZodOptional<z.ZodString>;
11261
+ }, z.core.$strip>;
11262
+ agents: z.ZodArray<z.ZodObject<{
11098
11263
  id: z.ZodString;
11099
- kind: z.ZodEnum<{
11100
- github: "github";
11101
- mcp: "mcp";
11102
- cron: "cron";
11103
- webhook: "webhook";
11104
- slack: "slack";
11105
- }>;
11264
+ slug: z.ZodString;
11106
11265
  name: z.ZodString;
11266
+ model: z.ZodOptional<z.ZodString>;
11267
+ scope: z.ZodOptional<z.ZodEnum<{
11268
+ org: "org";
11269
+ user: "user";
11270
+ registry: "registry";
11271
+ }>>;
11107
11272
  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>;
11273
+ promptRef: z.ZodOptional<z.ZodString>;
11274
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
11275
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString>>;
11276
+ notes: z.ZodOptional<z.ZodString>;
11115
11277
  }, z.core.$strip>>;
11278
+ mcps: z.ZodOptional<z.ZodArray<z.ZodObject<{
11279
+ id: z.ZodString;
11280
+ slug: z.ZodString;
11281
+ name: z.ZodString;
11282
+ registrySlug: z.ZodOptional<z.ZodString>;
11283
+ remoteUrl: z.ZodOptional<z.ZodURL>;
11284
+ auth: z.ZodOptional<z.ZodEnum<{
11285
+ basic: "basic";
11286
+ oauth: "oauth";
11287
+ none: "none";
11288
+ api_key: "api_key";
11289
+ }>>;
11290
+ credential: z.ZodOptional<z.ZodString>;
11291
+ icon: z.ZodOptional<z.ZodString>;
11292
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
11293
+ notes: z.ZodOptional<z.ZodString>;
11294
+ }, z.core.$strip>>>;
11295
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
11296
+ id: z.ZodString;
11297
+ slug: z.ZodString;
11298
+ source: z.ZodOptional<z.ZodEnum<{
11299
+ org: "org";
11300
+ user: "user";
11301
+ registry: "registry";
11302
+ }>>;
11303
+ notes: z.ZodOptional<z.ZodString>;
11304
+ }, z.core.$strip>>>;
11305
+ credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
11306
+ id: z.ZodString;
11307
+ slug: z.ZodString;
11308
+ provider: z.ZodString;
11309
+ authType: z.ZodOptional<z.ZodEnum<{
11310
+ basic: "basic";
11311
+ oauth: "oauth";
11312
+ env: "env";
11313
+ api_key: "api_key";
11314
+ }>>;
11315
+ vault: z.ZodString;
11316
+ notes: z.ZodOptional<z.ZodString>;
11317
+ }, z.core.$strip>>>;
11318
+ vaults: z.ZodOptional<z.ZodArray<z.ZodObject<{
11319
+ id: z.ZodString;
11320
+ slug: z.ZodString;
11321
+ name: z.ZodString;
11322
+ scope: z.ZodEnum<{
11323
+ org: "org";
11324
+ user: "user";
11325
+ registry: "registry";
11326
+ }>;
11327
+ attachedPods: z.ZodOptional<z.ZodArray<z.ZodString>>;
11328
+ notes: z.ZodOptional<z.ZodString>;
11329
+ }, z.core.$strip>>>;
11330
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
11331
+ id: z.ZodString;
11332
+ slug: z.ZodString;
11333
+ name: z.ZodString;
11334
+ scope: z.ZodEnum<{
11335
+ org: "org";
11336
+ user: "user";
11337
+ registry: "registry";
11338
+ }>;
11339
+ notes: z.ZodOptional<z.ZodString>;
11340
+ }, z.core.$strip>>>;
11341
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
11342
+ id: z.ZodString;
11343
+ slug: z.ZodString;
11344
+ name: z.ZodString;
11345
+ scope: z.ZodEnum<{
11346
+ org: "org";
11347
+ user: "user";
11348
+ registry: "registry";
11349
+ }>;
11350
+ notes: z.ZodOptional<z.ZodString>;
11351
+ }, z.core.$strip>>>;
11116
11352
  pods: z.ZodArray<z.ZodObject<{
11117
11353
  id: z.ZodString;
11354
+ slug: z.ZodString;
11118
11355
  name: z.ZodString;
11119
- isPrivate: z.ZodBoolean;
11356
+ scope: z.ZodOptional<z.ZodEnum<{
11357
+ org: "org";
11358
+ user: "user";
11359
+ registry: "registry";
11360
+ }>>;
11361
+ vaults: z.ZodOptional<z.ZodArray<z.ZodString>>;
11362
+ notes: z.ZodOptional<z.ZodString>;
11120
11363
  }, z.core.$strip>>;
11121
11364
  projects: z.ZodArray<z.ZodObject<{
11122
11365
  id: z.ZodString;
11123
- podId: z.ZodString;
11366
+ slug: z.ZodString;
11124
11367
  name: z.ZodString;
11125
- agents: z.ZodArray<z.ZodObject<{
11368
+ pod: z.ZodString;
11369
+ buildOrder: z.ZodOptional<z.ZodInt>;
11370
+ slackChannel: z.ZodOptional<z.ZodString>;
11371
+ primaryAgent: z.ZodOptional<z.ZodString>;
11372
+ subAgents: z.ZodOptional<z.ZodArray<z.ZodString>>;
11373
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
11374
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
11375
+ restricted: z.ZodOptional<z.ZodBoolean>;
11376
+ requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
11126
11377
  id: z.ZodString;
11378
+ kind: z.ZodEnum<{
11379
+ agent_attached: "agent_attached";
11380
+ skill_attached: "skill_attached";
11381
+ mcp_wired: "mcp_wired";
11382
+ credential_present: "credential_present";
11383
+ trigger_configured: "trigger_configured";
11384
+ slack_mapped: "slack_mapped";
11385
+ file_store_attached: "file_store_attached";
11386
+ memory_store_attached: "memory_store_attached";
11387
+ vault_attached: "vault_attached";
11388
+ capability: "capability";
11389
+ other: "other";
11390
+ }>;
11391
+ must: z.ZodString;
11392
+ agent: z.ZodOptional<z.ZodString>;
11393
+ mcp: z.ZodOptional<z.ZodString>;
11394
+ skill: z.ZodOptional<z.ZodString>;
11395
+ credential: z.ZodOptional<z.ZodString>;
11396
+ trigger: z.ZodOptional<z.ZodString>;
11397
+ vault: z.ZodOptional<z.ZodString>;
11398
+ store: z.ZodOptional<z.ZodString>;
11399
+ channel: z.ZodOptional<z.ZodString>;
11400
+ blocking: z.ZodOptional<z.ZodBoolean>;
11401
+ reason: z.ZodOptional<z.ZodString>;
11402
+ verify: z.ZodOptional<z.ZodString>;
11403
+ blockedBy: z.ZodOptional<z.ZodString>;
11404
+ }, z.core.$strip>>>;
11405
+ notes: z.ZodOptional<z.ZodString>;
11406
+ }, z.core.$strip>>;
11407
+ slack: z.ZodOptional<z.ZodObject<{
11408
+ workspace: z.ZodOptional<z.ZodString>;
11409
+ teamId: z.ZodOptional<z.ZodString>;
11410
+ installationId: z.ZodOptional<z.ZodString>;
11411
+ botUserId: z.ZodOptional<z.ZodString>;
11412
+ channels: z.ZodArray<z.ZodObject<{
11127
11413
  name: z.ZodString;
11128
- icon: z.ZodOptional<z.ZodString>;
11129
- model: z.ZodOptional<z.ZodString>;
11414
+ id: z.ZodOptional<z.ZodString>;
11415
+ project: z.ZodNullable<z.ZodString>;
11130
11416
  }, z.core.$strip>>;
11131
- skillsCount: z.ZodNumber;
11132
11417
  }, 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;
11418
+ github: z.ZodOptional<z.ZodObject<{
11419
+ installationId: z.ZodOptional<z.ZodString>;
11420
+ repos: z.ZodArray<z.ZodObject<{
11421
+ name: z.ZodString;
11422
+ project: z.ZodString;
11423
+ baseBranch: z.ZodOptional<z.ZodString>;
11153
11424
  }, z.core.$strip>>;
11154
11425
  }, z.core.$strip>>;
11155
- env: z.ZodNullable<z.ZodObject<{
11426
+ triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
11156
11427
  id: z.ZodString;
11157
- }, z.core.$strip>>;
11158
- edges: z.ZodArray<z.ZodObject<{
11428
+ slug: z.ZodString;
11429
+ project: z.ZodString;
11430
+ schedule: z.ZodString;
11431
+ timezone: z.ZodOptional<z.ZodString>;
11432
+ inputMessage: z.ZodString;
11433
+ enabled: z.ZodOptional<z.ZodBoolean>;
11434
+ notes: z.ZodOptional<z.ZodString>;
11435
+ }, z.core.$strip>>>;
11436
+ emails: z.ZodOptional<z.ZodArray<z.ZodObject<{
11159
11437
  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>>;
11438
+ project: z.ZodString;
11439
+ localPart: z.ZodString;
11440
+ address: z.ZodEmail;
11441
+ }, z.core.$strip>>>;
11442
+ }, z.core.$strip>;
11443
+ export declare const zTopologyShareListQuery: z.ZodObject<{
11444
+ scope: z.ZodOptional<z.ZodEnum<{
11445
+ user: "user";
11446
+ }>>;
11447
+ limit: z.ZodOptional<z.ZodNumber>;
11448
+ offset: z.ZodOptional<z.ZodNumber>;
11449
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11450
+ }, z.core.$strip>;
11451
+ /**
11452
+ * List of topology shares
11453
+ */
11454
+ export declare const zTopologyShareListResponse: z.ZodArray<z.ZodObject<{
11455
+ id: z.ZodString;
11456
+ shareToken: z.ZodString;
11457
+ orgId: z.ZodString;
11458
+ userId: z.ZodNullable<z.ZodString>;
11459
+ createdAt: z.ZodISODateTime;
11460
+ updatedAt: z.ZodISODateTime;
11461
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11462
+ }, z.core.$strip>>;
11463
+ export declare const zTopologyShareCreateQuery: z.ZodObject<{
11464
+ scope: z.ZodOptional<z.ZodEnum<{
11465
+ user: "user";
11466
+ }>>;
11467
+ }, z.core.$strip>;
11468
+ /**
11469
+ * Created topology share
11470
+ */
11471
+ export declare const zTopologyShareCreateResponse: z.ZodObject<{
11472
+ id: z.ZodString;
11473
+ shareToken: z.ZodString;
11474
+ orgId: z.ZodString;
11475
+ userId: z.ZodNullable<z.ZodString>;
11476
+ createdAt: z.ZodISODateTime;
11477
+ updatedAt: z.ZodISODateTime;
11478
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11479
+ }, z.core.$strip>;
11480
+ export declare const zTopologyShareArchivePath: z.ZodObject<{
11481
+ id: z.ZodString;
11482
+ }, z.core.$strip>;
11483
+ export declare const zTopologyShareArchiveQuery: z.ZodObject<{
11484
+ scope: z.ZodOptional<z.ZodEnum<{
11485
+ user: "user";
11486
+ }>>;
11487
+ }, z.core.$strip>;
11488
+ /**
11489
+ * Archived topology share
11490
+ */
11491
+ export declare const zTopologyShareArchiveResponse: z.ZodObject<{
11492
+ id: z.ZodString;
11493
+ shareToken: z.ZodString;
11494
+ orgId: z.ZodString;
11495
+ userId: z.ZodNullable<z.ZodString>;
11496
+ createdAt: z.ZodISODateTime;
11497
+ updatedAt: z.ZodISODateTime;
11498
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11170
11499
  }, z.core.$strip>;
11171
11500
  export declare const zTriggerListQuery: z.ZodObject<{
11172
11501
  scope: z.ZodOptional<z.ZodEnum<{
@@ -11174,6 +11503,7 @@ export declare const zTriggerListQuery: z.ZodObject<{
11174
11503
  }>>;
11175
11504
  limit: z.ZodOptional<z.ZodNumber>;
11176
11505
  offset: z.ZodOptional<z.ZodNumber>;
11506
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11177
11507
  projectId: z.ZodString;
11178
11508
  }, z.core.$strip>;
11179
11509
  /**
@@ -11318,6 +11648,7 @@ export declare const zWebhookTriggerListQuery: z.ZodObject<{
11318
11648
  }>>;
11319
11649
  limit: z.ZodOptional<z.ZodNumber>;
11320
11650
  offset: z.ZodOptional<z.ZodNumber>;
11651
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11321
11652
  projectId: z.ZodString;
11322
11653
  }, z.core.$strip>;
11323
11654
  /**
@@ -11594,12 +11925,76 @@ export declare const zSlackChannelSetResponse: z.ZodObject<{
11594
11925
  updatedAt: z.ZodISODateTime;
11595
11926
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
11596
11927
  }, z.core.$strip>;
11928
+ export declare const zEmailListQuery: z.ZodObject<{
11929
+ scope: z.ZodOptional<z.ZodEnum<{
11930
+ user: "user";
11931
+ }>>;
11932
+ }, z.core.$strip>;
11933
+ /**
11934
+ * Email mailboxes
11935
+ */
11936
+ export declare const zEmailListResponse: z.ZodArray<z.ZodObject<{
11937
+ id: z.ZodString;
11938
+ orgId: z.ZodString;
11939
+ podId: z.ZodString;
11940
+ projectId: z.ZodString;
11941
+ defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11942
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11943
+ localPart: z.ZodString;
11944
+ createdAt: z.ZodISODateTime;
11945
+ updatedAt: z.ZodISODateTime;
11946
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11947
+ address: z.ZodString;
11948
+ projectName: z.ZodNullable<z.ZodString>;
11949
+ }, z.core.$strip>>;
11950
+ export declare const zEmailUnsetPath: z.ZodObject<{
11951
+ projectId: z.ZodString;
11952
+ }, z.core.$strip>;
11953
+ export declare const zEmailUnsetQuery: z.ZodObject<{
11954
+ scope: z.ZodOptional<z.ZodEnum<{
11955
+ user: "user";
11956
+ }>>;
11957
+ }, z.core.$strip>;
11958
+ /**
11959
+ * Removed
11960
+ */
11961
+ export declare const zEmailUnsetResponse: z.ZodVoid;
11962
+ export declare const zEmailSetBody: z.ZodObject<{
11963
+ defaultProjectAgentId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11964
+ fallbackSenderUserId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11965
+ }, z.core.$strip>;
11966
+ export declare const zEmailSetPath: z.ZodObject<{
11967
+ projectId: z.ZodString;
11968
+ }, z.core.$strip>;
11969
+ export declare const zEmailSetQuery: z.ZodObject<{
11970
+ scope: z.ZodOptional<z.ZodEnum<{
11971
+ user: "user";
11972
+ }>>;
11973
+ }, z.core.$strip>;
11974
+ /**
11975
+ * The project's email mailbox
11976
+ */
11977
+ export declare const zEmailSetResponse: z.ZodObject<{
11978
+ id: z.ZodString;
11979
+ orgId: z.ZodString;
11980
+ podId: z.ZodString;
11981
+ projectId: z.ZodString;
11982
+ defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11983
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11984
+ localPart: z.ZodString;
11985
+ createdAt: z.ZodISODateTime;
11986
+ updatedAt: z.ZodISODateTime;
11987
+ archivedAt: z.ZodNullable<z.ZodISODateTime>;
11988
+ address: z.ZodString;
11989
+ projectName: z.ZodNullable<z.ZodString>;
11990
+ }, z.core.$strip>;
11597
11991
  export declare const zVaultListQuery: z.ZodObject<{
11598
11992
  scope: z.ZodOptional<z.ZodEnum<{
11599
11993
  user: "user";
11600
11994
  }>>;
11601
11995
  limit: z.ZodOptional<z.ZodNumber>;
11602
11996
  offset: z.ZodOptional<z.ZodNumber>;
11997
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11603
11998
  }, z.core.$strip>;
11604
11999
  /**
11605
12000
  * List of vaults
@@ -11740,6 +12135,7 @@ export declare const zCredentialListQuery: z.ZodObject<{
11740
12135
  }>>;
11741
12136
  limit: z.ZodOptional<z.ZodNumber>;
11742
12137
  offset: z.ZodOptional<z.ZodNumber>;
12138
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11743
12139
  }, z.core.$strip>;
11744
12140
  /**
11745
12141
  * List of credentials
@@ -12282,12 +12678,12 @@ export declare const zRegistryAgentGetResponse: z.ZodObject<{
12282
12678
  export declare const zRegistrySkillListQuery: z.ZodObject<{
12283
12679
  limit: z.ZodOptional<z.ZodNumber>;
12284
12680
  offset: z.ZodOptional<z.ZodNumber>;
12681
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12285
12682
  sort: z.ZodOptional<z.ZodEnum<{
12286
12683
  popular: "popular";
12287
12684
  trending: "trending";
12288
12685
  recent: "recent";
12289
12686
  }>>;
12290
- includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12291
12687
  }, z.core.$strip>;
12292
12688
  /**
12293
12689
  * List of published skills
@@ -12373,12 +12769,12 @@ export declare const zRegistrySkillGetResponse: z.ZodObject<{
12373
12769
  export declare const zRegistryMcpListQuery: z.ZodObject<{
12374
12770
  limit: z.ZodOptional<z.ZodNumber>;
12375
12771
  offset: z.ZodOptional<z.ZodNumber>;
12772
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12376
12773
  sort: z.ZodOptional<z.ZodEnum<{
12377
12774
  popular: "popular";
12378
12775
  trending: "trending";
12379
12776
  recent: "recent";
12380
12777
  }>>;
12381
- includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12382
12778
  }, z.core.$strip>;
12383
12779
  /**
12384
12780
  * List of published MCPs
@@ -12825,3 +13221,199 @@ export declare const zRegistryReplaySharedFilesPresignDownloadResponse: z.ZodObj
12825
13221
  url: z.ZodString;
12826
13222
  expiresAt: z.ZodISODateTime;
12827
13223
  }, z.core.$strip>;
13224
+ export declare const zRegistryTopologyShareGetPath: z.ZodObject<{
13225
+ token: z.ZodString;
13226
+ }, z.core.$strip>;
13227
+ /**
13228
+ * Live topology for the shared org
13229
+ */
13230
+ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
13231
+ meta: z.ZodObject<{
13232
+ org: z.ZodString;
13233
+ orgId: z.ZodString;
13234
+ ownerUserId: z.ZodOptional<z.ZodString>;
13235
+ specVersion: z.ZodOptional<z.ZodString>;
13236
+ snapshotDate: z.ZodOptional<z.ZodString>;
13237
+ notes: z.ZodOptional<z.ZodString>;
13238
+ }, z.core.$strip>;
13239
+ agents: z.ZodArray<z.ZodObject<{
13240
+ id: z.ZodString;
13241
+ slug: z.ZodString;
13242
+ name: z.ZodString;
13243
+ model: z.ZodOptional<z.ZodString>;
13244
+ scope: z.ZodOptional<z.ZodEnum<{
13245
+ org: "org";
13246
+ user: "user";
13247
+ registry: "registry";
13248
+ }>>;
13249
+ icon: z.ZodOptional<z.ZodString>;
13250
+ promptRef: z.ZodOptional<z.ZodString>;
13251
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
13252
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString>>;
13253
+ notes: z.ZodOptional<z.ZodString>;
13254
+ }, z.core.$strip>>;
13255
+ mcps: z.ZodOptional<z.ZodArray<z.ZodObject<{
13256
+ id: z.ZodString;
13257
+ slug: z.ZodString;
13258
+ name: z.ZodString;
13259
+ registrySlug: z.ZodOptional<z.ZodString>;
13260
+ remoteUrl: z.ZodOptional<z.ZodURL>;
13261
+ auth: z.ZodOptional<z.ZodEnum<{
13262
+ basic: "basic";
13263
+ oauth: "oauth";
13264
+ none: "none";
13265
+ api_key: "api_key";
13266
+ }>>;
13267
+ credential: z.ZodOptional<z.ZodString>;
13268
+ icon: z.ZodOptional<z.ZodString>;
13269
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
13270
+ notes: z.ZodOptional<z.ZodString>;
13271
+ }, z.core.$strip>>>;
13272
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
13273
+ id: z.ZodString;
13274
+ slug: z.ZodString;
13275
+ source: z.ZodOptional<z.ZodEnum<{
13276
+ org: "org";
13277
+ user: "user";
13278
+ registry: "registry";
13279
+ }>>;
13280
+ notes: z.ZodOptional<z.ZodString>;
13281
+ }, z.core.$strip>>>;
13282
+ credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
13283
+ id: z.ZodString;
13284
+ slug: z.ZodString;
13285
+ provider: z.ZodString;
13286
+ authType: z.ZodOptional<z.ZodEnum<{
13287
+ basic: "basic";
13288
+ oauth: "oauth";
13289
+ env: "env";
13290
+ api_key: "api_key";
13291
+ }>>;
13292
+ vault: z.ZodString;
13293
+ notes: z.ZodOptional<z.ZodString>;
13294
+ }, z.core.$strip>>>;
13295
+ vaults: 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
+ attachedPods: z.ZodOptional<z.ZodArray<z.ZodString>>;
13305
+ notes: z.ZodOptional<z.ZodString>;
13306
+ }, z.core.$strip>>>;
13307
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
13308
+ id: z.ZodString;
13309
+ slug: z.ZodString;
13310
+ name: z.ZodString;
13311
+ scope: z.ZodEnum<{
13312
+ org: "org";
13313
+ user: "user";
13314
+ registry: "registry";
13315
+ }>;
13316
+ notes: z.ZodOptional<z.ZodString>;
13317
+ }, z.core.$strip>>>;
13318
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodObject<{
13319
+ id: z.ZodString;
13320
+ slug: z.ZodString;
13321
+ name: z.ZodString;
13322
+ scope: z.ZodEnum<{
13323
+ org: "org";
13324
+ user: "user";
13325
+ registry: "registry";
13326
+ }>;
13327
+ notes: z.ZodOptional<z.ZodString>;
13328
+ }, z.core.$strip>>>;
13329
+ pods: z.ZodArray<z.ZodObject<{
13330
+ id: z.ZodString;
13331
+ slug: z.ZodString;
13332
+ name: z.ZodString;
13333
+ scope: z.ZodOptional<z.ZodEnum<{
13334
+ org: "org";
13335
+ user: "user";
13336
+ registry: "registry";
13337
+ }>>;
13338
+ vaults: z.ZodOptional<z.ZodArray<z.ZodString>>;
13339
+ notes: z.ZodOptional<z.ZodString>;
13340
+ }, z.core.$strip>>;
13341
+ projects: z.ZodArray<z.ZodObject<{
13342
+ id: z.ZodString;
13343
+ slug: z.ZodString;
13344
+ name: z.ZodString;
13345
+ pod: z.ZodString;
13346
+ buildOrder: z.ZodOptional<z.ZodInt>;
13347
+ slackChannel: z.ZodOptional<z.ZodString>;
13348
+ primaryAgent: z.ZodOptional<z.ZodString>;
13349
+ subAgents: z.ZodOptional<z.ZodArray<z.ZodString>>;
13350
+ fileStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
13351
+ memoryStores: z.ZodOptional<z.ZodArray<z.ZodString>>;
13352
+ restricted: z.ZodOptional<z.ZodBoolean>;
13353
+ requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
13354
+ id: z.ZodString;
13355
+ kind: z.ZodEnum<{
13356
+ agent_attached: "agent_attached";
13357
+ skill_attached: "skill_attached";
13358
+ mcp_wired: "mcp_wired";
13359
+ credential_present: "credential_present";
13360
+ trigger_configured: "trigger_configured";
13361
+ slack_mapped: "slack_mapped";
13362
+ file_store_attached: "file_store_attached";
13363
+ memory_store_attached: "memory_store_attached";
13364
+ vault_attached: "vault_attached";
13365
+ capability: "capability";
13366
+ other: "other";
13367
+ }>;
13368
+ must: z.ZodString;
13369
+ agent: z.ZodOptional<z.ZodString>;
13370
+ mcp: z.ZodOptional<z.ZodString>;
13371
+ skill: z.ZodOptional<z.ZodString>;
13372
+ credential: z.ZodOptional<z.ZodString>;
13373
+ trigger: z.ZodOptional<z.ZodString>;
13374
+ vault: z.ZodOptional<z.ZodString>;
13375
+ store: z.ZodOptional<z.ZodString>;
13376
+ channel: z.ZodOptional<z.ZodString>;
13377
+ blocking: z.ZodOptional<z.ZodBoolean>;
13378
+ reason: z.ZodOptional<z.ZodString>;
13379
+ verify: z.ZodOptional<z.ZodString>;
13380
+ blockedBy: z.ZodOptional<z.ZodString>;
13381
+ }, z.core.$strip>>>;
13382
+ notes: z.ZodOptional<z.ZodString>;
13383
+ }, z.core.$strip>>;
13384
+ slack: z.ZodOptional<z.ZodObject<{
13385
+ workspace: z.ZodOptional<z.ZodString>;
13386
+ teamId: z.ZodOptional<z.ZodString>;
13387
+ installationId: z.ZodOptional<z.ZodString>;
13388
+ botUserId: z.ZodOptional<z.ZodString>;
13389
+ channels: z.ZodArray<z.ZodObject<{
13390
+ name: z.ZodString;
13391
+ id: z.ZodOptional<z.ZodString>;
13392
+ project: z.ZodNullable<z.ZodString>;
13393
+ }, z.core.$strip>>;
13394
+ }, z.core.$strip>>;
13395
+ github: z.ZodOptional<z.ZodObject<{
13396
+ installationId: z.ZodOptional<z.ZodString>;
13397
+ repos: z.ZodArray<z.ZodObject<{
13398
+ name: z.ZodString;
13399
+ project: z.ZodString;
13400
+ baseBranch: z.ZodOptional<z.ZodString>;
13401
+ }, z.core.$strip>>;
13402
+ }, z.core.$strip>>;
13403
+ triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
13404
+ id: z.ZodString;
13405
+ slug: z.ZodString;
13406
+ project: z.ZodString;
13407
+ schedule: z.ZodString;
13408
+ timezone: z.ZodOptional<z.ZodString>;
13409
+ inputMessage: z.ZodString;
13410
+ enabled: z.ZodOptional<z.ZodBoolean>;
13411
+ notes: z.ZodOptional<z.ZodString>;
13412
+ }, z.core.$strip>>>;
13413
+ emails: z.ZodOptional<z.ZodArray<z.ZodObject<{
13414
+ id: z.ZodString;
13415
+ project: z.ZodString;
13416
+ localPart: z.ZodString;
13417
+ address: z.ZodEmail;
13418
+ }, z.core.$strip>>>;
13419
+ }, z.core.$strip>;