From 1111e089cea3992477c50e1367ef5b592885e36b Mon Sep 17 00:00:00 2001 From: StarHeartHunt Date: Thu, 27 Jun 2024 00:01:32 +0800 Subject: [PATCH] :sparkles: add thread_id into message model --- nonebot/adapters/feishu/models/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nonebot/adapters/feishu/models/common.py b/nonebot/adapters/feishu/models/common.py index 792d2bb..fffda95 100644 --- a/nonebot/adapters/feishu/models/common.py +++ b/nonebot/adapters/feishu/models/common.py @@ -112,6 +112,7 @@ class Reply(BaseModel): message_id: str root_id: Optional[str] = None parent_id: Optional[str] = None + thread_id: Optional[str] = None msg_type: str create_time: str update_time: str