1234567891011121314151617181920212223 |
- 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
- })
- }
- }
|