2017-06-16 04:36:18 -04:00
|
|
|
export type JobState = 'pending' | 'processing' | 'error' | 'success'
|
2017-11-17 05:35:10 -05:00
|
|
|
export type JobCategory = 'transcoding' | 'activitypub-http'
|
2017-11-30 04:51:13 -05:00
|
|
|
|
|
|
|
export interface Job {
|
|
|
|
id: number
|
|
|
|
state: JobState
|
|
|
|
category: JobCategory
|
|
|
|
handlerName: string
|
|
|
|
handlerInputData: any
|
|
|
|
createdAt: Date
|
|
|
|
updatedAt: Date
|
|
|
|
}
|