@arcforge/err 2.0.128 → 2.0.130

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 +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcforge/err",
3
- "version": "2.0.128",
3
+ "version": "2.0.130",
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.128"
18
+ "@arcforge/types": "2.0.130"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/bun": "latest",
package/src/map.ts CHANGED
@@ -1722,6 +1722,14 @@ export const errorMap = {
1722
1722
  severity: "degraded",
1723
1723
  expected: true,
1724
1724
  },
1725
+ EXTENSION_UNINSTALL_FAILED: {
1726
+ code: "AX-EXT-028",
1727
+ title: "Extension Uninstall Failed",
1728
+ description: "An extension could not be removed from profile.config.ts — most often the file is unreadable or has been edited into a shape the editor cannot find the extensions list in. The extension is still declared and will load on the next launch.",
1729
+ source: "tui",
1730
+ severity: "degraded",
1731
+ expected: true,
1732
+ },
1725
1733
  EXTENSION_NOT_AN_EXTENSION: {
1726
1734
  code: "AX-EXT-006",
1727
1735
  title: "Not an Extension",