
* Add replay settings feature * Fix replay settings behaviour * Fix tests * Fix tests * Fix tests * Update openapi doc and fix tests * Add tests and fix code * Models correction * Add migration and update controller and middleware * Add check params tests * Fix video live middleware * Updated code based on review comments
23 lines
398 B
TypeScript
23 lines
398 B
TypeScript
import { VideoPrivacy } from '../video-privacy.enum'
|
|
import { LiveVideoError } from './live-video-error.enum'
|
|
|
|
export interface LiveVideoSession {
|
|
id: number
|
|
|
|
startDate: string
|
|
endDate: string
|
|
|
|
error: LiveVideoError
|
|
|
|
saveReplay: boolean
|
|
endingProcessed: boolean
|
|
|
|
replaySettings?: { privacy: VideoPrivacy }
|
|
|
|
replayVideo: {
|
|
id: number
|
|
uuid: string
|
|
shortUUID: string
|
|
}
|
|
}
|