feat(client): fix typescript compilation issue for document's response
This commit is contained in:
parent
0b9eaedf59
commit
46186acfb9
|
|
@ -66,10 +66,24 @@ export interface EnhancedDocument {
|
||||||
id: string
|
id: string
|
||||||
filename: string
|
filename: string
|
||||||
original_filename: string
|
original_filename: string
|
||||||
|
file_path: string
|
||||||
file_size: number
|
file_size: number
|
||||||
mime_type: string
|
mime_type: string
|
||||||
tags: string[]
|
tags: string[]
|
||||||
created_at: string
|
created_at: string
|
||||||
|
updated_at: string
|
||||||
|
user_id: string
|
||||||
|
username?: string
|
||||||
|
file_hash?: string
|
||||||
|
original_created_at?: string
|
||||||
|
original_modified_at?: string
|
||||||
|
source_path?: string
|
||||||
|
source_type?: string
|
||||||
|
source_id?: string
|
||||||
|
file_permissions?: number
|
||||||
|
file_owner?: string
|
||||||
|
file_group?: string
|
||||||
|
source_metadata?: Record<string, any>
|
||||||
has_ocr_text: boolean
|
has_ocr_text: boolean
|
||||||
ocr_confidence?: number
|
ocr_confidence?: number
|
||||||
ocr_word_count?: number
|
ocr_word_count?: number
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue