feat: 修改对话 ID 对话名称 对话头像

* 仅群组
This commit is contained in:
CrescentLeaf
2025-10-24 22:00:22 +08:00
parent 4807038619
commit bc7b932c5c
6 changed files with 101 additions and 7 deletions

View File

@@ -19,6 +19,7 @@ export type CallMethod =
"Chat.getInfo" |
"Chat.updateSettings" |
"Chat.setAvatar" |
"Chat.createGroup" |

View File

@@ -4,6 +4,10 @@ interface GroupSettings {
new_member_join_method?: 'disabled' | 'allowed_by_admin' | 'answered_and_allowed_by_admin'
answered_and_allowed_by_admin_question?: string
// 下面两个比较特殊, 由服务端给予
group_title: string
group_id: string
[key: string]: unknown
}