1
0
Fork 0
peertube/shared/models/search/videos-search-query.model.ts

21 lines
525 B
TypeScript
Raw Normal View History

2020-05-29 10:16:24 -04:00
import { SearchTargetQuery } from './search-target-query.model'
import { VideosCommonQuery } from './videos-common-query.model'
2020-05-29 10:16:24 -04:00
export interface VideosSearchQuery extends SearchTargetQuery, VideosCommonQuery {
search?: string
2018-07-20 08:35:18 -04:00
host?: string
2018-07-20 08:35:18 -04:00
startDate?: string // ISO 8601
endDate?: string // ISO 8601
originallyPublishedStartDate?: string // ISO 8601
originallyPublishedEndDate?: string // ISO 8601
2018-07-20 08:35:18 -04:00
durationMin?: number // seconds
durationMax?: number // seconds
// UUIDs or short
uuids?: string[]
2018-07-20 08:35:18 -04:00
}