From 90a0d7ff3b330948e532465674924f03c617681e Mon Sep 17 00:00:00 2001 From: Andrey Avtomonov Date: Mon, 18 May 2026 00:42:16 +0200 Subject: [PATCH] chore(ingest): verify isolated diff gate repair --- packages/context/src/ingest/final-gate-repair.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/context/src/ingest/final-gate-repair.ts b/packages/context/src/ingest/final-gate-repair.ts index 0858726b..57ff1619 100644 --- a/packages/context/src/ingest/final-gate-repair.ts +++ b/packages/context/src/ingest/final-gate-repair.ts @@ -6,7 +6,7 @@ import type { TouchedSlSource } from '../tools/index.js'; import type { IngestTraceWriter } from './ingest-trace.js'; import { traceTimed } from './ingest-trace.js'; -export type FinalGateRepairKind = 'patch_semantic_gate' | 'final_artifact_gate'; +type FinalGateRepairKind = 'patch_semantic_gate' | 'final_artifact_gate'; export type FinalGateRepairResult = | { status: 'repaired'; attempts: number; changedPaths: string[] }