aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/server/job.model.ts
blob: 4046297c47b1d6060b9196a68069b8b69cce5598 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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'

export interface Job {
  id: number
  state: JobState
  type: JobType
  data: any,
  error: any,
  createdAt: Date
  finishedOn: Date
  processedOn: Date
}