From 0ec1eb1e1681288bcf47a3e91100d57d2935850f Mon Sep 17 00:00:00 2001 From: GouJ Date: Tue, 1 Sep 2026 15:33:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=A6=96=E5=B8=A7=E6=89=B9=E9=87=8F?= =?UTF-8?q?=E7=94=9F=E6=88=90=E9=99=90=E5=88=B6=E5=BD=93=E5=89=8D=E5=89=A7?= =?UTF-8?q?=E9=9B=86=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/production/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/features/production/types.ts b/src/features/production/types.ts index be4a0d2..49c85e8 100644 --- a/src/features/production/types.ts +++ b/src/features/production/types.ts @@ -174,6 +174,10 @@ export interface GenerateKeyframesInput { provider: 'seedream' concurrency: number force: boolean + /** 缺失首帧默认只生成当前剧集,避免开发阶段误跑整个项目。 */ + episodeNo?: number + /** 小范围质量试跑时可进一步限制生成数量。 */ + limit?: number width?: number height?: number } @@ -193,6 +197,7 @@ export interface KeyframeBatchResult { generated: number skipped: number blocked: number + stalePrimaryKeyframe?: number missingReference: number failed: number failures: { shotId: string; error: string }[]