@treeseed/sdk 0.13.0-rc.39 → 0.13.0-rc.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-capacity/validation/agent-definition-schema.d.ts +384 -384
- package/dist/content/validation/agent-operational-content-schemas.d.ts +66 -66
- package/dist/content/validation/auxiliary-content-schemas.d.ts +16 -16
- package/dist/content/validation/content-model-schemas.d.ts +869 -869
- package/dist/content/validation/portable-content-data.d.ts +93 -93
- package/dist/deployment/schemas.d.ts +782 -782
- package/dist/development/index.d.ts +1 -0
- package/dist/development/index.js +1 -0
- package/dist/development/schemas.d.ts +3149 -0
- package/dist/development/schemas.js +153 -0
- package/dist/operator-contracts/canonical-command-tree.js +35 -0
- package/dist/operator-contracts/catalog/admin-account-team-operations.d.ts +33 -0
- package/dist/operator-contracts/catalog/admin-account-team-operations.js +51 -0
- package/dist/operator-contracts/catalog/communication-operations.d.ts +40 -40
- package/dist/operator-contracts/communication/contracts.d.ts +44 -44
- package/dist/operator-contracts/control-plane-operations.d.ts +75 -46
- package/dist/operator-contracts/control-plane-operations.js +3 -0
- package/package.json +5 -1
|
@@ -133,19 +133,19 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
133
133
|
}, "strict", import("zod").ZodTypeAny, {
|
|
134
134
|
kind: "read-only" | "main-planning-content" | "staging-content" | "assignment-feature" | "staging-release";
|
|
135
135
|
base: "staging" | "main";
|
|
136
|
-
prefix?: string | undefined;
|
|
137
136
|
target?: "staging" | "main" | undefined;
|
|
138
|
-
branchNameTemplate?: string | undefined;
|
|
139
137
|
worktree?: string | undefined;
|
|
138
|
+
prefix?: string | undefined;
|
|
139
|
+
branchNameTemplate?: string | undefined;
|
|
140
140
|
updateBaseBeforeRun?: boolean | undefined;
|
|
141
141
|
mergeTargetBeforeSave?: boolean | undefined;
|
|
142
142
|
}, {
|
|
143
143
|
kind: "read-only" | "main-planning-content" | "staging-content" | "assignment-feature" | "staging-release";
|
|
144
144
|
base: "staging" | "main";
|
|
145
|
-
prefix?: string | undefined;
|
|
146
145
|
target?: "staging" | "main" | undefined;
|
|
147
|
-
branchNameTemplate?: string | undefined;
|
|
148
146
|
worktree?: string | undefined;
|
|
147
|
+
prefix?: string | undefined;
|
|
148
|
+
branchNameTemplate?: string | undefined;
|
|
149
149
|
updateBaseBeforeRun?: boolean | undefined;
|
|
150
150
|
mergeTargetBeforeSave?: boolean | undefined;
|
|
151
151
|
}>;
|
|
@@ -252,10 +252,6 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
252
252
|
deniedCommands?: string[] | undefined;
|
|
253
253
|
}>>;
|
|
254
254
|
}, "strict", import("zod").ZodTypeAny, {
|
|
255
|
-
network?: {
|
|
256
|
-
allowWeb?: boolean | undefined;
|
|
257
|
-
allowedDomains?: string[] | undefined;
|
|
258
|
-
} | undefined;
|
|
259
255
|
repository?: {
|
|
260
256
|
allowCodeMutation?: boolean | undefined;
|
|
261
257
|
readPaths?: string[] | undefined;
|
|
@@ -264,6 +260,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
264
260
|
commit?: {
|
|
265
261
|
allowed: boolean;
|
|
266
262
|
} | undefined;
|
|
263
|
+
network?: {
|
|
264
|
+
allowWeb?: boolean | undefined;
|
|
265
|
+
allowedDomains?: string[] | undefined;
|
|
266
|
+
} | undefined;
|
|
267
267
|
content?: Record<string, {
|
|
268
268
|
operations: string[];
|
|
269
269
|
filters?: Record<string, unknown> | undefined;
|
|
@@ -274,10 +274,6 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
274
274
|
deniedCommands?: string[] | undefined;
|
|
275
275
|
} | undefined;
|
|
276
276
|
}, {
|
|
277
|
-
network?: {
|
|
278
|
-
allowWeb?: boolean | undefined;
|
|
279
|
-
allowedDomains?: string[] | undefined;
|
|
280
|
-
} | undefined;
|
|
281
277
|
repository?: {
|
|
282
278
|
allowCodeMutation?: boolean | undefined;
|
|
283
279
|
readPaths?: string[] | undefined;
|
|
@@ -286,6 +282,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
286
282
|
commit?: {
|
|
287
283
|
allowed: boolean;
|
|
288
284
|
} | undefined;
|
|
285
|
+
network?: {
|
|
286
|
+
allowWeb?: boolean | undefined;
|
|
287
|
+
allowedDomains?: string[] | undefined;
|
|
288
|
+
} | undefined;
|
|
289
289
|
content?: Record<string, {
|
|
290
290
|
operations: string[];
|
|
291
291
|
filters?: Record<string, unknown> | undefined;
|
|
@@ -727,8 +727,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
727
727
|
agentSlug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
728
728
|
}, "strict", import("zod").ZodTypeAny, {
|
|
729
729
|
kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
|
|
730
|
-
teamId?: string | undefined;
|
|
731
730
|
projectId?: string | undefined;
|
|
731
|
+
teamId?: string | undefined;
|
|
732
732
|
agentSlug?: string | undefined;
|
|
733
733
|
requiredRoles?: string[] | undefined;
|
|
734
734
|
allowedRoles?: string[] | undefined;
|
|
@@ -738,8 +738,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
738
738
|
teamMemberId?: string | undefined;
|
|
739
739
|
}, {
|
|
740
740
|
kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
|
|
741
|
-
teamId?: string | undefined;
|
|
742
741
|
projectId?: string | undefined;
|
|
742
|
+
teamId?: string | undefined;
|
|
743
743
|
agentSlug?: string | undefined;
|
|
744
744
|
requiredRoles?: string[] | undefined;
|
|
745
745
|
allowedRoles?: string[] | undefined;
|
|
@@ -751,8 +751,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
751
751
|
}, "strict", import("zod").ZodTypeAny, {
|
|
752
752
|
defaultAnswerPolicy?: {
|
|
753
753
|
kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
|
|
754
|
-
teamId?: string | undefined;
|
|
755
754
|
projectId?: string | undefined;
|
|
755
|
+
teamId?: string | undefined;
|
|
756
756
|
agentSlug?: string | undefined;
|
|
757
757
|
requiredRoles?: string[] | undefined;
|
|
758
758
|
allowedRoles?: string[] | undefined;
|
|
@@ -765,8 +765,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
765
765
|
}, {
|
|
766
766
|
defaultAnswerPolicy?: {
|
|
767
767
|
kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
|
|
768
|
-
teamId?: string | undefined;
|
|
769
768
|
projectId?: string | undefined;
|
|
769
|
+
teamId?: string | undefined;
|
|
770
770
|
agentSlug?: string | undefined;
|
|
771
771
|
requiredRoles?: string[] | undefined;
|
|
772
772
|
allowedRoles?: string[] | undefined;
|
|
@@ -850,6 +850,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
850
850
|
forbiddenPaths?: string[] | undefined;
|
|
851
851
|
}>>;
|
|
852
852
|
}, "strict", import("zod").ZodTypeAny, {
|
|
853
|
+
outputs: {
|
|
854
|
+
messageTypes: string[];
|
|
855
|
+
modelMutations: string[];
|
|
856
|
+
};
|
|
853
857
|
enabled: boolean;
|
|
854
858
|
prompt: {
|
|
855
859
|
system: string;
|
|
@@ -859,22 +863,18 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
859
863
|
branchPolicy: {
|
|
860
864
|
kind: "read-only" | "main-planning-content" | "staging-content" | "assignment-feature" | "staging-release";
|
|
861
865
|
base: "staging" | "main";
|
|
862
|
-
prefix?: string | undefined;
|
|
863
866
|
target?: "staging" | "main" | undefined;
|
|
864
|
-
branchNameTemplate?: string | undefined;
|
|
865
867
|
worktree?: string | undefined;
|
|
868
|
+
prefix?: string | undefined;
|
|
869
|
+
branchNameTemplate?: string | undefined;
|
|
866
870
|
updateBaseBeforeRun?: boolean | undefined;
|
|
867
871
|
mergeTargetBeforeSave?: boolean | undefined;
|
|
868
872
|
};
|
|
869
|
-
handler: "
|
|
873
|
+
handler: "actor" | "writer" | "estimate" | "releaser" | "reporter";
|
|
870
874
|
tools: {
|
|
871
875
|
allowed: string[];
|
|
872
876
|
denied?: string[] | undefined;
|
|
873
877
|
};
|
|
874
|
-
outputs: {
|
|
875
|
-
messageTypes: string[];
|
|
876
|
-
modelMutations: string[];
|
|
877
|
-
};
|
|
878
878
|
execution?: {
|
|
879
879
|
requiredCapabilities?: string[] | undefined;
|
|
880
880
|
preparationSeconds?: number | undefined;
|
|
@@ -911,10 +911,6 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
911
911
|
revision: number;
|
|
912
912
|
}[] | undefined;
|
|
913
913
|
permissions?: {
|
|
914
|
-
network?: {
|
|
915
|
-
allowWeb?: boolean | undefined;
|
|
916
|
-
allowedDomains?: string[] | undefined;
|
|
917
|
-
} | undefined;
|
|
918
914
|
repository?: {
|
|
919
915
|
allowCodeMutation?: boolean | undefined;
|
|
920
916
|
readPaths?: string[] | undefined;
|
|
@@ -923,6 +919,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
923
919
|
commit?: {
|
|
924
920
|
allowed: boolean;
|
|
925
921
|
} | undefined;
|
|
922
|
+
network?: {
|
|
923
|
+
allowWeb?: boolean | undefined;
|
|
924
|
+
allowedDomains?: string[] | undefined;
|
|
925
|
+
} | undefined;
|
|
926
926
|
content?: Record<string, {
|
|
927
927
|
operations: string[];
|
|
928
928
|
filters?: Record<string, unknown> | undefined;
|
|
@@ -1010,8 +1010,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1010
1010
|
questionPolicy?: {
|
|
1011
1011
|
defaultAnswerPolicy?: {
|
|
1012
1012
|
kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
|
|
1013
|
-
teamId?: string | undefined;
|
|
1014
1013
|
projectId?: string | undefined;
|
|
1014
|
+
teamId?: string | undefined;
|
|
1015
1015
|
agentSlug?: string | undefined;
|
|
1016
1016
|
requiredRoles?: string[] | undefined;
|
|
1017
1017
|
allowedRoles?: string[] | undefined;
|
|
@@ -1023,6 +1023,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1023
1023
|
blockExecutionWhenCreated?: boolean | undefined;
|
|
1024
1024
|
} | undefined;
|
|
1025
1025
|
}, {
|
|
1026
|
+
outputs: {
|
|
1027
|
+
messageTypes: string[];
|
|
1028
|
+
modelMutations: string[];
|
|
1029
|
+
};
|
|
1026
1030
|
enabled: boolean;
|
|
1027
1031
|
prompt: {
|
|
1028
1032
|
system: string;
|
|
@@ -1032,22 +1036,18 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1032
1036
|
branchPolicy: {
|
|
1033
1037
|
kind: "read-only" | "main-planning-content" | "staging-content" | "assignment-feature" | "staging-release";
|
|
1034
1038
|
base: "staging" | "main";
|
|
1035
|
-
prefix?: string | undefined;
|
|
1036
1039
|
target?: "staging" | "main" | undefined;
|
|
1037
|
-
branchNameTemplate?: string | undefined;
|
|
1038
1040
|
worktree?: string | undefined;
|
|
1041
|
+
prefix?: string | undefined;
|
|
1042
|
+
branchNameTemplate?: string | undefined;
|
|
1039
1043
|
updateBaseBeforeRun?: boolean | undefined;
|
|
1040
1044
|
mergeTargetBeforeSave?: boolean | undefined;
|
|
1041
1045
|
};
|
|
1042
|
-
handler: "
|
|
1046
|
+
handler: "actor" | "writer" | "estimate" | "releaser" | "reporter";
|
|
1043
1047
|
tools: {
|
|
1044
1048
|
allowed: string[];
|
|
1045
1049
|
denied?: string[] | undefined;
|
|
1046
1050
|
};
|
|
1047
|
-
outputs: {
|
|
1048
|
-
messageTypes: string[];
|
|
1049
|
-
modelMutations: string[];
|
|
1050
|
-
};
|
|
1051
1051
|
execution?: {
|
|
1052
1052
|
requiredCapabilities?: string[] | undefined;
|
|
1053
1053
|
preparationSeconds?: number | undefined;
|
|
@@ -1084,10 +1084,6 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1084
1084
|
revision: number;
|
|
1085
1085
|
}[] | undefined;
|
|
1086
1086
|
permissions?: {
|
|
1087
|
-
network?: {
|
|
1088
|
-
allowWeb?: boolean | undefined;
|
|
1089
|
-
allowedDomains?: string[] | undefined;
|
|
1090
|
-
} | undefined;
|
|
1091
1087
|
repository?: {
|
|
1092
1088
|
allowCodeMutation?: boolean | undefined;
|
|
1093
1089
|
readPaths?: string[] | undefined;
|
|
@@ -1096,6 +1092,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1096
1092
|
commit?: {
|
|
1097
1093
|
allowed: boolean;
|
|
1098
1094
|
} | undefined;
|
|
1095
|
+
network?: {
|
|
1096
|
+
allowWeb?: boolean | undefined;
|
|
1097
|
+
allowedDomains?: string[] | undefined;
|
|
1098
|
+
} | undefined;
|
|
1099
1099
|
content?: Record<string, {
|
|
1100
1100
|
operations: string[];
|
|
1101
1101
|
filters?: Record<string, unknown> | undefined;
|
|
@@ -1183,8 +1183,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1183
1183
|
questionPolicy?: {
|
|
1184
1184
|
defaultAnswerPolicy?: {
|
|
1185
1185
|
kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
|
|
1186
|
-
teamId?: string | undefined;
|
|
1187
1186
|
projectId?: string | undefined;
|
|
1187
|
+
teamId?: string | undefined;
|
|
1188
1188
|
agentSlug?: string | undefined;
|
|
1189
1189
|
requiredRoles?: string[] | undefined;
|
|
1190
1190
|
allowedRoles?: string[] | undefined;
|
|
@@ -1196,6 +1196,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1196
1196
|
blockExecutionWhenCreated?: boolean | undefined;
|
|
1197
1197
|
} | undefined;
|
|
1198
1198
|
}>, {
|
|
1199
|
+
outputs: {
|
|
1200
|
+
messageTypes: string[];
|
|
1201
|
+
modelMutations: string[];
|
|
1202
|
+
};
|
|
1199
1203
|
enabled: boolean;
|
|
1200
1204
|
prompt: {
|
|
1201
1205
|
system: string;
|
|
@@ -1205,22 +1209,18 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1205
1209
|
branchPolicy: {
|
|
1206
1210
|
kind: "read-only" | "main-planning-content" | "staging-content" | "assignment-feature" | "staging-release";
|
|
1207
1211
|
base: "staging" | "main";
|
|
1208
|
-
prefix?: string | undefined;
|
|
1209
1212
|
target?: "staging" | "main" | undefined;
|
|
1210
|
-
branchNameTemplate?: string | undefined;
|
|
1211
1213
|
worktree?: string | undefined;
|
|
1214
|
+
prefix?: string | undefined;
|
|
1215
|
+
branchNameTemplate?: string | undefined;
|
|
1212
1216
|
updateBaseBeforeRun?: boolean | undefined;
|
|
1213
1217
|
mergeTargetBeforeSave?: boolean | undefined;
|
|
1214
1218
|
};
|
|
1215
|
-
handler: "
|
|
1219
|
+
handler: "actor" | "writer" | "estimate" | "releaser" | "reporter";
|
|
1216
1220
|
tools: {
|
|
1217
1221
|
allowed: string[];
|
|
1218
1222
|
denied?: string[] | undefined;
|
|
1219
1223
|
};
|
|
1220
|
-
outputs: {
|
|
1221
|
-
messageTypes: string[];
|
|
1222
|
-
modelMutations: string[];
|
|
1223
|
-
};
|
|
1224
1224
|
execution?: {
|
|
1225
1225
|
requiredCapabilities?: string[] | undefined;
|
|
1226
1226
|
preparationSeconds?: number | undefined;
|
|
@@ -1257,10 +1257,6 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1257
1257
|
revision: number;
|
|
1258
1258
|
}[] | undefined;
|
|
1259
1259
|
permissions?: {
|
|
1260
|
-
network?: {
|
|
1261
|
-
allowWeb?: boolean | undefined;
|
|
1262
|
-
allowedDomains?: string[] | undefined;
|
|
1263
|
-
} | undefined;
|
|
1264
1260
|
repository?: {
|
|
1265
1261
|
allowCodeMutation?: boolean | undefined;
|
|
1266
1262
|
readPaths?: string[] | undefined;
|
|
@@ -1269,6 +1265,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1269
1265
|
commit?: {
|
|
1270
1266
|
allowed: boolean;
|
|
1271
1267
|
} | undefined;
|
|
1268
|
+
network?: {
|
|
1269
|
+
allowWeb?: boolean | undefined;
|
|
1270
|
+
allowedDomains?: string[] | undefined;
|
|
1271
|
+
} | undefined;
|
|
1272
1272
|
content?: Record<string, {
|
|
1273
1273
|
operations: string[];
|
|
1274
1274
|
filters?: Record<string, unknown> | undefined;
|
|
@@ -1356,8 +1356,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1356
1356
|
questionPolicy?: {
|
|
1357
1357
|
defaultAnswerPolicy?: {
|
|
1358
1358
|
kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
|
|
1359
|
-
teamId?: string | undefined;
|
|
1360
1359
|
projectId?: string | undefined;
|
|
1360
|
+
teamId?: string | undefined;
|
|
1361
1361
|
agentSlug?: string | undefined;
|
|
1362
1362
|
requiredRoles?: string[] | undefined;
|
|
1363
1363
|
allowedRoles?: string[] | undefined;
|
|
@@ -1369,6 +1369,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1369
1369
|
blockExecutionWhenCreated?: boolean | undefined;
|
|
1370
1370
|
} | undefined;
|
|
1371
1371
|
}, {
|
|
1372
|
+
outputs: {
|
|
1373
|
+
messageTypes: string[];
|
|
1374
|
+
modelMutations: string[];
|
|
1375
|
+
};
|
|
1372
1376
|
enabled: boolean;
|
|
1373
1377
|
prompt: {
|
|
1374
1378
|
system: string;
|
|
@@ -1378,22 +1382,18 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1378
1382
|
branchPolicy: {
|
|
1379
1383
|
kind: "read-only" | "main-planning-content" | "staging-content" | "assignment-feature" | "staging-release";
|
|
1380
1384
|
base: "staging" | "main";
|
|
1381
|
-
prefix?: string | undefined;
|
|
1382
1385
|
target?: "staging" | "main" | undefined;
|
|
1383
|
-
branchNameTemplate?: string | undefined;
|
|
1384
1386
|
worktree?: string | undefined;
|
|
1387
|
+
prefix?: string | undefined;
|
|
1388
|
+
branchNameTemplate?: string | undefined;
|
|
1385
1389
|
updateBaseBeforeRun?: boolean | undefined;
|
|
1386
1390
|
mergeTargetBeforeSave?: boolean | undefined;
|
|
1387
1391
|
};
|
|
1388
|
-
handler: "
|
|
1392
|
+
handler: "actor" | "writer" | "estimate" | "releaser" | "reporter";
|
|
1389
1393
|
tools: {
|
|
1390
1394
|
allowed: string[];
|
|
1391
1395
|
denied?: string[] | undefined;
|
|
1392
1396
|
};
|
|
1393
|
-
outputs: {
|
|
1394
|
-
messageTypes: string[];
|
|
1395
|
-
modelMutations: string[];
|
|
1396
|
-
};
|
|
1397
1397
|
execution?: {
|
|
1398
1398
|
requiredCapabilities?: string[] | undefined;
|
|
1399
1399
|
preparationSeconds?: number | undefined;
|
|
@@ -1430,10 +1430,6 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1430
1430
|
revision: number;
|
|
1431
1431
|
}[] | undefined;
|
|
1432
1432
|
permissions?: {
|
|
1433
|
-
network?: {
|
|
1434
|
-
allowWeb?: boolean | undefined;
|
|
1435
|
-
allowedDomains?: string[] | undefined;
|
|
1436
|
-
} | undefined;
|
|
1437
1433
|
repository?: {
|
|
1438
1434
|
allowCodeMutation?: boolean | undefined;
|
|
1439
1435
|
readPaths?: string[] | undefined;
|
|
@@ -1442,6 +1438,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1442
1438
|
commit?: {
|
|
1443
1439
|
allowed: boolean;
|
|
1444
1440
|
} | undefined;
|
|
1441
|
+
network?: {
|
|
1442
|
+
allowWeb?: boolean | undefined;
|
|
1443
|
+
allowedDomains?: string[] | undefined;
|
|
1444
|
+
} | undefined;
|
|
1445
1445
|
content?: Record<string, {
|
|
1446
1446
|
operations: string[];
|
|
1447
1447
|
filters?: Record<string, unknown> | undefined;
|
|
@@ -1529,8 +1529,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1529
1529
|
questionPolicy?: {
|
|
1530
1530
|
defaultAnswerPolicy?: {
|
|
1531
1531
|
kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
|
|
1532
|
-
teamId?: string | undefined;
|
|
1533
1532
|
projectId?: string | undefined;
|
|
1533
|
+
teamId?: string | undefined;
|
|
1534
1534
|
agentSlug?: string | undefined;
|
|
1535
1535
|
requiredRoles?: string[] | undefined;
|
|
1536
1536
|
allowedRoles?: string[] | undefined;
|
|
@@ -1546,8 +1546,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1546
1546
|
status: string;
|
|
1547
1547
|
environment: string;
|
|
1548
1548
|
visibility: "private" | "team" | "public" | "authenticated";
|
|
1549
|
-
summary: string;
|
|
1550
1549
|
projectId: string;
|
|
1550
|
+
summary: string;
|
|
1551
1551
|
slug: string;
|
|
1552
1552
|
metadata: Record<string, unknown>;
|
|
1553
1553
|
startedAt: Date;
|
|
@@ -1612,7 +1612,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1612
1612
|
endedAt?: Date | null | undefined;
|
|
1613
1613
|
prioritySnapshotId?: string | null | undefined;
|
|
1614
1614
|
} | {
|
|
1615
|
-
status: "
|
|
1615
|
+
status: "live" | "archived" | "draft";
|
|
1616
1616
|
audience: string[];
|
|
1617
1617
|
description: string;
|
|
1618
1618
|
summary: string;
|
|
@@ -1652,7 +1652,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1652
1652
|
supportsReconcile: boolean;
|
|
1653
1653
|
};
|
|
1654
1654
|
offer: {
|
|
1655
|
-
priceModel: "
|
|
1655
|
+
priceModel: "private" | "external" | "free" | "contact" | "one_time" | "one_time_current_version" | "subscription" | "subscription_updates" | "professional_hosting" | "scoped_contract";
|
|
1656
1656
|
support?: string | undefined;
|
|
1657
1657
|
license?: string | undefined;
|
|
1658
1658
|
};
|
|
@@ -1707,6 +1707,11 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1707
1707
|
maxLatencyMs?: number | undefined;
|
|
1708
1708
|
} | {
|
|
1709
1709
|
id: string;
|
|
1710
|
+
target: {
|
|
1711
|
+
kind: "code" | "content" | "mixed" | "graph";
|
|
1712
|
+
paths?: string[] | undefined;
|
|
1713
|
+
models?: string[] | undefined;
|
|
1714
|
+
};
|
|
1710
1715
|
required: boolean;
|
|
1711
1716
|
revision: number;
|
|
1712
1717
|
description: string;
|
|
@@ -1714,11 +1719,6 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1714
1719
|
depth: number;
|
|
1715
1720
|
title: string;
|
|
1716
1721
|
filters: Record<string, unknown>;
|
|
1717
|
-
target: {
|
|
1718
|
-
kind: "code" | "content" | "mixed" | "graph";
|
|
1719
|
-
paths?: string[] | undefined;
|
|
1720
|
-
models?: string[] | undefined;
|
|
1721
|
-
};
|
|
1722
1722
|
purpose: string;
|
|
1723
1723
|
maturity: "draft" | "validated" | "simulated" | "proven";
|
|
1724
1724
|
relations: import("../../sdk-types/support/sdk-search-request.js").SdkGraphDslRelation[];
|
|
@@ -1760,12 +1760,12 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1760
1760
|
groupIds: string[];
|
|
1761
1761
|
parentTopicId?: string | undefined;
|
|
1762
1762
|
} | {
|
|
1763
|
-
status: "
|
|
1763
|
+
status: "ready" | "active" | "completed" | "superseded" | "draft";
|
|
1764
1764
|
id: string;
|
|
1765
|
-
|
|
1765
|
+
projectId: string;
|
|
1766
1766
|
createdAt: Date;
|
|
1767
|
+
revision: number;
|
|
1767
1768
|
teamId: string;
|
|
1768
|
-
projectId: string;
|
|
1769
1769
|
objective: string;
|
|
1770
1770
|
completed: {
|
|
1771
1771
|
id: string;
|
|
@@ -1795,11 +1795,11 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1795
1795
|
contextRefs: string[];
|
|
1796
1796
|
} | undefined;
|
|
1797
1797
|
} | {
|
|
1798
|
-
status: "
|
|
1798
|
+
status: "pending" | "failed" | "running" | "completed" | "cancelled" | "admitted" | "suspended" | "waiting" | "leased";
|
|
1799
1799
|
id: string;
|
|
1800
|
+
projectId: string;
|
|
1800
1801
|
createdAt: Date;
|
|
1801
1802
|
teamId: string;
|
|
1802
|
-
projectId: string;
|
|
1803
1803
|
title: string;
|
|
1804
1804
|
sequence: number;
|
|
1805
1805
|
phase: string;
|
|
@@ -1816,11 +1816,11 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1816
1816
|
} | {
|
|
1817
1817
|
status: "failed" | "completed" | "cancelled" | "suspended";
|
|
1818
1818
|
id: string;
|
|
1819
|
+
projectId: string;
|
|
1819
1820
|
createdAt: Date;
|
|
1820
1821
|
blockers: string[];
|
|
1821
1822
|
summary: string;
|
|
1822
1823
|
teamId: string;
|
|
1823
|
-
projectId: string;
|
|
1824
1824
|
title: string;
|
|
1825
1825
|
artifactRefs: string[];
|
|
1826
1826
|
lessons: string[];
|
|
@@ -1841,10 +1841,10 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1841
1841
|
} | {
|
|
1842
1842
|
status: string;
|
|
1843
1843
|
id: string;
|
|
1844
|
+
projectId: string;
|
|
1844
1845
|
createdAt: Date;
|
|
1845
1846
|
teamId: string;
|
|
1846
|
-
|
|
1847
|
-
outcome: "failed" | "passed" | "needs-revision";
|
|
1847
|
+
outcome: "passed" | "failed" | "needs-revision";
|
|
1848
1848
|
title: string;
|
|
1849
1849
|
contextQueryRefs: {
|
|
1850
1850
|
id: string;
|
|
@@ -1867,7 +1867,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1867
1867
|
evaluatorId: string;
|
|
1868
1868
|
criteria: {
|
|
1869
1869
|
id: string;
|
|
1870
|
-
outcome: "
|
|
1870
|
+
outcome: "passed" | "failed" | "not-applicable";
|
|
1871
1871
|
evidenceRefs: string[];
|
|
1872
1872
|
notes?: string | undefined;
|
|
1873
1873
|
}[];
|
|
@@ -1878,7 +1878,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1878
1878
|
score?: number | undefined;
|
|
1879
1879
|
} | {
|
|
1880
1880
|
title: string;
|
|
1881
|
-
status?: "
|
|
1881
|
+
status?: "live" | "planned" | "in progress" | "exploratory" | "speculative" | undefined;
|
|
1882
1882
|
audience?: string[] | undefined;
|
|
1883
1883
|
description?: string | undefined;
|
|
1884
1884
|
summary?: string | undefined;
|
|
@@ -1888,7 +1888,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1888
1888
|
page_layout?: "article" | "bridge" | undefined;
|
|
1889
1889
|
} | {
|
|
1890
1890
|
title: string;
|
|
1891
|
-
status?: "
|
|
1891
|
+
status?: "live" | "planned" | "in progress" | "exploratory" | "speculative" | undefined;
|
|
1892
1892
|
date?: Date | undefined;
|
|
1893
1893
|
description?: string | undefined;
|
|
1894
1894
|
summary?: string | undefined;
|
|
@@ -1909,7 +1909,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1909
1909
|
related_books?: string[] | undefined;
|
|
1910
1910
|
} | {
|
|
1911
1911
|
title: string;
|
|
1912
|
-
status?: "
|
|
1912
|
+
status?: "live" | "planned" | "in progress" | "exploratory" | "speculative" | undefined;
|
|
1913
1913
|
date?: Date | undefined;
|
|
1914
1914
|
description?: string | undefined;
|
|
1915
1915
|
summary?: string | undefined;
|
|
@@ -1931,7 +1931,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1931
1931
|
primary_contributor?: string | undefined;
|
|
1932
1932
|
} | {
|
|
1933
1933
|
title: string;
|
|
1934
|
-
status?: "
|
|
1934
|
+
status?: "live" | "planned" | "in progress" | "exploratory" | "speculative" | undefined;
|
|
1935
1935
|
date?: Date | undefined;
|
|
1936
1936
|
description?: string | undefined;
|
|
1937
1937
|
summary?: string | undefined;
|
|
@@ -1946,7 +1946,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1946
1946
|
primary_contributor?: string | undefined;
|
|
1947
1947
|
time_horizon?: "near-term" | "mid-term" | "long-term" | undefined;
|
|
1948
1948
|
} | {
|
|
1949
|
-
status: "
|
|
1949
|
+
status: "live" | "planned" | "in progress" | "exploratory" | "speculative";
|
|
1950
1950
|
date: Date;
|
|
1951
1951
|
description: string;
|
|
1952
1952
|
summary: string;
|
|
@@ -1956,8 +1956,8 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1956
1956
|
proposal_type: string;
|
|
1957
1957
|
plan?: {
|
|
1958
1958
|
dependencies: string[];
|
|
1959
|
-
scope: string[];
|
|
1960
1959
|
verification: string[];
|
|
1960
|
+
scope: string[];
|
|
1961
1961
|
risks: string[];
|
|
1962
1962
|
desiredOutcome: string;
|
|
1963
1963
|
currentProblem: string;
|
|
@@ -1983,7 +1983,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
1983
1983
|
}[] | undefined;
|
|
1984
1984
|
} | {
|
|
1985
1985
|
title: string;
|
|
1986
|
-
status?: "
|
|
1986
|
+
status?: "live" | "planned" | "in progress" | "exploratory" | "speculative" | undefined;
|
|
1987
1987
|
date?: Date | undefined;
|
|
1988
1988
|
description?: string | undefined;
|
|
1989
1989
|
summary?: string | undefined;
|
|
@@ -2001,9 +2001,9 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
2001
2001
|
rationale?: string | undefined;
|
|
2002
2002
|
} | {
|
|
2003
2003
|
status: "review" | "archived" | "draft" | "published";
|
|
2004
|
-
schemaVersion: "treeseed.book/v2";
|
|
2005
2004
|
id: string;
|
|
2006
|
-
visibility: "
|
|
2005
|
+
visibility: "project" | "team" | "public" | "admin" | "authenticated";
|
|
2006
|
+
schemaVersion: "treeseed.book/v2";
|
|
2007
2007
|
order: number;
|
|
2008
2008
|
summary: string;
|
|
2009
2009
|
slug: string;
|
|
@@ -2014,9 +2014,9 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
2014
2014
|
relatedBookIds?: string[] | undefined;
|
|
2015
2015
|
} | {
|
|
2016
2016
|
status: "review" | "archived" | "draft" | "published";
|
|
2017
|
-
schemaVersion: "treeseed.knowledge-page/v1";
|
|
2018
2017
|
id: string;
|
|
2019
|
-
visibility: "
|
|
2018
|
+
visibility: "project" | "team" | "public" | "admin" | "authenticated";
|
|
2019
|
+
schemaVersion: "treeseed.knowledge-page/v1";
|
|
2020
2020
|
summary: string;
|
|
2021
2021
|
slug: string;
|
|
2022
2022
|
title: string;
|
|
@@ -2026,7 +2026,7 @@ export declare function validatePortableContentData(model: string, value: unknow
|
|
|
2026
2026
|
groupIds?: string[] | undefined;
|
|
2027
2027
|
} | {
|
|
2028
2028
|
name: string;
|
|
2029
|
-
status?: "
|
|
2029
|
+
status?: "live" | "planned" | "in progress" | "exploratory" | "speculative" | undefined;
|
|
2030
2030
|
role?: string | undefined;
|
|
2031
2031
|
description?: string | undefined;
|
|
2032
2032
|
summary?: string | undefined;
|