@mmnto/totem 1.119.0 → 1.120.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/compile-smoke-gate.d.ts +23 -0
- package/dist/compile-smoke-gate.d.ts.map +1 -1
- package/dist/compile-smoke-gate.js +139 -8
- package/dist/compile-smoke-gate.js.map +1 -1
- package/dist/compile-smoke-gate.test.js +431 -0
- package/dist/compile-smoke-gate.test.js.map +1 -1
- package/dist/recurrence-stats.d.ts +10 -10
- package/dist/spine/authored-rule.d.ts +18 -18
- package/dist/spine/authoring-ledger.d.ts +14 -14
- package/dist/spine/cert-corpus-seed.d.ts +6 -6
- package/dist/spine/ledgers.d.ts +62 -62
- package/dist/spine/windtunnel-lock.d.ts +16 -16
- package/package.json +1 -1
|
@@ -28,12 +28,12 @@ export declare const StructEligResultSchema: z.ZodObject<{
|
|
|
28
28
|
judgedBy: z.ZodEffects<z.ZodString, string, string>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
decidable: boolean;
|
|
31
|
-
basis: string;
|
|
32
31
|
judgedBy: string;
|
|
32
|
+
basis: string;
|
|
33
33
|
}, {
|
|
34
34
|
decidable: boolean;
|
|
35
|
-
basis: string;
|
|
36
35
|
judgedBy: string;
|
|
36
|
+
basis: string;
|
|
37
37
|
}>;
|
|
38
38
|
export type StructEligResult = z.infer<typeof StructEligResultSchema>;
|
|
39
39
|
/** ADR-112 §3/§7 — accelerant-lineage marker. A mined hint that informed a human is recorded, never erased. */
|
|
@@ -371,12 +371,12 @@ export declare const AuthoredRuleRecordSchema: z.ZodObject<{
|
|
|
371
371
|
judgedBy: z.ZodEffects<z.ZodString, string, string>;
|
|
372
372
|
}, "strip", z.ZodTypeAny, {
|
|
373
373
|
decidable: boolean;
|
|
374
|
-
basis: string;
|
|
375
374
|
judgedBy: string;
|
|
375
|
+
basis: string;
|
|
376
376
|
}, {
|
|
377
377
|
decidable: boolean;
|
|
378
|
-
basis: string;
|
|
379
378
|
judgedBy: string;
|
|
379
|
+
basis: string;
|
|
380
380
|
}>;
|
|
381
381
|
origin: z.ZodUnion<[z.ZodObject<{
|
|
382
382
|
kind: z.ZodLiteral<"from-scratch">;
|
|
@@ -878,6 +878,13 @@ export declare const AuthoredRuleRecordSchema: z.ZodObject<{
|
|
|
878
878
|
}[] | undefined;
|
|
879
879
|
};
|
|
880
880
|
unverified: true;
|
|
881
|
+
structuralEligibility: {
|
|
882
|
+
decidable: boolean;
|
|
883
|
+
judgedBy: string;
|
|
884
|
+
basis: string;
|
|
885
|
+
};
|
|
886
|
+
authoringLedgerRef: string;
|
|
887
|
+
declaredEngine: "regex" | "ast" | "ast-grep";
|
|
881
888
|
origin: {
|
|
882
889
|
kind: "from-scratch";
|
|
883
890
|
} | {
|
|
@@ -885,13 +892,6 @@ export declare const AuthoredRuleRecordSchema: z.ZodObject<{
|
|
|
885
892
|
sourceRunId: string;
|
|
886
893
|
suggestionHash: string;
|
|
887
894
|
};
|
|
888
|
-
structuralEligibility: {
|
|
889
|
-
decidable: boolean;
|
|
890
|
-
basis: string;
|
|
891
|
-
judgedBy: string;
|
|
892
|
-
};
|
|
893
|
-
declaredEngine: "regex" | "ast" | "ast-grep";
|
|
894
|
-
authoringLedgerRef: string;
|
|
895
895
|
}, {
|
|
896
896
|
record: {
|
|
897
897
|
path: string;
|
|
@@ -981,6 +981,13 @@ export declare const AuthoredRuleRecordSchema: z.ZodObject<{
|
|
|
981
981
|
}[] | undefined;
|
|
982
982
|
};
|
|
983
983
|
unverified: true;
|
|
984
|
+
structuralEligibility: {
|
|
985
|
+
decidable: boolean;
|
|
986
|
+
judgedBy: string;
|
|
987
|
+
basis: string;
|
|
988
|
+
};
|
|
989
|
+
authoringLedgerRef: string;
|
|
990
|
+
declaredEngine: "regex" | "ast" | "ast-grep";
|
|
984
991
|
origin: {
|
|
985
992
|
kind: "from-scratch";
|
|
986
993
|
} | {
|
|
@@ -988,13 +995,6 @@ export declare const AuthoredRuleRecordSchema: z.ZodObject<{
|
|
|
988
995
|
sourceRunId: string;
|
|
989
996
|
suggestionHash: string;
|
|
990
997
|
};
|
|
991
|
-
structuralEligibility: {
|
|
992
|
-
decidable: boolean;
|
|
993
|
-
basis: string;
|
|
994
|
-
judgedBy: string;
|
|
995
|
-
};
|
|
996
|
-
declaredEngine: "regex" | "ast" | "ast-grep";
|
|
997
|
-
authoringLedgerRef: string;
|
|
998
998
|
}>;
|
|
999
999
|
export type AuthoredRuleRecord = z.infer<typeof AuthoredRuleRecordSchema>;
|
|
1000
1000
|
/**
|
|
@@ -22,12 +22,12 @@ export declare const AuthoringLedgerEntrySchema: z.ZodObject<{
|
|
|
22
22
|
judgedBy: z.ZodEffects<z.ZodString, string, string>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
decidable: boolean;
|
|
25
|
-
basis: string;
|
|
26
25
|
judgedBy: string;
|
|
26
|
+
basis: string;
|
|
27
27
|
}, {
|
|
28
28
|
decidable: boolean;
|
|
29
|
-
basis: string;
|
|
30
29
|
judgedBy: string;
|
|
30
|
+
basis: string;
|
|
31
31
|
}>;
|
|
32
32
|
origin: z.ZodUnion<[z.ZodObject<{
|
|
33
33
|
kind: z.ZodLiteral<"from-scratch">;
|
|
@@ -126,6 +126,12 @@ export declare const AuthoringLedgerEntrySchema: z.ZodObject<{
|
|
|
126
126
|
author: string;
|
|
127
127
|
authoredAt: string;
|
|
128
128
|
targetDefect: string;
|
|
129
|
+
structuralEligibility: {
|
|
130
|
+
decidable: boolean;
|
|
131
|
+
judgedBy: string;
|
|
132
|
+
basis: string;
|
|
133
|
+
};
|
|
134
|
+
declaredEngine: "regex" | "ast" | "ast-grep";
|
|
129
135
|
origin: {
|
|
130
136
|
kind: "from-scratch";
|
|
131
137
|
} | {
|
|
@@ -133,12 +139,6 @@ export declare const AuthoringLedgerEntrySchema: z.ZodObject<{
|
|
|
133
139
|
sourceRunId: string;
|
|
134
140
|
suggestionHash: string;
|
|
135
141
|
};
|
|
136
|
-
structuralEligibility: {
|
|
137
|
-
decidable: boolean;
|
|
138
|
-
basis: string;
|
|
139
|
-
judgedBy: string;
|
|
140
|
-
};
|
|
141
|
-
declaredEngine: "regex" | "ast" | "ast-grep";
|
|
142
142
|
splitRef: string;
|
|
143
143
|
authoredAfterSplit: true;
|
|
144
144
|
heldOutNonInspectionAttestation: true;
|
|
@@ -155,6 +155,12 @@ export declare const AuthoringLedgerEntrySchema: z.ZodObject<{
|
|
|
155
155
|
author: string;
|
|
156
156
|
authoredAt: string;
|
|
157
157
|
targetDefect: string;
|
|
158
|
+
structuralEligibility: {
|
|
159
|
+
decidable: boolean;
|
|
160
|
+
judgedBy: string;
|
|
161
|
+
basis: string;
|
|
162
|
+
};
|
|
163
|
+
declaredEngine: "regex" | "ast" | "ast-grep";
|
|
158
164
|
origin: {
|
|
159
165
|
kind: "from-scratch";
|
|
160
166
|
} | {
|
|
@@ -162,12 +168,6 @@ export declare const AuthoringLedgerEntrySchema: z.ZodObject<{
|
|
|
162
168
|
sourceRunId: string;
|
|
163
169
|
suggestionHash: string;
|
|
164
170
|
};
|
|
165
|
-
structuralEligibility: {
|
|
166
|
-
decidable: boolean;
|
|
167
|
-
basis: string;
|
|
168
|
-
judgedBy: string;
|
|
169
|
-
};
|
|
170
|
-
declaredEngine: "regex" | "ast" | "ast-grep";
|
|
171
171
|
splitRef: string;
|
|
172
172
|
authoredAfterSplit: true;
|
|
173
173
|
heldOutNonInspectionAttestation: true;
|
|
@@ -41,9 +41,9 @@ export declare const CertCorpusSeedSchema: z.ZodEffects<z.ZodObject<{
|
|
|
41
41
|
excludeRevertPairs: z.ZodDefault<z.ZodBoolean>;
|
|
42
42
|
excludeBotPrs: z.ZodDefault<z.ZodBoolean>;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
|
-
state: string;
|
|
45
44
|
asOfCommit: string;
|
|
46
45
|
predicate: string;
|
|
46
|
+
state: string;
|
|
47
47
|
window: {
|
|
48
48
|
type: "all";
|
|
49
49
|
} | {
|
|
@@ -57,9 +57,9 @@ export declare const CertCorpusSeedSchema: z.ZodEffects<z.ZodObject<{
|
|
|
57
57
|
excludeRevertPairs: boolean;
|
|
58
58
|
excludeBotPrs: boolean;
|
|
59
59
|
}, {
|
|
60
|
-
state: string;
|
|
61
60
|
asOfCommit: string;
|
|
62
61
|
predicate: string;
|
|
62
|
+
state: string;
|
|
63
63
|
window: {
|
|
64
64
|
type: "all";
|
|
65
65
|
} | {
|
|
@@ -190,9 +190,9 @@ export declare const CertCorpusSeedSchema: z.ZodEffects<z.ZodObject<{
|
|
|
190
190
|
repo: string;
|
|
191
191
|
gate: string;
|
|
192
192
|
selectionRule: {
|
|
193
|
-
state: string;
|
|
194
193
|
asOfCommit: string;
|
|
195
194
|
predicate: string;
|
|
195
|
+
state: string;
|
|
196
196
|
window: {
|
|
197
197
|
type: "all";
|
|
198
198
|
} | {
|
|
@@ -246,9 +246,9 @@ export declare const CertCorpusSeedSchema: z.ZodEffects<z.ZodObject<{
|
|
|
246
246
|
repo: string;
|
|
247
247
|
gate: string;
|
|
248
248
|
selectionRule: {
|
|
249
|
-
state: string;
|
|
250
249
|
asOfCommit: string;
|
|
251
250
|
predicate: string;
|
|
251
|
+
state: string;
|
|
252
252
|
window: {
|
|
253
253
|
type: "all";
|
|
254
254
|
} | {
|
|
@@ -302,9 +302,9 @@ export declare const CertCorpusSeedSchema: z.ZodEffects<z.ZodObject<{
|
|
|
302
302
|
repo: string;
|
|
303
303
|
gate: string;
|
|
304
304
|
selectionRule: {
|
|
305
|
-
state: string;
|
|
306
305
|
asOfCommit: string;
|
|
307
306
|
predicate: string;
|
|
307
|
+
state: string;
|
|
308
308
|
window: {
|
|
309
309
|
type: "all";
|
|
310
310
|
} | {
|
|
@@ -358,9 +358,9 @@ export declare const CertCorpusSeedSchema: z.ZodEffects<z.ZodObject<{
|
|
|
358
358
|
repo: string;
|
|
359
359
|
gate: string;
|
|
360
360
|
selectionRule: {
|
|
361
|
-
state: string;
|
|
362
361
|
asOfCommit: string;
|
|
363
362
|
predicate: string;
|
|
363
|
+
state: string;
|
|
364
364
|
window: {
|
|
365
365
|
type: "all";
|
|
366
366
|
} | {
|
package/dist/spine/ledgers.d.ts
CHANGED
|
@@ -84,11 +84,11 @@ export declare const EmissionLedgerEntrySchema: z.ZodObject<{
|
|
|
84
84
|
kind?: "mined" | undefined;
|
|
85
85
|
};
|
|
86
86
|
unverified: true;
|
|
87
|
-
candidateRef: string;
|
|
88
87
|
classifierDisposition: "structural" | "behavioral";
|
|
89
88
|
routing: "compile" | "rag-only";
|
|
90
89
|
classifierLedgerRef: string;
|
|
91
|
-
|
|
90
|
+
candidateRef: string;
|
|
91
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
92
92
|
}, {
|
|
93
93
|
provenance: {
|
|
94
94
|
mergedPr: number;
|
|
@@ -97,11 +97,11 @@ export declare const EmissionLedgerEntrySchema: z.ZodObject<{
|
|
|
97
97
|
kind?: "mined" | undefined;
|
|
98
98
|
};
|
|
99
99
|
unverified: true;
|
|
100
|
-
candidateRef: string;
|
|
101
100
|
classifierDisposition: "structural" | "behavioral";
|
|
102
101
|
routing: "compile" | "rag-only";
|
|
103
102
|
classifierLedgerRef: string;
|
|
104
|
-
|
|
103
|
+
candidateRef: string;
|
|
104
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
105
105
|
}>;
|
|
106
106
|
export type EmissionLedgerEntry = z.infer<typeof EmissionLedgerEntrySchema>;
|
|
107
107
|
export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
@@ -142,11 +142,11 @@ export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
|
142
142
|
kind?: "mined" | undefined;
|
|
143
143
|
};
|
|
144
144
|
unverified: true;
|
|
145
|
-
candidateRef: string;
|
|
146
145
|
classifierDisposition: "structural" | "behavioral";
|
|
147
146
|
routing: "compile" | "rag-only";
|
|
148
147
|
classifierLedgerRef: string;
|
|
149
|
-
|
|
148
|
+
candidateRef: string;
|
|
149
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
150
150
|
}, {
|
|
151
151
|
provenance: {
|
|
152
152
|
mergedPr: number;
|
|
@@ -155,11 +155,11 @@ export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
|
155
155
|
kind?: "mined" | undefined;
|
|
156
156
|
};
|
|
157
157
|
unverified: true;
|
|
158
|
-
candidateRef: string;
|
|
159
158
|
classifierDisposition: "structural" | "behavioral";
|
|
160
159
|
routing: "compile" | "rag-only";
|
|
161
160
|
classifierLedgerRef: string;
|
|
162
|
-
|
|
161
|
+
candidateRef: string;
|
|
162
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
163
163
|
}>, "many">;
|
|
164
164
|
/**
|
|
165
165
|
* Run-level seed-blindness attestation (§7). `false` = no seed class was
|
|
@@ -181,11 +181,11 @@ export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
|
181
181
|
kind?: "mined" | undefined;
|
|
182
182
|
};
|
|
183
183
|
unverified: true;
|
|
184
|
-
candidateRef: string;
|
|
185
184
|
classifierDisposition: "structural" | "behavioral";
|
|
186
185
|
routing: "compile" | "rag-only";
|
|
187
186
|
classifierLedgerRef: string;
|
|
188
|
-
|
|
187
|
+
candidateRef: string;
|
|
188
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
189
189
|
}[];
|
|
190
190
|
extractionInputsAttestation: {
|
|
191
191
|
seedClassesProvided: boolean;
|
|
@@ -199,11 +199,11 @@ export declare const EmissionLedgerSchema: z.ZodObject<{
|
|
|
199
199
|
kind?: "mined" | undefined;
|
|
200
200
|
};
|
|
201
201
|
unverified: true;
|
|
202
|
-
candidateRef: string;
|
|
203
202
|
classifierDisposition: "structural" | "behavioral";
|
|
204
203
|
routing: "compile" | "rag-only";
|
|
205
204
|
classifierLedgerRef: string;
|
|
206
|
-
|
|
205
|
+
candidateRef: string;
|
|
206
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
207
207
|
}[];
|
|
208
208
|
extractionInputsAttestation: {
|
|
209
209
|
seedClassesProvided: boolean;
|
|
@@ -264,15 +264,15 @@ export declare const DropLedgerEntrySchema: z.ZodObject<{
|
|
|
264
264
|
*/
|
|
265
265
|
sourceKind: z.ZodOptional<z.ZodEnum<["human", "bot", "mixed"]>>;
|
|
266
266
|
}, "strip", z.ZodTypeAny, {
|
|
267
|
-
reasonCode: "truncated" | "
|
|
267
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
268
268
|
sourcePr: number;
|
|
269
|
-
sourceKind?: "bot" | "
|
|
269
|
+
sourceKind?: "bot" | "human" | "mixed" | 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
|
-
reasonCode: "truncated" | "
|
|
273
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
274
274
|
sourcePr: number;
|
|
275
|
-
sourceKind?: "bot" | "
|
|
275
|
+
sourceKind?: "bot" | "human" | "mixed" | 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
|
}>;
|
|
@@ -304,31 +304,31 @@ export declare const DropLedgerSchema: z.ZodObject<{
|
|
|
304
304
|
*/
|
|
305
305
|
sourceKind: z.ZodOptional<z.ZodEnum<["human", "bot", "mixed"]>>;
|
|
306
306
|
}, "strip", z.ZodTypeAny, {
|
|
307
|
-
reasonCode: "truncated" | "
|
|
307
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
308
308
|
sourcePr: number;
|
|
309
|
-
sourceKind?: "bot" | "
|
|
309
|
+
sourceKind?: "bot" | "human" | "mixed" | 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
|
-
reasonCode: "truncated" | "
|
|
313
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
314
314
|
sourcePr: number;
|
|
315
|
-
sourceKind?: "bot" | "
|
|
315
|
+
sourceKind?: "bot" | "human" | "mixed" | 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">;
|
|
319
319
|
}, "strip", z.ZodTypeAny, {
|
|
320
320
|
entries: {
|
|
321
|
-
reasonCode: "truncated" | "
|
|
321
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
322
322
|
sourcePr: number;
|
|
323
|
-
sourceKind?: "bot" | "
|
|
323
|
+
sourceKind?: "bot" | "human" | "mixed" | 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
|
}[];
|
|
327
327
|
}, {
|
|
328
328
|
entries: {
|
|
329
|
-
reasonCode: "truncated" | "
|
|
329
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
330
330
|
sourcePr: number;
|
|
331
|
-
sourceKind?: "bot" | "
|
|
331
|
+
sourceKind?: "bot" | "human" | "mixed" | 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
|
}[];
|
|
@@ -734,11 +734,11 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
734
734
|
kind?: "mined" | undefined;
|
|
735
735
|
};
|
|
736
736
|
unverified: true;
|
|
737
|
-
candidateRef: string;
|
|
738
737
|
classifierDisposition: "structural" | "behavioral";
|
|
739
738
|
routing: "compile" | "rag-only";
|
|
740
739
|
classifierLedgerRef: string;
|
|
741
|
-
|
|
740
|
+
candidateRef: string;
|
|
741
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
742
742
|
}, {
|
|
743
743
|
provenance: {
|
|
744
744
|
mergedPr: number;
|
|
@@ -747,11 +747,11 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
747
747
|
kind?: "mined" | undefined;
|
|
748
748
|
};
|
|
749
749
|
unverified: true;
|
|
750
|
-
candidateRef: string;
|
|
751
750
|
classifierDisposition: "structural" | "behavioral";
|
|
752
751
|
routing: "compile" | "rag-only";
|
|
753
752
|
classifierLedgerRef: string;
|
|
754
|
-
|
|
753
|
+
candidateRef: string;
|
|
754
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
755
755
|
}>, "many">;
|
|
756
756
|
/**
|
|
757
757
|
* Run-level seed-blindness attestation (§7). `false` = no seed class was
|
|
@@ -773,11 +773,11 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
773
773
|
kind?: "mined" | undefined;
|
|
774
774
|
};
|
|
775
775
|
unverified: true;
|
|
776
|
-
candidateRef: string;
|
|
777
776
|
classifierDisposition: "structural" | "behavioral";
|
|
778
777
|
routing: "compile" | "rag-only";
|
|
779
778
|
classifierLedgerRef: string;
|
|
780
|
-
|
|
779
|
+
candidateRef: string;
|
|
780
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
781
781
|
}[];
|
|
782
782
|
extractionInputsAttestation: {
|
|
783
783
|
seedClassesProvided: boolean;
|
|
@@ -791,11 +791,11 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
791
791
|
kind?: "mined" | undefined;
|
|
792
792
|
};
|
|
793
793
|
unverified: true;
|
|
794
|
-
candidateRef: string;
|
|
795
794
|
classifierDisposition: "structural" | "behavioral";
|
|
796
795
|
routing: "compile" | "rag-only";
|
|
797
796
|
classifierLedgerRef: string;
|
|
798
|
-
|
|
797
|
+
candidateRef: string;
|
|
798
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
799
799
|
}[];
|
|
800
800
|
extractionInputsAttestation: {
|
|
801
801
|
seedClassesProvided: boolean;
|
|
@@ -828,31 +828,31 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
828
828
|
*/
|
|
829
829
|
sourceKind: z.ZodOptional<z.ZodEnum<["human", "bot", "mixed"]>>;
|
|
830
830
|
}, "strip", z.ZodTypeAny, {
|
|
831
|
-
reasonCode: "truncated" | "
|
|
831
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
832
832
|
sourcePr: number;
|
|
833
|
-
sourceKind?: "bot" | "
|
|
833
|
+
sourceKind?: "bot" | "human" | "mixed" | 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
|
-
reasonCode: "truncated" | "
|
|
837
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
838
838
|
sourcePr: number;
|
|
839
|
-
sourceKind?: "bot" | "
|
|
839
|
+
sourceKind?: "bot" | "human" | "mixed" | 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">;
|
|
843
843
|
}, "strip", z.ZodTypeAny, {
|
|
844
844
|
entries: {
|
|
845
|
-
reasonCode: "truncated" | "
|
|
845
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
846
846
|
sourcePr: number;
|
|
847
|
-
sourceKind?: "bot" | "
|
|
847
|
+
sourceKind?: "bot" | "human" | "mixed" | 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
|
}[];
|
|
851
851
|
}, {
|
|
852
852
|
entries: {
|
|
853
|
-
reasonCode: "truncated" | "
|
|
853
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
854
854
|
sourcePr: number;
|
|
855
|
-
sourceKind?: "bot" | "
|
|
855
|
+
sourceKind?: "bot" | "human" | "mixed" | 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
|
}[];
|
|
@@ -1171,15 +1171,6 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
1171
1171
|
mergeCommit: string;
|
|
1172
1172
|
}[];
|
|
1173
1173
|
};
|
|
1174
|
-
drop: {
|
|
1175
|
-
entries: {
|
|
1176
|
-
reasonCode: "truncated" | "unparseable" | "unreachable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
1177
|
-
sourcePr: number;
|
|
1178
|
-
sourceKind?: "bot" | "mixed" | "human" | undefined;
|
|
1179
|
-
detail?: string | undefined;
|
|
1180
|
-
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
1181
|
-
}[];
|
|
1182
|
-
};
|
|
1183
1174
|
emission: {
|
|
1184
1175
|
entries: {
|
|
1185
1176
|
provenance: {
|
|
@@ -1189,16 +1180,25 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
1189
1180
|
kind?: "mined" | undefined;
|
|
1190
1181
|
};
|
|
1191
1182
|
unverified: true;
|
|
1192
|
-
candidateRef: string;
|
|
1193
1183
|
classifierDisposition: "structural" | "behavioral";
|
|
1194
1184
|
routing: "compile" | "rag-only";
|
|
1195
1185
|
classifierLedgerRef: string;
|
|
1196
|
-
|
|
1186
|
+
candidateRef: string;
|
|
1187
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
1197
1188
|
}[];
|
|
1198
1189
|
extractionInputsAttestation: {
|
|
1199
1190
|
seedClassesProvided: boolean;
|
|
1200
1191
|
};
|
|
1201
1192
|
};
|
|
1193
|
+
drop: {
|
|
1194
|
+
entries: {
|
|
1195
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
1196
|
+
sourcePr: number;
|
|
1197
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
1198
|
+
detail?: string | undefined;
|
|
1199
|
+
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
1200
|
+
}[];
|
|
1201
|
+
};
|
|
1202
1202
|
classifier: {
|
|
1203
1203
|
entries: {
|
|
1204
1204
|
disposition: "structural" | "behavioral";
|
|
@@ -1237,15 +1237,6 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
1237
1237
|
mergeCommit: string;
|
|
1238
1238
|
}[];
|
|
1239
1239
|
};
|
|
1240
|
-
drop: {
|
|
1241
|
-
entries: {
|
|
1242
|
-
reasonCode: "truncated" | "unparseable" | "unreachable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
1243
|
-
sourcePr: number;
|
|
1244
|
-
sourceKind?: "bot" | "mixed" | "human" | undefined;
|
|
1245
|
-
detail?: string | undefined;
|
|
1246
|
-
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
1247
|
-
}[];
|
|
1248
|
-
};
|
|
1249
1240
|
emission: {
|
|
1250
1241
|
entries: {
|
|
1251
1242
|
provenance: {
|
|
@@ -1255,16 +1246,25 @@ export declare const MinerLedgersSchema: z.ZodObject<{
|
|
|
1255
1246
|
kind?: "mined" | undefined;
|
|
1256
1247
|
};
|
|
1257
1248
|
unverified: true;
|
|
1258
|
-
candidateRef: string;
|
|
1259
1249
|
classifierDisposition: "structural" | "behavioral";
|
|
1260
1250
|
routing: "compile" | "rag-only";
|
|
1261
1251
|
classifierLedgerRef: string;
|
|
1262
|
-
|
|
1252
|
+
candidateRef: string;
|
|
1253
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
1263
1254
|
}[];
|
|
1264
1255
|
extractionInputsAttestation: {
|
|
1265
1256
|
seedClassesProvided: boolean;
|
|
1266
1257
|
};
|
|
1267
1258
|
};
|
|
1259
|
+
drop: {
|
|
1260
|
+
entries: {
|
|
1261
|
+
reasonCode: "truncated" | "unreachable" | "unparseable" | "incomplete-provenance" | "outdated-rejected" | "no-draft";
|
|
1262
|
+
sourcePr: number;
|
|
1263
|
+
sourceKind?: "bot" | "human" | "mixed" | undefined;
|
|
1264
|
+
detail?: string | undefined;
|
|
1265
|
+
noDraftCause?: "legacy-unknown" | "invoke-error" | "empty-output" | "none-sentinel" | "unparseable-shape" | "non-array" | "all-filtered" | undefined;
|
|
1266
|
+
}[];
|
|
1267
|
+
};
|
|
1268
1268
|
classifier: {
|
|
1269
1269
|
entries: {
|
|
1270
1270
|
disposition: "structural" | "behavioral";
|