@awebai/claude-channel 1.4.4 → 1.4.5

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aweb-channel",
3
3
  "description": "aweb agent coordination channel — receive mail, chat, tasks, and control signals from your agent team in real time.",
4
- "version": "1.4.4",
4
+ "version": "1.4.5",
5
5
  "author": {
6
6
  "name": "awebai"
7
7
  },
package/dist/index.js CHANGED
@@ -26403,6 +26403,11 @@ var SenderTrustManager = class {
26403
26403
  if (!recipientDID || !selfDID) {
26404
26404
  return status;
26405
26405
  }
26406
+ if (recipientDID.startsWith("did:aw:")) {
26407
+ if (recipientStableID)
26408
+ return status;
26409
+ return selfStableID ? "identity_mismatch" : status;
26410
+ }
26406
26411
  return recipientDID === selfDID ? status : "identity_mismatch";
26407
26412
  }
26408
26413
  async checkStableIdentityRegistry(status, trustAddress, fromDID, fromStableID) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awebai/claude-channel",
3
- "version": "1.4.4",
3
+ "version": "1.4.5",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",