blob: 85bc9541b673eda5eddec677396a917e25c7bf45 (
plain) (
tree)
|
|
export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed'
export type JobType = 'activitypub-http-unicast' |
'activitypub-http-broadcast' |
'activitypub-http-fetcher' |
'activitypub-follow' |
'video-file-import' |
'video-file' |
'email' |
'video-import' |
'videos-views' |
'activitypub-refresher'
export interface Job {
id: number
state: JobState
type: JobType
data: any,
error: any,
createdAt: Date
finishedOn: Date
processedOn: Date
}
|