2017-05-22 13:58:25 -05:00
|
|
|
import * as Sequelize from 'sequelize'
|
2017-07-05 06:26:25 -05:00
|
|
|
import * as Promise from 'bluebird'
|
|
|
|
|
|
|
|
import { ResultList } from '../../../shared'
|
2017-05-22 13:58:25 -05:00
|
|
|
|
2017-06-10 15:15:25 -05:00
|
|
|
// Don't use barrel, import just what we need
|
2017-08-25 04:45:31 -05:00
|
|
|
import { BlacklistedVideo as FormattedBlacklistedVideo } from '../../../shared/models/videos/video-blacklist.model'
|
2017-06-10 15:15:25 -05:00
|
|
|
|
2017-05-22 13:58:25 -05:00
|
|
|
export namespace BlacklistedVideoMethods {
|
2017-08-25 04:45:31 -05:00
|
|
|
export type ToFormattedJSON = (this: BlacklistedVideoInstance) => FormattedBlacklistedVideo
|
2017-06-10 15:15:25 -05:00
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
export type CountTotal = () => Promise<number>
|
2017-06-10 15:15:25 -05:00
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
export type List = () => Promise<BlacklistedVideoInstance[]>
|
2017-06-10 15:15:25 -05:00
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
export type ListForApi = (start: number, count: number, sort: string) => Promise< ResultList<BlacklistedVideoInstance> >
|
2017-06-10 15:15:25 -05:00
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
export type LoadById = (id: number) => Promise<BlacklistedVideoInstance>
|
2017-05-22 13:58:25 -05:00
|
|
|
|
2017-07-11 09:01:56 -05:00
|
|
|
export type LoadByVideoId = (id: number) => Promise<BlacklistedVideoInstance>
|
2017-05-22 13:58:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface BlacklistedVideoClass {
|
2017-08-25 04:45:31 -05:00
|
|
|
toFormattedJSON: BlacklistedVideoMethods.ToFormattedJSON
|
2017-05-22 13:58:25 -05:00
|
|
|
countTotal: BlacklistedVideoMethods.CountTotal
|
|
|
|
list: BlacklistedVideoMethods.List
|
|
|
|
listForApi: BlacklistedVideoMethods.ListForApi
|
|
|
|
loadById: BlacklistedVideoMethods.LoadById
|
|
|
|
loadByVideoId: BlacklistedVideoMethods.LoadByVideoId
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface BlacklistedVideoAttributes {
|
2017-07-11 09:01:56 -05:00
|
|
|
videoId: number
|
2017-05-22 13:58:25 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
export interface BlacklistedVideoInstance
|
|
|
|
extends BlacklistedVideoClass, BlacklistedVideoAttributes, Sequelize.Instance<BlacklistedVideoAttributes> {
|
2017-05-22 13:58:25 -05:00
|
|
|
id: number
|
|
|
|
createdAt: Date
|
|
|
|
updatedAt: Date
|
2017-06-17 04:28:11 -05:00
|
|
|
|
2017-08-25 04:45:31 -05:00
|
|
|
toFormattedJSON: BlacklistedVideoMethods.ToFormattedJSON
|
2017-05-22 13:58:25 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
export interface BlacklistedVideoModel
|
|
|
|
extends BlacklistedVideoClass, Sequelize.Model<BlacklistedVideoInstance, BlacklistedVideoAttributes> {}
|