liangzimixin 0.3.55 → 0.3.56

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
@@ -18754,6 +18754,13 @@ var InboundPipeline = class {
18754
18754
  cfg: this.deps.sdkConfig,
18755
18755
  dispatcherOptions: {
18756
18756
  deliver: async (payload2) => {
18757
+ log12.debug("\u{1F527} \u547D\u4EE4 deliver \u56DE\u8C03\u6536\u5230", {
18758
+ messageId: msg.messageId,
18759
+ hasText: Boolean(payload2.text),
18760
+ textLength: payload2.text?.length ?? 0,
18761
+ textPreview: (payload2.text ?? "").slice(0, 200),
18762
+ payloadKeys: Object.keys(payload2)
18763
+ });
18757
18764
  const text = (payload2.text ?? "").trim();
18758
18765
  if (!text) return;
18759
18766
  await this.deps.messagePipe.sendMessage({
@@ -20780,6 +20780,13 @@ var InboundPipeline = class {
20780
20780
  cfg: this.deps.sdkConfig,
20781
20781
  dispatcherOptions: {
20782
20782
  deliver: async (payload2) => {
20783
+ log24.debug("\u{1F527} \u547D\u4EE4 deliver \u56DE\u8C03\u6536\u5230", {
20784
+ messageId: msg.messageId,
20785
+ hasText: Boolean(payload2.text),
20786
+ textLength: payload2.text?.length ?? 0,
20787
+ textPreview: (payload2.text ?? "").slice(0, 200),
20788
+ payloadKeys: Object.keys(payload2)
20789
+ });
20783
20790
  const text = (payload2.text ?? "").trim();
20784
20791
  if (!text) return;
20785
20792
  await this.deps.messagePipe.sendMessage({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liangzimixin",
3
- "version": "0.3.55",
3
+ "version": "0.3.56",
4
4
  "description": "Quantum-encrypted IM channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",