mulmocast 0.1.6 → 1.1.0

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 (58) hide show
  1. package/assets/templates/akira_comic.json +1 -1
  2. package/assets/templates/ani.json +48 -0
  3. package/assets/templates/ani_ja.json +44 -0
  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 +8 -7
  19. package/lib/actions/image_agents.d.ts +53 -98
  20. package/lib/actions/image_agents.js +14 -6
  21. package/lib/actions/images.js +42 -13
  22. package/lib/actions/movie.js +1 -1
  23. package/lib/agents/index.d.ts +2 -1
  24. package/lib/agents/index.js +2 -1
  25. package/lib/agents/movie_replicate_agent.js +18 -5
  26. package/lib/agents/sound_effect_replicate_agent.d.ts +5 -0
  27. package/lib/agents/sound_effect_replicate_agent.js +59 -0
  28. package/lib/cli/commands/tool/scripting/builder.js +1 -1
  29. package/lib/cli/commands/tool/scripting/handler.d.ts +1 -1
  30. package/lib/cli/commands/tool/story_to_script/builder.js +1 -1
  31. package/lib/cli/commands/tool/story_to_script/handler.d.ts +1 -1
  32. package/lib/mcp/server.js +2 -2
  33. package/lib/methods/index.d.ts +1 -0
  34. package/lib/methods/index.js +1 -0
  35. package/lib/methods/mulmo_presentation_style.d.ts +25 -6
  36. package/lib/methods/mulmo_presentation_style.js +33 -30
  37. package/lib/methods/mulmo_script.d.ts +4 -0
  38. package/lib/methods/mulmo_script.js +31 -0
  39. package/lib/tools/story_to_script.d.ts +1 -1
  40. package/lib/types/agent.d.ts +9 -0
  41. package/lib/types/schema.d.ts +727 -554
  42. package/lib/types/schema.js +41 -24
  43. package/lib/types/type.d.ts +4 -4
  44. package/lib/utils/assets.d.ts +18 -0
  45. package/lib/utils/assets.js +101 -0
  46. package/lib/utils/context.d.ts +98 -84
  47. package/lib/utils/context.js +2 -1
  48. package/lib/utils/ffmpeg_utils.js +6 -0
  49. package/lib/utils/file.d.ts +4 -1
  50. package/lib/utils/file.js +3 -5
  51. package/lib/utils/preprocess.d.ts +57 -47
  52. package/lib/utils/preprocess.js +7 -5
  53. package/lib/utils/provider2agent.d.ts +27 -7
  54. package/lib/utils/provider2agent.js +85 -7
  55. package/lib/utils/utils.d.ts +1 -2
  56. package/lib/utils/utils.js +4 -2
  57. package/package.json +7 -7
  58. package/scripts/templates/presentation.json~ +0 -119
@@ -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;
@@ -1288,8 +1294,20 @@ export declare const htmlPromptParamsSchema: z.ZodObject<{
1288
1294
  images?: Record<string, any> | undefined;
1289
1295
  systemPrompt?: string | undefined;
1290
1296
  }>;
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
+ }>;
1291
1309
  export declare const mulmoBeatSchema: z.ZodObject<{
1292
- speaker: z.ZodDefault<z.ZodString>;
1310
+ speaker: z.ZodOptional<z.ZodString>;
1293
1311
  text: z.ZodDefault<z.ZodString>;
1294
1312
  id: z.ZodOptional<z.ZodString>;
1295
1313
  description: z.ZodOptional<z.ZodString>;
@@ -1955,6 +1973,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1955
1973
  movieVolume?: number | undefined;
1956
1974
  }>>;
1957
1975
  movieParams: z.ZodOptional<z.ZodObject<{
1976
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
1958
1977
  model: z.ZodOptional<z.ZodString>;
1959
1978
  fillOption: z.ZodOptional<z.ZodObject<{
1960
1979
  style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
@@ -1966,17 +1985,29 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1966
1985
  speed: z.ZodOptional<z.ZodNumber>;
1967
1986
  }, "strip", z.ZodTypeAny, {
1968
1987
  speed?: number | undefined;
1988
+ provider?: string | undefined;
1969
1989
  model?: string | undefined;
1970
1990
  fillOption?: {
1971
1991
  style: "aspectFit" | "aspectFill";
1972
1992
  } | undefined;
1973
1993
  }, {
1974
1994
  speed?: number | undefined;
1995
+ provider?: string | undefined;
1975
1996
  model?: string | undefined;
1976
1997
  fillOption?: {
1977
1998
  style?: "aspectFit" | "aspectFill" | undefined;
1978
1999
  } | undefined;
1979
2000
  }>>;
2001
+ soundEffectParams: z.ZodOptional<z.ZodObject<{
2002
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
2003
+ model: z.ZodOptional<z.ZodString>;
2004
+ }, "strip", z.ZodTypeAny, {
2005
+ provider?: string | undefined;
2006
+ model?: string | undefined;
2007
+ }, {
2008
+ provider?: string | undefined;
2009
+ model?: string | undefined;
2010
+ }>>;
1980
2011
  htmlImageParams: z.ZodOptional<z.ZodObject<{
1981
2012
  model: z.ZodOptional<z.ZodString>;
1982
2013
  }, "strict", z.ZodTypeAny, {
@@ -2014,6 +2045,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2014
2045
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2015
2046
  imagePrompt: z.ZodOptional<z.ZodString>;
2016
2047
  moviePrompt: z.ZodOptional<z.ZodString>;
2048
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
2017
2049
  htmlPrompt: z.ZodOptional<z.ZodObject<{
2018
2050
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
2019
2051
  prompt: z.ZodDefault<z.ZodString>;
@@ -2032,12 +2064,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2032
2064
  }>>;
2033
2065
  }, "strict", z.ZodTypeAny, {
2034
2066
  text: string;
2035
- speaker: string;
2036
- duration?: number | undefined;
2037
- speechOptions?: {
2038
- speed?: number | undefined;
2039
- instruction?: string | undefined;
2040
- } | undefined;
2041
2067
  image?: {
2042
2068
  type: "markdown";
2043
2069
  markdown: string | string[];
@@ -2142,6 +2168,11 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2142
2168
  type: "voice_over";
2143
2169
  startAt?: number | undefined;
2144
2170
  } | undefined;
2171
+ duration?: number | undefined;
2172
+ speechOptions?: {
2173
+ speed?: number | undefined;
2174
+ instruction?: string | undefined;
2175
+ } | undefined;
2145
2176
  id?: string | undefined;
2146
2177
  audio?: {
2147
2178
  type: "audio";
@@ -2163,6 +2194,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2163
2194
  source: string;
2164
2195
  } | undefined;
2165
2196
  imagePrompt?: string | undefined;
2197
+ speaker?: string | undefined;
2166
2198
  description?: string | undefined;
2167
2199
  imageParams?: {
2168
2200
  provider: string;
@@ -2195,11 +2227,16 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2195
2227
  } | undefined;
2196
2228
  movieParams?: {
2197
2229
  speed?: number | undefined;
2230
+ provider?: string | undefined;
2198
2231
  model?: string | undefined;
2199
2232
  fillOption?: {
2200
2233
  style: "aspectFit" | "aspectFill";
2201
2234
  } | undefined;
2202
2235
  } | undefined;
2236
+ soundEffectParams?: {
2237
+ provider?: string | undefined;
2238
+ model?: string | undefined;
2239
+ } | undefined;
2203
2240
  htmlImageParams?: {
2204
2241
  model?: string | undefined;
2205
2242
  } | undefined;
@@ -2212,6 +2249,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2212
2249
  } | undefined;
2213
2250
  imageNames?: string[] | undefined;
2214
2251
  moviePrompt?: string | undefined;
2252
+ soundEffectPrompt?: string | undefined;
2215
2253
  htmlPrompt?: {
2216
2254
  prompt: string;
2217
2255
  data?: any;
@@ -2219,12 +2257,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2219
2257
  systemPrompt?: string | undefined;
2220
2258
  } | undefined;
2221
2259
  }, {
2222
- text?: string | undefined;
2223
- duration?: number | undefined;
2224
- speechOptions?: {
2225
- speed?: number | undefined;
2226
- instruction?: string | undefined;
2227
- } | undefined;
2228
2260
  image?: {
2229
2261
  type: "markdown";
2230
2262
  markdown: string | string[];
@@ -2329,6 +2361,12 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2329
2361
  type: "voice_over";
2330
2362
  startAt?: number | undefined;
2331
2363
  } | undefined;
2364
+ text?: string | undefined;
2365
+ duration?: number | undefined;
2366
+ speechOptions?: {
2367
+ speed?: number | undefined;
2368
+ instruction?: string | undefined;
2369
+ } | undefined;
2332
2370
  id?: string | undefined;
2333
2371
  audio?: {
2334
2372
  type: "audio";
@@ -2383,11 +2421,16 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2383
2421
  } | undefined;
2384
2422
  movieParams?: {
2385
2423
  speed?: number | undefined;
2424
+ provider?: string | undefined;
2386
2425
  model?: string | undefined;
2387
2426
  fillOption?: {
2388
2427
  style?: "aspectFit" | "aspectFill" | undefined;
2389
2428
  } | undefined;
2390
2429
  } | undefined;
2430
+ soundEffectParams?: {
2431
+ provider?: string | undefined;
2432
+ model?: string | undefined;
2433
+ } | undefined;
2391
2434
  htmlImageParams?: {
2392
2435
  model?: string | undefined;
2393
2436
  } | undefined;
@@ -2400,6 +2443,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2400
2443
  } | undefined;
2401
2444
  imageNames?: string[] | undefined;
2402
2445
  moviePrompt?: string | undefined;
2446
+ soundEffectPrompt?: string | undefined;
2403
2447
  htmlPrompt?: {
2404
2448
  data?: any;
2405
2449
  prompt?: string | undefined;
@@ -2418,81 +2462,16 @@ export declare const mulmoCanvasDimensionSchema: z.ZodDefault<z.ZodObject<{
2418
2462
  height: number;
2419
2463
  }>>;
2420
2464
  export declare const mulmoCastCreditSchema: z.ZodObject<{
2421
- version: z.ZodLiteral<"1.0">;
2465
+ version: z.ZodLiteral<"1.1">;
2422
2466
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
2423
2467
  }, "strict", z.ZodTypeAny, {
2424
- version: "1.0";
2468
+ version: "1.1";
2425
2469
  credit?: "closing" | undefined;
2426
2470
  }, {
2427
- version: "1.0";
2471
+ version: "1.1";
2428
2472
  credit?: "closing" | undefined;
2429
2473
  }>;
2430
- export declare const mulmoSpeechParamsSchema: z.ZodObject<{
2431
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2432
- speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
2433
- displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2434
- voiceId: z.ZodString;
2435
- speechOptions: z.ZodOptional<z.ZodObject<{
2436
- speed: z.ZodOptional<z.ZodNumber>;
2437
- instruction: z.ZodOptional<z.ZodString>;
2438
- }, "strict", z.ZodTypeAny, {
2439
- speed?: number | undefined;
2440
- instruction?: string | undefined;
2441
- }, {
2442
- speed?: number | undefined;
2443
- instruction?: string | undefined;
2444
- }>>;
2445
- provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
2446
- model: z.ZodOptional<z.ZodString>;
2447
- }, "strict", z.ZodTypeAny, {
2448
- voiceId: string;
2449
- displayName?: Record<string, string> | undefined;
2450
- speechOptions?: {
2451
- speed?: number | undefined;
2452
- instruction?: string | undefined;
2453
- } | undefined;
2454
- provider?: string | undefined;
2455
- model?: string | undefined;
2456
- }, {
2457
- voiceId: string;
2458
- displayName?: Record<string, string> | undefined;
2459
- speechOptions?: {
2460
- speed?: number | undefined;
2461
- instruction?: string | undefined;
2462
- } | undefined;
2463
- provider?: string | undefined;
2464
- model?: string | undefined;
2465
- }>>;
2466
- model: z.ZodOptional<z.ZodString>;
2467
- }, "strict", z.ZodTypeAny, {
2468
- provider: string;
2469
- speakers: Record<string, {
2470
- voiceId: string;
2471
- displayName?: Record<string, string> | undefined;
2472
- speechOptions?: {
2473
- speed?: number | undefined;
2474
- instruction?: string | undefined;
2475
- } | undefined;
2476
- provider?: string | undefined;
2477
- model?: string | undefined;
2478
- }>;
2479
- model?: string | undefined;
2480
- }, {
2481
- speakers: Record<string, {
2482
- voiceId: string;
2483
- displayName?: Record<string, string> | undefined;
2484
- speechOptions?: {
2485
- speed?: number | undefined;
2486
- instruction?: string | undefined;
2487
- } | undefined;
2488
- provider?: string | undefined;
2489
- model?: string | undefined;
2490
- }>;
2491
- provider?: string | undefined;
2492
- model?: string | undefined;
2493
- }>;
2494
2474
  export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2495
- export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2496
2475
  export declare const mulmoGoogleMovieModelSchema: z.ZodObject<{
2497
2476
  provider: z.ZodLiteral<"google">;
2498
2477
  model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
@@ -2566,13 +2545,13 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
2566
2545
  }>;
2567
2546
  export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2568
2547
  $mulmocast: z.ZodObject<{
2569
- version: z.ZodLiteral<"1.0">;
2548
+ version: z.ZodLiteral<"1.1">;
2570
2549
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
2571
2550
  }, "strict", z.ZodTypeAny, {
2572
- version: "1.0";
2551
+ version: "1.1";
2573
2552
  credit?: "closing" | undefined;
2574
2553
  }, {
2575
- version: "1.0";
2554
+ version: "1.1";
2576
2555
  credit?: "closing" | undefined;
2577
2556
  }>;
2578
2557
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -2586,10 +2565,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2586
2565
  height: number;
2587
2566
  }>>;
2588
2567
  speechParams: z.ZodDefault<z.ZodObject<{
2589
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2590
2568
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
2591
2569
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2592
2570
  voiceId: z.ZodString;
2571
+ isDefault: z.ZodOptional<z.ZodBoolean>;
2593
2572
  speechOptions: z.ZodOptional<z.ZodObject<{
2594
2573
  speed: z.ZodOptional<z.ZodNumber>;
2595
2574
  instruction: z.ZodOptional<z.ZodString>;
@@ -2605,6 +2584,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2605
2584
  }, "strict", z.ZodTypeAny, {
2606
2585
  voiceId: string;
2607
2586
  displayName?: Record<string, string> | undefined;
2587
+ isDefault?: boolean | undefined;
2608
2588
  speechOptions?: {
2609
2589
  speed?: number | undefined;
2610
2590
  instruction?: string | undefined;
@@ -2614,6 +2594,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2614
2594
  }, {
2615
2595
  voiceId: string;
2616
2596
  displayName?: Record<string, string> | undefined;
2597
+ isDefault?: boolean | undefined;
2617
2598
  speechOptions?: {
2618
2599
  speed?: number | undefined;
2619
2600
  instruction?: string | undefined;
@@ -2621,12 +2602,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2621
2602
  provider?: string | undefined;
2622
2603
  model?: string | undefined;
2623
2604
  }>>;
2624
- model: z.ZodOptional<z.ZodString>;
2625
- }, "strict", z.ZodTypeAny, {
2626
- provider: string;
2605
+ }, "strip", z.ZodTypeAny, {
2627
2606
  speakers: Record<string, {
2628
2607
  voiceId: string;
2629
2608
  displayName?: Record<string, string> | undefined;
2609
+ isDefault?: boolean | undefined;
2630
2610
  speechOptions?: {
2631
2611
  speed?: number | undefined;
2632
2612
  instruction?: string | undefined;
@@ -2634,11 +2614,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2634
2614
  provider?: string | undefined;
2635
2615
  model?: string | undefined;
2636
2616
  }>;
2637
- model?: string | undefined;
2638
2617
  }, {
2639
2618
  speakers: Record<string, {
2640
2619
  voiceId: string;
2641
2620
  displayName?: Record<string, string> | undefined;
2621
+ isDefault?: boolean | undefined;
2642
2622
  speechOptions?: {
2643
2623
  speed?: number | undefined;
2644
2624
  instruction?: string | undefined;
@@ -2646,10 +2626,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2646
2626
  provider?: string | undefined;
2647
2627
  model?: string | undefined;
2648
2628
  }>;
2649
- provider?: string | undefined;
2650
- model?: string | undefined;
2651
2629
  }>>;
2652
- imageParams: z.ZodOptional<z.ZodObject<{
2630
+ imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2653
2631
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2654
2632
  model: z.ZodOptional<z.ZodString>;
2655
2633
  style: z.ZodOptional<z.ZodString>;
@@ -2781,8 +2759,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2781
2759
  type: "imagePrompt";
2782
2760
  prompt: string;
2783
2761
  }> | undefined;
2784
- }>>;
2785
- movieParams: z.ZodOptional<z.ZodObject<{
2762
+ }>>>;
2763
+ movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2786
2764
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
2787
2765
  model: z.ZodOptional<z.ZodString>;
2788
2766
  transition: z.ZodOptional<z.ZodObject<{
@@ -2822,7 +2800,17 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2822
2800
  type: "fade" | "slideout_left";
2823
2801
  duration?: number | undefined;
2824
2802
  } | undefined;
2825
- }>>;
2803
+ }>>>;
2804
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2805
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
2806
+ model: z.ZodOptional<z.ZodString>;
2807
+ }, "strip", z.ZodTypeAny, {
2808
+ provider?: string | undefined;
2809
+ model?: string | undefined;
2810
+ }, {
2811
+ provider?: string | undefined;
2812
+ model?: string | undefined;
2813
+ }>>>;
2826
2814
  htmlImageParams: z.ZodOptional<z.ZodObject<{
2827
2815
  model: z.ZodOptional<z.ZodString>;
2828
2816
  } & {
@@ -2940,6 +2928,31 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2940
2928
  suppressSpeech?: boolean | undefined;
2941
2929
  }>>;
2942
2930
  }, "strip", z.ZodTypeAny, {
2931
+ imageParams: {
2932
+ provider: string;
2933
+ model?: string | undefined;
2934
+ style?: string | undefined;
2935
+ moderation?: string | undefined;
2936
+ images?: Record<string, {
2937
+ type: "image";
2938
+ source: {
2939
+ url: string;
2940
+ kind: "url";
2941
+ } | {
2942
+ kind: "base64";
2943
+ data: string;
2944
+ } | {
2945
+ text: string;
2946
+ kind: "text";
2947
+ } | {
2948
+ path: string;
2949
+ kind: "path";
2950
+ };
2951
+ } | {
2952
+ type: "imagePrompt";
2953
+ prompt: string;
2954
+ }> | undefined;
2955
+ };
2943
2956
  audioParams: {
2944
2957
  padding: number;
2945
2958
  introPadding: number;
@@ -2962,8 +2975,23 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2962
2975
  kind: "path";
2963
2976
  } | undefined;
2964
2977
  };
2978
+ movieParams: {
2979
+ provider?: string | undefined;
2980
+ model?: string | undefined;
2981
+ fillOption?: {
2982
+ style: "aspectFit" | "aspectFill";
2983
+ } | undefined;
2984
+ transition?: {
2985
+ type: "fade" | "slideout_left";
2986
+ duration: number;
2987
+ } | undefined;
2988
+ };
2989
+ soundEffectParams: {
2990
+ provider?: string | undefined;
2991
+ model?: string | undefined;
2992
+ };
2965
2993
  $mulmocast: {
2966
- version: "1.0";
2994
+ version: "1.1";
2967
2995
  credit?: "closing" | undefined;
2968
2996
  };
2969
2997
  canvasSize: {
@@ -2971,10 +2999,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2971
2999
  height: number;
2972
3000
  };
2973
3001
  speechParams: {
2974
- provider: string;
2975
3002
  speakers: Record<string, {
2976
3003
  voiceId: string;
2977
3004
  displayName?: Record<string, string> | undefined;
3005
+ isDefault?: boolean | undefined;
2978
3006
  speechOptions?: {
2979
3007
  speed?: number | undefined;
2980
3008
  instruction?: string | undefined;
@@ -2982,44 +3010,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2982
3010
  provider?: string | undefined;
2983
3011
  model?: string | undefined;
2984
3012
  }>;
2985
- model?: string | undefined;
2986
3013
  };
2987
- imageParams?: {
2988
- provider: string;
2989
- model?: string | undefined;
2990
- style?: string | undefined;
2991
- moderation?: string | undefined;
2992
- images?: Record<string, {
2993
- type: "image";
2994
- source: {
2995
- url: string;
2996
- kind: "url";
2997
- } | {
2998
- kind: "base64";
2999
- data: string;
3000
- } | {
3001
- text: string;
3002
- kind: "text";
3003
- } | {
3004
- path: string;
3005
- kind: "path";
3006
- };
3007
- } | {
3008
- type: "imagePrompt";
3009
- prompt: string;
3010
- }> | undefined;
3011
- } | undefined;
3012
- movieParams?: {
3013
- provider?: string | undefined;
3014
- model?: string | undefined;
3015
- fillOption?: {
3016
- style: "aspectFit" | "aspectFill";
3017
- } | undefined;
3018
- transition?: {
3019
- type: "fade" | "slideout_left";
3020
- duration: number;
3021
- } | undefined;
3022
- } | undefined;
3023
3014
  htmlImageParams?: {
3024
3015
  provider: string;
3025
3016
  model?: string | undefined;
@@ -3033,7 +3024,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3033
3024
  } | undefined;
3034
3025
  }, {
3035
3026
  $mulmocast: {
3036
- version: "1.0";
3027
+ version: "1.1";
3037
3028
  credit?: "closing" | undefined;
3038
3029
  };
3039
3030
  imageParams?: {
@@ -3094,6 +3085,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3094
3085
  duration?: number | undefined;
3095
3086
  } | undefined;
3096
3087
  } | undefined;
3088
+ soundEffectParams?: {
3089
+ provider?: string | undefined;
3090
+ model?: string | undefined;
3091
+ } | undefined;
3097
3092
  htmlImageParams?: {
3098
3093
  provider?: string | undefined;
3099
3094
  model?: string | undefined;
@@ -3113,6 +3108,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3113
3108
  speakers: Record<string, {
3114
3109
  voiceId: string;
3115
3110
  displayName?: Record<string, string> | undefined;
3111
+ isDefault?: boolean | undefined;
3116
3112
  speechOptions?: {
3117
3113
  speed?: number | undefined;
3118
3114
  instruction?: string | undefined;
@@ -3120,8 +3116,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3120
3116
  provider?: string | undefined;
3121
3117
  model?: string | undefined;
3122
3118
  }>;
3123
- provider?: string | undefined;
3124
- model?: string | undefined;
3125
3119
  } | undefined;
3126
3120
  }>;
3127
3121
  export declare const mulmoReferenceSchema: z.ZodObject<{
@@ -3142,13 +3136,13 @@ export declare const mulmoReferenceSchema: z.ZodObject<{
3142
3136
  }>;
3143
3137
  export declare const mulmoScriptSchema: z.ZodObject<{
3144
3138
  $mulmocast: z.ZodObject<{
3145
- version: z.ZodLiteral<"1.0">;
3139
+ version: z.ZodLiteral<"1.1">;
3146
3140
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
3147
3141
  }, "strict", z.ZodTypeAny, {
3148
- version: "1.0";
3142
+ version: "1.1";
3149
3143
  credit?: "closing" | undefined;
3150
3144
  }, {
3151
- version: "1.0";
3145
+ version: "1.1";
3152
3146
  credit?: "closing" | undefined;
3153
3147
  }>;
3154
3148
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -3162,10 +3156,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3162
3156
  height: number;
3163
3157
  }>>;
3164
3158
  speechParams: z.ZodDefault<z.ZodObject<{
3165
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
3166
3159
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
3167
3160
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3168
3161
  voiceId: z.ZodString;
3162
+ isDefault: z.ZodOptional<z.ZodBoolean>;
3169
3163
  speechOptions: z.ZodOptional<z.ZodObject<{
3170
3164
  speed: z.ZodOptional<z.ZodNumber>;
3171
3165
  instruction: z.ZodOptional<z.ZodString>;
@@ -3181,6 +3175,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3181
3175
  }, "strict", z.ZodTypeAny, {
3182
3176
  voiceId: string;
3183
3177
  displayName?: Record<string, string> | undefined;
3178
+ isDefault?: boolean | undefined;
3184
3179
  speechOptions?: {
3185
3180
  speed?: number | undefined;
3186
3181
  instruction?: string | undefined;
@@ -3190,6 +3185,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3190
3185
  }, {
3191
3186
  voiceId: string;
3192
3187
  displayName?: Record<string, string> | undefined;
3188
+ isDefault?: boolean | undefined;
3193
3189
  speechOptions?: {
3194
3190
  speed?: number | undefined;
3195
3191
  instruction?: string | undefined;
@@ -3197,12 +3193,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3197
3193
  provider?: string | undefined;
3198
3194
  model?: string | undefined;
3199
3195
  }>>;
3200
- model: z.ZodOptional<z.ZodString>;
3201
- }, "strict", z.ZodTypeAny, {
3202
- provider: string;
3196
+ }, "strip", z.ZodTypeAny, {
3203
3197
  speakers: Record<string, {
3204
3198
  voiceId: string;
3205
3199
  displayName?: Record<string, string> | undefined;
3200
+ isDefault?: boolean | undefined;
3206
3201
  speechOptions?: {
3207
3202
  speed?: number | undefined;
3208
3203
  instruction?: string | undefined;
@@ -3210,11 +3205,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3210
3205
  provider?: string | undefined;
3211
3206
  model?: string | undefined;
3212
3207
  }>;
3213
- model?: string | undefined;
3214
3208
  }, {
3215
3209
  speakers: Record<string, {
3216
3210
  voiceId: string;
3217
3211
  displayName?: Record<string, string> | undefined;
3212
+ isDefault?: boolean | undefined;
3218
3213
  speechOptions?: {
3219
3214
  speed?: number | undefined;
3220
3215
  instruction?: string | undefined;
@@ -3222,10 +3217,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3222
3217
  provider?: string | undefined;
3223
3218
  model?: string | undefined;
3224
3219
  }>;
3225
- provider?: string | undefined;
3226
- model?: string | undefined;
3227
3220
  }>>;
3228
- imageParams: z.ZodOptional<z.ZodObject<{
3221
+ imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3229
3222
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
3230
3223
  model: z.ZodOptional<z.ZodString>;
3231
3224
  style: z.ZodOptional<z.ZodString>;
@@ -3357,8 +3350,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3357
3350
  type: "imagePrompt";
3358
3351
  prompt: string;
3359
3352
  }> | undefined;
3360
- }>>;
3361
- movieParams: z.ZodOptional<z.ZodObject<{
3353
+ }>>>;
3354
+ movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3362
3355
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
3363
3356
  model: z.ZodOptional<z.ZodString>;
3364
3357
  transition: z.ZodOptional<z.ZodObject<{
@@ -3398,7 +3391,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3398
3391
  type: "fade" | "slideout_left";
3399
3392
  duration?: number | undefined;
3400
3393
  } | undefined;
3401
- }>>;
3394
+ }>>>;
3395
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3396
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
3397
+ model: z.ZodOptional<z.ZodString>;
3398
+ }, "strip", z.ZodTypeAny, {
3399
+ provider?: string | undefined;
3400
+ model?: string | undefined;
3401
+ }, {
3402
+ provider?: string | undefined;
3403
+ model?: string | undefined;
3404
+ }>>>;
3402
3405
  htmlImageParams: z.ZodOptional<z.ZodObject<{
3403
3406
  model: z.ZodOptional<z.ZodString>;
3404
3407
  } & {
@@ -3536,7 +3539,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3536
3539
  }>, "many">>;
3537
3540
  lang: z.ZodOptional<z.ZodString>;
3538
3541
  beats: z.ZodArray<z.ZodObject<{
3539
- speaker: z.ZodDefault<z.ZodString>;
3542
+ speaker: z.ZodOptional<z.ZodString>;
3540
3543
  text: z.ZodDefault<z.ZodString>;
3541
3544
  id: z.ZodOptional<z.ZodString>;
3542
3545
  description: z.ZodOptional<z.ZodString>;
@@ -4202,6 +4205,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4202
4205
  movieVolume?: number | undefined;
4203
4206
  }>>;
4204
4207
  movieParams: z.ZodOptional<z.ZodObject<{
4208
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
4205
4209
  model: z.ZodOptional<z.ZodString>;
4206
4210
  fillOption: z.ZodOptional<z.ZodObject<{
4207
4211
  style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
@@ -4213,17 +4217,29 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4213
4217
  speed: z.ZodOptional<z.ZodNumber>;
4214
4218
  }, "strip", z.ZodTypeAny, {
4215
4219
  speed?: number | undefined;
4220
+ provider?: string | undefined;
4216
4221
  model?: string | undefined;
4217
4222
  fillOption?: {
4218
4223
  style: "aspectFit" | "aspectFill";
4219
4224
  } | undefined;
4220
4225
  }, {
4221
4226
  speed?: number | undefined;
4227
+ provider?: string | undefined;
4222
4228
  model?: string | undefined;
4223
4229
  fillOption?: {
4224
4230
  style?: "aspectFit" | "aspectFill" | undefined;
4225
4231
  } | undefined;
4226
4232
  }>>;
4233
+ soundEffectParams: z.ZodOptional<z.ZodObject<{
4234
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
4235
+ model: z.ZodOptional<z.ZodString>;
4236
+ }, "strip", z.ZodTypeAny, {
4237
+ provider?: string | undefined;
4238
+ model?: string | undefined;
4239
+ }, {
4240
+ provider?: string | undefined;
4241
+ model?: string | undefined;
4242
+ }>>;
4227
4243
  htmlImageParams: z.ZodOptional<z.ZodObject<{
4228
4244
  model: z.ZodOptional<z.ZodString>;
4229
4245
  }, "strict", z.ZodTypeAny, {
@@ -4261,6 +4277,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4261
4277
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4262
4278
  imagePrompt: z.ZodOptional<z.ZodString>;
4263
4279
  moviePrompt: z.ZodOptional<z.ZodString>;
4280
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
4264
4281
  htmlPrompt: z.ZodOptional<z.ZodObject<{
4265
4282
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
4266
4283
  prompt: z.ZodDefault<z.ZodString>;
@@ -4279,12 +4296,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4279
4296
  }>>;
4280
4297
  }, "strict", z.ZodTypeAny, {
4281
4298
  text: string;
4282
- speaker: string;
4283
- duration?: number | undefined;
4284
- speechOptions?: {
4285
- speed?: number | undefined;
4286
- instruction?: string | undefined;
4287
- } | undefined;
4288
4299
  image?: {
4289
4300
  type: "markdown";
4290
4301
  markdown: string | string[];
@@ -4389,6 +4400,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4389
4400
  type: "voice_over";
4390
4401
  startAt?: number | undefined;
4391
4402
  } | undefined;
4403
+ duration?: number | undefined;
4404
+ speechOptions?: {
4405
+ speed?: number | undefined;
4406
+ instruction?: string | undefined;
4407
+ } | undefined;
4392
4408
  id?: string | undefined;
4393
4409
  audio?: {
4394
4410
  type: "audio";
@@ -4410,6 +4426,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4410
4426
  source: string;
4411
4427
  } | undefined;
4412
4428
  imagePrompt?: string | undefined;
4429
+ speaker?: string | undefined;
4413
4430
  description?: string | undefined;
4414
4431
  imageParams?: {
4415
4432
  provider: string;
@@ -4442,11 +4459,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4442
4459
  } | undefined;
4443
4460
  movieParams?: {
4444
4461
  speed?: number | undefined;
4462
+ provider?: string | undefined;
4445
4463
  model?: string | undefined;
4446
4464
  fillOption?: {
4447
4465
  style: "aspectFit" | "aspectFill";
4448
4466
  } | undefined;
4449
4467
  } | undefined;
4468
+ soundEffectParams?: {
4469
+ provider?: string | undefined;
4470
+ model?: string | undefined;
4471
+ } | undefined;
4450
4472
  htmlImageParams?: {
4451
4473
  model?: string | undefined;
4452
4474
  } | undefined;
@@ -4459,6 +4481,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4459
4481
  } | undefined;
4460
4482
  imageNames?: string[] | undefined;
4461
4483
  moviePrompt?: string | undefined;
4484
+ soundEffectPrompt?: string | undefined;
4462
4485
  htmlPrompt?: {
4463
4486
  prompt: string;
4464
4487
  data?: any;
@@ -4466,12 +4489,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4466
4489
  systemPrompt?: string | undefined;
4467
4490
  } | undefined;
4468
4491
  }, {
4469
- text?: string | undefined;
4470
- duration?: number | undefined;
4471
- speechOptions?: {
4472
- speed?: number | undefined;
4473
- instruction?: string | undefined;
4474
- } | undefined;
4475
4492
  image?: {
4476
4493
  type: "markdown";
4477
4494
  markdown: string | string[];
@@ -4576,6 +4593,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4576
4593
  type: "voice_over";
4577
4594
  startAt?: number | undefined;
4578
4595
  } | undefined;
4596
+ text?: string | undefined;
4597
+ duration?: number | undefined;
4598
+ speechOptions?: {
4599
+ speed?: number | undefined;
4600
+ instruction?: string | undefined;
4601
+ } | undefined;
4579
4602
  id?: string | undefined;
4580
4603
  audio?: {
4581
4604
  type: "audio";
@@ -4630,11 +4653,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4630
4653
  } | undefined;
4631
4654
  movieParams?: {
4632
4655
  speed?: number | undefined;
4656
+ provider?: string | undefined;
4633
4657
  model?: string | undefined;
4634
4658
  fillOption?: {
4635
4659
  style?: "aspectFit" | "aspectFill" | undefined;
4636
4660
  } | undefined;
4637
4661
  } | undefined;
4662
+ soundEffectParams?: {
4663
+ provider?: string | undefined;
4664
+ model?: string | undefined;
4665
+ } | undefined;
4638
4666
  htmlImageParams?: {
4639
4667
  model?: string | undefined;
4640
4668
  } | undefined;
@@ -4647,6 +4675,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4647
4675
  } | undefined;
4648
4676
  imageNames?: string[] | undefined;
4649
4677
  moviePrompt?: string | undefined;
4678
+ soundEffectPrompt?: string | undefined;
4650
4679
  htmlPrompt?: {
4651
4680
  data?: any;
4652
4681
  prompt?: string | undefined;
@@ -4657,6 +4686,31 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4657
4686
  imagePath: z.ZodOptional<z.ZodString>;
4658
4687
  __test_invalid__: z.ZodOptional<z.ZodBoolean>;
4659
4688
  }, "strict", z.ZodTypeAny, {
4689
+ imageParams: {
4690
+ provider: string;
4691
+ model?: string | undefined;
4692
+ style?: string | undefined;
4693
+ moderation?: string | undefined;
4694
+ images?: Record<string, {
4695
+ type: "image";
4696
+ source: {
4697
+ url: string;
4698
+ kind: "url";
4699
+ } | {
4700
+ kind: "base64";
4701
+ data: string;
4702
+ } | {
4703
+ text: string;
4704
+ kind: "text";
4705
+ } | {
4706
+ path: string;
4707
+ kind: "path";
4708
+ };
4709
+ } | {
4710
+ type: "imagePrompt";
4711
+ prompt: string;
4712
+ }> | undefined;
4713
+ };
4660
4714
  audioParams: {
4661
4715
  padding: number;
4662
4716
  introPadding: number;
@@ -4679,8 +4733,23 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4679
4733
  kind: "path";
4680
4734
  } | undefined;
4681
4735
  };
4736
+ movieParams: {
4737
+ provider?: string | undefined;
4738
+ model?: string | undefined;
4739
+ fillOption?: {
4740
+ style: "aspectFit" | "aspectFill";
4741
+ } | undefined;
4742
+ transition?: {
4743
+ type: "fade" | "slideout_left";
4744
+ duration: number;
4745
+ } | undefined;
4746
+ };
4747
+ soundEffectParams: {
4748
+ provider?: string | undefined;
4749
+ model?: string | undefined;
4750
+ };
4682
4751
  $mulmocast: {
4683
- version: "1.0";
4752
+ version: "1.1";
4684
4753
  credit?: "closing" | undefined;
4685
4754
  };
4686
4755
  canvasSize: {
@@ -4688,10 +4757,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4688
4757
  height: number;
4689
4758
  };
4690
4759
  speechParams: {
4691
- provider: string;
4692
4760
  speakers: Record<string, {
4693
4761
  voiceId: string;
4694
4762
  displayName?: Record<string, string> | undefined;
4763
+ isDefault?: boolean | undefined;
4695
4764
  speechOptions?: {
4696
4765
  speed?: number | undefined;
4697
4766
  instruction?: string | undefined;
@@ -4699,16 +4768,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4699
4768
  provider?: string | undefined;
4700
4769
  model?: string | undefined;
4701
4770
  }>;
4702
- model?: string | undefined;
4703
4771
  };
4704
4772
  beats: {
4705
4773
  text: string;
4706
- speaker: string;
4707
- duration?: number | undefined;
4708
- speechOptions?: {
4709
- speed?: number | undefined;
4710
- instruction?: string | undefined;
4711
- } | undefined;
4712
4774
  image?: {
4713
4775
  type: "markdown";
4714
4776
  markdown: string | string[];
@@ -4813,6 +4875,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4813
4875
  type: "voice_over";
4814
4876
  startAt?: number | undefined;
4815
4877
  } | undefined;
4878
+ duration?: number | undefined;
4879
+ speechOptions?: {
4880
+ speed?: number | undefined;
4881
+ instruction?: string | undefined;
4882
+ } | undefined;
4816
4883
  id?: string | undefined;
4817
4884
  audio?: {
4818
4885
  type: "audio";
@@ -4834,6 +4901,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4834
4901
  source: string;
4835
4902
  } | undefined;
4836
4903
  imagePrompt?: string | undefined;
4904
+ speaker?: string | undefined;
4837
4905
  description?: string | undefined;
4838
4906
  imageParams?: {
4839
4907
  provider: string;
@@ -4866,11 +4934,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4866
4934
  } | undefined;
4867
4935
  movieParams?: {
4868
4936
  speed?: number | undefined;
4937
+ provider?: string | undefined;
4869
4938
  model?: string | undefined;
4870
4939
  fillOption?: {
4871
4940
  style: "aspectFit" | "aspectFill";
4872
4941
  } | undefined;
4873
4942
  } | undefined;
4943
+ soundEffectParams?: {
4944
+ provider?: string | undefined;
4945
+ model?: string | undefined;
4946
+ } | undefined;
4874
4947
  htmlImageParams?: {
4875
4948
  model?: string | undefined;
4876
4949
  } | undefined;
@@ -4883,6 +4956,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4883
4956
  } | undefined;
4884
4957
  imageNames?: string[] | undefined;
4885
4958
  moviePrompt?: string | undefined;
4959
+ soundEffectPrompt?: string | undefined;
4886
4960
  htmlPrompt?: {
4887
4961
  prompt: string;
4888
4962
  data?: any;
@@ -4893,42 +4967,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4893
4967
  lang?: string | undefined;
4894
4968
  title?: string | undefined;
4895
4969
  description?: string | undefined;
4896
- imageParams?: {
4897
- provider: string;
4898
- model?: string | undefined;
4899
- style?: string | undefined;
4900
- moderation?: string | undefined;
4901
- images?: Record<string, {
4902
- type: "image";
4903
- source: {
4904
- url: string;
4905
- kind: "url";
4906
- } | {
4907
- kind: "base64";
4908
- data: string;
4909
- } | {
4910
- text: string;
4911
- kind: "text";
4912
- } | {
4913
- path: string;
4914
- kind: "path";
4915
- };
4916
- } | {
4917
- type: "imagePrompt";
4918
- prompt: string;
4919
- }> | undefined;
4920
- } | undefined;
4921
- movieParams?: {
4922
- provider?: string | undefined;
4923
- model?: string | undefined;
4924
- fillOption?: {
4925
- style: "aspectFit" | "aspectFill";
4926
- } | undefined;
4927
- transition?: {
4928
- type: "fade" | "slideout_left";
4929
- duration: number;
4930
- } | undefined;
4931
- } | undefined;
4932
4970
  htmlImageParams?: {
4933
4971
  provider: string;
4934
4972
  model?: string | undefined;
@@ -4950,16 +4988,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4950
4988
  __test_invalid__?: boolean | undefined;
4951
4989
  }, {
4952
4990
  $mulmocast: {
4953
- version: "1.0";
4991
+ version: "1.1";
4954
4992
  credit?: "closing" | undefined;
4955
4993
  };
4956
4994
  beats: {
4957
- text?: string | undefined;
4958
- duration?: number | undefined;
4959
- speechOptions?: {
4960
- speed?: number | undefined;
4961
- instruction?: string | undefined;
4962
- } | undefined;
4963
4995
  image?: {
4964
4996
  type: "markdown";
4965
4997
  markdown: string | string[];
@@ -5064,6 +5096,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5064
5096
  type: "voice_over";
5065
5097
  startAt?: number | undefined;
5066
5098
  } | undefined;
5099
+ text?: string | undefined;
5100
+ duration?: number | undefined;
5101
+ speechOptions?: {
5102
+ speed?: number | undefined;
5103
+ instruction?: string | undefined;
5104
+ } | undefined;
5067
5105
  id?: string | undefined;
5068
5106
  audio?: {
5069
5107
  type: "audio";
@@ -5118,11 +5156,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5118
5156
  } | undefined;
5119
5157
  movieParams?: {
5120
5158
  speed?: number | undefined;
5159
+ provider?: string | undefined;
5121
5160
  model?: string | undefined;
5122
5161
  fillOption?: {
5123
5162
  style?: "aspectFit" | "aspectFill" | undefined;
5124
5163
  } | undefined;
5125
5164
  } | undefined;
5165
+ soundEffectParams?: {
5166
+ provider?: string | undefined;
5167
+ model?: string | undefined;
5168
+ } | undefined;
5126
5169
  htmlImageParams?: {
5127
5170
  model?: string | undefined;
5128
5171
  } | undefined;
@@ -5135,6 +5178,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5135
5178
  } | undefined;
5136
5179
  imageNames?: string[] | undefined;
5137
5180
  moviePrompt?: string | undefined;
5181
+ soundEffectPrompt?: string | undefined;
5138
5182
  htmlPrompt?: {
5139
5183
  data?: any;
5140
5184
  prompt?: string | undefined;
@@ -5203,6 +5247,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5203
5247
  duration?: number | undefined;
5204
5248
  } | undefined;
5205
5249
  } | undefined;
5250
+ soundEffectParams?: {
5251
+ provider?: string | undefined;
5252
+ model?: string | undefined;
5253
+ } | undefined;
5206
5254
  htmlImageParams?: {
5207
5255
  provider?: string | undefined;
5208
5256
  model?: string | undefined;
@@ -5222,6 +5270,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5222
5270
  speakers: Record<string, {
5223
5271
  voiceId: string;
5224
5272
  displayName?: Record<string, string> | undefined;
5273
+ isDefault?: boolean | undefined;
5225
5274
  speechOptions?: {
5226
5275
  speed?: number | undefined;
5227
5276
  instruction?: string | undefined;
@@ -5229,8 +5278,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5229
5278
  provider?: string | undefined;
5230
5279
  model?: string | undefined;
5231
5280
  }>;
5232
- provider?: string | undefined;
5233
- model?: string | undefined;
5234
5281
  } | undefined;
5235
5282
  references?: {
5236
5283
  url: string;
@@ -5252,6 +5299,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5252
5299
  audioFile: z.ZodOptional<z.ZodString>;
5253
5300
  imageFile: z.ZodOptional<z.ZodString>;
5254
5301
  movieFile: z.ZodOptional<z.ZodString>;
5302
+ soundEffectFile: z.ZodOptional<z.ZodString>;
5255
5303
  captionFile: z.ZodOptional<z.ZodString>;
5256
5304
  }, "strict", z.ZodTypeAny, {
5257
5305
  duration?: number | undefined;
@@ -5264,6 +5312,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5264
5312
  audioFile?: string | undefined;
5265
5313
  imageFile?: string | undefined;
5266
5314
  movieFile?: string | undefined;
5315
+ soundEffectFile?: string | undefined;
5267
5316
  captionFile?: string | undefined;
5268
5317
  }, {
5269
5318
  duration?: number | undefined;
@@ -5276,6 +5325,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5276
5325
  audioFile?: string | undefined;
5277
5326
  imageFile?: string | undefined;
5278
5327
  movieFile?: string | undefined;
5328
+ soundEffectFile?: string | undefined;
5279
5329
  captionFile?: string | undefined;
5280
5330
  }>;
5281
5331
  export declare const mulmoStudioMultiLingualDataSchema: z.ZodObject<{
@@ -5361,15 +5411,15 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5361
5411
  caption: z.ZodBoolean;
5362
5412
  pdf: z.ZodBoolean;
5363
5413
  }, "strip", z.ZodTypeAny, {
5364
- pdf: boolean;
5365
5414
  image: boolean;
5415
+ pdf: boolean;
5366
5416
  audio: boolean;
5367
5417
  video: boolean;
5368
5418
  multiLingual: boolean;
5369
5419
  caption: boolean;
5370
5420
  }, {
5371
- pdf: boolean;
5372
5421
  image: boolean;
5422
+ pdf: boolean;
5373
5423
  audio: boolean;
5374
5424
  video: boolean;
5375
5425
  multiLingual: boolean;
@@ -5383,6 +5433,7 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5383
5433
  caption: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5384
5434
  html: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5385
5435
  imageReference: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5436
+ soundEffect: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5386
5437
  }, "strip", z.ZodTypeAny, {
5387
5438
  image: Record<number, boolean>;
5388
5439
  movie: Record<number, boolean>;
@@ -5391,6 +5442,7 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5391
5442
  multiLingual: Record<number, boolean>;
5392
5443
  caption: Record<number, boolean>;
5393
5444
  imageReference: Record<number, boolean>;
5445
+ soundEffect: Record<number, boolean>;
5394
5446
  }, {
5395
5447
  image: Record<number, boolean>;
5396
5448
  movie: Record<number, boolean>;
@@ -5399,11 +5451,12 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5399
5451
  multiLingual: Record<number, boolean>;
5400
5452
  caption: Record<number, boolean>;
5401
5453
  imageReference: Record<number, boolean>;
5454
+ soundEffect: Record<number, boolean>;
5402
5455
  }>;
5403
5456
  }, "strip", z.ZodTypeAny, {
5404
5457
  inSession: {
5405
- pdf: boolean;
5406
5458
  image: boolean;
5459
+ pdf: boolean;
5407
5460
  audio: boolean;
5408
5461
  video: boolean;
5409
5462
  multiLingual: boolean;
@@ -5417,11 +5470,12 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5417
5470
  multiLingual: Record<number, boolean>;
5418
5471
  caption: Record<number, boolean>;
5419
5472
  imageReference: Record<number, boolean>;
5473
+ soundEffect: Record<number, boolean>;
5420
5474
  };
5421
5475
  }, {
5422
5476
  inSession: {
5423
- pdf: boolean;
5424
5477
  image: boolean;
5478
+ pdf: boolean;
5425
5479
  audio: boolean;
5426
5480
  video: boolean;
5427
5481
  multiLingual: boolean;
@@ -5435,18 +5489,19 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5435
5489
  multiLingual: Record<number, boolean>;
5436
5490
  caption: Record<number, boolean>;
5437
5491
  imageReference: Record<number, boolean>;
5492
+ soundEffect: Record<number, boolean>;
5438
5493
  };
5439
5494
  }>;
5440
5495
  export declare const mulmoStudioSchema: z.ZodObject<{
5441
5496
  script: z.ZodObject<{
5442
5497
  $mulmocast: z.ZodObject<{
5443
- version: z.ZodLiteral<"1.0">;
5498
+ version: z.ZodLiteral<"1.1">;
5444
5499
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
5445
5500
  }, "strict", z.ZodTypeAny, {
5446
- version: "1.0";
5501
+ version: "1.1";
5447
5502
  credit?: "closing" | undefined;
5448
5503
  }, {
5449
- version: "1.0";
5504
+ version: "1.1";
5450
5505
  credit?: "closing" | undefined;
5451
5506
  }>;
5452
5507
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -5460,10 +5515,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5460
5515
  height: number;
5461
5516
  }>>;
5462
5517
  speechParams: z.ZodDefault<z.ZodObject<{
5463
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
5464
5518
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
5465
5519
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5466
5520
  voiceId: z.ZodString;
5521
+ isDefault: z.ZodOptional<z.ZodBoolean>;
5467
5522
  speechOptions: z.ZodOptional<z.ZodObject<{
5468
5523
  speed: z.ZodOptional<z.ZodNumber>;
5469
5524
  instruction: z.ZodOptional<z.ZodString>;
@@ -5479,6 +5534,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5479
5534
  }, "strict", z.ZodTypeAny, {
5480
5535
  voiceId: string;
5481
5536
  displayName?: Record<string, string> | undefined;
5537
+ isDefault?: boolean | undefined;
5482
5538
  speechOptions?: {
5483
5539
  speed?: number | undefined;
5484
5540
  instruction?: string | undefined;
@@ -5488,6 +5544,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5488
5544
  }, {
5489
5545
  voiceId: string;
5490
5546
  displayName?: Record<string, string> | undefined;
5547
+ isDefault?: boolean | undefined;
5491
5548
  speechOptions?: {
5492
5549
  speed?: number | undefined;
5493
5550
  instruction?: string | undefined;
@@ -5495,12 +5552,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5495
5552
  provider?: string | undefined;
5496
5553
  model?: string | undefined;
5497
5554
  }>>;
5498
- model: z.ZodOptional<z.ZodString>;
5499
- }, "strict", z.ZodTypeAny, {
5500
- provider: string;
5555
+ }, "strip", z.ZodTypeAny, {
5501
5556
  speakers: Record<string, {
5502
5557
  voiceId: string;
5503
5558
  displayName?: Record<string, string> | undefined;
5559
+ isDefault?: boolean | undefined;
5504
5560
  speechOptions?: {
5505
5561
  speed?: number | undefined;
5506
5562
  instruction?: string | undefined;
@@ -5508,11 +5564,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5508
5564
  provider?: string | undefined;
5509
5565
  model?: string | undefined;
5510
5566
  }>;
5511
- model?: string | undefined;
5512
5567
  }, {
5513
5568
  speakers: Record<string, {
5514
5569
  voiceId: string;
5515
5570
  displayName?: Record<string, string> | undefined;
5571
+ isDefault?: boolean | undefined;
5516
5572
  speechOptions?: {
5517
5573
  speed?: number | undefined;
5518
5574
  instruction?: string | undefined;
@@ -5520,10 +5576,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5520
5576
  provider?: string | undefined;
5521
5577
  model?: string | undefined;
5522
5578
  }>;
5523
- provider?: string | undefined;
5524
- model?: string | undefined;
5525
5579
  }>>;
5526
- imageParams: z.ZodOptional<z.ZodObject<{
5580
+ imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5527
5581
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
5528
5582
  model: z.ZodOptional<z.ZodString>;
5529
5583
  style: z.ZodOptional<z.ZodString>;
@@ -5655,8 +5709,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5655
5709
  type: "imagePrompt";
5656
5710
  prompt: string;
5657
5711
  }> | undefined;
5658
- }>>;
5659
- movieParams: z.ZodOptional<z.ZodObject<{
5712
+ }>>>;
5713
+ movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5660
5714
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
5661
5715
  model: z.ZodOptional<z.ZodString>;
5662
5716
  transition: z.ZodOptional<z.ZodObject<{
@@ -5696,7 +5750,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5696
5750
  type: "fade" | "slideout_left";
5697
5751
  duration?: number | undefined;
5698
5752
  } | undefined;
5699
- }>>;
5753
+ }>>>;
5754
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5755
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
5756
+ model: z.ZodOptional<z.ZodString>;
5757
+ }, "strip", z.ZodTypeAny, {
5758
+ provider?: string | undefined;
5759
+ model?: string | undefined;
5760
+ }, {
5761
+ provider?: string | undefined;
5762
+ model?: string | undefined;
5763
+ }>>>;
5700
5764
  htmlImageParams: z.ZodOptional<z.ZodObject<{
5701
5765
  model: z.ZodOptional<z.ZodString>;
5702
5766
  } & {
@@ -5834,7 +5898,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5834
5898
  }>, "many">>;
5835
5899
  lang: z.ZodOptional<z.ZodString>;
5836
5900
  beats: z.ZodArray<z.ZodObject<{
5837
- speaker: z.ZodDefault<z.ZodString>;
5901
+ speaker: z.ZodOptional<z.ZodString>;
5838
5902
  text: z.ZodDefault<z.ZodString>;
5839
5903
  id: z.ZodOptional<z.ZodString>;
5840
5904
  description: z.ZodOptional<z.ZodString>;
@@ -6500,6 +6564,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6500
6564
  movieVolume?: number | undefined;
6501
6565
  }>>;
6502
6566
  movieParams: z.ZodOptional<z.ZodObject<{
6567
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
6503
6568
  model: z.ZodOptional<z.ZodString>;
6504
6569
  fillOption: z.ZodOptional<z.ZodObject<{
6505
6570
  style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
@@ -6511,17 +6576,29 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6511
6576
  speed: z.ZodOptional<z.ZodNumber>;
6512
6577
  }, "strip", z.ZodTypeAny, {
6513
6578
  speed?: number | undefined;
6579
+ provider?: string | undefined;
6514
6580
  model?: string | undefined;
6515
6581
  fillOption?: {
6516
6582
  style: "aspectFit" | "aspectFill";
6517
6583
  } | undefined;
6518
6584
  }, {
6519
6585
  speed?: number | undefined;
6586
+ provider?: string | undefined;
6520
6587
  model?: string | undefined;
6521
6588
  fillOption?: {
6522
6589
  style?: "aspectFit" | "aspectFill" | undefined;
6523
6590
  } | undefined;
6524
6591
  }>>;
6592
+ soundEffectParams: z.ZodOptional<z.ZodObject<{
6593
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
6594
+ model: z.ZodOptional<z.ZodString>;
6595
+ }, "strip", z.ZodTypeAny, {
6596
+ provider?: string | undefined;
6597
+ model?: string | undefined;
6598
+ }, {
6599
+ provider?: string | undefined;
6600
+ model?: string | undefined;
6601
+ }>>;
6525
6602
  htmlImageParams: z.ZodOptional<z.ZodObject<{
6526
6603
  model: z.ZodOptional<z.ZodString>;
6527
6604
  }, "strict", z.ZodTypeAny, {
@@ -6559,6 +6636,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6559
6636
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6560
6637
  imagePrompt: z.ZodOptional<z.ZodString>;
6561
6638
  moviePrompt: z.ZodOptional<z.ZodString>;
6639
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
6562
6640
  htmlPrompt: z.ZodOptional<z.ZodObject<{
6563
6641
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
6564
6642
  prompt: z.ZodDefault<z.ZodString>;
@@ -6577,12 +6655,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6577
6655
  }>>;
6578
6656
  }, "strict", z.ZodTypeAny, {
6579
6657
  text: string;
6580
- speaker: string;
6581
- duration?: number | undefined;
6582
- speechOptions?: {
6583
- speed?: number | undefined;
6584
- instruction?: string | undefined;
6585
- } | undefined;
6586
6658
  image?: {
6587
6659
  type: "markdown";
6588
6660
  markdown: string | string[];
@@ -6687,6 +6759,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6687
6759
  type: "voice_over";
6688
6760
  startAt?: number | undefined;
6689
6761
  } | undefined;
6762
+ duration?: number | undefined;
6763
+ speechOptions?: {
6764
+ speed?: number | undefined;
6765
+ instruction?: string | undefined;
6766
+ } | undefined;
6690
6767
  id?: string | undefined;
6691
6768
  audio?: {
6692
6769
  type: "audio";
@@ -6708,6 +6785,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6708
6785
  source: string;
6709
6786
  } | undefined;
6710
6787
  imagePrompt?: string | undefined;
6788
+ speaker?: string | undefined;
6711
6789
  description?: string | undefined;
6712
6790
  imageParams?: {
6713
6791
  provider: string;
@@ -6740,11 +6818,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6740
6818
  } | undefined;
6741
6819
  movieParams?: {
6742
6820
  speed?: number | undefined;
6821
+ provider?: string | undefined;
6743
6822
  model?: string | undefined;
6744
6823
  fillOption?: {
6745
6824
  style: "aspectFit" | "aspectFill";
6746
6825
  } | undefined;
6747
6826
  } | undefined;
6827
+ soundEffectParams?: {
6828
+ provider?: string | undefined;
6829
+ model?: string | undefined;
6830
+ } | undefined;
6748
6831
  htmlImageParams?: {
6749
6832
  model?: string | undefined;
6750
6833
  } | undefined;
@@ -6757,6 +6840,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6757
6840
  } | undefined;
6758
6841
  imageNames?: string[] | undefined;
6759
6842
  moviePrompt?: string | undefined;
6843
+ soundEffectPrompt?: string | undefined;
6760
6844
  htmlPrompt?: {
6761
6845
  prompt: string;
6762
6846
  data?: any;
@@ -6764,12 +6848,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6764
6848
  systemPrompt?: string | undefined;
6765
6849
  } | undefined;
6766
6850
  }, {
6767
- text?: string | undefined;
6768
- duration?: number | undefined;
6769
- speechOptions?: {
6770
- speed?: number | undefined;
6771
- instruction?: string | undefined;
6772
- } | undefined;
6773
6851
  image?: {
6774
6852
  type: "markdown";
6775
6853
  markdown: string | string[];
@@ -6874,6 +6952,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6874
6952
  type: "voice_over";
6875
6953
  startAt?: number | undefined;
6876
6954
  } | undefined;
6955
+ text?: string | undefined;
6956
+ duration?: number | undefined;
6957
+ speechOptions?: {
6958
+ speed?: number | undefined;
6959
+ instruction?: string | undefined;
6960
+ } | undefined;
6877
6961
  id?: string | undefined;
6878
6962
  audio?: {
6879
6963
  type: "audio";
@@ -6928,11 +7012,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6928
7012
  } | undefined;
6929
7013
  movieParams?: {
6930
7014
  speed?: number | undefined;
7015
+ provider?: string | undefined;
6931
7016
  model?: string | undefined;
6932
7017
  fillOption?: {
6933
7018
  style?: "aspectFit" | "aspectFill" | undefined;
6934
7019
  } | undefined;
6935
7020
  } | undefined;
7021
+ soundEffectParams?: {
7022
+ provider?: string | undefined;
7023
+ model?: string | undefined;
7024
+ } | undefined;
6936
7025
  htmlImageParams?: {
6937
7026
  model?: string | undefined;
6938
7027
  } | undefined;
@@ -6945,6 +7034,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6945
7034
  } | undefined;
6946
7035
  imageNames?: string[] | undefined;
6947
7036
  moviePrompt?: string | undefined;
7037
+ soundEffectPrompt?: string | undefined;
6948
7038
  htmlPrompt?: {
6949
7039
  data?: any;
6950
7040
  prompt?: string | undefined;
@@ -6955,6 +7045,31 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6955
7045
  imagePath: z.ZodOptional<z.ZodString>;
6956
7046
  __test_invalid__: z.ZodOptional<z.ZodBoolean>;
6957
7047
  }, "strict", z.ZodTypeAny, {
7048
+ imageParams: {
7049
+ provider: string;
7050
+ model?: string | undefined;
7051
+ style?: string | undefined;
7052
+ moderation?: string | undefined;
7053
+ images?: Record<string, {
7054
+ type: "image";
7055
+ source: {
7056
+ url: string;
7057
+ kind: "url";
7058
+ } | {
7059
+ kind: "base64";
7060
+ data: string;
7061
+ } | {
7062
+ text: string;
7063
+ kind: "text";
7064
+ } | {
7065
+ path: string;
7066
+ kind: "path";
7067
+ };
7068
+ } | {
7069
+ type: "imagePrompt";
7070
+ prompt: string;
7071
+ }> | undefined;
7072
+ };
6958
7073
  audioParams: {
6959
7074
  padding: number;
6960
7075
  introPadding: number;
@@ -6977,8 +7092,23 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6977
7092
  kind: "path";
6978
7093
  } | undefined;
6979
7094
  };
7095
+ movieParams: {
7096
+ provider?: string | undefined;
7097
+ model?: string | undefined;
7098
+ fillOption?: {
7099
+ style: "aspectFit" | "aspectFill";
7100
+ } | undefined;
7101
+ transition?: {
7102
+ type: "fade" | "slideout_left";
7103
+ duration: number;
7104
+ } | undefined;
7105
+ };
7106
+ soundEffectParams: {
7107
+ provider?: string | undefined;
7108
+ model?: string | undefined;
7109
+ };
6980
7110
  $mulmocast: {
6981
- version: "1.0";
7111
+ version: "1.1";
6982
7112
  credit?: "closing" | undefined;
6983
7113
  };
6984
7114
  canvasSize: {
@@ -6986,10 +7116,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6986
7116
  height: number;
6987
7117
  };
6988
7118
  speechParams: {
6989
- provider: string;
6990
7119
  speakers: Record<string, {
6991
7120
  voiceId: string;
6992
7121
  displayName?: Record<string, string> | undefined;
7122
+ isDefault?: boolean | undefined;
6993
7123
  speechOptions?: {
6994
7124
  speed?: number | undefined;
6995
7125
  instruction?: string | undefined;
@@ -6997,16 +7127,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6997
7127
  provider?: string | undefined;
6998
7128
  model?: string | undefined;
6999
7129
  }>;
7000
- model?: string | undefined;
7001
7130
  };
7002
7131
  beats: {
7003
7132
  text: string;
7004
- speaker: string;
7005
- duration?: number | undefined;
7006
- speechOptions?: {
7007
- speed?: number | undefined;
7008
- instruction?: string | undefined;
7009
- } | undefined;
7010
7133
  image?: {
7011
7134
  type: "markdown";
7012
7135
  markdown: string | string[];
@@ -7111,6 +7234,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7111
7234
  type: "voice_over";
7112
7235
  startAt?: number | undefined;
7113
7236
  } | undefined;
7237
+ duration?: number | undefined;
7238
+ speechOptions?: {
7239
+ speed?: number | undefined;
7240
+ instruction?: string | undefined;
7241
+ } | undefined;
7114
7242
  id?: string | undefined;
7115
7243
  audio?: {
7116
7244
  type: "audio";
@@ -7132,6 +7260,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7132
7260
  source: string;
7133
7261
  } | undefined;
7134
7262
  imagePrompt?: string | undefined;
7263
+ speaker?: string | undefined;
7135
7264
  description?: string | undefined;
7136
7265
  imageParams?: {
7137
7266
  provider: string;
@@ -7164,11 +7293,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7164
7293
  } | undefined;
7165
7294
  movieParams?: {
7166
7295
  speed?: number | undefined;
7296
+ provider?: string | undefined;
7167
7297
  model?: string | undefined;
7168
7298
  fillOption?: {
7169
7299
  style: "aspectFit" | "aspectFill";
7170
7300
  } | undefined;
7171
7301
  } | undefined;
7302
+ soundEffectParams?: {
7303
+ provider?: string | undefined;
7304
+ model?: string | undefined;
7305
+ } | undefined;
7172
7306
  htmlImageParams?: {
7173
7307
  model?: string | undefined;
7174
7308
  } | undefined;
@@ -7181,6 +7315,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7181
7315
  } | undefined;
7182
7316
  imageNames?: string[] | undefined;
7183
7317
  moviePrompt?: string | undefined;
7318
+ soundEffectPrompt?: string | undefined;
7184
7319
  htmlPrompt?: {
7185
7320
  prompt: string;
7186
7321
  data?: any;
@@ -7191,43 +7326,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7191
7326
  lang?: string | undefined;
7192
7327
  title?: string | undefined;
7193
7328
  description?: string | undefined;
7194
- imageParams?: {
7195
- provider: string;
7196
- model?: string | undefined;
7197
- style?: string | undefined;
7198
- moderation?: string | undefined;
7199
- images?: Record<string, {
7200
- type: "image";
7201
- source: {
7202
- url: string;
7203
- kind: "url";
7204
- } | {
7205
- kind: "base64";
7206
- data: string;
7207
- } | {
7208
- text: string;
7209
- kind: "text";
7210
- } | {
7211
- path: string;
7212
- kind: "path";
7213
- };
7214
- } | {
7215
- type: "imagePrompt";
7216
- prompt: string;
7217
- }> | undefined;
7218
- } | undefined;
7219
- movieParams?: {
7220
- provider?: string | undefined;
7221
- model?: string | undefined;
7222
- fillOption?: {
7223
- style: "aspectFit" | "aspectFill";
7224
- } | undefined;
7225
- transition?: {
7226
- type: "fade" | "slideout_left";
7227
- duration: number;
7228
- } | undefined;
7229
- } | undefined;
7230
- htmlImageParams?: {
7329
+ htmlImageParams?: {
7231
7330
  provider: string;
7232
7331
  model?: string | undefined;
7233
7332
  } | undefined;
@@ -7248,16 +7347,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7248
7347
  __test_invalid__?: boolean | undefined;
7249
7348
  }, {
7250
7349
  $mulmocast: {
7251
- version: "1.0";
7350
+ version: "1.1";
7252
7351
  credit?: "closing" | undefined;
7253
7352
  };
7254
7353
  beats: {
7255
- text?: string | undefined;
7256
- duration?: number | undefined;
7257
- speechOptions?: {
7258
- speed?: number | undefined;
7259
- instruction?: string | undefined;
7260
- } | undefined;
7261
7354
  image?: {
7262
7355
  type: "markdown";
7263
7356
  markdown: string | string[];
@@ -7362,6 +7455,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7362
7455
  type: "voice_over";
7363
7456
  startAt?: number | undefined;
7364
7457
  } | undefined;
7458
+ text?: string | undefined;
7459
+ duration?: number | undefined;
7460
+ speechOptions?: {
7461
+ speed?: number | undefined;
7462
+ instruction?: string | undefined;
7463
+ } | undefined;
7365
7464
  id?: string | undefined;
7366
7465
  audio?: {
7367
7466
  type: "audio";
@@ -7416,11 +7515,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7416
7515
  } | undefined;
7417
7516
  movieParams?: {
7418
7517
  speed?: number | undefined;
7518
+ provider?: string | undefined;
7419
7519
  model?: string | undefined;
7420
7520
  fillOption?: {
7421
7521
  style?: "aspectFit" | "aspectFill" | undefined;
7422
7522
  } | undefined;
7423
7523
  } | undefined;
7524
+ soundEffectParams?: {
7525
+ provider?: string | undefined;
7526
+ model?: string | undefined;
7527
+ } | undefined;
7424
7528
  htmlImageParams?: {
7425
7529
  model?: string | undefined;
7426
7530
  } | undefined;
@@ -7433,6 +7537,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7433
7537
  } | undefined;
7434
7538
  imageNames?: string[] | undefined;
7435
7539
  moviePrompt?: string | undefined;
7540
+ soundEffectPrompt?: string | undefined;
7436
7541
  htmlPrompt?: {
7437
7542
  data?: any;
7438
7543
  prompt?: string | undefined;
@@ -7501,6 +7606,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7501
7606
  duration?: number | undefined;
7502
7607
  } | undefined;
7503
7608
  } | undefined;
7609
+ soundEffectParams?: {
7610
+ provider?: string | undefined;
7611
+ model?: string | undefined;
7612
+ } | undefined;
7504
7613
  htmlImageParams?: {
7505
7614
  provider?: string | undefined;
7506
7615
  model?: string | undefined;
@@ -7520,6 +7629,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7520
7629
  speakers: Record<string, {
7521
7630
  voiceId: string;
7522
7631
  displayName?: Record<string, string> | undefined;
7632
+ isDefault?: boolean | undefined;
7523
7633
  speechOptions?: {
7524
7634
  speed?: number | undefined;
7525
7635
  instruction?: string | undefined;
@@ -7527,8 +7637,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7527
7637
  provider?: string | undefined;
7528
7638
  model?: string | undefined;
7529
7639
  }>;
7530
- provider?: string | undefined;
7531
- model?: string | undefined;
7532
7640
  } | undefined;
7533
7641
  references?: {
7534
7642
  url: string;
@@ -7551,6 +7659,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7551
7659
  audioFile: z.ZodOptional<z.ZodString>;
7552
7660
  imageFile: z.ZodOptional<z.ZodString>;
7553
7661
  movieFile: z.ZodOptional<z.ZodString>;
7662
+ soundEffectFile: z.ZodOptional<z.ZodString>;
7554
7663
  captionFile: z.ZodOptional<z.ZodString>;
7555
7664
  }, "strict", z.ZodTypeAny, {
7556
7665
  duration?: number | undefined;
@@ -7563,6 +7672,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7563
7672
  audioFile?: string | undefined;
7564
7673
  imageFile?: string | undefined;
7565
7674
  movieFile?: string | undefined;
7675
+ soundEffectFile?: string | undefined;
7566
7676
  captionFile?: string | undefined;
7567
7677
  }, {
7568
7678
  duration?: number | undefined;
@@ -7575,6 +7685,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7575
7685
  audioFile?: string | undefined;
7576
7686
  imageFile?: string | undefined;
7577
7687
  movieFile?: string | undefined;
7688
+ soundEffectFile?: string | undefined;
7578
7689
  captionFile?: string | undefined;
7579
7690
  }>, "many">;
7580
7691
  }, "strict", z.ZodTypeAny, {
@@ -7589,9 +7700,35 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7589
7700
  audioFile?: string | undefined;
7590
7701
  imageFile?: string | undefined;
7591
7702
  movieFile?: string | undefined;
7703
+ soundEffectFile?: string | undefined;
7592
7704
  captionFile?: string | undefined;
7593
7705
  }[];
7594
7706
  script: {
7707
+ imageParams: {
7708
+ provider: string;
7709
+ model?: string | undefined;
7710
+ style?: string | undefined;
7711
+ moderation?: string | undefined;
7712
+ images?: Record<string, {
7713
+ type: "image";
7714
+ source: {
7715
+ url: string;
7716
+ kind: "url";
7717
+ } | {
7718
+ kind: "base64";
7719
+ data: string;
7720
+ } | {
7721
+ text: string;
7722
+ kind: "text";
7723
+ } | {
7724
+ path: string;
7725
+ kind: "path";
7726
+ };
7727
+ } | {
7728
+ type: "imagePrompt";
7729
+ prompt: string;
7730
+ }> | undefined;
7731
+ };
7595
7732
  audioParams: {
7596
7733
  padding: number;
7597
7734
  introPadding: number;
@@ -7614,8 +7751,23 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7614
7751
  kind: "path";
7615
7752
  } | undefined;
7616
7753
  };
7754
+ movieParams: {
7755
+ provider?: string | undefined;
7756
+ model?: string | undefined;
7757
+ fillOption?: {
7758
+ style: "aspectFit" | "aspectFill";
7759
+ } | undefined;
7760
+ transition?: {
7761
+ type: "fade" | "slideout_left";
7762
+ duration: number;
7763
+ } | undefined;
7764
+ };
7765
+ soundEffectParams: {
7766
+ provider?: string | undefined;
7767
+ model?: string | undefined;
7768
+ };
7617
7769
  $mulmocast: {
7618
- version: "1.0";
7770
+ version: "1.1";
7619
7771
  credit?: "closing" | undefined;
7620
7772
  };
7621
7773
  canvasSize: {
@@ -7623,10 +7775,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7623
7775
  height: number;
7624
7776
  };
7625
7777
  speechParams: {
7626
- provider: string;
7627
7778
  speakers: Record<string, {
7628
7779
  voiceId: string;
7629
7780
  displayName?: Record<string, string> | undefined;
7781
+ isDefault?: boolean | undefined;
7630
7782
  speechOptions?: {
7631
7783
  speed?: number | undefined;
7632
7784
  instruction?: string | undefined;
@@ -7634,16 +7786,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7634
7786
  provider?: string | undefined;
7635
7787
  model?: string | undefined;
7636
7788
  }>;
7637
- model?: string | undefined;
7638
7789
  };
7639
7790
  beats: {
7640
7791
  text: string;
7641
- speaker: string;
7642
- duration?: number | undefined;
7643
- speechOptions?: {
7644
- speed?: number | undefined;
7645
- instruction?: string | undefined;
7646
- } | undefined;
7647
7792
  image?: {
7648
7793
  type: "markdown";
7649
7794
  markdown: string | string[];
@@ -7748,6 +7893,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7748
7893
  type: "voice_over";
7749
7894
  startAt?: number | undefined;
7750
7895
  } | undefined;
7896
+ duration?: number | undefined;
7897
+ speechOptions?: {
7898
+ speed?: number | undefined;
7899
+ instruction?: string | undefined;
7900
+ } | undefined;
7751
7901
  id?: string | undefined;
7752
7902
  audio?: {
7753
7903
  type: "audio";
@@ -7769,6 +7919,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7769
7919
  source: string;
7770
7920
  } | undefined;
7771
7921
  imagePrompt?: string | undefined;
7922
+ speaker?: string | undefined;
7772
7923
  description?: string | undefined;
7773
7924
  imageParams?: {
7774
7925
  provider: string;
@@ -7801,11 +7952,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7801
7952
  } | undefined;
7802
7953
  movieParams?: {
7803
7954
  speed?: number | undefined;
7955
+ provider?: string | undefined;
7804
7956
  model?: string | undefined;
7805
7957
  fillOption?: {
7806
7958
  style: "aspectFit" | "aspectFill";
7807
7959
  } | undefined;
7808
7960
  } | undefined;
7961
+ soundEffectParams?: {
7962
+ provider?: string | undefined;
7963
+ model?: string | undefined;
7964
+ } | undefined;
7809
7965
  htmlImageParams?: {
7810
7966
  model?: string | undefined;
7811
7967
  } | undefined;
@@ -7818,6 +7974,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7818
7974
  } | undefined;
7819
7975
  imageNames?: string[] | undefined;
7820
7976
  moviePrompt?: string | undefined;
7977
+ soundEffectPrompt?: string | undefined;
7821
7978
  htmlPrompt?: {
7822
7979
  prompt: string;
7823
7980
  data?: any;
@@ -7828,42 +7985,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7828
7985
  lang?: string | undefined;
7829
7986
  title?: string | undefined;
7830
7987
  description?: string | undefined;
7831
- imageParams?: {
7832
- provider: string;
7833
- model?: string | undefined;
7834
- style?: string | undefined;
7835
- moderation?: string | undefined;
7836
- images?: Record<string, {
7837
- type: "image";
7838
- source: {
7839
- url: string;
7840
- kind: "url";
7841
- } | {
7842
- kind: "base64";
7843
- data: string;
7844
- } | {
7845
- text: string;
7846
- kind: "text";
7847
- } | {
7848
- path: string;
7849
- kind: "path";
7850
- };
7851
- } | {
7852
- type: "imagePrompt";
7853
- prompt: string;
7854
- }> | undefined;
7855
- } | undefined;
7856
- movieParams?: {
7857
- provider?: string | undefined;
7858
- model?: string | undefined;
7859
- fillOption?: {
7860
- style: "aspectFit" | "aspectFill";
7861
- } | undefined;
7862
- transition?: {
7863
- type: "fade" | "slideout_left";
7864
- duration: number;
7865
- } | undefined;
7866
- } | undefined;
7867
7988
  htmlImageParams?: {
7868
7989
  provider: string;
7869
7990
  model?: string | undefined;
@@ -7897,20 +8018,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7897
8018
  audioFile?: string | undefined;
7898
8019
  imageFile?: string | undefined;
7899
8020
  movieFile?: string | undefined;
8021
+ soundEffectFile?: string | undefined;
7900
8022
  captionFile?: string | undefined;
7901
8023
  }[];
7902
8024
  script: {
7903
8025
  $mulmocast: {
7904
- version: "1.0";
8026
+ version: "1.1";
7905
8027
  credit?: "closing" | undefined;
7906
8028
  };
7907
8029
  beats: {
7908
- text?: string | undefined;
7909
- duration?: number | undefined;
7910
- speechOptions?: {
7911
- speed?: number | undefined;
7912
- instruction?: string | undefined;
7913
- } | undefined;
7914
8030
  image?: {
7915
8031
  type: "markdown";
7916
8032
  markdown: string | string[];
@@ -8015,6 +8131,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8015
8131
  type: "voice_over";
8016
8132
  startAt?: number | undefined;
8017
8133
  } | undefined;
8134
+ text?: string | undefined;
8135
+ duration?: number | undefined;
8136
+ speechOptions?: {
8137
+ speed?: number | undefined;
8138
+ instruction?: string | undefined;
8139
+ } | undefined;
8018
8140
  id?: string | undefined;
8019
8141
  audio?: {
8020
8142
  type: "audio";
@@ -8069,11 +8191,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8069
8191
  } | undefined;
8070
8192
  movieParams?: {
8071
8193
  speed?: number | undefined;
8194
+ provider?: string | undefined;
8072
8195
  model?: string | undefined;
8073
8196
  fillOption?: {
8074
8197
  style?: "aspectFit" | "aspectFill" | undefined;
8075
8198
  } | undefined;
8076
8199
  } | undefined;
8200
+ soundEffectParams?: {
8201
+ provider?: string | undefined;
8202
+ model?: string | undefined;
8203
+ } | undefined;
8077
8204
  htmlImageParams?: {
8078
8205
  model?: string | undefined;
8079
8206
  } | undefined;
@@ -8086,6 +8213,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8086
8213
  } | undefined;
8087
8214
  imageNames?: string[] | undefined;
8088
8215
  moviePrompt?: string | undefined;
8216
+ soundEffectPrompt?: string | undefined;
8089
8217
  htmlPrompt?: {
8090
8218
  data?: any;
8091
8219
  prompt?: string | undefined;
@@ -8154,6 +8282,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8154
8282
  duration?: number | undefined;
8155
8283
  } | undefined;
8156
8284
  } | undefined;
8285
+ soundEffectParams?: {
8286
+ provider?: string | undefined;
8287
+ model?: string | undefined;
8288
+ } | undefined;
8157
8289
  htmlImageParams?: {
8158
8290
  provider?: string | undefined;
8159
8291
  model?: string | undefined;
@@ -8173,6 +8305,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8173
8305
  speakers: Record<string, {
8174
8306
  voiceId: string;
8175
8307
  displayName?: Record<string, string> | undefined;
8308
+ isDefault?: boolean | undefined;
8176
8309
  speechOptions?: {
8177
8310
  speed?: number | undefined;
8178
8311
  instruction?: string | undefined;
@@ -8180,8 +8313,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8180
8313
  provider?: string | undefined;
8181
8314
  model?: string | undefined;
8182
8315
  }>;
8183
- provider?: string | undefined;
8184
- model?: string | undefined;
8185
8316
  } | undefined;
8186
8317
  references?: {
8187
8318
  url: string;
@@ -8201,13 +8332,13 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8201
8332
  scriptName: z.ZodOptional<z.ZodString>;
8202
8333
  presentationStyle: z.ZodOptional<z.ZodObject<{
8203
8334
  $mulmocast: z.ZodObject<{
8204
- version: z.ZodLiteral<"1.0">;
8335
+ version: z.ZodLiteral<"1.1">;
8205
8336
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
8206
8337
  }, "strict", z.ZodTypeAny, {
8207
- version: "1.0";
8338
+ version: "1.1";
8208
8339
  credit?: "closing" | undefined;
8209
8340
  }, {
8210
- version: "1.0";
8341
+ version: "1.1";
8211
8342
  credit?: "closing" | undefined;
8212
8343
  }>;
8213
8344
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -8221,10 +8352,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8221
8352
  height: number;
8222
8353
  }>>;
8223
8354
  speechParams: z.ZodDefault<z.ZodObject<{
8224
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
8225
8355
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
8226
8356
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8227
8357
  voiceId: z.ZodString;
8358
+ isDefault: z.ZodOptional<z.ZodBoolean>;
8228
8359
  speechOptions: z.ZodOptional<z.ZodObject<{
8229
8360
  speed: z.ZodOptional<z.ZodNumber>;
8230
8361
  instruction: z.ZodOptional<z.ZodString>;
@@ -8240,6 +8371,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8240
8371
  }, "strict", z.ZodTypeAny, {
8241
8372
  voiceId: string;
8242
8373
  displayName?: Record<string, string> | undefined;
8374
+ isDefault?: boolean | undefined;
8243
8375
  speechOptions?: {
8244
8376
  speed?: number | undefined;
8245
8377
  instruction?: string | undefined;
@@ -8249,6 +8381,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8249
8381
  }, {
8250
8382
  voiceId: string;
8251
8383
  displayName?: Record<string, string> | undefined;
8384
+ isDefault?: boolean | undefined;
8252
8385
  speechOptions?: {
8253
8386
  speed?: number | undefined;
8254
8387
  instruction?: string | undefined;
@@ -8256,12 +8389,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8256
8389
  provider?: string | undefined;
8257
8390
  model?: string | undefined;
8258
8391
  }>>;
8259
- model: z.ZodOptional<z.ZodString>;
8260
- }, "strict", z.ZodTypeAny, {
8261
- provider: string;
8392
+ }, "strip", z.ZodTypeAny, {
8262
8393
  speakers: Record<string, {
8263
8394
  voiceId: string;
8264
8395
  displayName?: Record<string, string> | undefined;
8396
+ isDefault?: boolean | undefined;
8265
8397
  speechOptions?: {
8266
8398
  speed?: number | undefined;
8267
8399
  instruction?: string | undefined;
@@ -8269,11 +8401,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8269
8401
  provider?: string | undefined;
8270
8402
  model?: string | undefined;
8271
8403
  }>;
8272
- model?: string | undefined;
8273
8404
  }, {
8274
8405
  speakers: Record<string, {
8275
8406
  voiceId: string;
8276
8407
  displayName?: Record<string, string> | undefined;
8408
+ isDefault?: boolean | undefined;
8277
8409
  speechOptions?: {
8278
8410
  speed?: number | undefined;
8279
8411
  instruction?: string | undefined;
@@ -8281,10 +8413,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8281
8413
  provider?: string | undefined;
8282
8414
  model?: string | undefined;
8283
8415
  }>;
8284
- provider?: string | undefined;
8285
- model?: string | undefined;
8286
8416
  }>>;
8287
- imageParams: z.ZodOptional<z.ZodObject<{
8417
+ imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
8288
8418
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
8289
8419
  model: z.ZodOptional<z.ZodString>;
8290
8420
  style: z.ZodOptional<z.ZodString>;
@@ -8416,8 +8546,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8416
8546
  type: "imagePrompt";
8417
8547
  prompt: string;
8418
8548
  }> | undefined;
8419
- }>>;
8420
- movieParams: z.ZodOptional<z.ZodObject<{
8549
+ }>>>;
8550
+ movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
8421
8551
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
8422
8552
  model: z.ZodOptional<z.ZodString>;
8423
8553
  transition: z.ZodOptional<z.ZodObject<{
@@ -8457,7 +8587,17 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8457
8587
  type: "fade" | "slideout_left";
8458
8588
  duration?: number | undefined;
8459
8589
  } | undefined;
8460
- }>>;
8590
+ }>>>;
8591
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
8592
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
8593
+ model: z.ZodOptional<z.ZodString>;
8594
+ }, "strip", z.ZodTypeAny, {
8595
+ provider?: string | undefined;
8596
+ model?: string | undefined;
8597
+ }, {
8598
+ provider?: string | undefined;
8599
+ model?: string | undefined;
8600
+ }>>>;
8461
8601
  htmlImageParams: z.ZodOptional<z.ZodObject<{
8462
8602
  model: z.ZodOptional<z.ZodString>;
8463
8603
  } & {
@@ -8575,6 +8715,31 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8575
8715
  suppressSpeech?: boolean | undefined;
8576
8716
  }>>;
8577
8717
  }, "strip", z.ZodTypeAny, {
8718
+ imageParams: {
8719
+ provider: string;
8720
+ model?: string | undefined;
8721
+ style?: string | undefined;
8722
+ moderation?: string | undefined;
8723
+ images?: Record<string, {
8724
+ type: "image";
8725
+ source: {
8726
+ url: string;
8727
+ kind: "url";
8728
+ } | {
8729
+ kind: "base64";
8730
+ data: string;
8731
+ } | {
8732
+ text: string;
8733
+ kind: "text";
8734
+ } | {
8735
+ path: string;
8736
+ kind: "path";
8737
+ };
8738
+ } | {
8739
+ type: "imagePrompt";
8740
+ prompt: string;
8741
+ }> | undefined;
8742
+ };
8578
8743
  audioParams: {
8579
8744
  padding: number;
8580
8745
  introPadding: number;
@@ -8597,8 +8762,23 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8597
8762
  kind: "path";
8598
8763
  } | undefined;
8599
8764
  };
8765
+ movieParams: {
8766
+ provider?: string | undefined;
8767
+ model?: string | undefined;
8768
+ fillOption?: {
8769
+ style: "aspectFit" | "aspectFill";
8770
+ } | undefined;
8771
+ transition?: {
8772
+ type: "fade" | "slideout_left";
8773
+ duration: number;
8774
+ } | undefined;
8775
+ };
8776
+ soundEffectParams: {
8777
+ provider?: string | undefined;
8778
+ model?: string | undefined;
8779
+ };
8600
8780
  $mulmocast: {
8601
- version: "1.0";
8781
+ version: "1.1";
8602
8782
  credit?: "closing" | undefined;
8603
8783
  };
8604
8784
  canvasSize: {
@@ -8606,10 +8786,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8606
8786
  height: number;
8607
8787
  };
8608
8788
  speechParams: {
8609
- provider: string;
8610
8789
  speakers: Record<string, {
8611
8790
  voiceId: string;
8612
8791
  displayName?: Record<string, string> | undefined;
8792
+ isDefault?: boolean | undefined;
8613
8793
  speechOptions?: {
8614
8794
  speed?: number | undefined;
8615
8795
  instruction?: string | undefined;
@@ -8617,44 +8797,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8617
8797
  provider?: string | undefined;
8618
8798
  model?: string | undefined;
8619
8799
  }>;
8620
- model?: string | undefined;
8621
8800
  };
8622
- imageParams?: {
8623
- provider: string;
8624
- model?: string | undefined;
8625
- style?: string | undefined;
8626
- moderation?: string | undefined;
8627
- images?: Record<string, {
8628
- type: "image";
8629
- source: {
8630
- url: string;
8631
- kind: "url";
8632
- } | {
8633
- kind: "base64";
8634
- data: string;
8635
- } | {
8636
- text: string;
8637
- kind: "text";
8638
- } | {
8639
- path: string;
8640
- kind: "path";
8641
- };
8642
- } | {
8643
- type: "imagePrompt";
8644
- prompt: string;
8645
- }> | undefined;
8646
- } | undefined;
8647
- movieParams?: {
8648
- provider?: string | undefined;
8649
- model?: string | undefined;
8650
- fillOption?: {
8651
- style: "aspectFit" | "aspectFill";
8652
- } | undefined;
8653
- transition?: {
8654
- type: "fade" | "slideout_left";
8655
- duration: number;
8656
- } | undefined;
8657
- } | undefined;
8658
8801
  htmlImageParams?: {
8659
8802
  provider: string;
8660
8803
  model?: string | undefined;
@@ -8668,7 +8811,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8668
8811
  } | undefined;
8669
8812
  }, {
8670
8813
  $mulmocast: {
8671
- version: "1.0";
8814
+ version: "1.1";
8672
8815
  credit?: "closing" | undefined;
8673
8816
  };
8674
8817
  imageParams?: {
@@ -8729,6 +8872,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8729
8872
  duration?: number | undefined;
8730
8873
  } | undefined;
8731
8874
  } | undefined;
8875
+ soundEffectParams?: {
8876
+ provider?: string | undefined;
8877
+ model?: string | undefined;
8878
+ } | undefined;
8732
8879
  htmlImageParams?: {
8733
8880
  provider?: string | undefined;
8734
8881
  model?: string | undefined;
@@ -8748,6 +8895,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8748
8895
  speakers: Record<string, {
8749
8896
  voiceId: string;
8750
8897
  displayName?: Record<string, string> | undefined;
8898
+ isDefault?: boolean | undefined;
8751
8899
  speechOptions?: {
8752
8900
  speed?: number | undefined;
8753
8901
  instruction?: string | undefined;
@@ -8755,8 +8903,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8755
8903
  provider?: string | undefined;
8756
8904
  model?: string | undefined;
8757
8905
  }>;
8758
- provider?: string | undefined;
8759
- model?: string | undefined;
8760
8906
  } | undefined;
8761
8907
  }>>;
8762
8908
  }, "strict", z.ZodTypeAny, {
@@ -8765,6 +8911,31 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8765
8911
  description: string;
8766
8912
  scriptName?: string | undefined;
8767
8913
  presentationStyle?: {
8914
+ imageParams: {
8915
+ provider: string;
8916
+ model?: string | undefined;
8917
+ style?: string | undefined;
8918
+ moderation?: string | undefined;
8919
+ images?: Record<string, {
8920
+ type: "image";
8921
+ source: {
8922
+ url: string;
8923
+ kind: "url";
8924
+ } | {
8925
+ kind: "base64";
8926
+ data: string;
8927
+ } | {
8928
+ text: string;
8929
+ kind: "text";
8930
+ } | {
8931
+ path: string;
8932
+ kind: "path";
8933
+ };
8934
+ } | {
8935
+ type: "imagePrompt";
8936
+ prompt: string;
8937
+ }> | undefined;
8938
+ };
8768
8939
  audioParams: {
8769
8940
  padding: number;
8770
8941
  introPadding: number;
@@ -8787,8 +8958,23 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8787
8958
  kind: "path";
8788
8959
  } | undefined;
8789
8960
  };
8961
+ movieParams: {
8962
+ provider?: string | undefined;
8963
+ model?: string | undefined;
8964
+ fillOption?: {
8965
+ style: "aspectFit" | "aspectFill";
8966
+ } | undefined;
8967
+ transition?: {
8968
+ type: "fade" | "slideout_left";
8969
+ duration: number;
8970
+ } | undefined;
8971
+ };
8972
+ soundEffectParams: {
8973
+ provider?: string | undefined;
8974
+ model?: string | undefined;
8975
+ };
8790
8976
  $mulmocast: {
8791
- version: "1.0";
8977
+ version: "1.1";
8792
8978
  credit?: "closing" | undefined;
8793
8979
  };
8794
8980
  canvasSize: {
@@ -8796,10 +8982,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8796
8982
  height: number;
8797
8983
  };
8798
8984
  speechParams: {
8799
- provider: string;
8800
8985
  speakers: Record<string, {
8801
8986
  voiceId: string;
8802
8987
  displayName?: Record<string, string> | undefined;
8988
+ isDefault?: boolean | undefined;
8803
8989
  speechOptions?: {
8804
8990
  speed?: number | undefined;
8805
8991
  instruction?: string | undefined;
@@ -8807,44 +8993,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8807
8993
  provider?: string | undefined;
8808
8994
  model?: string | undefined;
8809
8995
  }>;
8810
- model?: string | undefined;
8811
8996
  };
8812
- imageParams?: {
8813
- provider: string;
8814
- model?: string | undefined;
8815
- style?: string | undefined;
8816
- moderation?: string | undefined;
8817
- images?: Record<string, {
8818
- type: "image";
8819
- source: {
8820
- url: string;
8821
- kind: "url";
8822
- } | {
8823
- kind: "base64";
8824
- data: string;
8825
- } | {
8826
- text: string;
8827
- kind: "text";
8828
- } | {
8829
- path: string;
8830
- kind: "path";
8831
- };
8832
- } | {
8833
- type: "imagePrompt";
8834
- prompt: string;
8835
- }> | undefined;
8836
- } | undefined;
8837
- movieParams?: {
8838
- provider?: string | undefined;
8839
- model?: string | undefined;
8840
- fillOption?: {
8841
- style: "aspectFit" | "aspectFill";
8842
- } | undefined;
8843
- transition?: {
8844
- type: "fade" | "slideout_left";
8845
- duration: number;
8846
- } | undefined;
8847
- } | undefined;
8848
8997
  htmlImageParams?: {
8849
8998
  provider: string;
8850
8999
  model?: string | undefined;
@@ -8864,7 +9013,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8864
9013
  scriptName?: string | undefined;
8865
9014
  presentationStyle?: {
8866
9015
  $mulmocast: {
8867
- version: "1.0";
9016
+ version: "1.1";
8868
9017
  credit?: "closing" | undefined;
8869
9018
  };
8870
9019
  imageParams?: {
@@ -8925,6 +9074,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8925
9074
  duration?: number | undefined;
8926
9075
  } | undefined;
8927
9076
  } | undefined;
9077
+ soundEffectParams?: {
9078
+ provider?: string | undefined;
9079
+ model?: string | undefined;
9080
+ } | undefined;
8928
9081
  htmlImageParams?: {
8929
9082
  provider?: string | undefined;
8930
9083
  model?: string | undefined;
@@ -8944,6 +9097,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8944
9097
  speakers: Record<string, {
8945
9098
  voiceId: string;
8946
9099
  displayName?: Record<string, string> | undefined;
9100
+ isDefault?: boolean | undefined;
8947
9101
  speechOptions?: {
8948
9102
  speed?: number | undefined;
8949
9103
  instruction?: string | undefined;
@@ -8951,8 +9105,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8951
9105
  provider?: string | undefined;
8952
9106
  model?: string | undefined;
8953
9107
  }>;
8954
- provider?: string | undefined;
8955
- model?: string | undefined;
8956
9108
  } | undefined;
8957
9109
  } | undefined;
8958
9110
  }>;
@@ -8963,13 +9115,13 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
8963
9115
  scriptName: z.ZodOptional<z.ZodString>;
8964
9116
  presentationStyle: z.ZodOptional<z.ZodObject<{
8965
9117
  $mulmocast: z.ZodObject<{
8966
- version: z.ZodLiteral<"1.0">;
9118
+ version: z.ZodLiteral<"1.1">;
8967
9119
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
8968
9120
  }, "strict", z.ZodTypeAny, {
8969
- version: "1.0";
9121
+ version: "1.1";
8970
9122
  credit?: "closing" | undefined;
8971
9123
  }, {
8972
- version: "1.0";
9124
+ version: "1.1";
8973
9125
  credit?: "closing" | undefined;
8974
9126
  }>;
8975
9127
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -8983,10 +9135,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
8983
9135
  height: number;
8984
9136
  }>>;
8985
9137
  speechParams: z.ZodDefault<z.ZodObject<{
8986
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
8987
9138
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
8988
9139
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8989
9140
  voiceId: z.ZodString;
9141
+ isDefault: z.ZodOptional<z.ZodBoolean>;
8990
9142
  speechOptions: z.ZodOptional<z.ZodObject<{
8991
9143
  speed: z.ZodOptional<z.ZodNumber>;
8992
9144
  instruction: z.ZodOptional<z.ZodString>;
@@ -9002,6 +9154,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9002
9154
  }, "strict", z.ZodTypeAny, {
9003
9155
  voiceId: string;
9004
9156
  displayName?: Record<string, string> | undefined;
9157
+ isDefault?: boolean | undefined;
9005
9158
  speechOptions?: {
9006
9159
  speed?: number | undefined;
9007
9160
  instruction?: string | undefined;
@@ -9011,6 +9164,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9011
9164
  }, {
9012
9165
  voiceId: string;
9013
9166
  displayName?: Record<string, string> | undefined;
9167
+ isDefault?: boolean | undefined;
9014
9168
  speechOptions?: {
9015
9169
  speed?: number | undefined;
9016
9170
  instruction?: string | undefined;
@@ -9018,12 +9172,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9018
9172
  provider?: string | undefined;
9019
9173
  model?: string | undefined;
9020
9174
  }>>;
9021
- model: z.ZodOptional<z.ZodString>;
9022
- }, "strict", z.ZodTypeAny, {
9023
- provider: string;
9175
+ }, "strip", z.ZodTypeAny, {
9024
9176
  speakers: Record<string, {
9025
9177
  voiceId: string;
9026
9178
  displayName?: Record<string, string> | undefined;
9179
+ isDefault?: boolean | undefined;
9027
9180
  speechOptions?: {
9028
9181
  speed?: number | undefined;
9029
9182
  instruction?: string | undefined;
@@ -9031,11 +9184,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9031
9184
  provider?: string | undefined;
9032
9185
  model?: string | undefined;
9033
9186
  }>;
9034
- model?: string | undefined;
9035
9187
  }, {
9036
9188
  speakers: Record<string, {
9037
9189
  voiceId: string;
9038
9190
  displayName?: Record<string, string> | undefined;
9191
+ isDefault?: boolean | undefined;
9039
9192
  speechOptions?: {
9040
9193
  speed?: number | undefined;
9041
9194
  instruction?: string | undefined;
@@ -9043,10 +9196,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9043
9196
  provider?: string | undefined;
9044
9197
  model?: string | undefined;
9045
9198
  }>;
9046
- provider?: string | undefined;
9047
- model?: string | undefined;
9048
9199
  }>>;
9049
- imageParams: z.ZodOptional<z.ZodObject<{
9200
+ imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
9050
9201
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
9051
9202
  model: z.ZodOptional<z.ZodString>;
9052
9203
  style: z.ZodOptional<z.ZodString>;
@@ -9178,8 +9329,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9178
9329
  type: "imagePrompt";
9179
9330
  prompt: string;
9180
9331
  }> | undefined;
9181
- }>>;
9182
- movieParams: z.ZodOptional<z.ZodObject<{
9332
+ }>>>;
9333
+ movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
9183
9334
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
9184
9335
  model: z.ZodOptional<z.ZodString>;
9185
9336
  transition: z.ZodOptional<z.ZodObject<{
@@ -9219,7 +9370,17 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9219
9370
  type: "fade" | "slideout_left";
9220
9371
  duration?: number | undefined;
9221
9372
  } | undefined;
9222
- }>>;
9373
+ }>>>;
9374
+ soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
9375
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
9376
+ model: z.ZodOptional<z.ZodString>;
9377
+ }, "strip", z.ZodTypeAny, {
9378
+ provider?: string | undefined;
9379
+ model?: string | undefined;
9380
+ }, {
9381
+ provider?: string | undefined;
9382
+ model?: string | undefined;
9383
+ }>>>;
9223
9384
  htmlImageParams: z.ZodOptional<z.ZodObject<{
9224
9385
  model: z.ZodOptional<z.ZodString>;
9225
9386
  } & {
@@ -9337,6 +9498,31 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9337
9498
  suppressSpeech?: boolean | undefined;
9338
9499
  }>>;
9339
9500
  }, "strip", z.ZodTypeAny, {
9501
+ imageParams: {
9502
+ provider: string;
9503
+ model?: string | undefined;
9504
+ style?: string | undefined;
9505
+ moderation?: string | undefined;
9506
+ images?: Record<string, {
9507
+ type: "image";
9508
+ source: {
9509
+ url: string;
9510
+ kind: "url";
9511
+ } | {
9512
+ kind: "base64";
9513
+ data: string;
9514
+ } | {
9515
+ text: string;
9516
+ kind: "text";
9517
+ } | {
9518
+ path: string;
9519
+ kind: "path";
9520
+ };
9521
+ } | {
9522
+ type: "imagePrompt";
9523
+ prompt: string;
9524
+ }> | undefined;
9525
+ };
9340
9526
  audioParams: {
9341
9527
  padding: number;
9342
9528
  introPadding: number;
@@ -9359,8 +9545,23 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9359
9545
  kind: "path";
9360
9546
  } | undefined;
9361
9547
  };
9548
+ movieParams: {
9549
+ provider?: string | undefined;
9550
+ model?: string | undefined;
9551
+ fillOption?: {
9552
+ style: "aspectFit" | "aspectFill";
9553
+ } | undefined;
9554
+ transition?: {
9555
+ type: "fade" | "slideout_left";
9556
+ duration: number;
9557
+ } | undefined;
9558
+ };
9559
+ soundEffectParams: {
9560
+ provider?: string | undefined;
9561
+ model?: string | undefined;
9562
+ };
9362
9563
  $mulmocast: {
9363
- version: "1.0";
9564
+ version: "1.1";
9364
9565
  credit?: "closing" | undefined;
9365
9566
  };
9366
9567
  canvasSize: {
@@ -9368,10 +9569,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9368
9569
  height: number;
9369
9570
  };
9370
9571
  speechParams: {
9371
- provider: string;
9372
9572
  speakers: Record<string, {
9373
9573
  voiceId: string;
9374
9574
  displayName?: Record<string, string> | undefined;
9575
+ isDefault?: boolean | undefined;
9375
9576
  speechOptions?: {
9376
9577
  speed?: number | undefined;
9377
9578
  instruction?: string | undefined;
@@ -9379,44 +9580,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9379
9580
  provider?: string | undefined;
9380
9581
  model?: string | undefined;
9381
9582
  }>;
9382
- model?: string | undefined;
9383
9583
  };
9384
- imageParams?: {
9385
- provider: string;
9386
- model?: string | undefined;
9387
- style?: string | undefined;
9388
- moderation?: string | undefined;
9389
- images?: Record<string, {
9390
- type: "image";
9391
- source: {
9392
- url: string;
9393
- kind: "url";
9394
- } | {
9395
- kind: "base64";
9396
- data: string;
9397
- } | {
9398
- text: string;
9399
- kind: "text";
9400
- } | {
9401
- path: string;
9402
- kind: "path";
9403
- };
9404
- } | {
9405
- type: "imagePrompt";
9406
- prompt: string;
9407
- }> | undefined;
9408
- } | undefined;
9409
- movieParams?: {
9410
- provider?: string | undefined;
9411
- model?: string | undefined;
9412
- fillOption?: {
9413
- style: "aspectFit" | "aspectFill";
9414
- } | undefined;
9415
- transition?: {
9416
- type: "fade" | "slideout_left";
9417
- duration: number;
9418
- } | undefined;
9419
- } | undefined;
9420
9584
  htmlImageParams?: {
9421
9585
  provider: string;
9422
9586
  model?: string | undefined;
@@ -9430,7 +9594,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9430
9594
  } | undefined;
9431
9595
  }, {
9432
9596
  $mulmocast: {
9433
- version: "1.0";
9597
+ version: "1.1";
9434
9598
  credit?: "closing" | undefined;
9435
9599
  };
9436
9600
  imageParams?: {
@@ -9491,6 +9655,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9491
9655
  duration?: number | undefined;
9492
9656
  } | undefined;
9493
9657
  } | undefined;
9658
+ soundEffectParams?: {
9659
+ provider?: string | undefined;
9660
+ model?: string | undefined;
9661
+ } | undefined;
9494
9662
  htmlImageParams?: {
9495
9663
  provider?: string | undefined;
9496
9664
  model?: string | undefined;
@@ -9510,6 +9678,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9510
9678
  speakers: Record<string, {
9511
9679
  voiceId: string;
9512
9680
  displayName?: Record<string, string> | undefined;
9681
+ isDefault?: boolean | undefined;
9513
9682
  speechOptions?: {
9514
9683
  speed?: number | undefined;
9515
9684
  instruction?: string | undefined;
@@ -9517,8 +9686,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9517
9686
  provider?: string | undefined;
9518
9687
  model?: string | undefined;
9519
9688
  }>;
9520
- provider?: string | undefined;
9521
- model?: string | undefined;
9522
9689
  } | undefined;
9523
9690
  }>>;
9524
9691
  } & {
@@ -9530,6 +9697,31 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9530
9697
  filename: string;
9531
9698
  scriptName?: string | undefined;
9532
9699
  presentationStyle?: {
9700
+ imageParams: {
9701
+ provider: string;
9702
+ model?: string | undefined;
9703
+ style?: string | undefined;
9704
+ moderation?: string | undefined;
9705
+ images?: Record<string, {
9706
+ type: "image";
9707
+ source: {
9708
+ url: string;
9709
+ kind: "url";
9710
+ } | {
9711
+ kind: "base64";
9712
+ data: string;
9713
+ } | {
9714
+ text: string;
9715
+ kind: "text";
9716
+ } | {
9717
+ path: string;
9718
+ kind: "path";
9719
+ };
9720
+ } | {
9721
+ type: "imagePrompt";
9722
+ prompt: string;
9723
+ }> | undefined;
9724
+ };
9533
9725
  audioParams: {
9534
9726
  padding: number;
9535
9727
  introPadding: number;
@@ -9552,8 +9744,23 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9552
9744
  kind: "path";
9553
9745
  } | undefined;
9554
9746
  };
9747
+ movieParams: {
9748
+ provider?: string | undefined;
9749
+ model?: string | undefined;
9750
+ fillOption?: {
9751
+ style: "aspectFit" | "aspectFill";
9752
+ } | undefined;
9753
+ transition?: {
9754
+ type: "fade" | "slideout_left";
9755
+ duration: number;
9756
+ } | undefined;
9757
+ };
9758
+ soundEffectParams: {
9759
+ provider?: string | undefined;
9760
+ model?: string | undefined;
9761
+ };
9555
9762
  $mulmocast: {
9556
- version: "1.0";
9763
+ version: "1.1";
9557
9764
  credit?: "closing" | undefined;
9558
9765
  };
9559
9766
  canvasSize: {
@@ -9561,10 +9768,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9561
9768
  height: number;
9562
9769
  };
9563
9770
  speechParams: {
9564
- provider: string;
9565
9771
  speakers: Record<string, {
9566
9772
  voiceId: string;
9567
9773
  displayName?: Record<string, string> | undefined;
9774
+ isDefault?: boolean | undefined;
9568
9775
  speechOptions?: {
9569
9776
  speed?: number | undefined;
9570
9777
  instruction?: string | undefined;
@@ -9572,44 +9779,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9572
9779
  provider?: string | undefined;
9573
9780
  model?: string | undefined;
9574
9781
  }>;
9575
- model?: string | undefined;
9576
9782
  };
9577
- imageParams?: {
9578
- provider: string;
9579
- model?: string | undefined;
9580
- style?: string | undefined;
9581
- moderation?: string | undefined;
9582
- images?: Record<string, {
9583
- type: "image";
9584
- source: {
9585
- url: string;
9586
- kind: "url";
9587
- } | {
9588
- kind: "base64";
9589
- data: string;
9590
- } | {
9591
- text: string;
9592
- kind: "text";
9593
- } | {
9594
- path: string;
9595
- kind: "path";
9596
- };
9597
- } | {
9598
- type: "imagePrompt";
9599
- prompt: string;
9600
- }> | undefined;
9601
- } | undefined;
9602
- movieParams?: {
9603
- provider?: string | undefined;
9604
- model?: string | undefined;
9605
- fillOption?: {
9606
- style: "aspectFit" | "aspectFill";
9607
- } | undefined;
9608
- transition?: {
9609
- type: "fade" | "slideout_left";
9610
- duration: number;
9611
- } | undefined;
9612
- } | undefined;
9613
9783
  htmlImageParams?: {
9614
9784
  provider: string;
9615
9785
  model?: string | undefined;
@@ -9630,7 +9800,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9630
9800
  scriptName?: string | undefined;
9631
9801
  presentationStyle?: {
9632
9802
  $mulmocast: {
9633
- version: "1.0";
9803
+ version: "1.1";
9634
9804
  credit?: "closing" | undefined;
9635
9805
  };
9636
9806
  imageParams?: {
@@ -9691,6 +9861,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9691
9861
  duration?: number | undefined;
9692
9862
  } | undefined;
9693
9863
  } | undefined;
9864
+ soundEffectParams?: {
9865
+ provider?: string | undefined;
9866
+ model?: string | undefined;
9867
+ } | undefined;
9694
9868
  htmlImageParams?: {
9695
9869
  provider?: string | undefined;
9696
9870
  model?: string | undefined;
@@ -9710,6 +9884,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9710
9884
  speakers: Record<string, {
9711
9885
  voiceId: string;
9712
9886
  displayName?: Record<string, string> | undefined;
9887
+ isDefault?: boolean | undefined;
9713
9888
  speechOptions?: {
9714
9889
  speed?: number | undefined;
9715
9890
  instruction?: string | undefined;
@@ -9717,8 +9892,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9717
9892
  provider?: string | undefined;
9718
9893
  model?: string | undefined;
9719
9894
  }>;
9720
- provider?: string | undefined;
9721
- model?: string | undefined;
9722
9895
  } | undefined;
9723
9896
  } | undefined;
9724
9897
  }>;