@wu529778790/open-im 1.9.4-beta.8 → 1.9.4-beta.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.
@@ -422,6 +422,8 @@ export function setupFeishuHandlers(config, sessionManager) {
422
422
  handleAIRequest,
423
423
  sendTextReply,
424
424
  replyToMessageId: messageId,
425
+ workDir: sessionManager.getWorkDir(senderId),
426
+ convId: sessionManager.getConvId(senderId),
425
427
  });
426
428
  }
427
429
  else if (msgType === 'image') {
@@ -296,6 +296,8 @@ export function setupTelegramHandlers(bot, config, sessionManager) {
296
296
  handleAIRequest,
297
297
  sendTextReply,
298
298
  replyToMessageId: messageId,
299
+ workDir: sessionManager.getWorkDir(userId),
300
+ convId: sessionManager.getConvId(userId),
299
301
  });
300
302
  }
301
303
  catch (err) {
@@ -281,6 +281,8 @@ export function setupWeWorkHandlers(config, sessionManager) {
281
281
  ctx,
282
282
  handleAIRequest,
283
283
  sendTextReply: (chatId, text) => sendTextReply(chatId, text, reqId),
284
+ workDir: sessionManager.getWorkDir(fromUser),
285
+ convId: sessionManager.getConvId(fromUser),
284
286
  });
285
287
  return;
286
288
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wu529778790/open-im",
3
- "version": "1.9.4-beta.8",
3
+ "version": "1.9.4-beta.9",
4
4
  "description": "Multi-platform IM bridge for AI CLI tools (Claude, Codex, CodeBuddy)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",