feat(net-tool): 添加更新回复卡片消息的方法
All checks were successful
/ release (push) Successful in 26s

This commit is contained in:
zhaoyingbo 2025-01-24 07:46:54 +00:00
parent 745c39428a
commit af7e446b8e

View File

@ -143,6 +143,25 @@ class LarkMessageService extends LarkBaseService {
async replyCard(messageId: string, content: string | Record<string, any>) {
return this.reply(messageId, "interactive", content)
}
/**
*
* @param messageId ID
* @returns
*/
async updateReplyCard(messageId: string) {
let repliedMessageId = ""
return async (content: string) => {
if (repliedMessageId) {
await this.update(repliedMessageId, content)
return
}
const res = await this.replyCard(messageId, content)
if ("data" in res) {
repliedMessageId = res.data.message_id
}
}
}
}
export default LarkMessageService