feat: 前端同步主视频过期状态

This commit is contained in:
GouJ
2026-09-01 15:51:10 +08:00
parent b74eb9feed
commit 0678d7555f
+3
View File
@@ -66,6 +66,8 @@ export interface VideoReadinessItem {
issues: ProductionIssue[] issues: ProductionIssue[]
primaryVideoId?: string | null primaryVideoId?: string | null
activeVideoId?: string | null activeVideoId?: string | null
/** 当前主视频已基于旧主首帧或旧主体参考图生成。 */
primaryVideoStale?: boolean
} }
/** 视频任务项目级就绪汇总。 */ /** 视频任务项目级就绪汇总。 */
@@ -78,6 +80,7 @@ export interface VideoReadiness {
missingPrompt: number missingPrompt: number
missingKeyframe: number missingKeyframe: number
staleKeyframe: number staleKeyframe: number
stalePrimaryVideo: number
missingReference: number missingReference: number
items: VideoReadinessItem[] items: VideoReadinessItem[]
} }