Persist local stream data

This commit is contained in:
Max Goodhart
2025-06-17 01:21:22 +00:00
parent fc42a69b62
commit a36a07d177
5 changed files with 75 additions and 27 deletions

View File

@@ -23,16 +23,21 @@ export interface ContentViewInfo {
export type ContentKind = 'video' | 'audio' | 'web' | 'background' | 'overlay'
export interface StreamData extends ContentDisplayOptions {
export interface StreamDataContent extends ContentDisplayOptions {
kind: ContentKind
link: string
label: string
label?: string
labelPosition?: 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left'
source?: string
notes?: string
status?: string
city?: string
state?: string
_id?: string
_dataSource?: string
}
export interface StreamData extends StreamDataContent {
_id: string
_dataSource: string
}