@fenglimg/fabric-shared 2.3.0-rc.12 → 2.3.0-rc.16
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/{chunk-TEITGZY3.js → chunk-5M3HB554.js} +25 -1
- package/dist/{chunk-ASS2KBB7.js → chunk-OX6DWUK4.js} +31 -2
- package/dist/{chunk-KFFBQRL5.js → chunk-V7IUN5U2.js} +9 -7
- package/dist/{chunk-YLIWE46B.js → chunk-WXVFJBL5.js} +155 -33
- package/dist/i18n/index.js +3 -2
- package/dist/{index-B2e0wKJi.d.ts → index-KvxqMZV1.d.ts} +6 -0
- package/dist/index.d.ts +460 -21
- package/dist/index.js +266 -43
- package/dist/schemas/api-contracts.d.ts +144 -0
- package/dist/schemas/api-contracts.js +1 -1
- package/dist/templates/bootstrap-canonical.d.ts +2 -2
- package/dist/templates/bootstrap-canonical.js +3 -2
- package/dist/theme.d.ts +6 -3
- package/dist/theme.js +27 -5
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1150,6 +1150,9 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1150
1150
|
must_read_if: z.ZodOptional<z.ZodString>;
|
|
1151
1151
|
intent_clues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1152
1152
|
impact: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1153
|
+
tech_stack: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1154
|
+
evidence_paths: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1155
|
+
onboard_slot: z.ZodOptional<z.ZodEnum<["tech-stack-decision", "architecture-pattern", "code-style-tone", "build-system-idiom", "domain-vocabulary"]>>;
|
|
1153
1156
|
}, "strip", z.ZodTypeAny, {
|
|
1154
1157
|
semantic_scope?: string | undefined;
|
|
1155
1158
|
relevance_scope?: "narrow" | "broad" | undefined;
|
|
@@ -1157,11 +1160,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1157
1160
|
layer?: "personal" | "team" | undefined;
|
|
1158
1161
|
summary?: string | undefined;
|
|
1159
1162
|
intent_clues?: string[] | undefined;
|
|
1163
|
+
tech_stack?: string[] | undefined;
|
|
1160
1164
|
impact?: string[] | undefined;
|
|
1161
1165
|
must_read_if?: string | undefined;
|
|
1162
1166
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1163
1167
|
tags?: string[] | undefined;
|
|
1164
1168
|
related?: string[] | undefined;
|
|
1169
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1170
|
+
evidence_paths?: string[] | undefined;
|
|
1165
1171
|
title?: string | undefined;
|
|
1166
1172
|
}, {
|
|
1167
1173
|
semantic_scope?: string | undefined;
|
|
@@ -1170,11 +1176,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1170
1176
|
layer?: "personal" | "team" | undefined;
|
|
1171
1177
|
summary?: string | undefined;
|
|
1172
1178
|
intent_clues?: string[] | undefined;
|
|
1179
|
+
tech_stack?: string[] | undefined;
|
|
1173
1180
|
impact?: string[] | undefined;
|
|
1174
1181
|
must_read_if?: string | undefined;
|
|
1175
1182
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1176
1183
|
tags?: string[] | undefined;
|
|
1177
1184
|
related?: string[] | undefined;
|
|
1185
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1186
|
+
evidence_paths?: string[] | undefined;
|
|
1178
1187
|
title?: string | undefined;
|
|
1179
1188
|
}>;
|
|
1180
1189
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1187,11 +1196,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1187
1196
|
layer?: "personal" | "team" | undefined;
|
|
1188
1197
|
summary?: string | undefined;
|
|
1189
1198
|
intent_clues?: string[] | undefined;
|
|
1199
|
+
tech_stack?: string[] | undefined;
|
|
1190
1200
|
impact?: string[] | undefined;
|
|
1191
1201
|
must_read_if?: string | undefined;
|
|
1192
1202
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1193
1203
|
tags?: string[] | undefined;
|
|
1194
1204
|
related?: string[] | undefined;
|
|
1205
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1206
|
+
evidence_paths?: string[] | undefined;
|
|
1195
1207
|
title?: string | undefined;
|
|
1196
1208
|
};
|
|
1197
1209
|
}, {
|
|
@@ -1204,11 +1216,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1204
1216
|
layer?: "personal" | "team" | undefined;
|
|
1205
1217
|
summary?: string | undefined;
|
|
1206
1218
|
intent_clues?: string[] | undefined;
|
|
1219
|
+
tech_stack?: string[] | undefined;
|
|
1207
1220
|
impact?: string[] | undefined;
|
|
1208
1221
|
must_read_if?: string | undefined;
|
|
1209
1222
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1210
1223
|
tags?: string[] | undefined;
|
|
1211
1224
|
related?: string[] | undefined;
|
|
1225
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1226
|
+
evidence_paths?: string[] | undefined;
|
|
1212
1227
|
title?: string | undefined;
|
|
1213
1228
|
};
|
|
1214
1229
|
}>, z.ZodObject<{
|
|
@@ -1227,6 +1242,9 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1227
1242
|
must_read_if: z.ZodOptional<z.ZodString>;
|
|
1228
1243
|
intent_clues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1229
1244
|
impact: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1245
|
+
tech_stack: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1246
|
+
evidence_paths: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1247
|
+
onboard_slot: z.ZodOptional<z.ZodEnum<["tech-stack-decision", "architecture-pattern", "code-style-tone", "build-system-idiom", "domain-vocabulary"]>>;
|
|
1230
1248
|
}, "strip", z.ZodTypeAny, {
|
|
1231
1249
|
semantic_scope?: string | undefined;
|
|
1232
1250
|
relevance_scope?: "narrow" | "broad" | undefined;
|
|
@@ -1234,11 +1252,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1234
1252
|
layer?: "personal" | "team" | undefined;
|
|
1235
1253
|
summary?: string | undefined;
|
|
1236
1254
|
intent_clues?: string[] | undefined;
|
|
1255
|
+
tech_stack?: string[] | undefined;
|
|
1237
1256
|
impact?: string[] | undefined;
|
|
1238
1257
|
must_read_if?: string | undefined;
|
|
1239
1258
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1240
1259
|
tags?: string[] | undefined;
|
|
1241
1260
|
related?: string[] | undefined;
|
|
1261
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1262
|
+
evidence_paths?: string[] | undefined;
|
|
1242
1263
|
title?: string | undefined;
|
|
1243
1264
|
}, {
|
|
1244
1265
|
semantic_scope?: string | undefined;
|
|
@@ -1247,11 +1268,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1247
1268
|
layer?: "personal" | "team" | undefined;
|
|
1248
1269
|
summary?: string | undefined;
|
|
1249
1270
|
intent_clues?: string[] | undefined;
|
|
1271
|
+
tech_stack?: string[] | undefined;
|
|
1250
1272
|
impact?: string[] | undefined;
|
|
1251
1273
|
must_read_if?: string | undefined;
|
|
1252
1274
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1253
1275
|
tags?: string[] | undefined;
|
|
1254
1276
|
related?: string[] | undefined;
|
|
1277
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1278
|
+
evidence_paths?: string[] | undefined;
|
|
1255
1279
|
title?: string | undefined;
|
|
1256
1280
|
}>;
|
|
1257
1281
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1264,11 +1288,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1264
1288
|
layer?: "personal" | "team" | undefined;
|
|
1265
1289
|
summary?: string | undefined;
|
|
1266
1290
|
intent_clues?: string[] | undefined;
|
|
1291
|
+
tech_stack?: string[] | undefined;
|
|
1267
1292
|
impact?: string[] | undefined;
|
|
1268
1293
|
must_read_if?: string | undefined;
|
|
1269
1294
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1270
1295
|
tags?: string[] | undefined;
|
|
1271
1296
|
related?: string[] | undefined;
|
|
1297
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1298
|
+
evidence_paths?: string[] | undefined;
|
|
1272
1299
|
title?: string | undefined;
|
|
1273
1300
|
};
|
|
1274
1301
|
}, {
|
|
@@ -1281,11 +1308,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1281
1308
|
layer?: "personal" | "team" | undefined;
|
|
1282
1309
|
summary?: string | undefined;
|
|
1283
1310
|
intent_clues?: string[] | undefined;
|
|
1311
|
+
tech_stack?: string[] | undefined;
|
|
1284
1312
|
impact?: string[] | undefined;
|
|
1285
1313
|
must_read_if?: string | undefined;
|
|
1286
1314
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1287
1315
|
tags?: string[] | undefined;
|
|
1288
1316
|
related?: string[] | undefined;
|
|
1317
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1318
|
+
evidence_paths?: string[] | undefined;
|
|
1289
1319
|
title?: string | undefined;
|
|
1290
1320
|
};
|
|
1291
1321
|
}>, z.ZodObject<{
|
|
@@ -1303,6 +1333,9 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1303
1333
|
must_read_if: z.ZodOptional<z.ZodString>;
|
|
1304
1334
|
intent_clues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1305
1335
|
impact: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1336
|
+
tech_stack: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1337
|
+
evidence_paths: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1338
|
+
onboard_slot: z.ZodOptional<z.ZodEnum<["tech-stack-decision", "architecture-pattern", "code-style-tone", "build-system-idiom", "domain-vocabulary"]>>;
|
|
1306
1339
|
} & {
|
|
1307
1340
|
layer: z.ZodEnum<["team", "personal"]>;
|
|
1308
1341
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1312,11 +1345,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1312
1345
|
relevance_paths?: string[] | undefined;
|
|
1313
1346
|
summary?: string | undefined;
|
|
1314
1347
|
intent_clues?: string[] | undefined;
|
|
1348
|
+
tech_stack?: string[] | undefined;
|
|
1315
1349
|
impact?: string[] | undefined;
|
|
1316
1350
|
must_read_if?: string | undefined;
|
|
1317
1351
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1318
1352
|
tags?: string[] | undefined;
|
|
1319
1353
|
related?: string[] | undefined;
|
|
1354
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1355
|
+
evidence_paths?: string[] | undefined;
|
|
1320
1356
|
title?: string | undefined;
|
|
1321
1357
|
}, {
|
|
1322
1358
|
layer: "personal" | "team";
|
|
@@ -1325,11 +1361,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1325
1361
|
relevance_paths?: string[] | undefined;
|
|
1326
1362
|
summary?: string | undefined;
|
|
1327
1363
|
intent_clues?: string[] | undefined;
|
|
1364
|
+
tech_stack?: string[] | undefined;
|
|
1328
1365
|
impact?: string[] | undefined;
|
|
1329
1366
|
must_read_if?: string | undefined;
|
|
1330
1367
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1331
1368
|
tags?: string[] | undefined;
|
|
1332
1369
|
related?: string[] | undefined;
|
|
1370
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1371
|
+
evidence_paths?: string[] | undefined;
|
|
1333
1372
|
title?: string | undefined;
|
|
1334
1373
|
}>;
|
|
1335
1374
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1342,11 +1381,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1342
1381
|
relevance_paths?: string[] | undefined;
|
|
1343
1382
|
summary?: string | undefined;
|
|
1344
1383
|
intent_clues?: string[] | undefined;
|
|
1384
|
+
tech_stack?: string[] | undefined;
|
|
1345
1385
|
impact?: string[] | undefined;
|
|
1346
1386
|
must_read_if?: string | undefined;
|
|
1347
1387
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1348
1388
|
tags?: string[] | undefined;
|
|
1349
1389
|
related?: string[] | undefined;
|
|
1390
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1391
|
+
evidence_paths?: string[] | undefined;
|
|
1350
1392
|
title?: string | undefined;
|
|
1351
1393
|
};
|
|
1352
1394
|
}, {
|
|
@@ -1359,11 +1401,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1359
1401
|
relevance_paths?: string[] | undefined;
|
|
1360
1402
|
summary?: string | undefined;
|
|
1361
1403
|
intent_clues?: string[] | undefined;
|
|
1404
|
+
tech_stack?: string[] | undefined;
|
|
1362
1405
|
impact?: string[] | undefined;
|
|
1363
1406
|
must_read_if?: string | undefined;
|
|
1364
1407
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1365
1408
|
tags?: string[] | undefined;
|
|
1366
1409
|
related?: string[] | undefined;
|
|
1410
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1411
|
+
evidence_paths?: string[] | undefined;
|
|
1367
1412
|
title?: string | undefined;
|
|
1368
1413
|
};
|
|
1369
1414
|
}>, z.ZodObject<{
|
|
@@ -1383,6 +1428,9 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1383
1428
|
must_read_if: z.ZodOptional<z.ZodString>;
|
|
1384
1429
|
intent_clues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1385
1430
|
impact: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1431
|
+
tech_stack: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1432
|
+
evidence_paths: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1433
|
+
onboard_slot: z.ZodOptional<z.ZodEnum<["tech-stack-decision", "architecture-pattern", "code-style-tone", "build-system-idiom", "domain-vocabulary"]>>;
|
|
1386
1434
|
}, "strip", z.ZodTypeAny, {
|
|
1387
1435
|
semantic_scope?: string | undefined;
|
|
1388
1436
|
relevance_scope?: "narrow" | "broad" | undefined;
|
|
@@ -1390,11 +1438,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1390
1438
|
layer?: "personal" | "team" | undefined;
|
|
1391
1439
|
summary?: string | undefined;
|
|
1392
1440
|
intent_clues?: string[] | undefined;
|
|
1441
|
+
tech_stack?: string[] | undefined;
|
|
1393
1442
|
impact?: string[] | undefined;
|
|
1394
1443
|
must_read_if?: string | undefined;
|
|
1395
1444
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1396
1445
|
tags?: string[] | undefined;
|
|
1397
1446
|
related?: string[] | undefined;
|
|
1447
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1448
|
+
evidence_paths?: string[] | undefined;
|
|
1398
1449
|
title?: string | undefined;
|
|
1399
1450
|
}, {
|
|
1400
1451
|
semantic_scope?: string | undefined;
|
|
@@ -1403,11 +1454,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1403
1454
|
layer?: "personal" | "team" | undefined;
|
|
1404
1455
|
summary?: string | undefined;
|
|
1405
1456
|
intent_clues?: string[] | undefined;
|
|
1457
|
+
tech_stack?: string[] | undefined;
|
|
1406
1458
|
impact?: string[] | undefined;
|
|
1407
1459
|
must_read_if?: string | undefined;
|
|
1408
1460
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1409
1461
|
tags?: string[] | undefined;
|
|
1410
1462
|
related?: string[] | undefined;
|
|
1463
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1464
|
+
evidence_paths?: string[] | undefined;
|
|
1411
1465
|
title?: string | undefined;
|
|
1412
1466
|
}>;
|
|
1413
1467
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1419,11 +1473,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1419
1473
|
layer?: "personal" | "team" | undefined;
|
|
1420
1474
|
summary?: string | undefined;
|
|
1421
1475
|
intent_clues?: string[] | undefined;
|
|
1476
|
+
tech_stack?: string[] | undefined;
|
|
1422
1477
|
impact?: string[] | undefined;
|
|
1423
1478
|
must_read_if?: string | undefined;
|
|
1424
1479
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1425
1480
|
tags?: string[] | undefined;
|
|
1426
1481
|
related?: string[] | undefined;
|
|
1482
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1483
|
+
evidence_paths?: string[] | undefined;
|
|
1427
1484
|
title?: string | undefined;
|
|
1428
1485
|
};
|
|
1429
1486
|
}, {
|
|
@@ -1435,11 +1492,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1435
1492
|
layer?: "personal" | "team" | undefined;
|
|
1436
1493
|
summary?: string | undefined;
|
|
1437
1494
|
intent_clues?: string[] | undefined;
|
|
1495
|
+
tech_stack?: string[] | undefined;
|
|
1438
1496
|
impact?: string[] | undefined;
|
|
1439
1497
|
must_read_if?: string | undefined;
|
|
1440
1498
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1441
1499
|
tags?: string[] | undefined;
|
|
1442
1500
|
related?: string[] | undefined;
|
|
1501
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1502
|
+
evidence_paths?: string[] | undefined;
|
|
1443
1503
|
title?: string | undefined;
|
|
1444
1504
|
};
|
|
1445
1505
|
}>, "many">;
|
|
@@ -1454,11 +1514,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1454
1514
|
layer?: "personal" | "team" | undefined;
|
|
1455
1515
|
summary?: string | undefined;
|
|
1456
1516
|
intent_clues?: string[] | undefined;
|
|
1517
|
+
tech_stack?: string[] | undefined;
|
|
1457
1518
|
impact?: string[] | undefined;
|
|
1458
1519
|
must_read_if?: string | undefined;
|
|
1459
1520
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1460
1521
|
tags?: string[] | undefined;
|
|
1461
1522
|
related?: string[] | undefined;
|
|
1523
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1524
|
+
evidence_paths?: string[] | undefined;
|
|
1462
1525
|
title?: string | undefined;
|
|
1463
1526
|
};
|
|
1464
1527
|
}[];
|
|
@@ -1473,11 +1536,14 @@ declare const FabReviewInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObje
|
|
|
1473
1536
|
layer?: "personal" | "team" | undefined;
|
|
1474
1537
|
summary?: string | undefined;
|
|
1475
1538
|
intent_clues?: string[] | undefined;
|
|
1539
|
+
tech_stack?: string[] | undefined;
|
|
1476
1540
|
impact?: string[] | undefined;
|
|
1477
1541
|
must_read_if?: string | undefined;
|
|
1478
1542
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1479
1543
|
tags?: string[] | undefined;
|
|
1480
1544
|
related?: string[] | undefined;
|
|
1545
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1546
|
+
evidence_paths?: string[] | undefined;
|
|
1481
1547
|
title?: string | undefined;
|
|
1482
1548
|
};
|
|
1483
1549
|
}[];
|
|
@@ -1676,6 +1742,9 @@ declare const FabReviewInputShape: {
|
|
|
1676
1742
|
must_read_if: z.ZodOptional<z.ZodString>;
|
|
1677
1743
|
intent_clues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1678
1744
|
impact: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1745
|
+
tech_stack: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1746
|
+
evidence_paths: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1747
|
+
onboard_slot: z.ZodOptional<z.ZodEnum<["tech-stack-decision", "architecture-pattern", "code-style-tone", "build-system-idiom", "domain-vocabulary"]>>;
|
|
1679
1748
|
}, "strip", z.ZodTypeAny, {
|
|
1680
1749
|
semantic_scope?: string | undefined;
|
|
1681
1750
|
relevance_scope?: "narrow" | "broad" | undefined;
|
|
@@ -1683,11 +1752,14 @@ declare const FabReviewInputShape: {
|
|
|
1683
1752
|
layer?: "personal" | "team" | undefined;
|
|
1684
1753
|
summary?: string | undefined;
|
|
1685
1754
|
intent_clues?: string[] | undefined;
|
|
1755
|
+
tech_stack?: string[] | undefined;
|
|
1686
1756
|
impact?: string[] | undefined;
|
|
1687
1757
|
must_read_if?: string | undefined;
|
|
1688
1758
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1689
1759
|
tags?: string[] | undefined;
|
|
1690
1760
|
related?: string[] | undefined;
|
|
1761
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1762
|
+
evidence_paths?: string[] | undefined;
|
|
1691
1763
|
title?: string | undefined;
|
|
1692
1764
|
}, {
|
|
1693
1765
|
semantic_scope?: string | undefined;
|
|
@@ -1696,11 +1768,14 @@ declare const FabReviewInputShape: {
|
|
|
1696
1768
|
layer?: "personal" | "team" | undefined;
|
|
1697
1769
|
summary?: string | undefined;
|
|
1698
1770
|
intent_clues?: string[] | undefined;
|
|
1771
|
+
tech_stack?: string[] | undefined;
|
|
1699
1772
|
impact?: string[] | undefined;
|
|
1700
1773
|
must_read_if?: string | undefined;
|
|
1701
1774
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1702
1775
|
tags?: string[] | undefined;
|
|
1703
1776
|
related?: string[] | undefined;
|
|
1777
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1778
|
+
evidence_paths?: string[] | undefined;
|
|
1704
1779
|
title?: string | undefined;
|
|
1705
1780
|
}>>;
|
|
1706
1781
|
readonly items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1718,6 +1793,9 @@ declare const FabReviewInputShape: {
|
|
|
1718
1793
|
must_read_if: z.ZodOptional<z.ZodString>;
|
|
1719
1794
|
intent_clues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1720
1795
|
impact: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1796
|
+
tech_stack: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1797
|
+
evidence_paths: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1798
|
+
onboard_slot: z.ZodOptional<z.ZodEnum<["tech-stack-decision", "architecture-pattern", "code-style-tone", "build-system-idiom", "domain-vocabulary"]>>;
|
|
1721
1799
|
}, "strip", z.ZodTypeAny, {
|
|
1722
1800
|
semantic_scope?: string | undefined;
|
|
1723
1801
|
relevance_scope?: "narrow" | "broad" | undefined;
|
|
@@ -1725,11 +1803,14 @@ declare const FabReviewInputShape: {
|
|
|
1725
1803
|
layer?: "personal" | "team" | undefined;
|
|
1726
1804
|
summary?: string | undefined;
|
|
1727
1805
|
intent_clues?: string[] | undefined;
|
|
1806
|
+
tech_stack?: string[] | undefined;
|
|
1728
1807
|
impact?: string[] | undefined;
|
|
1729
1808
|
must_read_if?: string | undefined;
|
|
1730
1809
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1731
1810
|
tags?: string[] | undefined;
|
|
1732
1811
|
related?: string[] | undefined;
|
|
1812
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1813
|
+
evidence_paths?: string[] | undefined;
|
|
1733
1814
|
title?: string | undefined;
|
|
1734
1815
|
}, {
|
|
1735
1816
|
semantic_scope?: string | undefined;
|
|
@@ -1738,11 +1819,14 @@ declare const FabReviewInputShape: {
|
|
|
1738
1819
|
layer?: "personal" | "team" | undefined;
|
|
1739
1820
|
summary?: string | undefined;
|
|
1740
1821
|
intent_clues?: string[] | undefined;
|
|
1822
|
+
tech_stack?: string[] | undefined;
|
|
1741
1823
|
impact?: string[] | undefined;
|
|
1742
1824
|
must_read_if?: string | undefined;
|
|
1743
1825
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1744
1826
|
tags?: string[] | undefined;
|
|
1745
1827
|
related?: string[] | undefined;
|
|
1828
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1829
|
+
evidence_paths?: string[] | undefined;
|
|
1746
1830
|
title?: string | undefined;
|
|
1747
1831
|
}>;
|
|
1748
1832
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1754,11 +1838,14 @@ declare const FabReviewInputShape: {
|
|
|
1754
1838
|
layer?: "personal" | "team" | undefined;
|
|
1755
1839
|
summary?: string | undefined;
|
|
1756
1840
|
intent_clues?: string[] | undefined;
|
|
1841
|
+
tech_stack?: string[] | undefined;
|
|
1757
1842
|
impact?: string[] | undefined;
|
|
1758
1843
|
must_read_if?: string | undefined;
|
|
1759
1844
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1760
1845
|
tags?: string[] | undefined;
|
|
1761
1846
|
related?: string[] | undefined;
|
|
1847
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1848
|
+
evidence_paths?: string[] | undefined;
|
|
1762
1849
|
title?: string | undefined;
|
|
1763
1850
|
};
|
|
1764
1851
|
}, {
|
|
@@ -1770,11 +1857,14 @@ declare const FabReviewInputShape: {
|
|
|
1770
1857
|
layer?: "personal" | "team" | undefined;
|
|
1771
1858
|
summary?: string | undefined;
|
|
1772
1859
|
intent_clues?: string[] | undefined;
|
|
1860
|
+
tech_stack?: string[] | undefined;
|
|
1773
1861
|
impact?: string[] | undefined;
|
|
1774
1862
|
must_read_if?: string | undefined;
|
|
1775
1863
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
1776
1864
|
tags?: string[] | undefined;
|
|
1777
1865
|
related?: string[] | undefined;
|
|
1866
|
+
onboard_slot?: "tech-stack-decision" | "architecture-pattern" | "code-style-tone" | "build-system-idiom" | "domain-vocabulary" | undefined;
|
|
1867
|
+
evidence_paths?: string[] | undefined;
|
|
1778
1868
|
title?: string | undefined;
|
|
1779
1869
|
};
|
|
1780
1870
|
}>, "many">>;
|
|
@@ -1793,6 +1883,16 @@ declare const FabReviewOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObj
|
|
|
1793
1883
|
pending_path: string;
|
|
1794
1884
|
stable_id: string;
|
|
1795
1885
|
}>, "many">;
|
|
1886
|
+
failed: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1887
|
+
pending_path: z.ZodString;
|
|
1888
|
+
reason: z.ZodString;
|
|
1889
|
+
}, "strip", z.ZodTypeAny, {
|
|
1890
|
+
pending_path: string;
|
|
1891
|
+
reason: string;
|
|
1892
|
+
}, {
|
|
1893
|
+
pending_path: string;
|
|
1894
|
+
reason: string;
|
|
1895
|
+
}>, "many">>;
|
|
1796
1896
|
warnings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1797
1897
|
code: z.ZodString;
|
|
1798
1898
|
file: z.ZodString;
|
|
@@ -1818,6 +1918,10 @@ declare const FabReviewOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObj
|
|
|
1818
1918
|
stable_id: string;
|
|
1819
1919
|
}[];
|
|
1820
1920
|
action: "approve";
|
|
1921
|
+
failed?: {
|
|
1922
|
+
pending_path: string;
|
|
1923
|
+
reason: string;
|
|
1924
|
+
}[] | undefined;
|
|
1821
1925
|
warnings?: {
|
|
1822
1926
|
code: string;
|
|
1823
1927
|
file: string;
|
|
@@ -1831,6 +1935,10 @@ declare const FabReviewOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObj
|
|
|
1831
1935
|
stable_id: string;
|
|
1832
1936
|
}[];
|
|
1833
1937
|
action: "approve";
|
|
1938
|
+
failed?: {
|
|
1939
|
+
pending_path: string;
|
|
1940
|
+
reason: string;
|
|
1941
|
+
}[] | undefined;
|
|
1834
1942
|
warnings?: {
|
|
1835
1943
|
code: string;
|
|
1836
1944
|
file: string;
|
|
@@ -2047,6 +2155,16 @@ declare const FabReviewOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObj
|
|
|
2047
2155
|
stable_id?: string | undefined;
|
|
2048
2156
|
superseded_by?: string | undefined;
|
|
2049
2157
|
}>, "many">;
|
|
2158
|
+
failed: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2159
|
+
pending_path: z.ZodString;
|
|
2160
|
+
reason: z.ZodString;
|
|
2161
|
+
}, "strip", z.ZodTypeAny, {
|
|
2162
|
+
pending_path: string;
|
|
2163
|
+
reason: string;
|
|
2164
|
+
}, {
|
|
2165
|
+
pending_path: string;
|
|
2166
|
+
reason: string;
|
|
2167
|
+
}>, "many">>;
|
|
2050
2168
|
warnings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2051
2169
|
code: z.ZodString;
|
|
2052
2170
|
file: z.ZodString;
|
|
@@ -2073,6 +2191,10 @@ declare const FabReviewOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObj
|
|
|
2073
2191
|
stable_id?: string | undefined;
|
|
2074
2192
|
superseded_by?: string | undefined;
|
|
2075
2193
|
}[];
|
|
2194
|
+
failed?: {
|
|
2195
|
+
pending_path: string;
|
|
2196
|
+
reason: string;
|
|
2197
|
+
}[] | undefined;
|
|
2076
2198
|
warnings?: {
|
|
2077
2199
|
code: string;
|
|
2078
2200
|
file: string;
|
|
@@ -2087,6 +2209,10 @@ declare const FabReviewOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObj
|
|
|
2087
2209
|
stable_id?: string | undefined;
|
|
2088
2210
|
superseded_by?: string | undefined;
|
|
2089
2211
|
}[];
|
|
2212
|
+
failed?: {
|
|
2213
|
+
pending_path: string;
|
|
2214
|
+
reason: string;
|
|
2215
|
+
}[] | undefined;
|
|
2090
2216
|
warnings?: {
|
|
2091
2217
|
code: string;
|
|
2092
2218
|
file: string;
|
|
@@ -2107,6 +2233,7 @@ declare const FabPendingOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodOb
|
|
|
2107
2233
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2108
2234
|
title: z.ZodOptional<z.ZodString>;
|
|
2109
2235
|
summary: z.ZodOptional<z.ZodString>;
|
|
2236
|
+
proposed_reason: z.ZodOptional<z.ZodString>;
|
|
2110
2237
|
origin: z.ZodOptional<z.ZodEnum<["team", "personal"]>>;
|
|
2111
2238
|
status: z.ZodOptional<z.ZodEnum<["active", "rejected", "deferred"]>>;
|
|
2112
2239
|
deferred_until: z.ZodOptional<z.ZodString>;
|
|
@@ -2117,6 +2244,7 @@ declare const FabPendingOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodOb
|
|
|
2117
2244
|
pending_path: string;
|
|
2118
2245
|
maturity: "draft" | "verified" | "proven";
|
|
2119
2246
|
status?: "active" | "rejected" | "deferred" | undefined;
|
|
2247
|
+
proposed_reason?: string | undefined;
|
|
2120
2248
|
summary?: string | undefined;
|
|
2121
2249
|
tags?: string[] | undefined;
|
|
2122
2250
|
body?: string | undefined;
|
|
@@ -2130,6 +2258,7 @@ declare const FabPendingOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodOb
|
|
|
2130
2258
|
pending_path: string;
|
|
2131
2259
|
maturity: "draft" | "verified" | "proven";
|
|
2132
2260
|
status?: "active" | "rejected" | "deferred" | undefined;
|
|
2261
|
+
proposed_reason?: string | undefined;
|
|
2133
2262
|
summary?: string | undefined;
|
|
2134
2263
|
tags?: string[] | undefined;
|
|
2135
2264
|
body?: string | undefined;
|
|
@@ -2165,6 +2294,7 @@ declare const FabPendingOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodOb
|
|
|
2165
2294
|
pending_path: string;
|
|
2166
2295
|
maturity: "draft" | "verified" | "proven";
|
|
2167
2296
|
status?: "active" | "rejected" | "deferred" | undefined;
|
|
2297
|
+
proposed_reason?: string | undefined;
|
|
2168
2298
|
summary?: string | undefined;
|
|
2169
2299
|
tags?: string[] | undefined;
|
|
2170
2300
|
body?: string | undefined;
|
|
@@ -2188,6 +2318,7 @@ declare const FabPendingOutputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodOb
|
|
|
2188
2318
|
pending_path: string;
|
|
2189
2319
|
maturity: "draft" | "verified" | "proven";
|
|
2190
2320
|
status?: "active" | "rejected" | "deferred" | undefined;
|
|
2321
|
+
proposed_reason?: string | undefined;
|
|
2191
2322
|
summary?: string | undefined;
|
|
2192
2323
|
tags?: string[] | undefined;
|
|
2193
2324
|
body?: string | undefined;
|
|
@@ -2333,6 +2464,7 @@ declare const FabPendingOutputShape: {
|
|
|
2333
2464
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2334
2465
|
title: z.ZodOptional<z.ZodString>;
|
|
2335
2466
|
summary: z.ZodOptional<z.ZodString>;
|
|
2467
|
+
proposed_reason: z.ZodOptional<z.ZodString>;
|
|
2336
2468
|
origin: z.ZodOptional<z.ZodEnum<["team", "personal"]>>;
|
|
2337
2469
|
status: z.ZodOptional<z.ZodEnum<["active", "rejected", "deferred"]>>;
|
|
2338
2470
|
deferred_until: z.ZodOptional<z.ZodString>;
|
|
@@ -2343,6 +2475,7 @@ declare const FabPendingOutputShape: {
|
|
|
2343
2475
|
pending_path: string;
|
|
2344
2476
|
maturity: "draft" | "verified" | "proven";
|
|
2345
2477
|
status?: "active" | "rejected" | "deferred" | undefined;
|
|
2478
|
+
proposed_reason?: string | undefined;
|
|
2346
2479
|
summary?: string | undefined;
|
|
2347
2480
|
tags?: string[] | undefined;
|
|
2348
2481
|
body?: string | undefined;
|
|
@@ -2356,6 +2489,7 @@ declare const FabPendingOutputShape: {
|
|
|
2356
2489
|
pending_path: string;
|
|
2357
2490
|
maturity: "draft" | "verified" | "proven";
|
|
2358
2491
|
status?: "active" | "rejected" | "deferred" | undefined;
|
|
2492
|
+
proposed_reason?: string | undefined;
|
|
2359
2493
|
summary?: string | undefined;
|
|
2360
2494
|
tags?: string[] | undefined;
|
|
2361
2495
|
body?: string | undefined;
|
|
@@ -2441,6 +2575,16 @@ declare const FabReviewOutputShape: {
|
|
|
2441
2575
|
pending_path: string;
|
|
2442
2576
|
stable_id: string;
|
|
2443
2577
|
}>, "many">>;
|
|
2578
|
+
readonly failed: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2579
|
+
pending_path: z.ZodString;
|
|
2580
|
+
reason: z.ZodString;
|
|
2581
|
+
}, "strip", z.ZodTypeAny, {
|
|
2582
|
+
pending_path: string;
|
|
2583
|
+
reason: string;
|
|
2584
|
+
}, {
|
|
2585
|
+
pending_path: string;
|
|
2586
|
+
reason: string;
|
|
2587
|
+
}>, "many">>;
|
|
2444
2588
|
readonly rejected: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2445
2589
|
readonly pending_path: z.ZodOptional<z.ZodString>;
|
|
2446
2590
|
readonly prior_stable_id: z.ZodOptional<z.ZodString>;
|