export type StreamStatusPayload = {
    roomId: string
    /** CF live_inputs 開播中（connected / streaming 等） */
    isLive: boolean
    live: boolean
    status: string
    /** CF status.history 有資料＝本場已結束，與 current.state 無關 */
    cfHasHistory?: boolean
    isInput: boolean
    videoUID: string | null
    chunked?: boolean
    checkedAt: string
    /** Unix 秒；開播或新 videoUID 場次時更新 */
    startedAt?: number | null
}
