23 lines
550 B
TypeScript
23 lines
550 B
TypeScript
import { HttpStatusCode, VideosOverview } from '@shared/models'
|
|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
|
|
|
export class OverviewsCommand extends AbstractCommand {
|
|
|
|
getVideos (options: OverrideCommandOptions & {
|
|
page: number
|
|
}) {
|
|
const { page } = options
|
|
const path = '/api/v1/overviews/videos'
|
|
|
|
const query = { page }
|
|
|
|
return this.getRequestBody<VideosOverview>({
|
|
...options,
|
|
|
|
path,
|
|
query,
|
|
implicitToken: false,
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
})
|
|
}
|
|
}
|