mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 07:15:07 +01:00
fix merge
This commit is contained in:
parent
d925fb38ce
commit
0a43ce9ced
5 changed files with 139 additions and 81 deletions
|
|
@ -1,9 +1,25 @@
|
|||
import { ObjectWithId } from './object-with-id'
|
||||
|
||||
export enum PaperlessTaskType {
|
||||
// just file tasks, for now
|
||||
File = 'file',
|
||||
}
|
||||
|
||||
export enum PaperlessTaskStatus {
|
||||
Incomplete = 'incomplete',
|
||||
Complete = 'complete',
|
||||
Failed = 'failed',
|
||||
Unknown = 'unknown',
|
||||
}
|
||||
|
||||
export interface PaperlessTask extends ObjectWithId {
|
||||
type: PaperlessTaskType
|
||||
|
||||
status: PaperlessTaskStatus
|
||||
|
||||
acknowledged: boolean
|
||||
|
||||
q_task_id: string
|
||||
task_id: string
|
||||
|
||||
name: string
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue