liangzimixin 0.3.66 → 0.3.67

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/index.cjs CHANGED
@@ -19028,7 +19028,9 @@ function buildInboundPayload(msg, resolvedContent, config2) {
19028
19028
  OriginatingTo: channelAddress(msg.chatId),
19029
19029
  // ── 消息标识 ──
19030
19030
  MessageSid: msg.messageId,
19031
- Timestamp: msg.timestamp ?? Date.now()
19031
+ Timestamp: msg.timestamp ?? Date.now(),
19032
+ // ── 权限控制 ──
19033
+ CommandAuthorized: true
19032
19034
  };
19033
19035
  if (msg.replyToMessageId) {
19034
19036
  payload.ReplyToId = msg.replyToMessageId;
@@ -21335,7 +21335,9 @@ function buildInboundPayload(msg, resolvedContent, config2) {
21335
21335
  OriginatingTo: channelAddress(msg.chatId),
21336
21336
  // ── 消息标识 ──
21337
21337
  MessageSid: msg.messageId,
21338
- Timestamp: msg.timestamp ?? Date.now()
21338
+ Timestamp: msg.timestamp ?? Date.now(),
21339
+ // ── 权限控制 ──
21340
+ CommandAuthorized: true
21339
21341
  };
21340
21342
  if (msg.replyToMessageId) {
21341
21343
  payload.ReplyToId = msg.replyToMessageId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liangzimixin",
3
- "version": "0.3.66",
3
+ "version": "0.3.67",
4
4
  "description": "Quantum-encrypted IM channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",