PeerTube/server/typings/models/video/video-abuse.ts

35 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-08-15 11:53:26 +02:00
import { VideoAbuseModel } from '../../../models/video/video-abuse'
import { PickWith } from '../../utils'
import { MVideo } from './video'
2019-08-20 19:05:31 +02:00
import { MAccountDefault, MAccountFormattable } from '../account'
2019-08-15 11:53:26 +02:00
2019-08-20 13:52:49 +02:00
type Use<K extends keyof VideoAbuseModel, M> = PickWith<VideoAbuseModel, K, M>
// ############################################################################
2019-08-15 11:53:26 +02:00
export type MVideoAbuse = Omit<VideoAbuseModel, 'Account' | 'Video' | 'toActivityPubObject'>
2019-08-20 13:52:49 +02:00
// ############################################################################
2019-08-15 11:53:26 +02:00
export type MVideoAbuseId = Pick<VideoAbuseModel, 'id'>
2020-01-31 16:56:52 +01:00
export type MVideoAbuseVideo =
MVideoAbuse &
2019-08-15 11:53:26 +02:00
Pick<VideoAbuseModel, 'toActivityPubObject'> &
2019-08-20 13:52:49 +02:00
Use<'Video', MVideo>
2019-08-15 11:53:26 +02:00
2020-01-31 16:56:52 +01:00
export type MVideoAbuseAccountVideo =
MVideoAbuse &
2019-08-20 13:52:49 +02:00
Pick<VideoAbuseModel, 'toActivityPubObject'> &
Use<'Video', MVideo> &
Use<'Account', MAccountDefault>
2019-08-20 19:05:31 +02:00
// ############################################################################
// Format for API or AP object
2020-01-31 16:56:52 +01:00
export type MVideoAbuseFormattable =
MVideoAbuse &
2019-08-20 19:05:31 +02:00
Use<'Account', MAccountFormattable> &
Use<'Video', Pick<MVideo, 'id' | 'uuid' | 'name'>>