@wrongstack/acp 0.319.1 → 0.320.1

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/dist/client.js CHANGED
@@ -2337,6 +2337,7 @@ var ToolTranslator = class {
2337
2337
  cancelAll() {
2338
2338
  for (const [, p] of this.pending) {
2339
2339
  clearTimeout(p.timeout);
2340
+ p.reject(new Error("Call cancelled by client"));
2340
2341
  }
2341
2342
  this.pending.clear();
2342
2343
  }
package/dist/index.js CHANGED
@@ -3474,6 +3474,7 @@ var ToolTranslator = class {
3474
3474
  cancelAll() {
3475
3475
  for (const [, p] of this.pending) {
3476
3476
  clearTimeout(p.timeout);
3477
+ p.reject(new Error("Call cancelled by client"));
3477
3478
  }
3478
3479
  this.pending.clear();
3479
3480
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/acp",
3
- "version": "0.319.1",
3
+ "version": "0.320.1",
4
4
  "license": "MIT",
5
5
  "description": "ACP (Agent Client Protocol) integration for WrongStack — client + agent support",
6
6
  "keywords": [
@@ -52,7 +52,7 @@
52
52
  ],
53
53
  "dependencies": {
54
54
  "@agentclientprotocol/sdk": "^1.4.0",
55
- "@wrongstack/core": "0.319.1"
55
+ "@wrongstack/core": "0.320.1"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@types/node": "^26.2.0",