fix(workspace): background vector indexing and correct diagram previews

This commit is contained in:
2026-09-06 02:57:56 +08:00
parent 9e0715f9db
commit a5c44c4ac0
21 changed files with 561 additions and 75 deletions
+2
View File
@@ -507,6 +507,7 @@ export interface ThemeConfig {
// ============ Index ============
export interface IndexStatus {
vector_refresh_required?: boolean
status: 'unknown' | 'idle' | 'indexing' | 'error'
pending_jobs: number
total_notes: number | null
@@ -800,6 +801,7 @@ export interface ApiTask {
}
export interface ApiIndexStatus {
vector_refresh_required?: boolean
total_notes: number
total_blocks: number
status: 'idle' | 'queued' | 'running' | 'failed'