mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-08 07:45:32 +01:00
parent
f8c8161a3e
commit
f34202a82a
159 changed files with 3882 additions and 2716 deletions
|
|
@ -5,50 +5,46 @@ import { PaperlessDocumentType } from './paperless-document-type'
|
|||
import { Observable } from 'rxjs'
|
||||
|
||||
export interface SearchHit {
|
||||
|
||||
score?: number
|
||||
rank?: number
|
||||
|
||||
highlights?: string
|
||||
|
||||
}
|
||||
|
||||
export interface PaperlessDocument extends ObjectWithId {
|
||||
correspondent$?: Observable<PaperlessCorrespondent>
|
||||
|
||||
correspondent$?: Observable<PaperlessCorrespondent>
|
||||
correspondent?: number
|
||||
|
||||
correspondent?: number
|
||||
document_type$?: Observable<PaperlessDocumentType>
|
||||
|
||||
document_type$?: Observable<PaperlessDocumentType>
|
||||
document_type?: number
|
||||
|
||||
document_type?: number
|
||||
title?: string
|
||||
|
||||
title?: string
|
||||
content?: string
|
||||
|
||||
content?: string
|
||||
file_type?: string
|
||||
|
||||
file_type?: string
|
||||
tags$?: Observable<PaperlessTag[]>
|
||||
|
||||
tags$?: Observable<PaperlessTag[]>
|
||||
tags?: number[]
|
||||
|
||||
tags?: number[]
|
||||
checksum?: string
|
||||
|
||||
checksum?: string
|
||||
created?: Date
|
||||
|
||||
created?: Date
|
||||
modified?: Date
|
||||
|
||||
modified?: Date
|
||||
added?: Date
|
||||
|
||||
added?: Date
|
||||
file_name?: string
|
||||
|
||||
file_name?: string
|
||||
download_url?: string
|
||||
|
||||
download_url?: string
|
||||
thumbnail_url?: string
|
||||
|
||||
thumbnail_url?: string
|
||||
|
||||
archive_serial_number?: number
|
||||
|
||||
__search_hit__?: SearchHit
|
||||
archive_serial_number?: number
|
||||
|
||||
__search_hit__?: SearchHit
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue