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