blob: cf29d20d40098d05d828017df950512aafa78b5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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-transcoding'
| 'email'
| 'video-import'
| 'videos-views'
| 'activitypub-refresher'
| 'video-redundancy'
export interface Job {
id: number
state: JobState
type: JobType
data: any
error: any
createdAt: Date | string
finishedOn: Date | string
processedOn: Date | string
}
|