2021-07-16 08:27:30 -04:00
|
|
|
import { HttpStatusCode, VideosOverview } from '@shared/models'
|
2021-07-06 08:30:20 -04:00
|
|
|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
|
|
|
|
|
|
|
export class OverviewsCommand extends AbstractCommand {
|
|
|
|
|
|
|
|
getVideos (options: OverrideCommandOptions & {
|
|
|
|
page: number
|
|
|
|
}) {
|
2021-07-08 04:55:16 -04:00
|
|
|
const { page } = options
|
2021-07-06 08:30:20 -04:00
|
|
|
const path = '/api/v1/overviews/videos'
|
|
|
|
|
|
|
|
const query = { page }
|
|
|
|
|
|
|
|
return this.getRequestBody<VideosOverview>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
query,
|
2021-07-08 04:55:16 -04:00
|
|
|
implicitToken: false,
|
2021-07-06 08:30:20 -04:00
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|