2020-05-29 09:16:24 -05:00
|
|
|
import { SearchTargetQuery } from './search-target-query.model'
|
2021-05-03 04:06:19 -05:00
|
|
|
import { VideosCommonQuery } from './videos-common-query.model'
|
2020-05-29 09:16:24 -05:00
|
|
|
|
2021-05-03 04:06:19 -05:00
|
|
|
export interface VideosSearchQuery extends SearchTargetQuery, VideosCommonQuery {
|
2018-07-24 04:09:00 -05:00
|
|
|
search?: string
|
2018-07-20 07:35:18 -05:00
|
|
|
|
2021-07-27 02:07:38 -05:00
|
|
|
host?: string
|
|
|
|
|
2018-07-20 07:35:18 -05:00
|
|
|
startDate?: string // ISO 8601
|
|
|
|
endDate?: string // ISO 8601
|
|
|
|
|
2018-11-27 11:57:02 -06:00
|
|
|
originallyPublishedStartDate?: string // ISO 8601
|
|
|
|
originallyPublishedEndDate?: string // ISO 8601
|
|
|
|
|
2018-07-20 07:35:18 -05:00
|
|
|
durationMin?: number // seconds
|
|
|
|
durationMax?: number // seconds
|
2021-07-28 09:40:21 -05:00
|
|
|
|
2021-07-29 04:54:38 -05:00
|
|
|
// UUIDs or short UUIDs
|
2021-07-28 09:40:21 -05:00
|
|
|
uuids?: string[]
|
2018-07-20 07:35:18 -05:00
|
|
|
}
|
2021-07-29 04:54:38 -05:00
|
|
|
|
|
|
|
export interface VideosSearchQueryAfterSanitize extends VideosSearchQuery {
|
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
sort: string
|
2021-10-27 07:37:04 -05:00
|
|
|
|
|
|
|
// FIXME: deprecated in 4.0, to remove
|
|
|
|
filter?: never
|
2021-07-29 04:54:38 -05:00
|
|
|
}
|