nexus-agents 3.6.16 → 3.7.0
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-AFTRCTBF.js → chunk-6YLKVLI4.js} +14 -2
- package/dist/{chunk-AFTRCTBF.js.map → chunk-6YLKVLI4.js.map} +1 -1
- package/dist/{chunk-MURFILB2.js → chunk-TOBIDJ3V.js} +3 -3
- package/dist/{chunk-MURFILB2.js.map → chunk-TOBIDJ3V.js.map} +1 -1
- package/dist/{chunk-BPDIPSTD.js → chunk-XFQMSO3R.js} +2 -2
- package/dist/cli.js +3 -3
- package/dist/index.js +2 -2
- package/dist/{setup-command-ECCHOR62.js → setup-command-X7EJ7LBU.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-BPDIPSTD.js.map → chunk-XFQMSO3R.js.map} +0 -0
- /package/dist/{setup-command-ECCHOR62.js.map → setup-command-X7EJ7LBU.js.map} +0 -0
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
DEFAULT_TASK_TTL_MS,
|
|
23
23
|
DEFAULT_TOOL_RATE_LIMITS,
|
|
24
24
|
clampTaskTtl
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-TOBIDJ3V.js";
|
|
26
26
|
import {
|
|
27
27
|
executeExpert
|
|
28
28
|
} from "./chunk-4LMP452D.js";
|
|
@@ -51014,6 +51014,18 @@ var ValidationResultSchema = z111.object({
|
|
|
51014
51014
|
toolName: z111.string().min(1),
|
|
51015
51015
|
violations: z111.array(ConstraintViolationSchema),
|
|
51016
51016
|
passed: z111.array(z111.string()),
|
|
51017
|
+
// Optional rather than required, deliberately. `ValidationResult` declares
|
|
51018
|
+
// both fields required because every result this package produces has them;
|
|
51019
|
+
// the schema is the lenient inbound edge for a result that arrived from
|
|
51020
|
+
// somewhere else. There is no in-tree persistence path today — this schema is
|
|
51021
|
+
// a published export with no producer or consumer in this repo — so the case
|
|
51022
|
+
// is a holder outside the tree, not a stored record here. Absent then means
|
|
51023
|
+
// "predates coverage tracking", which is distinct from an empty array meaning
|
|
51024
|
+
// "nothing was evaluated". The strict/lenient split is safe because nothing
|
|
51025
|
+
// bridges the two with `z.infer`: a parsed result will not typecheck as a
|
|
51026
|
+
// `ValidationResult` without handling the absent fields.
|
|
51027
|
+
evaluated: z111.array(z111.string()).optional(),
|
|
51028
|
+
notApplicable: z111.array(z111.string()).optional(),
|
|
51017
51029
|
warnings: z111.array(ValidationWarningSchema),
|
|
51018
51030
|
validatedAt: z111.date()
|
|
51019
51031
|
});
|
|
@@ -54336,4 +54348,4 @@ export {
|
|
|
54336
54348
|
shutdownFeedbackSubscriber,
|
|
54337
54349
|
createEventBusBridge
|
|
54338
54350
|
};
|
|
54339
|
-
//# sourceMappingURL=chunk-
|
|
54351
|
+
//# sourceMappingURL=chunk-6YLKVLI4.js.map
|