@chatpanel/events 0.89.2 → 0.89.3

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/mcp-client.js +1 -1
  2. package/package.json +1 -1
package/mcp-client.js CHANGED
@@ -111,7 +111,7 @@ export class McpClient {
111
111
  'Otherwise check that the command + args run in a terminal.',
112
112
  );
113
113
  }
114
- throw new Error(`Can't reach the ChatPanel Bridge for local MCP (${e.message}). Install ChatPanel — the gateway brings the bridge (`npm i -g @chatpanel/gateway`, then `chatpanel-gateway --install`) — or start one with \`npx @chatpanel/bridge\`.`);
114
+ throw new Error(`Can't reach the ChatPanel Bridge for local MCP (${e.message}). Install ChatPanel — the gateway brings the bridge (\`npm i -g @chatpanel/gateway\`, then \`chatpanel-gateway --install\`) — or start one with \`npx @chatpanel/bridge\`.`);
115
115
  }
116
116
  if (message.id == null) return null; // notification → 202, no body
117
117
  if (!res.ok) throw new Error(`Bridge MCP HTTP ${res.status}: ${(await res.text().catch(() => '')).slice(0, 200)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatpanel/events",
3
- "version": "0.89.2",
3
+ "version": "0.89.3",
4
4
  "description": "The canonical ChatPanel event-log and capability contracts \u2014 typed durable facts, clock-free deterministic linearization, schema upcasting, and the invariants the replay harness asserts. Pure, dependency-free ESM shared by the ChatPanel extension, gateway and bridge.",
5
5
  "type": "module",
6
6
  "main": "index.js",