@max1874/feishu 0.2.23 → 0.2.24
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/package.json +1 -1
- package/src/bot.ts +18 -1
- package/src/config-schema.ts +16 -0
package/package.json
CHANGED
package/src/bot.ts
CHANGED
|
@@ -752,12 +752,29 @@ export async function handleFeishuMessage(params: {
|
|
|
752
752
|
...mediaPayload,
|
|
753
753
|
});
|
|
754
754
|
|
|
755
|
+
// Resolve replyToMode: per-chat-type override > global > default ("all")
|
|
756
|
+
const chatTypeKey = isGroup ? "group" : "direct";
|
|
757
|
+
const replyToMode =
|
|
758
|
+
feishuCfg?.replyToModeByChatType?.[chatTypeKey] ??
|
|
759
|
+
feishuCfg?.replyToMode ??
|
|
760
|
+
"all";
|
|
761
|
+
|
|
762
|
+
// Compute effective replyToMessageId based on mode
|
|
763
|
+
let effectiveReplyToMessageId: string | undefined;
|
|
764
|
+
if (replyToMode === "all") {
|
|
765
|
+
// Always thread: reply to the triggering message
|
|
766
|
+
effectiveReplyToMessageId = ctx.messageId;
|
|
767
|
+
} else {
|
|
768
|
+
// "off": only thread if the triggering message is already in a thread
|
|
769
|
+
effectiveReplyToMessageId = ctx.rootId;
|
|
770
|
+
}
|
|
771
|
+
|
|
755
772
|
const { dispatcher, replyOptions, markDispatchIdle } = createFeishuReplyDispatcher({
|
|
756
773
|
cfg,
|
|
757
774
|
agentId: route.agentId,
|
|
758
775
|
runtime: runtime as RuntimeEnv,
|
|
759
776
|
chatId: ctx.chatId,
|
|
760
|
-
replyToMessageId:
|
|
777
|
+
replyToMessageId: effectiveReplyToMessageId,
|
|
761
778
|
mentionTargets: ctx.mentionTargets,
|
|
762
779
|
});
|
|
763
780
|
|
package/src/config-schema.ts
CHANGED
|
@@ -33,6 +33,20 @@ const MarkdownConfigSchema = z
|
|
|
33
33
|
// Message render mode: auto (default) = detect markdown, raw = plain text, card = always card
|
|
34
34
|
const RenderModeSchema = z.enum(["auto", "raw", "card"]).optional();
|
|
35
35
|
|
|
36
|
+
// Reply-to (threading) mode: controls whether bot replies are sent as threaded replies.
|
|
37
|
+
// - "all" (default): always reply in thread (current behavior)
|
|
38
|
+
// - "off": reply in main chat; only thread if the triggering message was already in a thread
|
|
39
|
+
const ReplyToModeSchema = z.enum(["off", "all"]).optional();
|
|
40
|
+
|
|
41
|
+
// Per-chat-type overrides for replyToMode
|
|
42
|
+
const ReplyToModeByChatTypeSchema = z
|
|
43
|
+
.object({
|
|
44
|
+
direct: ReplyToModeSchema,
|
|
45
|
+
group: ReplyToModeSchema,
|
|
46
|
+
})
|
|
47
|
+
.strict()
|
|
48
|
+
.optional();
|
|
49
|
+
|
|
36
50
|
const BlockStreamingCoalesceSchema = z
|
|
37
51
|
.object({
|
|
38
52
|
enabled: z.boolean().optional(),
|
|
@@ -90,6 +104,8 @@ export const FeishuConfigSchema = z
|
|
|
90
104
|
mediaMaxMb: z.number().positive().optional(),
|
|
91
105
|
heartbeat: ChannelHeartbeatVisibilitySchema,
|
|
92
106
|
renderMode: RenderModeSchema, // raw = plain text (default), card = interactive card with markdown
|
|
107
|
+
replyToMode: ReplyToModeSchema, // "all" = always thread (default), "off" = main chat unless already in thread
|
|
108
|
+
replyToModeByChatType: ReplyToModeByChatTypeSchema, // per-chat-type overrides for replyToMode
|
|
93
109
|
})
|
|
94
110
|
.strict()
|
|
95
111
|
.superRefine((value, ctx) => {
|