@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.
- package/.claude-plugin/plugin.json +1 -1
- package/dist/index.js +7 -4
- package/package.json +1 -1
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: "
|
|
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
|
-
|
|
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
|
}
|