liangzimixin 0.3.8 → 0.3.9

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
@@ -18409,7 +18409,8 @@ function createQuantumImDeliverFn(deps) {
18409
18409
  });
18410
18410
  log11.info("outbound:delivered", {
18411
18411
  chatId,
18412
- length: payload.text.length
18412
+ length: payload.text.length,
18413
+ textPreview: payload.text.slice(0, 200)
18413
18414
  });
18414
18415
  };
18415
18416
  return { deliver };
@@ -18480,7 +18481,8 @@ var InboundPipeline = class {
18480
18481
  log12.info("inbound:dispatching", {
18481
18482
  messageId: msg.messageId,
18482
18483
  chatId: msg.chatId,
18483
- sessionKey: msg.chatId
18484
+ sessionKey: msg.chatId,
18485
+ bodyPreview: String(payload.Body ?? "").slice(0, 200)
18484
18486
  });
18485
18487
  const { counts } = await core.channel.reply.dispatchReplyFromConfig({
18486
18488
  ctx,
@@ -20034,7 +20034,8 @@ function createQuantumImDeliverFn(deps) {
20034
20034
  });
20035
20035
  log23.info("outbound:delivered", {
20036
20036
  chatId,
20037
- length: payload.text.length
20037
+ length: payload.text.length,
20038
+ textPreview: payload.text.slice(0, 200)
20038
20039
  });
20039
20040
  };
20040
20041
  return { deliver };
@@ -20093,7 +20094,8 @@ var InboundPipeline = class {
20093
20094
  log24.info("inbound:dispatching", {
20094
20095
  messageId: msg.messageId,
20095
20096
  chatId: msg.chatId,
20096
- sessionKey: msg.chatId
20097
+ sessionKey: msg.chatId,
20098
+ bodyPreview: String(payload.Body ?? "").slice(0, 200)
20097
20099
  });
20098
20100
  const { counts } = await core.channel.reply.dispatchReplyFromConfig({
20099
20101
  ctx,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liangzimixin",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "Quantum-encrypted IM channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",