Make some fields optional when uploading a video
[oweals/peertube.git] / server / models / video / video-share-interface.ts
1 import * as Bluebird from 'bluebird'
2 import * as Sequelize from 'sequelize'
3 import { AccountInstance } from '../account/account-interface'
4 import { VideoInstance } from './video-interface'
5
6 export namespace VideoShareMethods {
7   export type LoadAccountsByShare = (videoId: number, t: Sequelize.Transaction) => Bluebird<AccountInstance[]>
8   export type Load = (accountId: number, videoId: number, t: Sequelize.Transaction) => Bluebird<VideoShareInstance>
9 }
10
11 export interface VideoShareClass {
12   loadAccountsByShare: VideoShareMethods.LoadAccountsByShare
13   load: VideoShareMethods.Load
14 }
15
16 export interface VideoShareAttributes {
17   accountId: number
18   videoId: number
19 }
20
21 export interface VideoShareInstance extends VideoShareClass, VideoShareAttributes, Sequelize.Instance<VideoShareAttributes> {
22   id: number
23   createdAt: Date
24   updatedAt: Date
25
26   Account?: AccountInstance
27   Video?: VideoInstance
28 }
29
30 export interface VideoShareModel extends VideoShareClass, Sequelize.Model<VideoShareInstance, VideoShareAttributes> {}