feat: 修复导出任务状态并优化聊天记录导出体验

This commit is contained in:
电摇小子
2026-07-27 22:06:08 +08:00
parent f626d89a1a
commit 9348c5ce4a
19 changed files with 727 additions and 94 deletions
+10
View File
@@ -40,6 +40,16 @@ export interface ExportJobProgress {
error?: string
}
export interface ExportTaskRecord {
jobId: string
contactId: string
contactName: string
format: ExportFormat
status: 'running' | 'completed' | 'cancelled' | 'failed'
progress: ExportJobProgress
createdAt: number
}
export interface ExportResult {
success: boolean
outputPath?: string