aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/search/videos-common-query.model.ts
blob: 179266338c0bd50de7985f7eab60352cf40c2eec (plain) (tree)






















                                                                        

                     




                                                                        
import { VideoFilter } from '../videos'
import { BooleanBothQuery } from './boolean-both-query.model'

// These query parameters can be used with any endpoint that list videos
export interface VideosCommonQuery {
  start?: number
  count?: number
  sort?: string

  nsfw?: BooleanBothQuery

  isLive?: boolean

  categoryOneOf?: number[]

  licenceOneOf?: number[]

  languageOneOf?: string[]

  tagsOneOf?: string[]
  tagsAllOf?: string[]

  filter?: VideoFilter

  skipCount?: boolean
}

export interface VideosWithSearchCommonQuery extends VideosCommonQuery {
  search?: string
}