2018-07-10 11:02:20 -04:00
|
|
|
export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
export type JobType = 'activitypub-http-unicast' |
|
|
|
|
'activitypub-http-broadcast' |
|
|
|
|
'activitypub-http-fetcher' |
|
2018-04-18 09:32:40 -04:00
|
|
|
'activitypub-follow' |
|
2018-06-02 15:39:41 -04:00
|
|
|
'video-file-import' |
|
2018-01-30 07:27:07 -05:00
|
|
|
'video-file' |
|
|
|
|
'email'
|
2017-11-30 04:51:13 -05:00
|
|
|
|
|
|
|
export interface Job {
|
|
|
|
id: number
|
|
|
|
state: JobState
|
2018-01-25 09:05:18 -05:00
|
|
|
type: JobType
|
|
|
|
data: any,
|
|
|
|
error: any,
|
2017-11-30 04:51:13 -05:00
|
|
|
createdAt: Date
|
2018-07-10 11:02:20 -04:00
|
|
|
finishedOn: Date
|
|
|
|
processedOn: Date
|
2017-11-30 04:51:13 -05:00
|
|
|
}
|