@renai-labs/sdk 0.1.9 → 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<{
1126
+ triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
990
1127
  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>>;
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;
@@ -2406,8 +2541,8 @@ export declare const zSearchResult: z.ZodObject<{
2406
2541
  description: z.ZodNullable<z.ZodString>;
2407
2542
  icon: z.ZodNullable<z.ZodString>;
2408
2543
  source: z.ZodEnum<{
2409
- user: "user";
2410
2544
  org: "org";
2545
+ user: "user";
2411
2546
  registry: "registry";
2412
2547
  }>;
2413
2548
  updatedAt: z.ZodISODateTime;
@@ -2477,6 +2612,7 @@ export declare const zAgentListQuery: z.ZodObject<{
2477
2612
  }>>;
2478
2613
  limit: z.ZodOptional<z.ZodNumber>;
2479
2614
  offset: z.ZodOptional<z.ZodNumber>;
2615
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
2480
2616
  }, z.core.$strip>;
2481
2617
  /**
2482
2618
  * List of agents
@@ -2746,8 +2882,8 @@ export declare const zAgentCreateResponse: z.ZodObject<{
2746
2882
  export declare const zAgentSearchBody: z.ZodObject<{
2747
2883
  query: z.ZodOptional<z.ZodString>;
2748
2884
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2749
- user: "user";
2750
2885
  org: "org";
2886
+ user: "user";
2751
2887
  registry: "registry";
2752
2888
  }>>>>;
2753
2889
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -2767,8 +2903,8 @@ export declare const zAgentSearchResponse: z.ZodArray<z.ZodObject<{
2767
2903
  description: z.ZodNullable<z.ZodString>;
2768
2904
  icon: z.ZodNullable<z.ZodString>;
2769
2905
  source: z.ZodEnum<{
2770
- user: "user";
2771
2906
  org: "org";
2907
+ user: "user";
2772
2908
  registry: "registry";
2773
2909
  }>;
2774
2910
  updatedAt: z.ZodISODateTime;
@@ -3247,6 +3383,7 @@ export declare const zAgentVersionListQuery: z.ZodObject<{
3247
3383
  }>>;
3248
3384
  limit: z.ZodOptional<z.ZodNumber>;
3249
3385
  offset: z.ZodOptional<z.ZodNumber>;
3386
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
3250
3387
  }, z.core.$strip>;
3251
3388
  /**
3252
3389
  * List of agent versions
@@ -4069,6 +4206,7 @@ export declare const zBlueprintListQuery: z.ZodObject<{
4069
4206
  }>>;
4070
4207
  limit: z.ZodOptional<z.ZodNumber>;
4071
4208
  offset: z.ZodOptional<z.ZodNumber>;
4209
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
4072
4210
  }, z.core.$strip>;
4073
4211
  /**
4074
4212
  * List of blueprints
@@ -5862,6 +6000,7 @@ export declare const zEnvironmentListQuery: z.ZodObject<{
5862
6000
  orgId: z.ZodOptional<z.ZodString>;
5863
6001
  limit: z.ZodOptional<z.ZodNumber>;
5864
6002
  offset: z.ZodOptional<z.ZodNumber>;
6003
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
5865
6004
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5866
6005
  }, z.core.$strip>;
5867
6006
  /**
@@ -6143,6 +6282,7 @@ export declare const zFileStoreListQuery: z.ZodObject<{
6143
6282
  orgId: z.ZodOptional<z.ZodString>;
6144
6283
  limit: z.ZodOptional<z.ZodNumber>;
6145
6284
  offset: z.ZodOptional<z.ZodNumber>;
6285
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
6146
6286
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6147
6287
  }, z.core.$strip>;
6148
6288
  /**
@@ -6502,6 +6642,7 @@ export declare const zMcpListQuery: z.ZodObject<{
6502
6642
  }>>;
6503
6643
  limit: z.ZodOptional<z.ZodNumber>;
6504
6644
  offset: z.ZodOptional<z.ZodNumber>;
6645
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
6505
6646
  sort: z.ZodOptional<z.ZodEnum<{
6506
6647
  popular: "popular";
6507
6648
  trending: "trending";
@@ -6737,8 +6878,8 @@ export declare const zMcpCreateResponse: z.ZodObject<{
6737
6878
  export declare const zMcpSearchBody: z.ZodObject<{
6738
6879
  query: z.ZodOptional<z.ZodString>;
6739
6880
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
6740
- user: "user";
6741
6881
  org: "org";
6882
+ user: "user";
6742
6883
  registry: "registry";
6743
6884
  }>>>>;
6744
6885
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -6758,8 +6899,8 @@ export declare const zMcpSearchResponse: z.ZodArray<z.ZodObject<{
6758
6899
  description: z.ZodNullable<z.ZodString>;
6759
6900
  icon: z.ZodNullable<z.ZodString>;
6760
6901
  source: z.ZodEnum<{
6761
- user: "user";
6762
6902
  org: "org";
6903
+ user: "user";
6763
6904
  registry: "registry";
6764
6905
  }>;
6765
6906
  updatedAt: z.ZodISODateTime;
@@ -7539,6 +7680,7 @@ export declare const zMemoryStoreListQuery: z.ZodObject<{
7539
7680
  orgId: z.ZodOptional<z.ZodString>;
7540
7681
  limit: z.ZodOptional<z.ZodNumber>;
7541
7682
  offset: z.ZodOptional<z.ZodNumber>;
7683
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
7542
7684
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7543
7685
  }, z.core.$strip>;
7544
7686
  /**
@@ -7875,6 +8017,7 @@ export declare const zPodListQuery: z.ZodObject<{
7875
8017
  orgId: z.ZodOptional<z.ZodString>;
7876
8018
  limit: z.ZodOptional<z.ZodNumber>;
7877
8019
  offset: z.ZodOptional<z.ZodNumber>;
8020
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
7878
8021
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7879
8022
  }, z.core.$strip>;
7880
8023
  /**
@@ -8222,6 +8365,7 @@ export declare const zProjectListQuery: z.ZodObject<{
8222
8365
  }>>;
8223
8366
  limit: z.ZodOptional<z.ZodNumber>;
8224
8367
  offset: z.ZodOptional<z.ZodNumber>;
8368
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
8225
8369
  podId: z.ZodOptional<z.ZodString>;
8226
8370
  }, z.core.$strip>;
8227
8371
  /**
@@ -9600,6 +9744,7 @@ export declare const zReplayListQuery: z.ZodObject<{
9600
9744
  }>>;
9601
9745
  limit: z.ZodOptional<z.ZodNumber>;
9602
9746
  offset: z.ZodOptional<z.ZodNumber>;
9747
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
9603
9748
  publisherId: z.ZodOptional<z.ZodString>;
9604
9749
  }, z.core.$strip>;
9605
9750
  /**
@@ -9943,6 +10088,7 @@ export declare const zSessionListQuery: z.ZodObject<{
9943
10088
  createdById: z.ZodOptional<z.ZodString>;
9944
10089
  limit: z.ZodOptional<z.ZodNumber>;
9945
10090
  offset: z.ZodOptional<z.ZodNumber>;
10091
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
9946
10092
  }, z.core.$strip>;
9947
10093
  /**
9948
10094
  * List of sessions
@@ -10190,6 +10336,9 @@ export declare const zSessionUrlQuery: z.ZodObject<{
10190
10336
  */
10191
10337
  export declare const zSessionUrlResponse2: z.ZodObject<{
10192
10338
  url: z.ZodString;
10339
+ authedUrl: z.ZodString;
10340
+ serverPassword: z.ZodString;
10341
+ username: z.ZodString;
10193
10342
  }, z.core.$strip>;
10194
10343
  export declare const zSessionMessagesListPath: z.ZodObject<{
10195
10344
  id: z.ZodString;
@@ -10385,6 +10534,7 @@ export declare const zSkillListQuery: z.ZodObject<{
10385
10534
  }>>;
10386
10535
  limit: z.ZodOptional<z.ZodNumber>;
10387
10536
  offset: z.ZodOptional<z.ZodNumber>;
10537
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
10388
10538
  sort: z.ZodOptional<z.ZodEnum<{
10389
10539
  popular: "popular";
10390
10540
  trending: "trending";
@@ -10488,8 +10638,8 @@ export declare const zSkillCreateResponse: z.ZodObject<{
10488
10638
  export declare const zSkillSearchBody: z.ZodObject<{
10489
10639
  query: z.ZodOptional<z.ZodString>;
10490
10640
  sources: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
10491
- user: "user";
10492
10641
  org: "org";
10642
+ user: "user";
10493
10643
  registry: "registry";
10494
10644
  }>>>>;
10495
10645
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -10509,8 +10659,8 @@ export declare const zSkillSearchResponse: z.ZodArray<z.ZodObject<{
10509
10659
  description: z.ZodNullable<z.ZodString>;
10510
10660
  icon: z.ZodNullable<z.ZodString>;
10511
10661
  source: z.ZodEnum<{
10512
- user: "user";
10513
10662
  org: "org";
10663
+ user: "user";
10514
10664
  registry: "registry";
10515
10665
  }>;
10516
10666
  updatedAt: z.ZodISODateTime;
@@ -10927,6 +11077,7 @@ export declare const zSkillVersionListQuery: z.ZodObject<{
10927
11077
  }>>;
10928
11078
  limit: z.ZodOptional<z.ZodNumber>;
10929
11079
  offset: z.ZodOptional<z.ZodNumber>;
11080
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
10930
11081
  }, z.core.$strip>;
10931
11082
  /**
10932
11083
  * List of skill versions
@@ -11094,79 +11245,245 @@ export declare const zSkillVersionArchiveResponse: z.ZodObject<{
11094
11245
  * Agent-stack topology
11095
11246
  */
11096
11247
  export declare const zTopologyGetResponse: z.ZodObject<{
11097
- 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<{
11098
11257
  id: z.ZodString;
11099
- kind: z.ZodEnum<{
11100
- github: "github";
11101
- mcp: "mcp";
11102
- cron: "cron";
11103
- webhook: "webhook";
11104
- slack: "slack";
11105
- }>;
11258
+ slug: z.ZodString;
11106
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
+ }>>;
11107
11266
  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>;
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>;
11115
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>>>;
11116
11346
  pods: z.ZodArray<z.ZodObject<{
11117
11347
  id: z.ZodString;
11348
+ slug: z.ZodString;
11118
11349
  name: z.ZodString;
11119
- 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>;
11120
11357
  }, z.core.$strip>>;
11121
11358
  projects: z.ZodArray<z.ZodObject<{
11122
11359
  id: z.ZodString;
11123
- podId: z.ZodString;
11360
+ slug: z.ZodString;
11124
11361
  name: z.ZodString;
11125
- 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<{
11126
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<{
11127
11407
  name: z.ZodString;
11128
- icon: z.ZodOptional<z.ZodString>;
11129
- model: z.ZodOptional<z.ZodString>;
11408
+ id: z.ZodOptional<z.ZodString>;
11409
+ project: z.ZodNullable<z.ZodString>;
11130
11410
  }, z.core.$strip>>;
11131
- skillsCount: z.ZodNumber;
11132
11411
  }, 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;
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>;
11153
11418
  }, z.core.$strip>>;
11154
11419
  }, z.core.$strip>>;
11155
- env: z.ZodNullable<z.ZodObject<{
11156
- id: z.ZodString;
11157
- }, z.core.$strip>>;
11158
- edges: z.ZodArray<z.ZodObject<{
11420
+ triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
11159
11421
  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>>;
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>;
11170
11487
  }, z.core.$strip>;
11171
11488
  export declare const zTriggerListQuery: z.ZodObject<{
11172
11489
  scope: z.ZodOptional<z.ZodEnum<{
@@ -11174,6 +11491,7 @@ export declare const zTriggerListQuery: z.ZodObject<{
11174
11491
  }>>;
11175
11492
  limit: z.ZodOptional<z.ZodNumber>;
11176
11493
  offset: z.ZodOptional<z.ZodNumber>;
11494
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11177
11495
  projectId: z.ZodString;
11178
11496
  }, z.core.$strip>;
11179
11497
  /**
@@ -11318,6 +11636,7 @@ export declare const zWebhookTriggerListQuery: z.ZodObject<{
11318
11636
  }>>;
11319
11637
  limit: z.ZodOptional<z.ZodNumber>;
11320
11638
  offset: z.ZodOptional<z.ZodNumber>;
11639
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11321
11640
  projectId: z.ZodString;
11322
11641
  }, z.core.$strip>;
11323
11642
  /**
@@ -11594,12 +11913,76 @@ export declare const zSlackChannelSetResponse: z.ZodObject<{
11594
11913
  updatedAt: z.ZodISODateTime;
11595
11914
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
11596
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>;
11597
11979
  export declare const zVaultListQuery: z.ZodObject<{
11598
11980
  scope: z.ZodOptional<z.ZodEnum<{
11599
11981
  user: "user";
11600
11982
  }>>;
11601
11983
  limit: z.ZodOptional<z.ZodNumber>;
11602
11984
  offset: z.ZodOptional<z.ZodNumber>;
11985
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11603
11986
  }, z.core.$strip>;
11604
11987
  /**
11605
11988
  * List of vaults
@@ -11740,6 +12123,7 @@ export declare const zCredentialListQuery: z.ZodObject<{
11740
12123
  }>>;
11741
12124
  limit: z.ZodOptional<z.ZodNumber>;
11742
12125
  offset: z.ZodOptional<z.ZodNumber>;
12126
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
11743
12127
  }, z.core.$strip>;
11744
12128
  /**
11745
12129
  * List of credentials
@@ -12282,12 +12666,12 @@ export declare const zRegistryAgentGetResponse: z.ZodObject<{
12282
12666
  export declare const zRegistrySkillListQuery: z.ZodObject<{
12283
12667
  limit: z.ZodOptional<z.ZodNumber>;
12284
12668
  offset: z.ZodOptional<z.ZodNumber>;
12669
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12285
12670
  sort: z.ZodOptional<z.ZodEnum<{
12286
12671
  popular: "popular";
12287
12672
  trending: "trending";
12288
12673
  recent: "recent";
12289
12674
  }>>;
12290
- includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12291
12675
  }, z.core.$strip>;
12292
12676
  /**
12293
12677
  * List of published skills
@@ -12373,12 +12757,12 @@ export declare const zRegistrySkillGetResponse: z.ZodObject<{
12373
12757
  export declare const zRegistryMcpListQuery: z.ZodObject<{
12374
12758
  limit: z.ZodOptional<z.ZodNumber>;
12375
12759
  offset: z.ZodOptional<z.ZodNumber>;
12760
+ includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12376
12761
  sort: z.ZodOptional<z.ZodEnum<{
12377
12762
  popular: "popular";
12378
12763
  trending: "trending";
12379
12764
  recent: "recent";
12380
12765
  }>>;
12381
- includeDeprecated: z.ZodOptional<z.ZodBoolean>;
12382
12766
  }, z.core.$strip>;
12383
12767
  /**
12384
12768
  * List of published MCPs
@@ -12825,3 +13209,193 @@ export declare const zRegistryReplaySharedFilesPresignDownloadResponse: z.ZodObj
12825
13209
  url: z.ZodString;
12826
13210
  expiresAt: z.ZodISODateTime;
12827
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>;