@thehammer/template-verification 0.2.19 → 0.2.20
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/types.d.ts +0 -13
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -196,19 +196,6 @@ export interface ExtractedCandidate {
|
|
|
196
196
|
history?: VerificationHistoryEntry[];
|
|
197
197
|
/** Cheap `history?.length` equivalent — present even when `history` itself is not (SG-392). */
|
|
198
198
|
history_count?: number;
|
|
199
|
-
/**
|
|
200
|
-
* Non-null when this candidate's value was reconciled from a genuine SOURCE-DOCUMENT
|
|
201
|
-
* conflict (SG-217). Shipped in BOTH light and full mode — unlike reasoning/sources/
|
|
202
|
-
* history above, it is a handful of short strings, not a per-attempt array, so it carries
|
|
203
|
-
* none of the SG-392 payload-size risk and `hasDiscrepancy()` needs it in light mode too.
|
|
204
|
-
*/
|
|
205
|
-
source_discrepancy?: SourceDiscrepancy | null;
|
|
206
|
-
/**
|
|
207
|
-
* Non-null when this candidate's value was NORMALISED/typo-fixed by the block dedupe
|
|
208
|
-
* (SG-406) — a DIFFERENT fact from `source_discrepancy` above, never folded into
|
|
209
|
-
* `discrepancy`. Shipped in BOTH light and full mode, same argument as `source_discrepancy`.
|
|
210
|
-
*/
|
|
211
|
-
correction?: Correction | null;
|
|
212
199
|
}
|
|
213
200
|
/**
|
|
214
201
|
* One recorded attempt in a field's extraction history (SG-190). Mirrors the extracted
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thehammer/template-verification",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.20",
|
|
4
4
|
"description": "Read-write verification overlay for rendered template apps — per-data-point confidence, discrepancy, 3-source resolution (override > extracted > claim), inline edit, and a recursive comparison page. Consumes the host's __meta sidecar; fetches nothing.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|