@mmnto/totem 1.121.0 → 1.122.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/artifacts/grounding.d.ts +17 -4
- package/dist/artifacts/grounding.d.ts.map +1 -1
- package/dist/artifacts/grounding.js +14 -4
- package/dist/artifacts/grounding.js.map +1 -1
- package/dist/artifacts/grounding.test.js +49 -2
- package/dist/artifacts/grounding.test.js.map +1 -1
- package/dist/artifacts/panel.d.ts +188 -0
- package/dist/artifacts/panel.d.ts.map +1 -1
- package/dist/artifacts/schema.d.ts +372 -13
- package/dist/artifacts/schema.d.ts.map +1 -1
- package/dist/artifacts/schema.js +145 -5
- package/dist/artifacts/schema.js.map +1 -1
- package/dist/artifacts/schema.test.js +181 -1
- package/dist/artifacts/schema.test.js.map +1 -1
- package/dist/config-schema.d.ts +6 -2
- package/dist/config-schema.d.ts.map +1 -1
- package/dist/config-schema.js +6 -2
- package/dist/config-schema.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/ledger.d.ts +4 -4
- package/dist/recurrence-stats.d.ts +10 -10
- package/dist/selection-manifest.d.ts +2 -2
- package/dist/spine/ledgers.d.ts +24 -24
- package/package.json +1 -1
package/dist/spine/ledgers.d.ts
CHANGED
|
@@ -88,7 +88,7 @@ export declare const EmissionLedgerEntrySchema: z.ZodObject<{
|
|
|
88
88
|
routing: "compile" | "rag-only";
|
|
89
89
|
classifierLedgerRef: string;
|
|
90
90
|
candidateRef: string;
|
|
91
|
-
sourceKind?: "
|
|
91
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
92
92
|
}, {
|
|
93
93
|
provenance: {
|
|
94
94
|
mergedPr: number;
|
|
@@ -101,7 +101,7 @@ export declare const EmissionLedgerEntrySchema: z.ZodObject<{
|
|
|
101
101
|
routing: "compile" | "rag-only";
|
|
102
102
|
classifierLedgerRef: string;
|
|
103
103
|
candidateRef: string;
|
|
104
|
-
sourceKind?: "
|
|
104
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
105
105
|
}>;
|
|
106
106
|
export type EmissionLedgerEntry = z.infer<typeof EmissionLedgerEntrySchema>;
|
|
107
107
|
export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
@@ -146,7 +146,7 @@ export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
|
146
146
|
routing: "compile" | "rag-only";
|
|
147
147
|
classifierLedgerRef: string;
|
|
148
148
|
candidateRef: string;
|
|
149
|
-
sourceKind?: "
|
|
149
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
150
150
|
}, {
|
|
151
151
|
provenance: {
|
|
152
152
|
mergedPr: number;
|
|
@@ -159,7 +159,7 @@ export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
|
159
159
|
routing: "compile" | "rag-only";
|
|
160
160
|
classifierLedgerRef: string;
|
|
161
161
|
candidateRef: string;
|
|
162
|
-
sourceKind?: "
|
|
162
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
163
163
|
}>, "many">;
|
|
164
164
|
/**
|
|
165
165
|
* Run-level seed-blindness attestation (§7). `false` = no seed class was
|
|
@@ -185,7 +185,7 @@ export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
|
185
185
|
routing: "compile" | "rag-only";
|
|
186
186
|
classifierLedgerRef: string;
|
|
187
187
|
candidateRef: string;
|
|
188
|
-
sourceKind?: "
|
|
188
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
189
189
|
}[];
|
|
190
190
|
extractionInputsAttestation: {
|
|
191
191
|
seedClassesProvided: boolean;
|
|
@@ -203,7 +203,7 @@ export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
|
203
203
|
routing: "compile" | "rag-only";
|
|
204
204
|
classifierLedgerRef: string;
|
|
205
205
|
candidateRef: string;
|
|
206
|
-
sourceKind?: "
|
|
206
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
207
207
|
}[];
|
|
208
208
|
extractionInputsAttestation: {
|
|
209
209
|
seedClassesProvided: boolean;
|
|
@@ -266,13 +266,13 @@ export declare const DropLedgerEntrySchema: z.ZodObject<{
|
|
|
266
266
|
}, "strip", z.ZodTypeAny, {
|
|
267
267
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
268
268
|
sourcePr: number;
|
|
269
|
-
sourceKind?: "
|
|
269
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
270
270
|
detail?: string | undefined;
|
|
271
271
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
272
272
|
}, {
|
|
273
273
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
274
274
|
sourcePr: number;
|
|
275
|
-
sourceKind?: "
|
|
275
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
276
276
|
detail?: string | undefined;
|
|
277
277
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
278
278
|
}>;
|
|
@@ -306,13 +306,13 @@ export declare const DropLedgerSchema: z.ZodObject<{
|
|
|
306
306
|
}, "strip", z.ZodTypeAny, {
|
|
307
307
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
308
308
|
sourcePr: number;
|
|
309
|
-
sourceKind?: "
|
|
309
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
310
310
|
detail?: string | undefined;
|
|
311
311
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
312
312
|
}, {
|
|
313
313
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
314
314
|
sourcePr: number;
|
|
315
|
-
sourceKind?: "
|
|
315
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
316
316
|
detail?: string | undefined;
|
|
317
317
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
318
318
|
}>, "many">;
|
|
@@ -320,7 +320,7 @@ export declare const DropLedgerSchema: z.ZodObject<{
|
|
|
320
320
|
entries: {
|
|
321
321
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
322
322
|
sourcePr: number;
|
|
323
|
-
sourceKind?: "
|
|
323
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
324
324
|
detail?: string | undefined;
|
|
325
325
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
326
326
|
}[];
|
|
@@ -328,7 +328,7 @@ export declare const DropLedgerSchema: z.ZodObject<{
|
|
|
328
328
|
entries: {
|
|
329
329
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
330
330
|
sourcePr: number;
|
|
331
|
-
sourceKind?: "
|
|
331
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
332
332
|
detail?: string | undefined;
|
|
333
333
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
334
334
|
}[];
|
|
@@ -738,7 +738,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
738
738
|
routing: "compile" | "rag-only";
|
|
739
739
|
classifierLedgerRef: string;
|
|
740
740
|
candidateRef: string;
|
|
741
|
-
sourceKind?: "
|
|
741
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
742
742
|
}, {
|
|
743
743
|
provenance: {
|
|
744
744
|
mergedPr: number;
|
|
@@ -751,7 +751,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
751
751
|
routing: "compile" | "rag-only";
|
|
752
752
|
classifierLedgerRef: string;
|
|
753
753
|
candidateRef: string;
|
|
754
|
-
sourceKind?: "
|
|
754
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
755
755
|
}>, "many">;
|
|
756
756
|
/**
|
|
757
757
|
* Run-level seed-blindness attestation (§7). `false` = no seed class was
|
|
@@ -777,7 +777,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
777
777
|
routing: "compile" | "rag-only";
|
|
778
778
|
classifierLedgerRef: string;
|
|
779
779
|
candidateRef: string;
|
|
780
|
-
sourceKind?: "
|
|
780
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
781
781
|
}[];
|
|
782
782
|
extractionInputsAttestation: {
|
|
783
783
|
seedClassesProvided: boolean;
|
|
@@ -795,7 +795,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
795
795
|
routing: "compile" | "rag-only";
|
|
796
796
|
classifierLedgerRef: string;
|
|
797
797
|
candidateRef: string;
|
|
798
|
-
sourceKind?: "
|
|
798
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
799
799
|
}[];
|
|
800
800
|
extractionInputsAttestation: {
|
|
801
801
|
seedClassesProvided: boolean;
|
|
@@ -830,13 +830,13 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
830
830
|
}, "strip", z.ZodTypeAny, {
|
|
831
831
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
832
832
|
sourcePr: number;
|
|
833
|
-
sourceKind?: "
|
|
833
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
834
834
|
detail?: string | undefined;
|
|
835
835
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
836
836
|
}, {
|
|
837
837
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
838
838
|
sourcePr: number;
|
|
839
|
-
sourceKind?: "
|
|
839
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
840
840
|
detail?: string | undefined;
|
|
841
841
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
842
842
|
}>, "many">;
|
|
@@ -844,7 +844,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
844
844
|
entries: {
|
|
845
845
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
846
846
|
sourcePr: number;
|
|
847
|
-
sourceKind?: "
|
|
847
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
848
848
|
detail?: string | undefined;
|
|
849
849
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
850
850
|
}[];
|
|
@@ -852,7 +852,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
852
852
|
entries: {
|
|
853
853
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
854
854
|
sourcePr: number;
|
|
855
|
-
sourceKind?: "
|
|
855
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
856
856
|
detail?: string | undefined;
|
|
857
857
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
858
858
|
}[];
|
|
@@ -1184,7 +1184,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
1184
1184
|
routing: "compile" | "rag-only";
|
|
1185
1185
|
classifierLedgerRef: string;
|
|
1186
1186
|
candidateRef: string;
|
|
1187
|
-
sourceKind?: "
|
|
1187
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
1188
1188
|
}[];
|
|
1189
1189
|
extractionInputsAttestation: {
|
|
1190
1190
|
seedClassesProvided: boolean;
|
|
@@ -1194,7 +1194,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
1194
1194
|
entries: {
|
|
1195
1195
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
1196
1196
|
sourcePr: number;
|
|
1197
|
-
sourceKind?: "
|
|
1197
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
1198
1198
|
detail?: string | undefined;
|
|
1199
1199
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
1200
1200
|
}[];
|
|
@@ -1250,7 +1250,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
1250
1250
|
routing: "compile" | "rag-only";
|
|
1251
1251
|
classifierLedgerRef: string;
|
|
1252
1252
|
candidateRef: string;
|
|
1253
|
-
sourceKind?: "
|
|
1253
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
1254
1254
|
}[];
|
|
1255
1255
|
extractionInputsAttestation: {
|
|
1256
1256
|
seedClassesProvided: boolean;
|
|
@@ -1260,7 +1260,7 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
1260
1260
|
entries: {
|
|
1261
1261
|
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
1262
1262
|
sourcePr: number;
|
|
1263
|
-
sourceKind?: "
|
|
1263
|
+
sourceKind?: "mixed" | "bot" | "human" | undefined;
|
|
1264
1264
|
detail?: string | undefined;
|
|
1265
1265
|
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
1266
1266
|
}[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmnto/totem",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.122.0",
|
|
4
4
|
"description": "Core engine for Totem, the local-first toolkit that keeps AI-agent work queryable, enforceable, and derivable as plain files in your codebase",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|