@awebai/claude-channel 1.4.7 → 1.4.8

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.7",
4
+ "version": "1.4.8",
5
5
  "author": {
6
6
  "name": "awebai"
7
7
  },
package/dist/index.js CHANGED
@@ -26135,14 +26135,14 @@ function verifyDidKeyResolution(resolution, cached2, nowMs) {
26135
26135
  return { outcome: "HARD_ERROR", error: "log_head seq must be >= 1" };
26136
26136
  }
26137
26137
  if (head.seq === 1) {
26138
- if (head.operation !== "create") {
26139
- return { outcome: "HARD_ERROR", error: "seq=1 requires create operation" };
26138
+ if (head.operation !== "create" && head.operation !== "register_did") {
26139
+ return { outcome: "HARD_ERROR", error: "seq=1 requires create/register_did operation" };
26140
26140
  }
26141
26141
  if (head.prev_entry_hash != null) {
26142
26142
  return { outcome: "HARD_ERROR", error: "seq=1 requires null prev_entry_hash" };
26143
26143
  }
26144
26144
  if (head.previous_did_key != null) {
26145
- return { outcome: "HARD_ERROR", error: "create requires null previous_did_key" };
26145
+ return { outcome: "HARD_ERROR", error: "seq=1 requires null previous_did_key" };
26146
26146
  }
26147
26147
  } else {
26148
26148
  if (!head.prev_entry_hash || !isLowerHex(head.prev_entry_hash)) {
@@ -26408,7 +26408,10 @@ var SenderTrustManager = class {
26408
26408
  if (recipientDID.startsWith("did:aw:")) {
26409
26409
  if (recipientStableID)
26410
26410
  return status;
26411
- return selfStableID ? "identity_mismatch" : status;
26411
+ if (selfStableID) {
26412
+ return recipientDID.toLowerCase() === selfStableID.toLowerCase() ? status : "identity_mismatch";
26413
+ }
26414
+ return status;
26412
26415
  }
26413
26416
  return recipientDID === selfDID ? status : "identity_mismatch";
26414
26417
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awebai/claude-channel",
3
- "version": "1.4.7",
3
+ "version": "1.4.8",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",