@mmnto/totem 1.78.0 → 1.80.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/panel.d.ts +48 -48
- package/dist/artifacts/schema.d.ts +40 -40
- package/dist/compiler-schema.d.ts +2455 -35
- package/dist/compiler-schema.d.ts.map +1 -1
- package/dist/compiler-schema.js +229 -1
- package/dist/compiler-schema.js.map +1 -1
- package/dist/compiler-schema.test.js +249 -2
- package/dist/compiler-schema.test.js.map +1 -1
- package/dist/compiler.d.ts +2 -2
- package/dist/compiler.d.ts.map +1 -1
- package/dist/compiler.js +1 -1
- package/dist/compiler.js.map +1 -1
- package/dist/config-schema.d.ts +6 -6
- package/dist/index.d.ts +10 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/spine/authored-rule.d.ts +1358 -0
- package/dist/spine/authored-rule.d.ts.map +1 -0
- package/dist/spine/authored-rule.js +313 -0
- package/dist/spine/authored-rule.js.map +1 -0
- package/dist/spine/authored-rule.test.d.ts +2 -0
- package/dist/spine/authored-rule.test.d.ts.map +1 -0
- package/dist/spine/authored-rule.test.js +226 -0
- package/dist/spine/authored-rule.test.js.map +1 -0
- package/dist/spine/authoring-ledger.d.ts +204 -0
- package/dist/spine/authoring-ledger.d.ts.map +1 -0
- package/dist/spine/authoring-ledger.js +220 -0
- package/dist/spine/authoring-ledger.js.map +1 -0
- package/dist/spine/authoring-ledger.test.d.ts +2 -0
- package/dist/spine/authoring-ledger.test.d.ts.map +1 -0
- package/dist/spine/authoring-ledger.test.js +144 -0
- package/dist/spine/authoring-ledger.test.js.map +1 -0
- package/dist/spine/candidate-rule.d.ts +32 -0
- package/dist/spine/candidate-rule.d.ts.map +1 -1
- package/dist/spine/candidate-rule.js +2 -2
- package/dist/spine/candidate-rule.js.map +1 -1
- package/dist/spine/classify.d.ts +5 -5
- package/dist/spine/compile.d.ts +16 -4
- package/dist/spine/compile.d.ts.map +1 -1
- package/dist/spine/compile.js +23 -0
- package/dist/spine/compile.js.map +1 -1
- package/dist/spine/compile.test.js +72 -0
- package/dist/spine/compile.test.js.map +1 -1
- package/dist/spine/corpus-dispositions.d.ts +22 -22
- package/dist/spine/extract.d.ts +2 -2
- package/dist/spine/extract.d.ts.map +1 -1
- package/dist/spine/extract.js +5 -4
- package/dist/spine/extract.js.map +1 -1
- package/dist/spine/ledgers.d.ts +46 -21
- package/dist/spine/ledgers.d.ts.map +1 -1
- package/dist/spine/ledgers.js +16 -8
- package/dist/spine/ledgers.js.map +1 -1
- package/dist/spine/rule-policy.d.ts +27 -0
- package/dist/spine/rule-policy.d.ts.map +1 -0
- package/dist/spine/rule-policy.js +43 -0
- package/dist/spine/rule-policy.js.map +1 -0
- package/dist/spine/rule-policy.test.d.ts +2 -0
- package/dist/spine/rule-policy.test.d.ts.map +1 -0
- package/dist/spine/rule-policy.test.js +31 -0
- package/dist/spine/rule-policy.test.js.map +1 -0
- package/dist/spine/windtunnel-lock.d.ts +14 -14
- package/dist/store/lance-schema.d.ts +2 -2
- package/package.json +1 -1
|
@@ -7,11 +7,11 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
7
7
|
timestamp: z.ZodOptional<z.ZodString>;
|
|
8
8
|
commit: z.ZodOptional<z.ZodString>;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
|
-
timestamp?: string | undefined;
|
|
11
10
|
commit?: string | undefined;
|
|
12
|
-
}, {
|
|
13
11
|
timestamp?: string | undefined;
|
|
12
|
+
}, {
|
|
14
13
|
commit?: string | undefined;
|
|
14
|
+
timestamp?: string | undefined;
|
|
15
15
|
}>>;
|
|
16
16
|
phase: z.ZodEnum<["harness", "certifying"]>;
|
|
17
17
|
corpus: z.ZodObject<{
|
|
@@ -88,14 +88,14 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
88
88
|
headSha: z.ZodString;
|
|
89
89
|
diffSha: z.ZodOptional<z.ZodString>;
|
|
90
90
|
}, "strip", z.ZodTypeAny, {
|
|
91
|
-
headSha: string;
|
|
92
91
|
pr: number;
|
|
92
|
+
headSha: string;
|
|
93
93
|
mergeCommit: string;
|
|
94
94
|
baseSha: string;
|
|
95
95
|
diffSha?: string | undefined;
|
|
96
96
|
}, {
|
|
97
|
-
headSha: string;
|
|
98
97
|
pr: number;
|
|
98
|
+
headSha: string;
|
|
99
99
|
mergeCommit: string;
|
|
100
100
|
baseSha: string;
|
|
101
101
|
diffSha?: string | undefined;
|
|
@@ -120,8 +120,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
120
120
|
} | undefined;
|
|
121
121
|
};
|
|
122
122
|
resolvedPrs: {
|
|
123
|
-
headSha: string;
|
|
124
123
|
pr: number;
|
|
124
|
+
headSha: string;
|
|
125
125
|
mergeCommit: string;
|
|
126
126
|
baseSha: string;
|
|
127
127
|
diffSha?: string | undefined;
|
|
@@ -146,8 +146,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
146
146
|
excludeBotPrs?: boolean | undefined;
|
|
147
147
|
};
|
|
148
148
|
resolvedPrs: {
|
|
149
|
-
headSha: string;
|
|
150
149
|
pr: number;
|
|
150
|
+
headSha: string;
|
|
151
151
|
mergeCommit: string;
|
|
152
152
|
baseSha: string;
|
|
153
153
|
diffSha?: string | undefined;
|
|
@@ -283,8 +283,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
283
283
|
} | undefined;
|
|
284
284
|
};
|
|
285
285
|
resolvedPrs: {
|
|
286
|
-
headSha: string;
|
|
287
286
|
pr: number;
|
|
287
|
+
headSha: string;
|
|
288
288
|
mergeCommit: string;
|
|
289
289
|
baseSha: string;
|
|
290
290
|
diffSha?: string | undefined;
|
|
@@ -324,8 +324,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
324
324
|
};
|
|
325
325
|
};
|
|
326
326
|
frozenAt?: {
|
|
327
|
-
timestamp?: string | undefined;
|
|
328
327
|
commit?: string | undefined;
|
|
328
|
+
timestamp?: string | undefined;
|
|
329
329
|
} | undefined;
|
|
330
330
|
}, {
|
|
331
331
|
schema: "windtunnel.lock.v1";
|
|
@@ -349,8 +349,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
349
349
|
excludeBotPrs?: boolean | undefined;
|
|
350
350
|
};
|
|
351
351
|
resolvedPrs: {
|
|
352
|
-
headSha: string;
|
|
353
352
|
pr: number;
|
|
353
|
+
headSha: string;
|
|
354
354
|
mergeCommit: string;
|
|
355
355
|
baseSha: string;
|
|
356
356
|
diffSha?: string | undefined;
|
|
@@ -390,8 +390,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
390
390
|
};
|
|
391
391
|
};
|
|
392
392
|
frozenAt?: {
|
|
393
|
-
timestamp?: string | undefined;
|
|
394
393
|
commit?: string | undefined;
|
|
394
|
+
timestamp?: string | undefined;
|
|
395
395
|
} | undefined;
|
|
396
396
|
}>, {
|
|
397
397
|
schema: "windtunnel.lock.v1";
|
|
@@ -415,8 +415,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
415
415
|
} | undefined;
|
|
416
416
|
};
|
|
417
417
|
resolvedPrs: {
|
|
418
|
-
headSha: string;
|
|
419
418
|
pr: number;
|
|
419
|
+
headSha: string;
|
|
420
420
|
mergeCommit: string;
|
|
421
421
|
baseSha: string;
|
|
422
422
|
diffSha?: string | undefined;
|
|
@@ -456,8 +456,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
456
456
|
};
|
|
457
457
|
};
|
|
458
458
|
frozenAt?: {
|
|
459
|
-
timestamp?: string | undefined;
|
|
460
459
|
commit?: string | undefined;
|
|
460
|
+
timestamp?: string | undefined;
|
|
461
461
|
} | undefined;
|
|
462
462
|
}, {
|
|
463
463
|
schema: "windtunnel.lock.v1";
|
|
@@ -481,8 +481,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
481
481
|
excludeBotPrs?: boolean | undefined;
|
|
482
482
|
};
|
|
483
483
|
resolvedPrs: {
|
|
484
|
-
headSha: string;
|
|
485
484
|
pr: number;
|
|
485
|
+
headSha: string;
|
|
486
486
|
mergeCommit: string;
|
|
487
487
|
baseSha: string;
|
|
488
488
|
diffSha?: string | undefined;
|
|
@@ -522,8 +522,8 @@ export declare const WindtunnelLockSchema: z.ZodEffects<z.ZodObject<{
|
|
|
522
522
|
};
|
|
523
523
|
};
|
|
524
524
|
frozenAt?: {
|
|
525
|
-
timestamp?: string | undefined;
|
|
526
525
|
commit?: string | undefined;
|
|
526
|
+
timestamp?: string | undefined;
|
|
527
527
|
} | undefined;
|
|
528
528
|
}>;
|
|
529
529
|
export type WindtunnelLock = z.infer<typeof WindtunnelLockSchema>;
|
|
@@ -15,7 +15,7 @@ export declare const StoredChunkSchema: z.ZodObject<{
|
|
|
15
15
|
endLine: z.ZodNumber;
|
|
16
16
|
metadata: z.ZodString;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
|
-
type: "code" | "
|
|
18
|
+
type: "code" | "lesson" | "session_log" | "spec";
|
|
19
19
|
filePath: string;
|
|
20
20
|
content: string;
|
|
21
21
|
strategy: string;
|
|
@@ -26,7 +26,7 @@ export declare const StoredChunkSchema: z.ZodObject<{
|
|
|
26
26
|
id: string;
|
|
27
27
|
metadata: string;
|
|
28
28
|
}, {
|
|
29
|
-
type: "code" | "
|
|
29
|
+
type: "code" | "lesson" | "session_log" | "spec";
|
|
30
30
|
filePath: string;
|
|
31
31
|
content: string;
|
|
32
32
|
strategy: string;
|