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