@arcforge/err 2.0.107 → 2.0.109

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/map.ts +1 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcforge/err",
3
- "version": "2.0.107",
3
+ "version": "2.0.109",
4
4
  "description": "Structured Axon errors — the code map every user-facing failure is rendered from.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -15,7 +15,7 @@
15
15
  "deploy": "echo \"This package is published ONLY by apps/tui/scripts/release.ts, which pins workspace:* deps to concrete versions first. Publishing it directly ships an unresolvable dependency.\" && exit 1"
16
16
  },
17
17
  "dependencies": {
18
- "@arcforge/types": "2.0.107"
18
+ "@arcforge/types": "2.0.109"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/bun": "latest",
package/src/map.ts CHANGED
@@ -742,14 +742,7 @@ export const errorMap = {
742
742
  SCHEDULER_MODE_MISMATCH: {
743
743
  code: "AX-KERNEL-010",
744
744
  title: "Scheduler Mode Mismatch",
745
- description: "A caller invoked stream() on a continuous-mode cognet continuous cognets are invoked by the scheduler's own clock, never by an external stimulus-driven call.",
746
- source: "kernel",
747
- severity: "fatal",
748
- },
749
- SCHEDULER_CONTINUOUS_NOT_IMPLEMENTED: {
750
- code: "AX-KERNEL-011",
751
- title: "Continuous Scheduling Not Implemented",
752
- description: "The cognet declared continuous mode, but the scheduler's clock-driven trigger is a stubbed shape only — no cognet may select it yet.",
745
+ description: "A caller used the wrong wake verb for the cognet's mode: continuous cognets advance via tick(), driven by the body's clock; invocation cognets wake on a stimulus via request()/stream().",
753
746
  source: "kernel",
754
747
  severity: "fatal",
755
748
  },