]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/typings/models/video/schedule-video-update.ts
Add ability to disable webtorrent
[github/Chocobozzz/PeerTube.git] / server / typings / models / video / schedule-video-update.ts
1 import { ScheduleVideoUpdateModel } from '../../../models/video/schedule-video-update'
2 import { PickWith } from '@server/typings/utils'
3 import { MVideoAPWithoutCaption, MVideoWithBlacklistLight } from './video'
4
5 type Use<K extends keyof ScheduleVideoUpdateModel, M> = PickWith<ScheduleVideoUpdateModel, K, M>
6
7 // ############################################################################
8
9 export type MScheduleVideoUpdate = Omit<ScheduleVideoUpdateModel, 'Video'>
10
11 // ############################################################################
12
13 export type MScheduleVideoUpdateVideoAll = MScheduleVideoUpdate &
14 Use<'Video', MVideoAPWithoutCaption & MVideoWithBlacklistLight>
15
16 // Format for API or AP object
17
18 export type MScheduleVideoUpdateFormattable = Pick<MScheduleVideoUpdate, 'updateAt' | 'privacy'>