@arcforge/err 2.0.157 → 2.0.158
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/package.json +2 -2
- package/src/map.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcforge/err",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.158",
|
|
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.
|
|
18
|
+
"@arcforge/types": "2.0.158"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/bun": "latest",
|
package/src/map.ts
CHANGED
|
@@ -150,6 +150,14 @@ export const errorMap = {
|
|
|
150
150
|
source: "runtime",
|
|
151
151
|
severity: "fatal",
|
|
152
152
|
},
|
|
153
|
+
CAPSULE_NOT_LOCAL: {
|
|
154
|
+
code: "AX-AGENT-007",
|
|
155
|
+
title: "No Capsule On This Machine",
|
|
156
|
+
description: "A console eval was requested against an attached deployment. Its capsule runs wherever the deployment is hosted, so there is nothing here to execute in — and quietly resolving would read as \"it ran and did nothing\".",
|
|
157
|
+
source: "runtime",
|
|
158
|
+
severity: "fatal",
|
|
159
|
+
expected: true,
|
|
160
|
+
},
|
|
153
161
|
LINK_NO_HANDLER: {
|
|
154
162
|
code: "AX-LINK-001",
|
|
155
163
|
title: "No Handler For Link Verb",
|