2018-01-25 15:05:18 +01:00
|
|
|
export type JobState = 'active' | 'complete' | 'failed' | 'inactive' | 'delayed'
|
|
|
|
|
|
|
|
export type JobType = 'activitypub-http-unicast' |
|
|
|
|
'activitypub-http-broadcast' |
|
|
|
|
'activitypub-http-fetcher' |
|
2018-04-18 15:32:40 +02:00
|
|
|
'activitypub-follow' |
|
2018-01-30 13:27:07 +01:00
|
|
|
'video-file' |
|
|
|
|
'email'
|
2017-11-30 10:51:13 +01:00
|
|
|
|
|
|
|
export interface Job {
|
|
|
|
id: number
|
|
|
|
state: JobState
|
2018-01-25 15:05:18 +01:00
|
|
|
type: JobType
|
|
|
|
data: any,
|
|
|
|
error: any,
|
2017-11-30 10:51:13 +01:00
|
|
|
createdAt: Date
|
|
|
|
updatedAt: Date
|
|
|
|
}
|