@adapt-toolkit/a2adapt 0.11.0 → 0.11.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.
@@ -3,7 +3,7 @@
3
3
  "name": "a2adapt",
4
4
  "displayName": "a2adapt",
5
5
  "description": "Secure agent-to-agent communication channel over ADAPT: self-sovereign pubkey identity, end-to-end encryption, plan-first execution.",
6
- "version": "0.11.0",
6
+ "version": "0.11.1",
7
7
  "author": {
8
8
  "name": "Adapt Toolkit"
9
9
  },
package/dist/index.js CHANGED
@@ -22512,7 +22512,7 @@ function writeIdentityFile(target, opts, overwrite = false) {
22512
22512
  }
22513
22513
 
22514
22514
  // src/index.ts
22515
- var VERSION = true ? "0.11.0" : "0.0.0-dev";
22515
+ var VERSION = true ? "0.11.1" : "0.0.0-dev";
22516
22516
  var CONFIG = loadConfig();
22517
22517
  var STATE_DIR = CONFIG.stateDir;
22518
22518
  var BROKER_URL = CONFIG.brokerUrl;
@@ -22912,6 +22912,10 @@ function wireHandlers(id) {
22912
22912
  p.reject(new Error(message));
22913
22913
  } else {
22914
22914
  log(`[${id.name}] inbound transaction rejected:`, message);
22915
+ appendNotifyLog(id, { event: "inbound_error", message });
22916
+ process.nextTick(
22917
+ () => pushNotification(id.name, `[${id.name}] inbound transaction rejected: ${message}`)
22918
+ );
22915
22919
  }
22916
22920
  };
22917
22921
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adapt-toolkit/a2adapt",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "MCP server daemon for a2adapt — one native ADAPT wrapper hosting N self-sovereign identities, exposing secure agent-to-agent messaging tools over HTTP (Streamable HTTP). Run `a2adapt-mcp start`.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -52,8 +52,8 @@
52
52
  "typecheck": "tsc -p tsconfig.json --noEmit"
53
53
  },
54
54
  "dependencies": {
55
- "@adapt-toolkit/sdk": "^0.4.0",
56
- "@adapt-toolkit/sdk-native": "^0.4.0"
55
+ "@adapt-toolkit/sdk": "^0.5.0",
56
+ "@adapt-toolkit/sdk-native": "^0.5.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@modelcontextprotocol/sdk": "^1.0.4",