feat: 导出联系人标签和详细描述

扩展联系人读取与导出链路,新增 labels 和 detailDescription 字段的兼容提取,并同步更新通讯录缓存、详情展示与
  JSON/CSV/VCF 导出。
  Close #402
This commit is contained in:
姜北尘
2026-03-22 14:17:19 +08:00
parent 2e1c0e6c54
commit e12193aa40
5 changed files with 91 additions and 4 deletions

View File

@@ -37,6 +37,8 @@ export interface ContactInfo {
remark?: string
nickname?: string
alias?: string
labels?: string[]
detailDescription?: string
avatarUrl?: string
type: 'friend' | 'group' | 'official' | 'former_friend' | 'other'
}