diff --git a/src/domain/defaultEngine/envEngineInfo.ts b/src/domain/defaultEngine/envEngineInfo.ts index 7c58df66a5..f45098c264 100644 --- a/src/domain/defaultEngine/envEngineInfo.ts +++ b/src/domain/defaultEngine/envEngineInfo.ts @@ -17,11 +17,13 @@ const envEngineInfoSchema = z }) .and( z.union([ + // エンジンをパス指定する場合 z.object({ type: z.literal("path").default("path"), executionFilePath: z.string(), path: z.string().optional(), }), + // VVPPダウンロードする場合 z.object({ type: z.literal("downloadVvpp"), latestUrl: z.string(),