46 lines
935 B
TypeScript
46 lines
935 B
TypeScript
import { VideoChannel } from './video-channel.model'
|
|
import { VideoPrivacy } from './video-privacy.enum'
|
|
|
|
export interface VideoFile {
|
|
magnetUri: string
|
|
resolution: number
|
|
resolutionLabel: string
|
|
size: number // Bytes
|
|
torrentUrl: string
|
|
fileUrl: string
|
|
}
|
|
|
|
export interface Video {
|
|
id: number
|
|
uuid: string
|
|
account: string
|
|
createdAt: Date | string
|
|
updatedAt: Date | string
|
|
categoryLabel: string
|
|
category: number
|
|
licenceLabel: string
|
|
licence: number
|
|
languageLabel: string
|
|
language: number
|
|
description: string
|
|
duration: number
|
|
isLocal: boolean
|
|
name: string
|
|
serverHost: string
|
|
tags: string[]
|
|
thumbnailPath: string
|
|
previewPath: string
|
|
embedPath: string
|
|
views: number
|
|
likes: number
|
|
dislikes: number
|
|
nsfw: boolean
|
|
}
|
|
|
|
export interface VideoDetails extends Video {
|
|
privacy: VideoPrivacy
|
|
privacyLabel: string
|
|
descriptionPath: string
|
|
channel: VideoChannel
|
|
files: VideoFile[]
|
|
}
|