@kynver-app/runtime 0.1.129 → 0.1.134

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.
@@ -1,4 +1,4 @@
1
- import { type HeavyVerificationGateVerdict } from "../heavy-verification/index.js";
1
+ import { type HeavyVerificationGateVerdict, type WorkerCommandGateOutcome } from "../heavy-verification/index.js";
2
2
  import { type BuildAdmissionVerdict } from "./admission.js";
3
3
  export interface BoundedBuildExecResult {
4
4
  ok: boolean;
@@ -11,6 +11,8 @@ export interface BoundedBuildExecResult {
11
11
  admission: BuildAdmissionVerdict;
12
12
  /** Cross-process heavy-verification lease (typecheck/build throttle). */
13
13
  verificationGate: HeavyVerificationGateVerdict;
14
+ /** Typed M2 gate outcome when a heavy command is refused or bypassed. */
15
+ gateOutcome?: WorkerCommandGateOutcome;
14
16
  command: string;
15
17
  }
16
18
  export interface RunBoundedBuildCheckInput {