xiaozuoassistant 0.2.34 → 0.2.35

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.
@@ -98,6 +98,13 @@ export class FeishuChannel extends BaseChannel {
98
98
  }
99
99
  }
100
100
  });
101
+ // @ts-ignore
102
+ // 添加通用消息已读回调防止未注册导致的告警
103
+ eventDispatcher.register({
104
+ 'im.message.message_read_v1': async (data) => {
105
+ // Silently ignore to prevent "[warn]: no im.message.message_read_v1 handle"
106
+ }
107
+ });
101
108
  await wsClient.start({
102
109
  eventDispatcher: eventDispatcher
103
110
  }).catch(e => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xiaozuoassistant",
3
- "version": "0.2.34",
3
+ "version": "0.2.35",
4
4
  "description": "A local-first personal AI assistant with multi-channel support and enhanced memory.",
5
5
  "author": "mantle.lau",
6
6
  "license": "MIT",