From e7406be4dd033bf33649d22e62988867c8d33253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B5=B7=E9=BE=99?= Date: Thu, 7 Aug 2025 14:16:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/service/Interaction/ScriptService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/service/Interaction/ScriptService.ts b/app/service/Interaction/ScriptService.ts index fb4e1d4..8cefca7 100644 --- a/app/service/Interaction/ScriptService.ts +++ b/app/service/Interaction/ScriptService.ts @@ -101,7 +101,7 @@ export interface UseScriptService { createMovieProjectV1: ( idea: string, userId: string, - mode: "auto" | "manual", + mode: "automatic" | "manual", resolution: string, language: string ) => Promise; @@ -174,7 +174,7 @@ export const useScriptService = (): UseScriptService => { async ( idea: string, userId: string, - mode: "auto" | "manual", + mode: "automatic" | "manual", resolution: string, language: string ): Promise => { @@ -185,7 +185,7 @@ export const useScriptService = (): UseScriptService => { const projectData = await scriptEditUseCase.createProject( idea, userId, - mode as "auto" | "manual", + mode as "automatic" | "manual", resolution as "720p" | "1080p" | "4k", language );