import type { ApiClient } from "@promobase/sdk-runtime"; export interface LiveVideoInputStreamFields { dash_ingest_url: string; dash_preview_url: string; id: string; is_master: boolean; secure_stream_url: string; stream_health: Record; stream_id: string; stream_url: string; } export function liveVideoInputStreamNode(client: ApiClient, id: string) { return { __path: id, __brand: undefined as unknown as LiveVideoInputStreamFields, get: (opts: { fields: F; params?: Record }) => client.get>(`${id}`, opts), }; }