This commit is contained in:
parent
745c39428a
commit
af7e446b8e
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user