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 );