feat(net-tool): 更新 updateReplyCard 方法为 updateReplyMessage,支持消息类型参数
All checks were successful
/ release (push) Successful in 24s

This commit is contained in:
zhaoyingbo 2025-01-24 08:35:28 +00:00
parent 4833445e63
commit 5e14057abc

View File

@ -145,18 +145,22 @@ class LarkMessageService extends LarkBaseService {
}
/**
*
*
* @param messageId ID
* @returns
* @param msgType textinteractive
* @returns
*/
updateReplyCard(messageId: string) {
updateReplyMessage(
messageId: string,
msgType: "text" | "interactive" = "interactive"
) {
let repliedMessageId = ""
return async (content: string) => {
if (repliedMessageId) {
await this.update(repliedMessageId, content)
await this.update(repliedMessageId, content, msgType === "text")
return repliedMessageId
}
const res = await this.replyCard(messageId, content)
const res = await this.reply(messageId, msgType, content)
if ("data" in res) {
repliedMessageId = res.data.message_id
}