mulmocast 0.1.7 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/assets/templates/akira_comic.json +1 -1
  2. package/assets/templates/ani.json +3 -3
  3. package/assets/templates/ani_ja.json +4 -5
  4. package/assets/templates/characters.json +1 -1
  5. package/assets/templates/children_book.json +1 -1
  6. package/assets/templates/comic_strips.json +1 -1
  7. package/assets/templates/drslump_comic.json +1 -1
  8. package/assets/templates/ghibli_comic.json +1 -1
  9. package/assets/templates/ghibli_image_only.json +1 -1
  10. package/assets/templates/ghibli_shorts.json +2 -3
  11. package/assets/templates/ghost_comic.json +1 -1
  12. package/assets/templates/onepiece_comic.json +1 -1
  13. package/assets/templates/portrait_movie.json +1 -1
  14. package/assets/templates/realistic_movie.json +1 -1
  15. package/assets/templates/sensei_and_taro.json +4 -5
  16. package/assets/templates/shorts.json +1 -1
  17. package/assets/templates/trailer.json +1 -1
  18. package/lib/actions/audio.js +6 -7
  19. package/lib/actions/image_agents.d.ts +46 -76
  20. package/lib/actions/image_agents.js +18 -3
  21. package/lib/actions/images.js +65 -4
  22. package/lib/actions/movie.js +3 -2
  23. package/lib/agents/index.d.ts +3 -1
  24. package/lib/agents/index.js +3 -1
  25. package/lib/agents/lipsync_replicate_agent.d.ts +5 -0
  26. package/lib/agents/lipsync_replicate_agent.js +57 -0
  27. package/lib/agents/movie_replicate_agent.js +17 -5
  28. package/lib/agents/sound_effect_replicate_agent.d.ts +5 -0
  29. package/lib/agents/sound_effect_replicate_agent.js +59 -0
  30. package/lib/data/index.d.ts +2 -0
  31. package/lib/data/index.js +2 -0
  32. package/lib/data/promptTemplates.d.ts +695 -0
  33. package/lib/data/promptTemplates.js +957 -0
  34. package/lib/data/scriptTemplates.d.ts +233 -0
  35. package/lib/data/scriptTemplates.js +580 -0
  36. package/lib/index.browser.d.ts +2 -1
  37. package/lib/index.browser.js +2 -1
  38. package/lib/mcp/server.js +2 -2
  39. package/lib/methods/index.d.ts +1 -0
  40. package/lib/methods/index.js +1 -0
  41. package/lib/methods/mulmo_presentation_style.d.ts +18 -5
  42. package/lib/methods/mulmo_presentation_style.js +31 -20
  43. package/lib/methods/mulmo_script.d.ts +4 -0
  44. package/lib/methods/mulmo_script.js +31 -0
  45. package/lib/tools/story_to_script.js +2 -2
  46. package/lib/types/agent.d.ts +19 -0
  47. package/lib/types/schema.d.ts +628 -246
  48. package/lib/types/schema.js +31 -12
  49. package/lib/types/type.d.ts +2 -3
  50. package/lib/utils/assets.d.ts +18 -0
  51. package/lib/utils/assets.js +101 -0
  52. package/lib/utils/context.d.ts +40 -12
  53. package/lib/utils/context.js +3 -1
  54. package/lib/utils/file.d.ts +12 -4
  55. package/lib/utils/file.js +48 -24
  56. package/lib/utils/preprocess.d.ts +30 -11
  57. package/lib/utils/preprocess.js +7 -5
  58. package/lib/utils/provider2agent.d.ts +30 -1
  59. package/lib/utils/provider2agent.js +86 -0
  60. package/lib/utils/utils.js +6 -0
  61. package/package.json +8 -4
  62. package/scripts/templates/business.json +1 -1
  63. package/scripts/templates/children_book.json +1 -1
  64. package/scripts/templates/coding.json +1 -1
  65. package/scripts/templates/html.json +1 -1
  66. package/scripts/templates/image_prompt_only_template.json +1 -1
  67. package/scripts/templates/image_prompts_template.json +1 -1
  68. package/scripts/templates/image_refs.json +1 -1
  69. package/scripts/templates/movie_prompts_no_text_template.json +1 -1
  70. package/scripts/templates/movie_prompts_template.json +1 -1
  71. package/scripts/templates/presentation.json +1 -1
  72. package/scripts/templates/sensei_and_taro.json +1 -1
  73. package/scripts/templates/shorts_template.json +1 -1
  74. package/scripts/templates/text_only_template.json +1 -1
  75. package/scripts/templates/voice_over.json +1 -1
@@ -52,6 +52,7 @@ export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodEnum<[string,
52
52
  export declare const speakerDataSchema: z.ZodObject<{
53
53
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
54
54
  voiceId: z.ZodString;
55
+ isDefault: z.ZodOptional<z.ZodBoolean>;
55
56
  speechOptions: z.ZodOptional<z.ZodObject<{
56
57
  speed: z.ZodOptional<z.ZodNumber>;
57
58
  instruction: z.ZodOptional<z.ZodString>;
@@ -67,6 +68,7 @@ export declare const speakerDataSchema: z.ZodObject<{
67
68
  }, "strict", z.ZodTypeAny, {
68
69
  voiceId: string;
69
70
  displayName?: Record<string, string> | undefined;
71
+ isDefault?: boolean | undefined;
70
72
  speechOptions?: {
71
73
  speed?: number | undefined;
72
74
  instruction?: string | undefined;
@@ -76,6 +78,7 @@ export declare const speakerDataSchema: z.ZodObject<{
76
78
  }, {
77
79
  voiceId: string;
78
80
  displayName?: Record<string, string> | undefined;
81
+ isDefault?: boolean | undefined;
79
82
  speechOptions?: {
80
83
  speed?: number | undefined;
81
84
  instruction?: string | undefined;
@@ -86,6 +89,7 @@ export declare const speakerDataSchema: z.ZodObject<{
86
89
  export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObject<{
87
90
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
88
91
  voiceId: z.ZodString;
92
+ isDefault: z.ZodOptional<z.ZodBoolean>;
89
93
  speechOptions: z.ZodOptional<z.ZodObject<{
90
94
  speed: z.ZodOptional<z.ZodNumber>;
91
95
  instruction: z.ZodOptional<z.ZodString>;
@@ -101,6 +105,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
101
105
  }, "strict", z.ZodTypeAny, {
102
106
  voiceId: string;
103
107
  displayName?: Record<string, string> | undefined;
108
+ isDefault?: boolean | undefined;
104
109
  speechOptions?: {
105
110
  speed?: number | undefined;
106
111
  instruction?: string | undefined;
@@ -110,6 +115,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
110
115
  }, {
111
116
  voiceId: string;
112
117
  displayName?: Record<string, string> | undefined;
118
+ isDefault?: boolean | undefined;
113
119
  speechOptions?: {
114
120
  speed?: number | undefined;
115
121
  instruction?: string | undefined;
@@ -1289,8 +1295,29 @@ export declare const htmlPromptParamsSchema: z.ZodObject<{
1289
1295
  systemPrompt?: string | undefined;
1290
1296
  }>;
1291
1297
  export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
1298
+ export declare const text2SoundEffectProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
1299
+ export declare const mulmoSoundEffectParamsSchema: z.ZodObject<{
1300
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
1301
+ model: z.ZodOptional<z.ZodString>;
1302
+ }, "strip", z.ZodTypeAny, {
1303
+ provider?: string | undefined;
1304
+ model?: string | undefined;
1305
+ }, {
1306
+ provider?: string | undefined;
1307
+ model?: string | undefined;
1308
+ }>;
1309
+ export declare const mulmoLipSyncParamsSchema: z.ZodObject<{
1310
+ provider: z.ZodOptional<z.ZodString>;
1311
+ model: z.ZodOptional<z.ZodString>;
1312
+ }, "strip", z.ZodTypeAny, {
1313
+ provider?: string | undefined;
1314
+ model?: string | undefined;
1315
+ }, {
1316
+ provider?: string | undefined;
1317
+ model?: string | undefined;
1318
+ }>;
1292
1319
  export declare const mulmoBeatSchema: z.ZodObject<{
1293
- speaker: z.ZodDefault<z.ZodString>;
1320
+ speaker: z.ZodOptional<z.ZodString>;
1294
1321
  text: z.ZodDefault<z.ZodString>;
1295
1322
  id: z.ZodOptional<z.ZodString>;
1296
1323
  description: z.ZodOptional<z.ZodString>;
@@ -1981,6 +2008,26 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1981
2008
  style?: "aspectFit" | "aspectFill" | undefined;
1982
2009
  } | undefined;
1983
2010
  }>>;
2011
+ soundEffectParams: z.ZodOptional<z.ZodObject<{
2012
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
2013
+ model: z.ZodOptional<z.ZodString>;
2014
+ }, "strip", z.ZodTypeAny, {
2015
+ provider?: string | undefined;
2016
+ model?: string | undefined;
2017
+ }, {
2018
+ provider?: string | undefined;
2019
+ model?: string | undefined;
2020
+ }>>;
2021
+ lipSyncParams: z.ZodOptional<z.ZodObject<{
2022
+ provider: z.ZodOptional<z.ZodString>;
2023
+ model: z.ZodOptional<z.ZodString>;
2024
+ }, "strip", z.ZodTypeAny, {
2025
+ provider?: string | undefined;
2026
+ model?: string | undefined;
2027
+ }, {
2028
+ provider?: string | undefined;
2029
+ model?: string | undefined;
2030
+ }>>;
1984
2031
  htmlImageParams: z.ZodOptional<z.ZodObject<{
1985
2032
  model: z.ZodOptional<z.ZodString>;
1986
2033
  }, "strict", z.ZodTypeAny, {
@@ -2018,6 +2065,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2018
2065
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2019
2066
  imagePrompt: z.ZodOptional<z.ZodString>;
2020
2067
  moviePrompt: z.ZodOptional<z.ZodString>;
2068
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
2021
2069
  htmlPrompt: z.ZodOptional<z.ZodObject<{
2022
2070
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
2023
2071
  prompt: z.ZodDefault<z.ZodString>;
@@ -2034,14 +2082,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2034
2082
  images?: Record<string, any> | undefined;
2035
2083
  systemPrompt?: string | undefined;
2036
2084
  }>>;
2085
+ enableLipSync: z.ZodOptional<z.ZodBoolean>;
2037
2086
  }, "strict", z.ZodTypeAny, {
2038
2087
  text: string;
2039
- speaker: string;
2040
- duration?: number | undefined;
2041
- speechOptions?: {
2042
- speed?: number | undefined;
2043
- instruction?: string | undefined;
2044
- } | undefined;
2045
2088
  image?: {
2046
2089
  type: "markdown";
2047
2090
  markdown: string | string[];
@@ -2146,6 +2189,11 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2146
2189
  type: "voice_over";
2147
2190
  startAt?: number | undefined;
2148
2191
  } | undefined;
2192
+ duration?: number | undefined;
2193
+ speechOptions?: {
2194
+ speed?: number | undefined;
2195
+ instruction?: string | undefined;
2196
+ } | undefined;
2149
2197
  id?: string | undefined;
2150
2198
  audio?: {
2151
2199
  type: "audio";
@@ -2167,6 +2215,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2167
2215
  source: string;
2168
2216
  } | undefined;
2169
2217
  imagePrompt?: string | undefined;
2218
+ speaker?: string | undefined;
2170
2219
  description?: string | undefined;
2171
2220
  imageParams?: {
2172
2221
  provider: string;
@@ -2205,6 +2254,14 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2205
2254
  style: "aspectFit" | "aspectFill";
2206
2255
  } | undefined;
2207
2256
  } | undefined;
2257
+ soundEffectParams?: {
2258
+ provider?: string | undefined;
2259
+ model?: string | undefined;
2260
+ } | undefined;
2261
+ lipSyncParams?: {
2262
+ provider?: string | undefined;
2263
+ model?: string | undefined;
2264
+ } | undefined;
2208
2265
  htmlImageParams?: {
2209
2266
  model?: string | undefined;
2210
2267
  } | undefined;
@@ -2217,19 +2274,15 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2217
2274
  } | undefined;
2218
2275
  imageNames?: string[] | undefined;
2219
2276
  moviePrompt?: string | undefined;
2277
+ soundEffectPrompt?: string | undefined;
2220
2278
  htmlPrompt?: {
2221
2279
  prompt: string;
2222
2280
  data?: any;
2223
2281
  images?: Record<string, any> | undefined;
2224
2282
  systemPrompt?: string | undefined;
2225
2283
  } | undefined;
2284
+ enableLipSync?: boolean | undefined;
2226
2285
  }, {
2227
- text?: string | undefined;
2228
- duration?: number | undefined;
2229
- speechOptions?: {
2230
- speed?: number | undefined;
2231
- instruction?: string | undefined;
2232
- } | undefined;
2233
2286
  image?: {
2234
2287
  type: "markdown";
2235
2288
  markdown: string | string[];
@@ -2334,6 +2387,12 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2334
2387
  type: "voice_over";
2335
2388
  startAt?: number | undefined;
2336
2389
  } | undefined;
2390
+ text?: string | undefined;
2391
+ duration?: number | undefined;
2392
+ speechOptions?: {
2393
+ speed?: number | undefined;
2394
+ instruction?: string | undefined;
2395
+ } | undefined;
2337
2396
  id?: string | undefined;
2338
2397
  audio?: {
2339
2398
  type: "audio";
@@ -2394,6 +2453,14 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2394
2453
  style?: "aspectFit" | "aspectFill" | undefined;
2395
2454
  } | undefined;
2396
2455
  } | undefined;
2456
+ soundEffectParams?: {
2457
+ provider?: string | undefined;
2458
+ model?: string | undefined;
2459
+ } | undefined;
2460
+ lipSyncParams?: {
2461
+ provider?: string | undefined;
2462
+ model?: string | undefined;
2463
+ } | undefined;
2397
2464
  htmlImageParams?: {
2398
2465
  model?: string | undefined;
2399
2466
  } | undefined;
@@ -2406,12 +2473,14 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2406
2473
  } | undefined;
2407
2474
  imageNames?: string[] | undefined;
2408
2475
  moviePrompt?: string | undefined;
2476
+ soundEffectPrompt?: string | undefined;
2409
2477
  htmlPrompt?: {
2410
2478
  data?: any;
2411
2479
  prompt?: string | undefined;
2412
2480
  images?: Record<string, any> | undefined;
2413
2481
  systemPrompt?: string | undefined;
2414
2482
  } | undefined;
2483
+ enableLipSync?: boolean | undefined;
2415
2484
  }>;
2416
2485
  export declare const mulmoCanvasDimensionSchema: z.ZodDefault<z.ZodObject<{
2417
2486
  width: z.ZodNumber;
@@ -2424,79 +2493,15 @@ export declare const mulmoCanvasDimensionSchema: z.ZodDefault<z.ZodObject<{
2424
2493
  height: number;
2425
2494
  }>>;
2426
2495
  export declare const mulmoCastCreditSchema: z.ZodObject<{
2427
- version: z.ZodLiteral<"1.0">;
2496
+ version: z.ZodLiteral<"1.1">;
2428
2497
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
2429
2498
  }, "strict", z.ZodTypeAny, {
2430
- version: "1.0";
2499
+ version: "1.1";
2431
2500
  credit?: "closing" | undefined;
2432
2501
  }, {
2433
- version: "1.0";
2502
+ version: "1.1";
2434
2503
  credit?: "closing" | undefined;
2435
2504
  }>;
2436
- export declare const mulmoSpeechParamsSchema: z.ZodObject<{
2437
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2438
- speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
2439
- displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2440
- voiceId: z.ZodString;
2441
- speechOptions: z.ZodOptional<z.ZodObject<{
2442
- speed: z.ZodOptional<z.ZodNumber>;
2443
- instruction: z.ZodOptional<z.ZodString>;
2444
- }, "strict", z.ZodTypeAny, {
2445
- speed?: number | undefined;
2446
- instruction?: string | undefined;
2447
- }, {
2448
- speed?: number | undefined;
2449
- instruction?: string | undefined;
2450
- }>>;
2451
- provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
2452
- model: z.ZodOptional<z.ZodString>;
2453
- }, "strict", z.ZodTypeAny, {
2454
- voiceId: string;
2455
- displayName?: Record<string, string> | undefined;
2456
- speechOptions?: {
2457
- speed?: number | undefined;
2458
- instruction?: string | undefined;
2459
- } | undefined;
2460
- provider?: string | undefined;
2461
- model?: string | undefined;
2462
- }, {
2463
- voiceId: string;
2464
- displayName?: Record<string, string> | undefined;
2465
- speechOptions?: {
2466
- speed?: number | undefined;
2467
- instruction?: string | undefined;
2468
- } | undefined;
2469
- provider?: string | undefined;
2470
- model?: string | undefined;
2471
- }>>;
2472
- model: z.ZodOptional<z.ZodString>;
2473
- }, "strict", z.ZodTypeAny, {
2474
- provider: string;
2475
- speakers: Record<string, {
2476
- voiceId: string;
2477
- displayName?: Record<string, string> | undefined;
2478
- speechOptions?: {
2479
- speed?: number | undefined;
2480
- instruction?: string | undefined;
2481
- } | undefined;
2482
- provider?: string | undefined;
2483
- model?: string | undefined;
2484
- }>;
2485
- model?: string | undefined;
2486
- }, {
2487
- speakers: Record<string, {
2488
- voiceId: string;
2489
- displayName?: Record<string, string> | undefined;
2490
- speechOptions?: {
2491
- speed?: number | undefined;
2492
- instruction?: string | undefined;
2493
- } | undefined;
2494
- provider?: string | undefined;
2495
- model?: string | undefined;
2496
- }>;
2497
- provider?: string | undefined;
2498
- model?: string | undefined;
2499
- }>;
2500
2505
  export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2501
2506
  export declare const mulmoGoogleMovieModelSchema: z.ZodObject<{
2502
2507
  provider: z.ZodLiteral<"google">;
@@ -2571,13 +2576,13 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
2571
2576
  }>;
2572
2577
  export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2573
2578
  $mulmocast: z.ZodObject<{
2574
- version: z.ZodLiteral<"1.0">;
2579
+ version: z.ZodLiteral<"1.1">;
2575
2580
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
2576
2581
  }, "strict", z.ZodTypeAny, {
2577
- version: "1.0";
2582
+ version: "1.1";
2578
2583
  credit?: "closing" | undefined;
2579
2584
  }, {
2580
- version: "1.0";
2585
+ version: "1.1";
2581
2586
  credit?: "closing" | undefined;
2582
2587
  }>;
2583
2588
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -2591,10 +2596,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2591
2596
  height: number;
2592
2597
  }>>;
2593
2598
  speechParams: z.ZodDefault<z.ZodObject<{
2594
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2595
2599
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
2596
2600
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2597
2601
  voiceId: z.ZodString;
2602
+ isDefault: z.ZodOptional<z.ZodBoolean>;
2598
2603
  speechOptions: z.ZodOptional<z.ZodObject<{
2599
2604
  speed: z.ZodOptional<z.ZodNumber>;
2600
2605
  instruction: z.ZodOptional<z.ZodString>;
@@ -2610,6 +2615,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2610
2615
  }, "strict", z.ZodTypeAny, {
2611
2616
  voiceId: string;
2612
2617
  displayName?: Record<string, string> | undefined;
2618
+ isDefault?: boolean | undefined;
2613
2619
  speechOptions?: {
2614
2620
  speed?: number | undefined;
2615
2621
  instruction?: string | undefined;
@@ -2619,6 +2625,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2619
2625
  }, {
2620
2626
  voiceId: string;
2621
2627
  displayName?: Record<string, string> | undefined;
2628
+ isDefault?: boolean | undefined;
2622
2629
  speechOptions?: {
2623
2630
  speed?: number | undefined;
2624
2631
  instruction?: string | undefined;
@@ -2626,12 +2633,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2626
2633
  provider?: string | undefined;
2627
2634
  model?: string | undefined;
2628
2635
  }>>;
2629
- model: z.ZodOptional<z.ZodString>;
2630
- }, "strict", z.ZodTypeAny, {
2631
- provider: string;
2636
+ }, "strip", z.ZodTypeAny, {
2632
2637
  speakers: Record<string, {
2633
2638
  voiceId: string;
2634
2639
  displayName?: Record<string, string> | undefined;
2640
+ isDefault?: boolean | undefined;
2635
2641
  speechOptions?: {
2636
2642
  speed?: number | undefined;
2637
2643
  instruction?: string | undefined;
@@ -2639,11 +2645,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2639
2645
  provider?: string | undefined;
2640
2646
  model?: string | undefined;
2641
2647
  }>;
2642
- model?: string | undefined;
2643
2648
  }, {
2644
2649
  speakers: Record<string, {
2645
2650
  voiceId: string;
2646
2651
  displayName?: Record<string, string> | undefined;
2652
+ isDefault?: boolean | undefined;
2647
2653
  speechOptions?: {
2648
2654
  speed?: number | undefined;
2649
2655
  instruction?: string | undefined;
@@ -2651,8 +2657,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2651
2657
  provider?: string | undefined;
2652
2658
  model?: string | undefined;
2653
2659
  }>;
2654
- provider?: string | undefined;
2655
- model?: string | undefined;
2656
2660
  }>>;
2657
2661
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2658
2662
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -2828,6 +2832,26 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2828
2832
  duration?: number | undefined;
2829
2833
  } | undefined;
2830
2834
  }>>>;
2835
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2836
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
2837
+ model: z.ZodOptional<z.ZodString>;
2838
+ }, "strip", z.ZodTypeAny, {
2839
+ provider?: string | undefined;
2840
+ model?: string | undefined;
2841
+ }, {
2842
+ provider?: string | undefined;
2843
+ model?: string | undefined;
2844
+ }>>>;
2845
+ lipSyncParams: z.ZodOptional<z.ZodObject<{
2846
+ provider: z.ZodOptional<z.ZodString>;
2847
+ model: z.ZodOptional<z.ZodString>;
2848
+ }, "strip", z.ZodTypeAny, {
2849
+ provider?: string | undefined;
2850
+ model?: string | undefined;
2851
+ }, {
2852
+ provider?: string | undefined;
2853
+ model?: string | undefined;
2854
+ }>>;
2831
2855
  htmlImageParams: z.ZodOptional<z.ZodObject<{
2832
2856
  model: z.ZodOptional<z.ZodString>;
2833
2857
  } & {
@@ -3003,8 +3027,12 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3003
3027
  duration: number;
3004
3028
  } | undefined;
3005
3029
  };
3030
+ soundEffectParams: {
3031
+ provider?: string | undefined;
3032
+ model?: string | undefined;
3033
+ };
3006
3034
  $mulmocast: {
3007
- version: "1.0";
3035
+ version: "1.1";
3008
3036
  credit?: "closing" | undefined;
3009
3037
  };
3010
3038
  canvasSize: {
@@ -3012,10 +3040,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3012
3040
  height: number;
3013
3041
  };
3014
3042
  speechParams: {
3015
- provider: string;
3016
3043
  speakers: Record<string, {
3017
3044
  voiceId: string;
3018
3045
  displayName?: Record<string, string> | undefined;
3046
+ isDefault?: boolean | undefined;
3019
3047
  speechOptions?: {
3020
3048
  speed?: number | undefined;
3021
3049
  instruction?: string | undefined;
@@ -3023,8 +3051,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3023
3051
  provider?: string | undefined;
3024
3052
  model?: string | undefined;
3025
3053
  }>;
3026
- model?: string | undefined;
3027
3054
  };
3055
+ lipSyncParams?: {
3056
+ provider?: string | undefined;
3057
+ model?: string | undefined;
3058
+ } | undefined;
3028
3059
  htmlImageParams?: {
3029
3060
  provider: string;
3030
3061
  model?: string | undefined;
@@ -3038,7 +3069,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3038
3069
  } | undefined;
3039
3070
  }, {
3040
3071
  $mulmocast: {
3041
- version: "1.0";
3072
+ version: "1.1";
3042
3073
  credit?: "closing" | undefined;
3043
3074
  };
3044
3075
  imageParams?: {
@@ -3099,6 +3130,14 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3099
3130
  duration?: number | undefined;
3100
3131
  } | undefined;
3101
3132
  } | undefined;
3133
+ soundEffectParams?: {
3134
+ provider?: string | undefined;
3135
+ model?: string | undefined;
3136
+ } | undefined;
3137
+ lipSyncParams?: {
3138
+ provider?: string | undefined;
3139
+ model?: string | undefined;
3140
+ } | undefined;
3102
3141
  htmlImageParams?: {
3103
3142
  provider?: string | undefined;
3104
3143
  model?: string | undefined;
@@ -3118,6 +3157,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3118
3157
  speakers: Record<string, {
3119
3158
  voiceId: string;
3120
3159
  displayName?: Record<string, string> | undefined;
3160
+ isDefault?: boolean | undefined;
3121
3161
  speechOptions?: {
3122
3162
  speed?: number | undefined;
3123
3163
  instruction?: string | undefined;
@@ -3125,8 +3165,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3125
3165
  provider?: string | undefined;
3126
3166
  model?: string | undefined;
3127
3167
  }>;
3128
- provider?: string | undefined;
3129
- model?: string | undefined;
3130
3168
  } | undefined;
3131
3169
  }>;
3132
3170
  export declare const mulmoReferenceSchema: z.ZodObject<{
@@ -3147,13 +3185,13 @@ export declare const mulmoReferenceSchema: z.ZodObject<{
3147
3185
  }>;
3148
3186
  export declare const mulmoScriptSchema: z.ZodObject<{
3149
3187
  $mulmocast: z.ZodObject<{
3150
- version: z.ZodLiteral<"1.0">;
3188
+ version: z.ZodLiteral<"1.1">;
3151
3189
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
3152
3190
  }, "strict", z.ZodTypeAny, {
3153
- version: "1.0";
3191
+ version: "1.1";
3154
3192
  credit?: "closing" | undefined;
3155
3193
  }, {
3156
- version: "1.0";
3194
+ version: "1.1";
3157
3195
  credit?: "closing" | undefined;
3158
3196
  }>;
3159
3197
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -3167,10 +3205,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3167
3205
  height: number;
3168
3206
  }>>;
3169
3207
  speechParams: z.ZodDefault<z.ZodObject<{
3170
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
3171
3208
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
3172
3209
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3173
3210
  voiceId: z.ZodString;
3211
+ isDefault: z.ZodOptional<z.ZodBoolean>;
3174
3212
  speechOptions: z.ZodOptional<z.ZodObject<{
3175
3213
  speed: z.ZodOptional<z.ZodNumber>;
3176
3214
  instruction: z.ZodOptional<z.ZodString>;
@@ -3186,6 +3224,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3186
3224
  }, "strict", z.ZodTypeAny, {
3187
3225
  voiceId: string;
3188
3226
  displayName?: Record<string, string> | undefined;
3227
+ isDefault?: boolean | undefined;
3189
3228
  speechOptions?: {
3190
3229
  speed?: number | undefined;
3191
3230
  instruction?: string | undefined;
@@ -3195,6 +3234,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3195
3234
  }, {
3196
3235
  voiceId: string;
3197
3236
  displayName?: Record<string, string> | undefined;
3237
+ isDefault?: boolean | undefined;
3198
3238
  speechOptions?: {
3199
3239
  speed?: number | undefined;
3200
3240
  instruction?: string | undefined;
@@ -3202,12 +3242,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3202
3242
  provider?: string | undefined;
3203
3243
  model?: string | undefined;
3204
3244
  }>>;
3205
- model: z.ZodOptional<z.ZodString>;
3206
- }, "strict", z.ZodTypeAny, {
3207
- provider: string;
3245
+ }, "strip", z.ZodTypeAny, {
3208
3246
  speakers: Record<string, {
3209
3247
  voiceId: string;
3210
3248
  displayName?: Record<string, string> | undefined;
3249
+ isDefault?: boolean | undefined;
3211
3250
  speechOptions?: {
3212
3251
  speed?: number | undefined;
3213
3252
  instruction?: string | undefined;
@@ -3215,11 +3254,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3215
3254
  provider?: string | undefined;
3216
3255
  model?: string | undefined;
3217
3256
  }>;
3218
- model?: string | undefined;
3219
3257
  }, {
3220
3258
  speakers: Record<string, {
3221
3259
  voiceId: string;
3222
3260
  displayName?: Record<string, string> | undefined;
3261
+ isDefault?: boolean | undefined;
3223
3262
  speechOptions?: {
3224
3263
  speed?: number | undefined;
3225
3264
  instruction?: string | undefined;
@@ -3227,8 +3266,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3227
3266
  provider?: string | undefined;
3228
3267
  model?: string | undefined;
3229
3268
  }>;
3230
- provider?: string | undefined;
3231
- model?: string | undefined;
3232
3269
  }>>;
3233
3270
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3234
3271
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -3404,6 +3441,26 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3404
3441
  duration?: number | undefined;
3405
3442
  } | undefined;
3406
3443
  }>>>;
3444
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3445
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
3446
+ model: z.ZodOptional<z.ZodString>;
3447
+ }, "strip", z.ZodTypeAny, {
3448
+ provider?: string | undefined;
3449
+ model?: string | undefined;
3450
+ }, {
3451
+ provider?: string | undefined;
3452
+ model?: string | undefined;
3453
+ }>>>;
3454
+ lipSyncParams: z.ZodOptional<z.ZodObject<{
3455
+ provider: z.ZodOptional<z.ZodString>;
3456
+ model: z.ZodOptional<z.ZodString>;
3457
+ }, "strip", z.ZodTypeAny, {
3458
+ provider?: string | undefined;
3459
+ model?: string | undefined;
3460
+ }, {
3461
+ provider?: string | undefined;
3462
+ model?: string | undefined;
3463
+ }>>;
3407
3464
  htmlImageParams: z.ZodOptional<z.ZodObject<{
3408
3465
  model: z.ZodOptional<z.ZodString>;
3409
3466
  } & {
@@ -3541,7 +3598,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3541
3598
  }>, "many">>;
3542
3599
  lang: z.ZodOptional<z.ZodString>;
3543
3600
  beats: z.ZodArray<z.ZodObject<{
3544
- speaker: z.ZodDefault<z.ZodString>;
3601
+ speaker: z.ZodOptional<z.ZodString>;
3545
3602
  text: z.ZodDefault<z.ZodString>;
3546
3603
  id: z.ZodOptional<z.ZodString>;
3547
3604
  description: z.ZodOptional<z.ZodString>;
@@ -4232,6 +4289,26 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4232
4289
  style?: "aspectFit" | "aspectFill" | undefined;
4233
4290
  } | undefined;
4234
4291
  }>>;
4292
+ soundEffectParams: z.ZodOptional<z.ZodObject<{
4293
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
4294
+ model: z.ZodOptional<z.ZodString>;
4295
+ }, "strip", z.ZodTypeAny, {
4296
+ provider?: string | undefined;
4297
+ model?: string | undefined;
4298
+ }, {
4299
+ provider?: string | undefined;
4300
+ model?: string | undefined;
4301
+ }>>;
4302
+ lipSyncParams: z.ZodOptional<z.ZodObject<{
4303
+ provider: z.ZodOptional<z.ZodString>;
4304
+ model: z.ZodOptional<z.ZodString>;
4305
+ }, "strip", z.ZodTypeAny, {
4306
+ provider?: string | undefined;
4307
+ model?: string | undefined;
4308
+ }, {
4309
+ provider?: string | undefined;
4310
+ model?: string | undefined;
4311
+ }>>;
4235
4312
  htmlImageParams: z.ZodOptional<z.ZodObject<{
4236
4313
  model: z.ZodOptional<z.ZodString>;
4237
4314
  }, "strict", z.ZodTypeAny, {
@@ -4269,6 +4346,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4269
4346
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4270
4347
  imagePrompt: z.ZodOptional<z.ZodString>;
4271
4348
  moviePrompt: z.ZodOptional<z.ZodString>;
4349
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
4272
4350
  htmlPrompt: z.ZodOptional<z.ZodObject<{
4273
4351
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
4274
4352
  prompt: z.ZodDefault<z.ZodString>;
@@ -4285,14 +4363,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4285
4363
  images?: Record<string, any> | undefined;
4286
4364
  systemPrompt?: string | undefined;
4287
4365
  }>>;
4366
+ enableLipSync: z.ZodOptional<z.ZodBoolean>;
4288
4367
  }, "strict", z.ZodTypeAny, {
4289
4368
  text: string;
4290
- speaker: string;
4291
- duration?: number | undefined;
4292
- speechOptions?: {
4293
- speed?: number | undefined;
4294
- instruction?: string | undefined;
4295
- } | undefined;
4296
4369
  image?: {
4297
4370
  type: "markdown";
4298
4371
  markdown: string | string[];
@@ -4397,6 +4470,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4397
4470
  type: "voice_over";
4398
4471
  startAt?: number | undefined;
4399
4472
  } | undefined;
4473
+ duration?: number | undefined;
4474
+ speechOptions?: {
4475
+ speed?: number | undefined;
4476
+ instruction?: string | undefined;
4477
+ } | undefined;
4400
4478
  id?: string | undefined;
4401
4479
  audio?: {
4402
4480
  type: "audio";
@@ -4418,6 +4496,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4418
4496
  source: string;
4419
4497
  } | undefined;
4420
4498
  imagePrompt?: string | undefined;
4499
+ speaker?: string | undefined;
4421
4500
  description?: string | undefined;
4422
4501
  imageParams?: {
4423
4502
  provider: string;
@@ -4456,6 +4535,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4456
4535
  style: "aspectFit" | "aspectFill";
4457
4536
  } | undefined;
4458
4537
  } | undefined;
4538
+ soundEffectParams?: {
4539
+ provider?: string | undefined;
4540
+ model?: string | undefined;
4541
+ } | undefined;
4542
+ lipSyncParams?: {
4543
+ provider?: string | undefined;
4544
+ model?: string | undefined;
4545
+ } | undefined;
4459
4546
  htmlImageParams?: {
4460
4547
  model?: string | undefined;
4461
4548
  } | undefined;
@@ -4468,19 +4555,15 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4468
4555
  } | undefined;
4469
4556
  imageNames?: string[] | undefined;
4470
4557
  moviePrompt?: string | undefined;
4558
+ soundEffectPrompt?: string | undefined;
4471
4559
  htmlPrompt?: {
4472
4560
  prompt: string;
4473
4561
  data?: any;
4474
4562
  images?: Record<string, any> | undefined;
4475
4563
  systemPrompt?: string | undefined;
4476
4564
  } | undefined;
4565
+ enableLipSync?: boolean | undefined;
4477
4566
  }, {
4478
- text?: string | undefined;
4479
- duration?: number | undefined;
4480
- speechOptions?: {
4481
- speed?: number | undefined;
4482
- instruction?: string | undefined;
4483
- } | undefined;
4484
4567
  image?: {
4485
4568
  type: "markdown";
4486
4569
  markdown: string | string[];
@@ -4585,6 +4668,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4585
4668
  type: "voice_over";
4586
4669
  startAt?: number | undefined;
4587
4670
  } | undefined;
4671
+ text?: string | undefined;
4672
+ duration?: number | undefined;
4673
+ speechOptions?: {
4674
+ speed?: number | undefined;
4675
+ instruction?: string | undefined;
4676
+ } | undefined;
4588
4677
  id?: string | undefined;
4589
4678
  audio?: {
4590
4679
  type: "audio";
@@ -4645,6 +4734,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4645
4734
  style?: "aspectFit" | "aspectFill" | undefined;
4646
4735
  } | undefined;
4647
4736
  } | undefined;
4737
+ soundEffectParams?: {
4738
+ provider?: string | undefined;
4739
+ model?: string | undefined;
4740
+ } | undefined;
4741
+ lipSyncParams?: {
4742
+ provider?: string | undefined;
4743
+ model?: string | undefined;
4744
+ } | undefined;
4648
4745
  htmlImageParams?: {
4649
4746
  model?: string | undefined;
4650
4747
  } | undefined;
@@ -4657,12 +4754,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4657
4754
  } | undefined;
4658
4755
  imageNames?: string[] | undefined;
4659
4756
  moviePrompt?: string | undefined;
4757
+ soundEffectPrompt?: string | undefined;
4660
4758
  htmlPrompt?: {
4661
4759
  data?: any;
4662
4760
  prompt?: string | undefined;
4663
4761
  images?: Record<string, any> | undefined;
4664
4762
  systemPrompt?: string | undefined;
4665
4763
  } | undefined;
4764
+ enableLipSync?: boolean | undefined;
4666
4765
  }>, "many">;
4667
4766
  imagePath: z.ZodOptional<z.ZodString>;
4668
4767
  __test_invalid__: z.ZodOptional<z.ZodBoolean>;
@@ -4725,8 +4824,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4725
4824
  duration: number;
4726
4825
  } | undefined;
4727
4826
  };
4827
+ soundEffectParams: {
4828
+ provider?: string | undefined;
4829
+ model?: string | undefined;
4830
+ };
4728
4831
  $mulmocast: {
4729
- version: "1.0";
4832
+ version: "1.1";
4730
4833
  credit?: "closing" | undefined;
4731
4834
  };
4732
4835
  canvasSize: {
@@ -4734,10 +4837,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4734
4837
  height: number;
4735
4838
  };
4736
4839
  speechParams: {
4737
- provider: string;
4738
4840
  speakers: Record<string, {
4739
4841
  voiceId: string;
4740
4842
  displayName?: Record<string, string> | undefined;
4843
+ isDefault?: boolean | undefined;
4741
4844
  speechOptions?: {
4742
4845
  speed?: number | undefined;
4743
4846
  instruction?: string | undefined;
@@ -4745,16 +4848,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4745
4848
  provider?: string | undefined;
4746
4849
  model?: string | undefined;
4747
4850
  }>;
4748
- model?: string | undefined;
4749
4851
  };
4750
4852
  beats: {
4751
4853
  text: string;
4752
- speaker: string;
4753
- duration?: number | undefined;
4754
- speechOptions?: {
4755
- speed?: number | undefined;
4756
- instruction?: string | undefined;
4757
- } | undefined;
4758
4854
  image?: {
4759
4855
  type: "markdown";
4760
4856
  markdown: string | string[];
@@ -4859,6 +4955,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4859
4955
  type: "voice_over";
4860
4956
  startAt?: number | undefined;
4861
4957
  } | undefined;
4958
+ duration?: number | undefined;
4959
+ speechOptions?: {
4960
+ speed?: number | undefined;
4961
+ instruction?: string | undefined;
4962
+ } | undefined;
4862
4963
  id?: string | undefined;
4863
4964
  audio?: {
4864
4965
  type: "audio";
@@ -4880,6 +4981,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4880
4981
  source: string;
4881
4982
  } | undefined;
4882
4983
  imagePrompt?: string | undefined;
4984
+ speaker?: string | undefined;
4883
4985
  description?: string | undefined;
4884
4986
  imageParams?: {
4885
4987
  provider: string;
@@ -4918,10 +5020,18 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4918
5020
  style: "aspectFit" | "aspectFill";
4919
5021
  } | undefined;
4920
5022
  } | undefined;
4921
- htmlImageParams?: {
5023
+ soundEffectParams?: {
5024
+ provider?: string | undefined;
4922
5025
  model?: string | undefined;
4923
5026
  } | undefined;
4924
- textSlideParams?: {
5027
+ lipSyncParams?: {
5028
+ provider?: string | undefined;
5029
+ model?: string | undefined;
5030
+ } | undefined;
5031
+ htmlImageParams?: {
5032
+ model?: string | undefined;
5033
+ } | undefined;
5034
+ textSlideParams?: {
4925
5035
  cssStyles: string | string[];
4926
5036
  } | undefined;
4927
5037
  captionParams?: {
@@ -4930,16 +5040,22 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4930
5040
  } | undefined;
4931
5041
  imageNames?: string[] | undefined;
4932
5042
  moviePrompt?: string | undefined;
5043
+ soundEffectPrompt?: string | undefined;
4933
5044
  htmlPrompt?: {
4934
5045
  prompt: string;
4935
5046
  data?: any;
4936
5047
  images?: Record<string, any> | undefined;
4937
5048
  systemPrompt?: string | undefined;
4938
5049
  } | undefined;
5050
+ enableLipSync?: boolean | undefined;
4939
5051
  }[];
4940
5052
  lang?: string | undefined;
4941
5053
  title?: string | undefined;
4942
5054
  description?: string | undefined;
5055
+ lipSyncParams?: {
5056
+ provider?: string | undefined;
5057
+ model?: string | undefined;
5058
+ } | undefined;
4943
5059
  htmlImageParams?: {
4944
5060
  provider: string;
4945
5061
  model?: string | undefined;
@@ -4961,16 +5077,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4961
5077
  __test_invalid__?: boolean | undefined;
4962
5078
  }, {
4963
5079
  $mulmocast: {
4964
- version: "1.0";
5080
+ version: "1.1";
4965
5081
  credit?: "closing" | undefined;
4966
5082
  };
4967
5083
  beats: {
4968
- text?: string | undefined;
4969
- duration?: number | undefined;
4970
- speechOptions?: {
4971
- speed?: number | undefined;
4972
- instruction?: string | undefined;
4973
- } | undefined;
4974
5084
  image?: {
4975
5085
  type: "markdown";
4976
5086
  markdown: string | string[];
@@ -5075,6 +5185,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5075
5185
  type: "voice_over";
5076
5186
  startAt?: number | undefined;
5077
5187
  } | undefined;
5188
+ text?: string | undefined;
5189
+ duration?: number | undefined;
5190
+ speechOptions?: {
5191
+ speed?: number | undefined;
5192
+ instruction?: string | undefined;
5193
+ } | undefined;
5078
5194
  id?: string | undefined;
5079
5195
  audio?: {
5080
5196
  type: "audio";
@@ -5135,6 +5251,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5135
5251
  style?: "aspectFit" | "aspectFill" | undefined;
5136
5252
  } | undefined;
5137
5253
  } | undefined;
5254
+ soundEffectParams?: {
5255
+ provider?: string | undefined;
5256
+ model?: string | undefined;
5257
+ } | undefined;
5258
+ lipSyncParams?: {
5259
+ provider?: string | undefined;
5260
+ model?: string | undefined;
5261
+ } | undefined;
5138
5262
  htmlImageParams?: {
5139
5263
  model?: string | undefined;
5140
5264
  } | undefined;
@@ -5147,12 +5271,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5147
5271
  } | undefined;
5148
5272
  imageNames?: string[] | undefined;
5149
5273
  moviePrompt?: string | undefined;
5274
+ soundEffectPrompt?: string | undefined;
5150
5275
  htmlPrompt?: {
5151
5276
  data?: any;
5152
5277
  prompt?: string | undefined;
5153
5278
  images?: Record<string, any> | undefined;
5154
5279
  systemPrompt?: string | undefined;
5155
5280
  } | undefined;
5281
+ enableLipSync?: boolean | undefined;
5156
5282
  }[];
5157
5283
  lang?: string | undefined;
5158
5284
  title?: string | undefined;
@@ -5215,6 +5341,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5215
5341
  duration?: number | undefined;
5216
5342
  } | undefined;
5217
5343
  } | undefined;
5344
+ soundEffectParams?: {
5345
+ provider?: string | undefined;
5346
+ model?: string | undefined;
5347
+ } | undefined;
5348
+ lipSyncParams?: {
5349
+ provider?: string | undefined;
5350
+ model?: string | undefined;
5351
+ } | undefined;
5218
5352
  htmlImageParams?: {
5219
5353
  provider?: string | undefined;
5220
5354
  model?: string | undefined;
@@ -5234,6 +5368,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5234
5368
  speakers: Record<string, {
5235
5369
  voiceId: string;
5236
5370
  displayName?: Record<string, string> | undefined;
5371
+ isDefault?: boolean | undefined;
5237
5372
  speechOptions?: {
5238
5373
  speed?: number | undefined;
5239
5374
  instruction?: string | undefined;
@@ -5241,8 +5376,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5241
5376
  provider?: string | undefined;
5242
5377
  model?: string | undefined;
5243
5378
  }>;
5244
- provider?: string | undefined;
5245
- model?: string | undefined;
5246
5379
  } | undefined;
5247
5380
  references?: {
5248
5381
  url: string;
@@ -5264,6 +5397,8 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5264
5397
  audioFile: z.ZodOptional<z.ZodString>;
5265
5398
  imageFile: z.ZodOptional<z.ZodString>;
5266
5399
  movieFile: z.ZodOptional<z.ZodString>;
5400
+ soundEffectFile: z.ZodOptional<z.ZodString>;
5401
+ lipSyncFile: z.ZodOptional<z.ZodString>;
5267
5402
  captionFile: z.ZodOptional<z.ZodString>;
5268
5403
  }, "strict", z.ZodTypeAny, {
5269
5404
  duration?: number | undefined;
@@ -5276,6 +5411,8 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5276
5411
  audioFile?: string | undefined;
5277
5412
  imageFile?: string | undefined;
5278
5413
  movieFile?: string | undefined;
5414
+ soundEffectFile?: string | undefined;
5415
+ lipSyncFile?: string | undefined;
5279
5416
  captionFile?: string | undefined;
5280
5417
  }, {
5281
5418
  duration?: number | undefined;
@@ -5288,6 +5425,8 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5288
5425
  audioFile?: string | undefined;
5289
5426
  imageFile?: string | undefined;
5290
5427
  movieFile?: string | undefined;
5428
+ soundEffectFile?: string | undefined;
5429
+ lipSyncFile?: string | undefined;
5291
5430
  captionFile?: string | undefined;
5292
5431
  }>;
5293
5432
  export declare const mulmoStudioMultiLingualDataSchema: z.ZodObject<{
@@ -5373,15 +5512,15 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5373
5512
  caption: z.ZodBoolean;
5374
5513
  pdf: z.ZodBoolean;
5375
5514
  }, "strip", z.ZodTypeAny, {
5376
- pdf: boolean;
5377
5515
  image: boolean;
5516
+ pdf: boolean;
5378
5517
  audio: boolean;
5379
5518
  video: boolean;
5380
5519
  multiLingual: boolean;
5381
5520
  caption: boolean;
5382
5521
  }, {
5383
- pdf: boolean;
5384
5522
  image: boolean;
5523
+ pdf: boolean;
5385
5524
  audio: boolean;
5386
5525
  video: boolean;
5387
5526
  multiLingual: boolean;
@@ -5395,6 +5534,8 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5395
5534
  caption: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5396
5535
  html: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5397
5536
  imageReference: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5537
+ soundEffect: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5538
+ lipSync: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5398
5539
  }, "strip", z.ZodTypeAny, {
5399
5540
  image: Record<number, boolean>;
5400
5541
  movie: Record<number, boolean>;
@@ -5403,6 +5544,8 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5403
5544
  multiLingual: Record<number, boolean>;
5404
5545
  caption: Record<number, boolean>;
5405
5546
  imageReference: Record<number, boolean>;
5547
+ soundEffect: Record<number, boolean>;
5548
+ lipSync: Record<number, boolean>;
5406
5549
  }, {
5407
5550
  image: Record<number, boolean>;
5408
5551
  movie: Record<number, boolean>;
@@ -5411,11 +5554,13 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5411
5554
  multiLingual: Record<number, boolean>;
5412
5555
  caption: Record<number, boolean>;
5413
5556
  imageReference: Record<number, boolean>;
5557
+ soundEffect: Record<number, boolean>;
5558
+ lipSync: Record<number, boolean>;
5414
5559
  }>;
5415
5560
  }, "strip", z.ZodTypeAny, {
5416
5561
  inSession: {
5417
- pdf: boolean;
5418
5562
  image: boolean;
5563
+ pdf: boolean;
5419
5564
  audio: boolean;
5420
5565
  video: boolean;
5421
5566
  multiLingual: boolean;
@@ -5429,11 +5574,13 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5429
5574
  multiLingual: Record<number, boolean>;
5430
5575
  caption: Record<number, boolean>;
5431
5576
  imageReference: Record<number, boolean>;
5577
+ soundEffect: Record<number, boolean>;
5578
+ lipSync: Record<number, boolean>;
5432
5579
  };
5433
5580
  }, {
5434
5581
  inSession: {
5435
- pdf: boolean;
5436
5582
  image: boolean;
5583
+ pdf: boolean;
5437
5584
  audio: boolean;
5438
5585
  video: boolean;
5439
5586
  multiLingual: boolean;
@@ -5447,18 +5594,20 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5447
5594
  multiLingual: Record<number, boolean>;
5448
5595
  caption: Record<number, boolean>;
5449
5596
  imageReference: Record<number, boolean>;
5597
+ soundEffect: Record<number, boolean>;
5598
+ lipSync: Record<number, boolean>;
5450
5599
  };
5451
5600
  }>;
5452
5601
  export declare const mulmoStudioSchema: z.ZodObject<{
5453
5602
  script: z.ZodObject<{
5454
5603
  $mulmocast: z.ZodObject<{
5455
- version: z.ZodLiteral<"1.0">;
5604
+ version: z.ZodLiteral<"1.1">;
5456
5605
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
5457
5606
  }, "strict", z.ZodTypeAny, {
5458
- version: "1.0";
5607
+ version: "1.1";
5459
5608
  credit?: "closing" | undefined;
5460
5609
  }, {
5461
- version: "1.0";
5610
+ version: "1.1";
5462
5611
  credit?: "closing" | undefined;
5463
5612
  }>;
5464
5613
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -5472,10 +5621,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5472
5621
  height: number;
5473
5622
  }>>;
5474
5623
  speechParams: z.ZodDefault<z.ZodObject<{
5475
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
5476
5624
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
5477
5625
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5478
5626
  voiceId: z.ZodString;
5627
+ isDefault: z.ZodOptional<z.ZodBoolean>;
5479
5628
  speechOptions: z.ZodOptional<z.ZodObject<{
5480
5629
  speed: z.ZodOptional<z.ZodNumber>;
5481
5630
  instruction: z.ZodOptional<z.ZodString>;
@@ -5491,6 +5640,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5491
5640
  }, "strict", z.ZodTypeAny, {
5492
5641
  voiceId: string;
5493
5642
  displayName?: Record<string, string> | undefined;
5643
+ isDefault?: boolean | undefined;
5494
5644
  speechOptions?: {
5495
5645
  speed?: number | undefined;
5496
5646
  instruction?: string | undefined;
@@ -5500,6 +5650,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5500
5650
  }, {
5501
5651
  voiceId: string;
5502
5652
  displayName?: Record<string, string> | undefined;
5653
+ isDefault?: boolean | undefined;
5503
5654
  speechOptions?: {
5504
5655
  speed?: number | undefined;
5505
5656
  instruction?: string | undefined;
@@ -5507,12 +5658,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5507
5658
  provider?: string | undefined;
5508
5659
  model?: string | undefined;
5509
5660
  }>>;
5510
- model: z.ZodOptional<z.ZodString>;
5511
- }, "strict", z.ZodTypeAny, {
5512
- provider: string;
5661
+ }, "strip", z.ZodTypeAny, {
5513
5662
  speakers: Record<string, {
5514
5663
  voiceId: string;
5515
5664
  displayName?: Record<string, string> | undefined;
5665
+ isDefault?: boolean | undefined;
5516
5666
  speechOptions?: {
5517
5667
  speed?: number | undefined;
5518
5668
  instruction?: string | undefined;
@@ -5520,11 +5670,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5520
5670
  provider?: string | undefined;
5521
5671
  model?: string | undefined;
5522
5672
  }>;
5523
- model?: string | undefined;
5524
5673
  }, {
5525
5674
  speakers: Record<string, {
5526
5675
  voiceId: string;
5527
5676
  displayName?: Record<string, string> | undefined;
5677
+ isDefault?: boolean | undefined;
5528
5678
  speechOptions?: {
5529
5679
  speed?: number | undefined;
5530
5680
  instruction?: string | undefined;
@@ -5532,8 +5682,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5532
5682
  provider?: string | undefined;
5533
5683
  model?: string | undefined;
5534
5684
  }>;
5535
- provider?: string | undefined;
5536
- model?: string | undefined;
5537
5685
  }>>;
5538
5686
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5539
5687
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -5709,6 +5857,26 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5709
5857
  duration?: number | undefined;
5710
5858
  } | undefined;
5711
5859
  }>>>;
5860
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5861
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
5862
+ model: z.ZodOptional<z.ZodString>;
5863
+ }, "strip", z.ZodTypeAny, {
5864
+ provider?: string | undefined;
5865
+ model?: string | undefined;
5866
+ }, {
5867
+ provider?: string | undefined;
5868
+ model?: string | undefined;
5869
+ }>>>;
5870
+ lipSyncParams: z.ZodOptional<z.ZodObject<{
5871
+ provider: z.ZodOptional<z.ZodString>;
5872
+ model: z.ZodOptional<z.ZodString>;
5873
+ }, "strip", z.ZodTypeAny, {
5874
+ provider?: string | undefined;
5875
+ model?: string | undefined;
5876
+ }, {
5877
+ provider?: string | undefined;
5878
+ model?: string | undefined;
5879
+ }>>;
5712
5880
  htmlImageParams: z.ZodOptional<z.ZodObject<{
5713
5881
  model: z.ZodOptional<z.ZodString>;
5714
5882
  } & {
@@ -5846,7 +6014,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5846
6014
  }>, "many">>;
5847
6015
  lang: z.ZodOptional<z.ZodString>;
5848
6016
  beats: z.ZodArray<z.ZodObject<{
5849
- speaker: z.ZodDefault<z.ZodString>;
6017
+ speaker: z.ZodOptional<z.ZodString>;
5850
6018
  text: z.ZodDefault<z.ZodString>;
5851
6019
  id: z.ZodOptional<z.ZodString>;
5852
6020
  description: z.ZodOptional<z.ZodString>;
@@ -6537,6 +6705,26 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6537
6705
  style?: "aspectFit" | "aspectFill" | undefined;
6538
6706
  } | undefined;
6539
6707
  }>>;
6708
+ soundEffectParams: z.ZodOptional<z.ZodObject<{
6709
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
6710
+ model: z.ZodOptional<z.ZodString>;
6711
+ }, "strip", z.ZodTypeAny, {
6712
+ provider?: string | undefined;
6713
+ model?: string | undefined;
6714
+ }, {
6715
+ provider?: string | undefined;
6716
+ model?: string | undefined;
6717
+ }>>;
6718
+ lipSyncParams: z.ZodOptional<z.ZodObject<{
6719
+ provider: z.ZodOptional<z.ZodString>;
6720
+ model: z.ZodOptional<z.ZodString>;
6721
+ }, "strip", z.ZodTypeAny, {
6722
+ provider?: string | undefined;
6723
+ model?: string | undefined;
6724
+ }, {
6725
+ provider?: string | undefined;
6726
+ model?: string | undefined;
6727
+ }>>;
6540
6728
  htmlImageParams: z.ZodOptional<z.ZodObject<{
6541
6729
  model: z.ZodOptional<z.ZodString>;
6542
6730
  }, "strict", z.ZodTypeAny, {
@@ -6574,6 +6762,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6574
6762
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6575
6763
  imagePrompt: z.ZodOptional<z.ZodString>;
6576
6764
  moviePrompt: z.ZodOptional<z.ZodString>;
6765
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
6577
6766
  htmlPrompt: z.ZodOptional<z.ZodObject<{
6578
6767
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
6579
6768
  prompt: z.ZodDefault<z.ZodString>;
@@ -6590,14 +6779,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6590
6779
  images?: Record<string, any> | undefined;
6591
6780
  systemPrompt?: string | undefined;
6592
6781
  }>>;
6782
+ enableLipSync: z.ZodOptional<z.ZodBoolean>;
6593
6783
  }, "strict", z.ZodTypeAny, {
6594
6784
  text: string;
6595
- speaker: string;
6596
- duration?: number | undefined;
6597
- speechOptions?: {
6598
- speed?: number | undefined;
6599
- instruction?: string | undefined;
6600
- } | undefined;
6601
6785
  image?: {
6602
6786
  type: "markdown";
6603
6787
  markdown: string | string[];
@@ -6702,6 +6886,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6702
6886
  type: "voice_over";
6703
6887
  startAt?: number | undefined;
6704
6888
  } | undefined;
6889
+ duration?: number | undefined;
6890
+ speechOptions?: {
6891
+ speed?: number | undefined;
6892
+ instruction?: string | undefined;
6893
+ } | undefined;
6705
6894
  id?: string | undefined;
6706
6895
  audio?: {
6707
6896
  type: "audio";
@@ -6723,6 +6912,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6723
6912
  source: string;
6724
6913
  } | undefined;
6725
6914
  imagePrompt?: string | undefined;
6915
+ speaker?: string | undefined;
6726
6916
  description?: string | undefined;
6727
6917
  imageParams?: {
6728
6918
  provider: string;
@@ -6761,6 +6951,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6761
6951
  style: "aspectFit" | "aspectFill";
6762
6952
  } | undefined;
6763
6953
  } | undefined;
6954
+ soundEffectParams?: {
6955
+ provider?: string | undefined;
6956
+ model?: string | undefined;
6957
+ } | undefined;
6958
+ lipSyncParams?: {
6959
+ provider?: string | undefined;
6960
+ model?: string | undefined;
6961
+ } | undefined;
6764
6962
  htmlImageParams?: {
6765
6963
  model?: string | undefined;
6766
6964
  } | undefined;
@@ -6773,19 +6971,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6773
6971
  } | undefined;
6774
6972
  imageNames?: string[] | undefined;
6775
6973
  moviePrompt?: string | undefined;
6974
+ soundEffectPrompt?: string | undefined;
6776
6975
  htmlPrompt?: {
6777
6976
  prompt: string;
6778
6977
  data?: any;
6779
6978
  images?: Record<string, any> | undefined;
6780
6979
  systemPrompt?: string | undefined;
6781
6980
  } | undefined;
6981
+ enableLipSync?: boolean | undefined;
6782
6982
  }, {
6783
- text?: string | undefined;
6784
- duration?: number | undefined;
6785
- speechOptions?: {
6786
- speed?: number | undefined;
6787
- instruction?: string | undefined;
6788
- } | undefined;
6789
6983
  image?: {
6790
6984
  type: "markdown";
6791
6985
  markdown: string | string[];
@@ -6890,6 +7084,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6890
7084
  type: "voice_over";
6891
7085
  startAt?: number | undefined;
6892
7086
  } | undefined;
7087
+ text?: string | undefined;
7088
+ duration?: number | undefined;
7089
+ speechOptions?: {
7090
+ speed?: number | undefined;
7091
+ instruction?: string | undefined;
7092
+ } | undefined;
6893
7093
  id?: string | undefined;
6894
7094
  audio?: {
6895
7095
  type: "audio";
@@ -6950,6 +7150,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6950
7150
  style?: "aspectFit" | "aspectFill" | undefined;
6951
7151
  } | undefined;
6952
7152
  } | undefined;
7153
+ soundEffectParams?: {
7154
+ provider?: string | undefined;
7155
+ model?: string | undefined;
7156
+ } | undefined;
7157
+ lipSyncParams?: {
7158
+ provider?: string | undefined;
7159
+ model?: string | undefined;
7160
+ } | undefined;
6953
7161
  htmlImageParams?: {
6954
7162
  model?: string | undefined;
6955
7163
  } | undefined;
@@ -6962,12 +7170,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6962
7170
  } | undefined;
6963
7171
  imageNames?: string[] | undefined;
6964
7172
  moviePrompt?: string | undefined;
7173
+ soundEffectPrompt?: string | undefined;
6965
7174
  htmlPrompt?: {
6966
7175
  data?: any;
6967
7176
  prompt?: string | undefined;
6968
7177
  images?: Record<string, any> | undefined;
6969
7178
  systemPrompt?: string | undefined;
6970
7179
  } | undefined;
7180
+ enableLipSync?: boolean | undefined;
6971
7181
  }>, "many">;
6972
7182
  imagePath: z.ZodOptional<z.ZodString>;
6973
7183
  __test_invalid__: z.ZodOptional<z.ZodBoolean>;
@@ -7030,8 +7240,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7030
7240
  duration: number;
7031
7241
  } | undefined;
7032
7242
  };
7243
+ soundEffectParams: {
7244
+ provider?: string | undefined;
7245
+ model?: string | undefined;
7246
+ };
7033
7247
  $mulmocast: {
7034
- version: "1.0";
7248
+ version: "1.1";
7035
7249
  credit?: "closing" | undefined;
7036
7250
  };
7037
7251
  canvasSize: {
@@ -7039,10 +7253,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7039
7253
  height: number;
7040
7254
  };
7041
7255
  speechParams: {
7042
- provider: string;
7043
7256
  speakers: Record<string, {
7044
7257
  voiceId: string;
7045
7258
  displayName?: Record<string, string> | undefined;
7259
+ isDefault?: boolean | undefined;
7046
7260
  speechOptions?: {
7047
7261
  speed?: number | undefined;
7048
7262
  instruction?: string | undefined;
@@ -7050,16 +7264,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7050
7264
  provider?: string | undefined;
7051
7265
  model?: string | undefined;
7052
7266
  }>;
7053
- model?: string | undefined;
7054
7267
  };
7055
7268
  beats: {
7056
7269
  text: string;
7057
- speaker: string;
7058
- duration?: number | undefined;
7059
- speechOptions?: {
7060
- speed?: number | undefined;
7061
- instruction?: string | undefined;
7062
- } | undefined;
7063
7270
  image?: {
7064
7271
  type: "markdown";
7065
7272
  markdown: string | string[];
@@ -7164,6 +7371,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7164
7371
  type: "voice_over";
7165
7372
  startAt?: number | undefined;
7166
7373
  } | undefined;
7374
+ duration?: number | undefined;
7375
+ speechOptions?: {
7376
+ speed?: number | undefined;
7377
+ instruction?: string | undefined;
7378
+ } | undefined;
7167
7379
  id?: string | undefined;
7168
7380
  audio?: {
7169
7381
  type: "audio";
@@ -7185,6 +7397,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7185
7397
  source: string;
7186
7398
  } | undefined;
7187
7399
  imagePrompt?: string | undefined;
7400
+ speaker?: string | undefined;
7188
7401
  description?: string | undefined;
7189
7402
  imageParams?: {
7190
7403
  provider: string;
@@ -7223,6 +7436,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7223
7436
  style: "aspectFit" | "aspectFill";
7224
7437
  } | undefined;
7225
7438
  } | undefined;
7439
+ soundEffectParams?: {
7440
+ provider?: string | undefined;
7441
+ model?: string | undefined;
7442
+ } | undefined;
7443
+ lipSyncParams?: {
7444
+ provider?: string | undefined;
7445
+ model?: string | undefined;
7446
+ } | undefined;
7226
7447
  htmlImageParams?: {
7227
7448
  model?: string | undefined;
7228
7449
  } | undefined;
@@ -7235,16 +7456,22 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7235
7456
  } | undefined;
7236
7457
  imageNames?: string[] | undefined;
7237
7458
  moviePrompt?: string | undefined;
7459
+ soundEffectPrompt?: string | undefined;
7238
7460
  htmlPrompt?: {
7239
7461
  prompt: string;
7240
7462
  data?: any;
7241
7463
  images?: Record<string, any> | undefined;
7242
7464
  systemPrompt?: string | undefined;
7243
7465
  } | undefined;
7466
+ enableLipSync?: boolean | undefined;
7244
7467
  }[];
7245
7468
  lang?: string | undefined;
7246
7469
  title?: string | undefined;
7247
7470
  description?: string | undefined;
7471
+ lipSyncParams?: {
7472
+ provider?: string | undefined;
7473
+ model?: string | undefined;
7474
+ } | undefined;
7248
7475
  htmlImageParams?: {
7249
7476
  provider: string;
7250
7477
  model?: string | undefined;
@@ -7266,16 +7493,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7266
7493
  __test_invalid__?: boolean | undefined;
7267
7494
  }, {
7268
7495
  $mulmocast: {
7269
- version: "1.0";
7496
+ version: "1.1";
7270
7497
  credit?: "closing" | undefined;
7271
7498
  };
7272
7499
  beats: {
7273
- text?: string | undefined;
7274
- duration?: number | undefined;
7275
- speechOptions?: {
7276
- speed?: number | undefined;
7277
- instruction?: string | undefined;
7278
- } | undefined;
7279
7500
  image?: {
7280
7501
  type: "markdown";
7281
7502
  markdown: string | string[];
@@ -7380,6 +7601,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7380
7601
  type: "voice_over";
7381
7602
  startAt?: number | undefined;
7382
7603
  } | undefined;
7604
+ text?: string | undefined;
7605
+ duration?: number | undefined;
7606
+ speechOptions?: {
7607
+ speed?: number | undefined;
7608
+ instruction?: string | undefined;
7609
+ } | undefined;
7383
7610
  id?: string | undefined;
7384
7611
  audio?: {
7385
7612
  type: "audio";
@@ -7440,6 +7667,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7440
7667
  style?: "aspectFit" | "aspectFill" | undefined;
7441
7668
  } | undefined;
7442
7669
  } | undefined;
7670
+ soundEffectParams?: {
7671
+ provider?: string | undefined;
7672
+ model?: string | undefined;
7673
+ } | undefined;
7674
+ lipSyncParams?: {
7675
+ provider?: string | undefined;
7676
+ model?: string | undefined;
7677
+ } | undefined;
7443
7678
  htmlImageParams?: {
7444
7679
  model?: string | undefined;
7445
7680
  } | undefined;
@@ -7452,12 +7687,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7452
7687
  } | undefined;
7453
7688
  imageNames?: string[] | undefined;
7454
7689
  moviePrompt?: string | undefined;
7690
+ soundEffectPrompt?: string | undefined;
7455
7691
  htmlPrompt?: {
7456
7692
  data?: any;
7457
7693
  prompt?: string | undefined;
7458
7694
  images?: Record<string, any> | undefined;
7459
7695
  systemPrompt?: string | undefined;
7460
7696
  } | undefined;
7697
+ enableLipSync?: boolean | undefined;
7461
7698
  }[];
7462
7699
  lang?: string | undefined;
7463
7700
  title?: string | undefined;
@@ -7520,6 +7757,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7520
7757
  duration?: number | undefined;
7521
7758
  } | undefined;
7522
7759
  } | undefined;
7760
+ soundEffectParams?: {
7761
+ provider?: string | undefined;
7762
+ model?: string | undefined;
7763
+ } | undefined;
7764
+ lipSyncParams?: {
7765
+ provider?: string | undefined;
7766
+ model?: string | undefined;
7767
+ } | undefined;
7523
7768
  htmlImageParams?: {
7524
7769
  provider?: string | undefined;
7525
7770
  model?: string | undefined;
@@ -7539,6 +7784,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7539
7784
  speakers: Record<string, {
7540
7785
  voiceId: string;
7541
7786
  displayName?: Record<string, string> | undefined;
7787
+ isDefault?: boolean | undefined;
7542
7788
  speechOptions?: {
7543
7789
  speed?: number | undefined;
7544
7790
  instruction?: string | undefined;
@@ -7546,8 +7792,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7546
7792
  provider?: string | undefined;
7547
7793
  model?: string | undefined;
7548
7794
  }>;
7549
- provider?: string | undefined;
7550
- model?: string | undefined;
7551
7795
  } | undefined;
7552
7796
  references?: {
7553
7797
  url: string;
@@ -7570,6 +7814,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7570
7814
  audioFile: z.ZodOptional<z.ZodString>;
7571
7815
  imageFile: z.ZodOptional<z.ZodString>;
7572
7816
  movieFile: z.ZodOptional<z.ZodString>;
7817
+ soundEffectFile: z.ZodOptional<z.ZodString>;
7818
+ lipSyncFile: z.ZodOptional<z.ZodString>;
7573
7819
  captionFile: z.ZodOptional<z.ZodString>;
7574
7820
  }, "strict", z.ZodTypeAny, {
7575
7821
  duration?: number | undefined;
@@ -7582,6 +7828,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7582
7828
  audioFile?: string | undefined;
7583
7829
  imageFile?: string | undefined;
7584
7830
  movieFile?: string | undefined;
7831
+ soundEffectFile?: string | undefined;
7832
+ lipSyncFile?: string | undefined;
7585
7833
  captionFile?: string | undefined;
7586
7834
  }, {
7587
7835
  duration?: number | undefined;
@@ -7594,6 +7842,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7594
7842
  audioFile?: string | undefined;
7595
7843
  imageFile?: string | undefined;
7596
7844
  movieFile?: string | undefined;
7845
+ soundEffectFile?: string | undefined;
7846
+ lipSyncFile?: string | undefined;
7597
7847
  captionFile?: string | undefined;
7598
7848
  }>, "many">;
7599
7849
  }, "strict", z.ZodTypeAny, {
@@ -7608,6 +7858,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7608
7858
  audioFile?: string | undefined;
7609
7859
  imageFile?: string | undefined;
7610
7860
  movieFile?: string | undefined;
7861
+ soundEffectFile?: string | undefined;
7862
+ lipSyncFile?: string | undefined;
7611
7863
  captionFile?: string | undefined;
7612
7864
  }[];
7613
7865
  script: {
@@ -7669,8 +7921,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7669
7921
  duration: number;
7670
7922
  } | undefined;
7671
7923
  };
7924
+ soundEffectParams: {
7925
+ provider?: string | undefined;
7926
+ model?: string | undefined;
7927
+ };
7672
7928
  $mulmocast: {
7673
- version: "1.0";
7929
+ version: "1.1";
7674
7930
  credit?: "closing" | undefined;
7675
7931
  };
7676
7932
  canvasSize: {
@@ -7678,10 +7934,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7678
7934
  height: number;
7679
7935
  };
7680
7936
  speechParams: {
7681
- provider: string;
7682
7937
  speakers: Record<string, {
7683
7938
  voiceId: string;
7684
7939
  displayName?: Record<string, string> | undefined;
7940
+ isDefault?: boolean | undefined;
7685
7941
  speechOptions?: {
7686
7942
  speed?: number | undefined;
7687
7943
  instruction?: string | undefined;
@@ -7689,16 +7945,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7689
7945
  provider?: string | undefined;
7690
7946
  model?: string | undefined;
7691
7947
  }>;
7692
- model?: string | undefined;
7693
7948
  };
7694
7949
  beats: {
7695
7950
  text: string;
7696
- speaker: string;
7697
- duration?: number | undefined;
7698
- speechOptions?: {
7699
- speed?: number | undefined;
7700
- instruction?: string | undefined;
7701
- } | undefined;
7702
7951
  image?: {
7703
7952
  type: "markdown";
7704
7953
  markdown: string | string[];
@@ -7803,6 +8052,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7803
8052
  type: "voice_over";
7804
8053
  startAt?: number | undefined;
7805
8054
  } | undefined;
8055
+ duration?: number | undefined;
8056
+ speechOptions?: {
8057
+ speed?: number | undefined;
8058
+ instruction?: string | undefined;
8059
+ } | undefined;
7806
8060
  id?: string | undefined;
7807
8061
  audio?: {
7808
8062
  type: "audio";
@@ -7824,6 +8078,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7824
8078
  source: string;
7825
8079
  } | undefined;
7826
8080
  imagePrompt?: string | undefined;
8081
+ speaker?: string | undefined;
7827
8082
  description?: string | undefined;
7828
8083
  imageParams?: {
7829
8084
  provider: string;
@@ -7862,6 +8117,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7862
8117
  style: "aspectFit" | "aspectFill";
7863
8118
  } | undefined;
7864
8119
  } | undefined;
8120
+ soundEffectParams?: {
8121
+ provider?: string | undefined;
8122
+ model?: string | undefined;
8123
+ } | undefined;
8124
+ lipSyncParams?: {
8125
+ provider?: string | undefined;
8126
+ model?: string | undefined;
8127
+ } | undefined;
7865
8128
  htmlImageParams?: {
7866
8129
  model?: string | undefined;
7867
8130
  } | undefined;
@@ -7874,16 +8137,22 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7874
8137
  } | undefined;
7875
8138
  imageNames?: string[] | undefined;
7876
8139
  moviePrompt?: string | undefined;
8140
+ soundEffectPrompt?: string | undefined;
7877
8141
  htmlPrompt?: {
7878
8142
  prompt: string;
7879
8143
  data?: any;
7880
8144
  images?: Record<string, any> | undefined;
7881
8145
  systemPrompt?: string | undefined;
7882
8146
  } | undefined;
8147
+ enableLipSync?: boolean | undefined;
7883
8148
  }[];
7884
8149
  lang?: string | undefined;
7885
8150
  title?: string | undefined;
7886
8151
  description?: string | undefined;
8152
+ lipSyncParams?: {
8153
+ provider?: string | undefined;
8154
+ model?: string | undefined;
8155
+ } | undefined;
7887
8156
  htmlImageParams?: {
7888
8157
  provider: string;
7889
8158
  model?: string | undefined;
@@ -7917,20 +8186,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7917
8186
  audioFile?: string | undefined;
7918
8187
  imageFile?: string | undefined;
7919
8188
  movieFile?: string | undefined;
8189
+ soundEffectFile?: string | undefined;
8190
+ lipSyncFile?: string | undefined;
7920
8191
  captionFile?: string | undefined;
7921
8192
  }[];
7922
8193
  script: {
7923
8194
  $mulmocast: {
7924
- version: "1.0";
8195
+ version: "1.1";
7925
8196
  credit?: "closing" | undefined;
7926
8197
  };
7927
8198
  beats: {
7928
- text?: string | undefined;
7929
- duration?: number | undefined;
7930
- speechOptions?: {
7931
- speed?: number | undefined;
7932
- instruction?: string | undefined;
7933
- } | undefined;
7934
8199
  image?: {
7935
8200
  type: "markdown";
7936
8201
  markdown: string | string[];
@@ -8035,6 +8300,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8035
8300
  type: "voice_over";
8036
8301
  startAt?: number | undefined;
8037
8302
  } | undefined;
8303
+ text?: string | undefined;
8304
+ duration?: number | undefined;
8305
+ speechOptions?: {
8306
+ speed?: number | undefined;
8307
+ instruction?: string | undefined;
8308
+ } | undefined;
8038
8309
  id?: string | undefined;
8039
8310
  audio?: {
8040
8311
  type: "audio";
@@ -8095,6 +8366,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8095
8366
  style?: "aspectFit" | "aspectFill" | undefined;
8096
8367
  } | undefined;
8097
8368
  } | undefined;
8369
+ soundEffectParams?: {
8370
+ provider?: string | undefined;
8371
+ model?: string | undefined;
8372
+ } | undefined;
8373
+ lipSyncParams?: {
8374
+ provider?: string | undefined;
8375
+ model?: string | undefined;
8376
+ } | undefined;
8098
8377
  htmlImageParams?: {
8099
8378
  model?: string | undefined;
8100
8379
  } | undefined;
@@ -8107,12 +8386,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8107
8386
  } | undefined;
8108
8387
  imageNames?: string[] | undefined;
8109
8388
  moviePrompt?: string | undefined;
8389
+ soundEffectPrompt?: string | undefined;
8110
8390
  htmlPrompt?: {
8111
8391
  data?: any;
8112
8392
  prompt?: string | undefined;
8113
8393
  images?: Record<string, any> | undefined;
8114
8394
  systemPrompt?: string | undefined;
8115
8395
  } | undefined;
8396
+ enableLipSync?: boolean | undefined;
8116
8397
  }[];
8117
8398
  lang?: string | undefined;
8118
8399
  title?: string | undefined;
@@ -8175,6 +8456,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8175
8456
  duration?: number | undefined;
8176
8457
  } | undefined;
8177
8458
  } | undefined;
8459
+ soundEffectParams?: {
8460
+ provider?: string | undefined;
8461
+ model?: string | undefined;
8462
+ } | undefined;
8463
+ lipSyncParams?: {
8464
+ provider?: string | undefined;
8465
+ model?: string | undefined;
8466
+ } | undefined;
8178
8467
  htmlImageParams?: {
8179
8468
  provider?: string | undefined;
8180
8469
  model?: string | undefined;
@@ -8194,6 +8483,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8194
8483
  speakers: Record<string, {
8195
8484
  voiceId: string;
8196
8485
  displayName?: Record<string, string> | undefined;
8486
+ isDefault?: boolean | undefined;
8197
8487
  speechOptions?: {
8198
8488
  speed?: number | undefined;
8199
8489
  instruction?: string | undefined;
@@ -8201,8 +8491,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8201
8491
  provider?: string | undefined;
8202
8492
  model?: string | undefined;
8203
8493
  }>;
8204
- provider?: string | undefined;
8205
- model?: string | undefined;
8206
8494
  } | undefined;
8207
8495
  references?: {
8208
8496
  url: string;
@@ -8222,13 +8510,13 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8222
8510
  scriptName: z.ZodOptional<z.ZodString>;
8223
8511
  presentationStyle: z.ZodOptional<z.ZodObject<{
8224
8512
  $mulmocast: z.ZodObject<{
8225
- version: z.ZodLiteral<"1.0">;
8513
+ version: z.ZodLiteral<"1.1">;
8226
8514
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
8227
8515
  }, "strict", z.ZodTypeAny, {
8228
- version: "1.0";
8516
+ version: "1.1";
8229
8517
  credit?: "closing" | undefined;
8230
8518
  }, {
8231
- version: "1.0";
8519
+ version: "1.1";
8232
8520
  credit?: "closing" | undefined;
8233
8521
  }>;
8234
8522
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -8242,10 +8530,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8242
8530
  height: number;
8243
8531
  }>>;
8244
8532
  speechParams: z.ZodDefault<z.ZodObject<{
8245
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
8246
8533
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
8247
8534
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8248
8535
  voiceId: z.ZodString;
8536
+ isDefault: z.ZodOptional<z.ZodBoolean>;
8249
8537
  speechOptions: z.ZodOptional<z.ZodObject<{
8250
8538
  speed: z.ZodOptional<z.ZodNumber>;
8251
8539
  instruction: z.ZodOptional<z.ZodString>;
@@ -8261,6 +8549,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8261
8549
  }, "strict", z.ZodTypeAny, {
8262
8550
  voiceId: string;
8263
8551
  displayName?: Record<string, string> | undefined;
8552
+ isDefault?: boolean | undefined;
8264
8553
  speechOptions?: {
8265
8554
  speed?: number | undefined;
8266
8555
  instruction?: string | undefined;
@@ -8270,6 +8559,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8270
8559
  }, {
8271
8560
  voiceId: string;
8272
8561
  displayName?: Record<string, string> | undefined;
8562
+ isDefault?: boolean | undefined;
8273
8563
  speechOptions?: {
8274
8564
  speed?: number | undefined;
8275
8565
  instruction?: string | undefined;
@@ -8277,12 +8567,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8277
8567
  provider?: string | undefined;
8278
8568
  model?: string | undefined;
8279
8569
  }>>;
8280
- model: z.ZodOptional<z.ZodString>;
8281
- }, "strict", z.ZodTypeAny, {
8282
- provider: string;
8570
+ }, "strip", z.ZodTypeAny, {
8283
8571
  speakers: Record<string, {
8284
8572
  voiceId: string;
8285
8573
  displayName?: Record<string, string> | undefined;
8574
+ isDefault?: boolean | undefined;
8286
8575
  speechOptions?: {
8287
8576
  speed?: number | undefined;
8288
8577
  instruction?: string | undefined;
@@ -8290,11 +8579,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8290
8579
  provider?: string | undefined;
8291
8580
  model?: string | undefined;
8292
8581
  }>;
8293
- model?: string | undefined;
8294
8582
  }, {
8295
8583
  speakers: Record<string, {
8296
8584
  voiceId: string;
8297
8585
  displayName?: Record<string, string> | undefined;
8586
+ isDefault?: boolean | undefined;
8298
8587
  speechOptions?: {
8299
8588
  speed?: number | undefined;
8300
8589
  instruction?: string | undefined;
@@ -8302,8 +8591,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8302
8591
  provider?: string | undefined;
8303
8592
  model?: string | undefined;
8304
8593
  }>;
8305
- provider?: string | undefined;
8306
- model?: string | undefined;
8307
8594
  }>>;
8308
8595
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
8309
8596
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -8479,6 +8766,26 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8479
8766
  duration?: number | undefined;
8480
8767
  } | undefined;
8481
8768
  }>>>;
8769
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
8770
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
8771
+ model: z.ZodOptional<z.ZodString>;
8772
+ }, "strip", z.ZodTypeAny, {
8773
+ provider?: string | undefined;
8774
+ model?: string | undefined;
8775
+ }, {
8776
+ provider?: string | undefined;
8777
+ model?: string | undefined;
8778
+ }>>>;
8779
+ lipSyncParams: z.ZodOptional<z.ZodObject<{
8780
+ provider: z.ZodOptional<z.ZodString>;
8781
+ model: z.ZodOptional<z.ZodString>;
8782
+ }, "strip", z.ZodTypeAny, {
8783
+ provider?: string | undefined;
8784
+ model?: string | undefined;
8785
+ }, {
8786
+ provider?: string | undefined;
8787
+ model?: string | undefined;
8788
+ }>>;
8482
8789
  htmlImageParams: z.ZodOptional<z.ZodObject<{
8483
8790
  model: z.ZodOptional<z.ZodString>;
8484
8791
  } & {
@@ -8654,8 +8961,12 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8654
8961
  duration: number;
8655
8962
  } | undefined;
8656
8963
  };
8964
+ soundEffectParams: {
8965
+ provider?: string | undefined;
8966
+ model?: string | undefined;
8967
+ };
8657
8968
  $mulmocast: {
8658
- version: "1.0";
8969
+ version: "1.1";
8659
8970
  credit?: "closing" | undefined;
8660
8971
  };
8661
8972
  canvasSize: {
@@ -8663,10 +8974,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8663
8974
  height: number;
8664
8975
  };
8665
8976
  speechParams: {
8666
- provider: string;
8667
8977
  speakers: Record<string, {
8668
8978
  voiceId: string;
8669
8979
  displayName?: Record<string, string> | undefined;
8980
+ isDefault?: boolean | undefined;
8670
8981
  speechOptions?: {
8671
8982
  speed?: number | undefined;
8672
8983
  instruction?: string | undefined;
@@ -8674,8 +8985,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8674
8985
  provider?: string | undefined;
8675
8986
  model?: string | undefined;
8676
8987
  }>;
8677
- model?: string | undefined;
8678
8988
  };
8989
+ lipSyncParams?: {
8990
+ provider?: string | undefined;
8991
+ model?: string | undefined;
8992
+ } | undefined;
8679
8993
  htmlImageParams?: {
8680
8994
  provider: string;
8681
8995
  model?: string | undefined;
@@ -8689,7 +9003,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8689
9003
  } | undefined;
8690
9004
  }, {
8691
9005
  $mulmocast: {
8692
- version: "1.0";
9006
+ version: "1.1";
8693
9007
  credit?: "closing" | undefined;
8694
9008
  };
8695
9009
  imageParams?: {
@@ -8750,6 +9064,14 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8750
9064
  duration?: number | undefined;
8751
9065
  } | undefined;
8752
9066
  } | undefined;
9067
+ soundEffectParams?: {
9068
+ provider?: string | undefined;
9069
+ model?: string | undefined;
9070
+ } | undefined;
9071
+ lipSyncParams?: {
9072
+ provider?: string | undefined;
9073
+ model?: string | undefined;
9074
+ } | undefined;
8753
9075
  htmlImageParams?: {
8754
9076
  provider?: string | undefined;
8755
9077
  model?: string | undefined;
@@ -8769,6 +9091,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8769
9091
  speakers: Record<string, {
8770
9092
  voiceId: string;
8771
9093
  displayName?: Record<string, string> | undefined;
9094
+ isDefault?: boolean | undefined;
8772
9095
  speechOptions?: {
8773
9096
  speed?: number | undefined;
8774
9097
  instruction?: string | undefined;
@@ -8776,8 +9099,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8776
9099
  provider?: string | undefined;
8777
9100
  model?: string | undefined;
8778
9101
  }>;
8779
- provider?: string | undefined;
8780
- model?: string | undefined;
8781
9102
  } | undefined;
8782
9103
  }>>;
8783
9104
  }, "strict", z.ZodTypeAny, {
@@ -8844,8 +9165,12 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8844
9165
  duration: number;
8845
9166
  } | undefined;
8846
9167
  };
9168
+ soundEffectParams: {
9169
+ provider?: string | undefined;
9170
+ model?: string | undefined;
9171
+ };
8847
9172
  $mulmocast: {
8848
- version: "1.0";
9173
+ version: "1.1";
8849
9174
  credit?: "closing" | undefined;
8850
9175
  };
8851
9176
  canvasSize: {
@@ -8853,10 +9178,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8853
9178
  height: number;
8854
9179
  };
8855
9180
  speechParams: {
8856
- provider: string;
8857
9181
  speakers: Record<string, {
8858
9182
  voiceId: string;
8859
9183
  displayName?: Record<string, string> | undefined;
9184
+ isDefault?: boolean | undefined;
8860
9185
  speechOptions?: {
8861
9186
  speed?: number | undefined;
8862
9187
  instruction?: string | undefined;
@@ -8864,8 +9189,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8864
9189
  provider?: string | undefined;
8865
9190
  model?: string | undefined;
8866
9191
  }>;
8867
- model?: string | undefined;
8868
9192
  };
9193
+ lipSyncParams?: {
9194
+ provider?: string | undefined;
9195
+ model?: string | undefined;
9196
+ } | undefined;
8869
9197
  htmlImageParams?: {
8870
9198
  provider: string;
8871
9199
  model?: string | undefined;
@@ -8885,7 +9213,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8885
9213
  scriptName?: string | undefined;
8886
9214
  presentationStyle?: {
8887
9215
  $mulmocast: {
8888
- version: "1.0";
9216
+ version: "1.1";
8889
9217
  credit?: "closing" | undefined;
8890
9218
  };
8891
9219
  imageParams?: {
@@ -8946,6 +9274,14 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8946
9274
  duration?: number | undefined;
8947
9275
  } | undefined;
8948
9276
  } | undefined;
9277
+ soundEffectParams?: {
9278
+ provider?: string | undefined;
9279
+ model?: string | undefined;
9280
+ } | undefined;
9281
+ lipSyncParams?: {
9282
+ provider?: string | undefined;
9283
+ model?: string | undefined;
9284
+ } | undefined;
8949
9285
  htmlImageParams?: {
8950
9286
  provider?: string | undefined;
8951
9287
  model?: string | undefined;
@@ -8965,6 +9301,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8965
9301
  speakers: Record<string, {
8966
9302
  voiceId: string;
8967
9303
  displayName?: Record<string, string> | undefined;
9304
+ isDefault?: boolean | undefined;
8968
9305
  speechOptions?: {
8969
9306
  speed?: number | undefined;
8970
9307
  instruction?: string | undefined;
@@ -8972,8 +9309,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8972
9309
  provider?: string | undefined;
8973
9310
  model?: string | undefined;
8974
9311
  }>;
8975
- provider?: string | undefined;
8976
- model?: string | undefined;
8977
9312
  } | undefined;
8978
9313
  } | undefined;
8979
9314
  }>;
@@ -8984,13 +9319,13 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
8984
9319
  scriptName: z.ZodOptional<z.ZodString>;
8985
9320
  presentationStyle: z.ZodOptional<z.ZodObject<{
8986
9321
  $mulmocast: z.ZodObject<{
8987
- version: z.ZodLiteral<"1.0">;
9322
+ version: z.ZodLiteral<"1.1">;
8988
9323
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
8989
9324
  }, "strict", z.ZodTypeAny, {
8990
- version: "1.0";
9325
+ version: "1.1";
8991
9326
  credit?: "closing" | undefined;
8992
9327
  }, {
8993
- version: "1.0";
9328
+ version: "1.1";
8994
9329
  credit?: "closing" | undefined;
8995
9330
  }>;
8996
9331
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -9004,10 +9339,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9004
9339
  height: number;
9005
9340
  }>>;
9006
9341
  speechParams: z.ZodDefault<z.ZodObject<{
9007
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
9008
9342
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
9009
9343
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
9010
9344
  voiceId: z.ZodString;
9345
+ isDefault: z.ZodOptional<z.ZodBoolean>;
9011
9346
  speechOptions: z.ZodOptional<z.ZodObject<{
9012
9347
  speed: z.ZodOptional<z.ZodNumber>;
9013
9348
  instruction: z.ZodOptional<z.ZodString>;
@@ -9023,6 +9358,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9023
9358
  }, "strict", z.ZodTypeAny, {
9024
9359
  voiceId: string;
9025
9360
  displayName?: Record<string, string> | undefined;
9361
+ isDefault?: boolean | undefined;
9026
9362
  speechOptions?: {
9027
9363
  speed?: number | undefined;
9028
9364
  instruction?: string | undefined;
@@ -9032,6 +9368,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9032
9368
  }, {
9033
9369
  voiceId: string;
9034
9370
  displayName?: Record<string, string> | undefined;
9371
+ isDefault?: boolean | undefined;
9035
9372
  speechOptions?: {
9036
9373
  speed?: number | undefined;
9037
9374
  instruction?: string | undefined;
@@ -9039,12 +9376,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9039
9376
  provider?: string | undefined;
9040
9377
  model?: string | undefined;
9041
9378
  }>>;
9042
- model: z.ZodOptional<z.ZodString>;
9043
- }, "strict", z.ZodTypeAny, {
9044
- provider: string;
9379
+ }, "strip", z.ZodTypeAny, {
9045
9380
  speakers: Record<string, {
9046
9381
  voiceId: string;
9047
9382
  displayName?: Record<string, string> | undefined;
9383
+ isDefault?: boolean | undefined;
9048
9384
  speechOptions?: {
9049
9385
  speed?: number | undefined;
9050
9386
  instruction?: string | undefined;
@@ -9052,11 +9388,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9052
9388
  provider?: string | undefined;
9053
9389
  model?: string | undefined;
9054
9390
  }>;
9055
- model?: string | undefined;
9056
9391
  }, {
9057
9392
  speakers: Record<string, {
9058
9393
  voiceId: string;
9059
9394
  displayName?: Record<string, string> | undefined;
9395
+ isDefault?: boolean | undefined;
9060
9396
  speechOptions?: {
9061
9397
  speed?: number | undefined;
9062
9398
  instruction?: string | undefined;
@@ -9064,8 +9400,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9064
9400
  provider?: string | undefined;
9065
9401
  model?: string | undefined;
9066
9402
  }>;
9067
- provider?: string | undefined;
9068
- model?: string | undefined;
9069
9403
  }>>;
9070
9404
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
9071
9405
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -9241,6 +9575,26 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9241
9575
  duration?: number | undefined;
9242
9576
  } | undefined;
9243
9577
  }>>>;
9578
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
9579
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
9580
+ model: z.ZodOptional<z.ZodString>;
9581
+ }, "strip", z.ZodTypeAny, {
9582
+ provider?: string | undefined;
9583
+ model?: string | undefined;
9584
+ }, {
9585
+ provider?: string | undefined;
9586
+ model?: string | undefined;
9587
+ }>>>;
9588
+ lipSyncParams: z.ZodOptional<z.ZodObject<{
9589
+ provider: z.ZodOptional<z.ZodString>;
9590
+ model: z.ZodOptional<z.ZodString>;
9591
+ }, "strip", z.ZodTypeAny, {
9592
+ provider?: string | undefined;
9593
+ model?: string | undefined;
9594
+ }, {
9595
+ provider?: string | undefined;
9596
+ model?: string | undefined;
9597
+ }>>;
9244
9598
  htmlImageParams: z.ZodOptional<z.ZodObject<{
9245
9599
  model: z.ZodOptional<z.ZodString>;
9246
9600
  } & {
@@ -9416,8 +9770,12 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9416
9770
  duration: number;
9417
9771
  } | undefined;
9418
9772
  };
9773
+ soundEffectParams: {
9774
+ provider?: string | undefined;
9775
+ model?: string | undefined;
9776
+ };
9419
9777
  $mulmocast: {
9420
- version: "1.0";
9778
+ version: "1.1";
9421
9779
  credit?: "closing" | undefined;
9422
9780
  };
9423
9781
  canvasSize: {
@@ -9425,10 +9783,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9425
9783
  height: number;
9426
9784
  };
9427
9785
  speechParams: {
9428
- provider: string;
9429
9786
  speakers: Record<string, {
9430
9787
  voiceId: string;
9431
9788
  displayName?: Record<string, string> | undefined;
9789
+ isDefault?: boolean | undefined;
9432
9790
  speechOptions?: {
9433
9791
  speed?: number | undefined;
9434
9792
  instruction?: string | undefined;
@@ -9436,8 +9794,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9436
9794
  provider?: string | undefined;
9437
9795
  model?: string | undefined;
9438
9796
  }>;
9439
- model?: string | undefined;
9440
9797
  };
9798
+ lipSyncParams?: {
9799
+ provider?: string | undefined;
9800
+ model?: string | undefined;
9801
+ } | undefined;
9441
9802
  htmlImageParams?: {
9442
9803
  provider: string;
9443
9804
  model?: string | undefined;
@@ -9451,7 +9812,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9451
9812
  } | undefined;
9452
9813
  }, {
9453
9814
  $mulmocast: {
9454
- version: "1.0";
9815
+ version: "1.1";
9455
9816
  credit?: "closing" | undefined;
9456
9817
  };
9457
9818
  imageParams?: {
@@ -9512,6 +9873,14 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9512
9873
  duration?: number | undefined;
9513
9874
  } | undefined;
9514
9875
  } | undefined;
9876
+ soundEffectParams?: {
9877
+ provider?: string | undefined;
9878
+ model?: string | undefined;
9879
+ } | undefined;
9880
+ lipSyncParams?: {
9881
+ provider?: string | undefined;
9882
+ model?: string | undefined;
9883
+ } | undefined;
9515
9884
  htmlImageParams?: {
9516
9885
  provider?: string | undefined;
9517
9886
  model?: string | undefined;
@@ -9531,6 +9900,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9531
9900
  speakers: Record<string, {
9532
9901
  voiceId: string;
9533
9902
  displayName?: Record<string, string> | undefined;
9903
+ isDefault?: boolean | undefined;
9534
9904
  speechOptions?: {
9535
9905
  speed?: number | undefined;
9536
9906
  instruction?: string | undefined;
@@ -9538,8 +9908,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9538
9908
  provider?: string | undefined;
9539
9909
  model?: string | undefined;
9540
9910
  }>;
9541
- provider?: string | undefined;
9542
- model?: string | undefined;
9543
9911
  } | undefined;
9544
9912
  }>>;
9545
9913
  } & {
@@ -9609,8 +9977,12 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9609
9977
  duration: number;
9610
9978
  } | undefined;
9611
9979
  };
9980
+ soundEffectParams: {
9981
+ provider?: string | undefined;
9982
+ model?: string | undefined;
9983
+ };
9612
9984
  $mulmocast: {
9613
- version: "1.0";
9985
+ version: "1.1";
9614
9986
  credit?: "closing" | undefined;
9615
9987
  };
9616
9988
  canvasSize: {
@@ -9618,10 +9990,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9618
9990
  height: number;
9619
9991
  };
9620
9992
  speechParams: {
9621
- provider: string;
9622
9993
  speakers: Record<string, {
9623
9994
  voiceId: string;
9624
9995
  displayName?: Record<string, string> | undefined;
9996
+ isDefault?: boolean | undefined;
9625
9997
  speechOptions?: {
9626
9998
  speed?: number | undefined;
9627
9999
  instruction?: string | undefined;
@@ -9629,8 +10001,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9629
10001
  provider?: string | undefined;
9630
10002
  model?: string | undefined;
9631
10003
  }>;
9632
- model?: string | undefined;
9633
10004
  };
10005
+ lipSyncParams?: {
10006
+ provider?: string | undefined;
10007
+ model?: string | undefined;
10008
+ } | undefined;
9634
10009
  htmlImageParams?: {
9635
10010
  provider: string;
9636
10011
  model?: string | undefined;
@@ -9651,7 +10026,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9651
10026
  scriptName?: string | undefined;
9652
10027
  presentationStyle?: {
9653
10028
  $mulmocast: {
9654
- version: "1.0";
10029
+ version: "1.1";
9655
10030
  credit?: "closing" | undefined;
9656
10031
  };
9657
10032
  imageParams?: {
@@ -9712,6 +10087,14 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9712
10087
  duration?: number | undefined;
9713
10088
  } | undefined;
9714
10089
  } | undefined;
10090
+ soundEffectParams?: {
10091
+ provider?: string | undefined;
10092
+ model?: string | undefined;
10093
+ } | undefined;
10094
+ lipSyncParams?: {
10095
+ provider?: string | undefined;
10096
+ model?: string | undefined;
10097
+ } | undefined;
9715
10098
  htmlImageParams?: {
9716
10099
  provider?: string | undefined;
9717
10100
  model?: string | undefined;
@@ -9731,6 +10114,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9731
10114
  speakers: Record<string, {
9732
10115
  voiceId: string;
9733
10116
  displayName?: Record<string, string> | undefined;
10117
+ isDefault?: boolean | undefined;
9734
10118
  speechOptions?: {
9735
10119
  speed?: number | undefined;
9736
10120
  instruction?: string | undefined;
@@ -9738,8 +10122,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9738
10122
  provider?: string | undefined;
9739
10123
  model?: string | undefined;
9740
10124
  }>;
9741
- provider?: string | undefined;
9742
- model?: string | undefined;
9743
10125
  } | undefined;
9744
10126
  } | undefined;
9745
10127
  }>;