@inerrata-corporation/errata 2.0.2-dev.982 → 2.0.2
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/consolidate-worker.mjs +20 -2
- package/errata.mjs +2282 -130
- package/package.json +1 -1
- package/pass-worker.mjs +51 -5
package/consolidate-worker.mjs
CHANGED
|
@@ -201,7 +201,7 @@ var init_castalia = __esm({
|
|
|
201
201
|
DECOMPOSITION_EDGES = ["SPLIT_INTO"];
|
|
202
202
|
TRANSFER_EDGES = ["MAY_RESOLVE"];
|
|
203
203
|
SOLUTION_STRUCTURE_EDGES = ["BUILDS_ON", "SUPERSEDES", "ALTERNATIVE_TO"];
|
|
204
|
-
SUSPICION_EDGES = ["SUSPECTED_LINK"];
|
|
204
|
+
SUSPICION_EDGES = ["SUSPECTED_LINK", "REGRESSION_OF"];
|
|
205
205
|
TAXONOMY_EDGES = ["IS_A"];
|
|
206
206
|
TRIAGE_EDGES = ["TRIAGED_BY", "CONFIRMS", "INDICATES", "ROUTES_TO"];
|
|
207
207
|
GIT_EDGES = ["POINTS_AT", "PARENT", "AUTHORED_BY"];
|
|
@@ -336,6 +336,7 @@ var init_castalia = __esm({
|
|
|
336
336
|
ALTERNATIVE_TO: 0,
|
|
337
337
|
// Suspicion — a hypothesis, weightless + PageRank-excluded (never flows rank / EIG).
|
|
338
338
|
SUSPECTED_LINK: 0,
|
|
339
|
+
REGRESSION_OF: 0,
|
|
339
340
|
// Git — topology/authorship, weightless (not domain signal-flow)
|
|
340
341
|
POINTS_AT: 0,
|
|
341
342
|
PARENT: 0,
|
|
@@ -365,6 +366,13 @@ var init_castalia = __esm({
|
|
|
365
366
|
}
|
|
366
367
|
});
|
|
367
368
|
|
|
369
|
+
// ../../packages/shared/src/graph-events.ts
|
|
370
|
+
var init_graph_events = __esm({
|
|
371
|
+
"../../packages/shared/src/graph-events.ts"() {
|
|
372
|
+
"use strict";
|
|
373
|
+
}
|
|
374
|
+
});
|
|
375
|
+
|
|
368
376
|
// ../../packages/shared/src/canonical/hash.ts
|
|
369
377
|
import { createHash } from "node:crypto";
|
|
370
378
|
function sha256(input) {
|
|
@@ -15461,6 +15469,7 @@ var init_src = __esm({
|
|
|
15461
15469
|
"../../packages/shared/src/index.ts"() {
|
|
15462
15470
|
"use strict";
|
|
15463
15471
|
init_castalia();
|
|
15472
|
+
init_graph_events();
|
|
15464
15473
|
init_identity();
|
|
15465
15474
|
init_wire();
|
|
15466
15475
|
init_edge_rules();
|
|
@@ -15854,7 +15863,13 @@ var LOCAL_RULE_OVERRIDES = {
|
|
|
15854
15863
|
// the cloud door's `to: [Solution]` rule is untouched. The `from` constraint
|
|
15855
15864
|
// stays: the reversed (Solution)-FIXED_BY->(...) splash bug is the reason
|
|
15856
15865
|
// this rule exists at all.
|
|
15857
|
-
FIXED_BY: { from: EDGE_RULES["FIXED_BY"]?.from, to: ["Solution", "Episode"] }
|
|
15866
|
+
FIXED_BY: { from: EDGE_RULES["FIXED_BY"]?.from, to: ["Solution", "Episode"] },
|
|
15867
|
+
// RG-recognize: a NEW open Problem re-observing a RESOLVED one ("this is
|
|
15868
|
+
// back — the fix didn't hold"). Local-only for now: the instance drain's
|
|
15869
|
+
// INSTANCE_EDGES allowlist doesn't ship it, and the cloud door's matrix
|
|
15870
|
+
// doesn't know it — crossing the membrane is a deliberate later step, never
|
|
15871
|
+
// a side effect (the half-shipped-edge-type lesson).
|
|
15872
|
+
REGRESSION_OF: { from: ["Problem"], to: ["Problem"] }
|
|
15858
15873
|
};
|
|
15859
15874
|
function localEdgeViolation(fromLabel, type, toLabel) {
|
|
15860
15875
|
if (type in LOCAL_RULE_OVERRIDES) {
|
|
@@ -16841,6 +16856,9 @@ init_src2();
|
|
|
16841
16856
|
init_src();
|
|
16842
16857
|
init_src();
|
|
16843
16858
|
|
|
16859
|
+
// ../../packages/local-graph/src/design-problem.ts
|
|
16860
|
+
var RECURRENCE_DEBOUNCE_MS = 60 * 60 * 1e3;
|
|
16861
|
+
|
|
16844
16862
|
// ../../packages/local-graph/src/intent.ts
|
|
16845
16863
|
init_src();
|
|
16846
16864
|
|