@meet-im/meet 3.2.3 → 3.2.4

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/src/bot.js CHANGED
@@ -378,6 +378,7 @@ export async function handleMeetMessage(params) {
378
378
  botUserId,
379
379
  mediaLocalRoots,
380
380
  });
381
+ log(`[${accountId}]: dispatch ctx replyToId=${inboundCtx.ReplyToId ?? "undefined"} replyToBody=${JSON.stringify(inboundCtx.ReplyToBody ?? "")} rawBody=${JSON.stringify(inboundCtx.RawBody ?? "")} commandBody=${JSON.stringify(inboundCtx.CommandBody ?? "")} bodyForAgent=${JSON.stringify(inboundCtx.BodyForAgent ?? "")}`);
381
382
  log(`[${accountId}]: dispatching to AI agent=${route.agentId} session=${route.sessionKey} history=${inboundHistory?.length ?? 0}`);
382
383
  const dispatchResult = await core.channel.reply.dispatchReplyFromConfig({
383
384
  ctx: inboundCtx,
@@ -1,2 +1,2 @@
1
- export declare const MEET_PLUGIN_VERSION = "3.2.3";
1
+ export declare const MEET_PLUGIN_VERSION = "3.2.4";
2
2
  export declare const MEET_OPENCLAW_VERSION = "2026.5.18";
@@ -1,2 +1,2 @@
1
- export const MEET_PLUGIN_VERSION = "3.2.3";
1
+ export const MEET_PLUGIN_VERSION = "3.2.4";
2
2
  export const MEET_OPENCLAW_VERSION = "2026.5.18";
@@ -77,7 +77,7 @@ async function monitorSingleAccount(params) {
77
77
  const mapKeys = Object.keys(quoteMsgMap);
78
78
  const found = quoteMsgMap[computedKey] ? 'FOUND' : 'NOT_FOUND';
79
79
  const replyCtx = ctx.replyContext;
80
- log(`[${accountId}]: quoteSeqID=${quoteSeqID}, computedKey=${computedKey}, mapKeys=${mapKeys.length > 0 ? mapKeys.join(',') : 'empty'}, result=${found}, replyContent=${replyCtx?.content ? replyCtx.content.slice(0, 50) + '...' : 'undefined'}`);
80
+ log(`[${accountId}]: sessionType=${message.sessionInfo.sessionType}, quoteSeqID=${quoteSeqID}, computedKey=${computedKey}, mapKeys=${mapKeys.length > 0 ? mapKeys.join(',') : 'empty'}, result=${found}, replyContext=${replyCtx ? 'present' : 'undefined'}, replyContent=${replyCtx?.content ? replyCtx.content.slice(0, 50) + '...' : 'undefined'}`);
81
81
  }
82
82
  }
83
83
  catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meet-im/meet",
3
- "version": "3.2.3",
3
+ "version": "3.2.4",
4
4
  "type": "module",
5
5
  "description": "OpenClaw Meet channel plugin",
6
6
  "scripts": {