@arcforge/err 2.0.154 → 2.0.155

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.154",
3
+ "version": "2.0.155",
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.154"
18
+ "@arcforge/types": "2.0.155"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/bun": "latest",
package/src/map.ts CHANGED
@@ -2176,6 +2176,14 @@ export const errorMap = {
2176
2176
  severity: "fatal",
2177
2177
  expected: true,
2178
2178
  },
2179
+ CONNECT_REJECTED: {
2180
+ code: "AX-EXT-020",
2181
+ title: "Connector Credential Rejected",
2182
+ description: "The platform refused the credential pasted during `:connect`. Verification runs before the value is written, so nothing was stored — the detail carries the platform's own reason, and the most common cause is copying the wrong secret from the developer portal.",
2183
+ source: "tui",
2184
+ severity: "fatal",
2185
+ expected: true,
2186
+ },
2179
2187
  } as const satisfies Record<string, AxonErrorMapEntry>
2180
2188
 
2181
2189
  export type AxonErrorMap = typeof errorMap