aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/types/models/video/video-blacklist.ts
blob: 2ac912405e169fd8d7d5d03180f0b6133cc1bbe0 (plain) (tree)
1
2
3
4
5
6
7
8
                                                                           
                                             
                                                   
 



                                                                                      




                                                                                         

                                                                               

                                       

                      

                                  
                      




                                                                               

                                        
                                 
import { VideoBlacklistModel } from '../../../models/video/video-blacklist'
import { PickWith } from '@shared/core-utils'
import { MVideo, MVideoFormattable } from './video'

type Use<K extends keyof VideoBlacklistModel, M> = PickWith<VideoBlacklistModel, K, M>

// ############################################################################

export type MVideoBlacklist = Omit<VideoBlacklistModel, 'Video'>

export type MVideoBlacklistLight = Pick<MVideoBlacklist, 'id' | 'reason' | 'unfederated'>
export type MVideoBlacklistUnfederated = Pick<MVideoBlacklist, 'unfederated'>

// ############################################################################

export type MVideoBlacklistLightVideo =
  MVideoBlacklistLight &
  Use<'Video', MVideo>

export type MVideoBlacklistVideo =
  MVideoBlacklist &
  Use<'Video', MVideo>

// ############################################################################

// Format for API or AP object

export type MVideoBlacklistFormattable =
  MVideoBlacklist &
  Use<'Video', MVideoFormattable>