@thehammer/template-verification 0.2.18 → 0.2.19
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 +7 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -318,6 +318,13 @@ export interface DataPointMeta {
|
|
|
318
318
|
*/
|
|
319
319
|
type?: string | null;
|
|
320
320
|
format?: string | null;
|
|
321
|
+
/**
|
|
322
|
+
* Classification of how this data point was authored (SG-718, widened SG-757):
|
|
323
|
+
* `generated` (a live artifact-generation directive), `extracted` (a live data
|
|
324
|
+
* extraction directive), `authored` (neither — a person's own value), or null when
|
|
325
|
+
* the field's schema cannot be resolved or when no schema context is available.
|
|
326
|
+
*/
|
|
327
|
+
classification?: string | null;
|
|
321
328
|
candidates: CandidateSet;
|
|
322
329
|
discrepancy: boolean;
|
|
323
330
|
resolved: ResolvedValue;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thehammer/template-verification",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.19",
|
|
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",
|