mulmocast 0.1.7 → 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 (50) hide show
  1. package/assets/templates/akira_comic.json +1 -1
  2. package/assets/templates/ani.json +1 -1
  3. package/assets/templates/ani_ja.json +2 -3
  4. package/assets/templates/characters.json +1 -1
  5. package/assets/templates/children_book.json +1 -1
  6. package/assets/templates/comic_strips.json +1 -1
  7. package/assets/templates/drslump_comic.json +1 -1
  8. package/assets/templates/ghibli_comic.json +1 -1
  9. package/assets/templates/ghibli_image_only.json +1 -1
  10. package/assets/templates/ghibli_shorts.json +2 -3
  11. package/assets/templates/ghost_comic.json +1 -1
  12. package/assets/templates/onepiece_comic.json +1 -1
  13. package/assets/templates/portrait_movie.json +1 -1
  14. package/assets/templates/realistic_movie.json +1 -1
  15. package/assets/templates/sensei_and_taro.json +4 -5
  16. package/assets/templates/shorts.json +1 -1
  17. package/assets/templates/trailer.json +1 -1
  18. package/lib/actions/audio.js +6 -7
  19. package/lib/actions/image_agents.d.ts +25 -76
  20. package/lib/actions/image_agents.js +11 -3
  21. package/lib/actions/images.js +36 -4
  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 +17 -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/mcp/server.js +2 -2
  29. package/lib/methods/index.d.ts +1 -0
  30. package/lib/methods/index.js +1 -0
  31. package/lib/methods/mulmo_presentation_style.d.ts +10 -5
  32. package/lib/methods/mulmo_presentation_style.js +24 -20
  33. package/lib/methods/mulmo_script.d.ts +4 -0
  34. package/lib/methods/mulmo_script.js +31 -0
  35. package/lib/types/agent.d.ts +9 -0
  36. package/lib/types/schema.d.ts +396 -244
  37. package/lib/types/schema.js +22 -12
  38. package/lib/types/type.d.ts +2 -3
  39. package/lib/utils/assets.d.ts +18 -0
  40. package/lib/utils/assets.js +101 -0
  41. package/lib/utils/context.d.ts +25 -12
  42. package/lib/utils/context.js +2 -1
  43. package/lib/utils/file.d.ts +4 -1
  44. package/lib/utils/file.js +3 -5
  45. package/lib/utils/preprocess.d.ts +20 -11
  46. package/lib/utils/preprocess.js +7 -5
  47. package/lib/utils/provider2agent.d.ts +19 -1
  48. package/lib/utils/provider2agent.js +73 -0
  49. package/lib/utils/utils.js +3 -0
  50. package/package.json +1 -1
@@ -52,6 +52,7 @@ export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodEnum<[string,
52
52
  export declare const speakerDataSchema: z.ZodObject<{
53
53
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
54
54
  voiceId: z.ZodString;
55
+ isDefault: z.ZodOptional<z.ZodBoolean>;
55
56
  speechOptions: z.ZodOptional<z.ZodObject<{
56
57
  speed: z.ZodOptional<z.ZodNumber>;
57
58
  instruction: z.ZodOptional<z.ZodString>;
@@ -67,6 +68,7 @@ export declare const speakerDataSchema: z.ZodObject<{
67
68
  }, "strict", z.ZodTypeAny, {
68
69
  voiceId: string;
69
70
  displayName?: Record<string, string> | undefined;
71
+ isDefault?: boolean | undefined;
70
72
  speechOptions?: {
71
73
  speed?: number | undefined;
72
74
  instruction?: string | undefined;
@@ -76,6 +78,7 @@ export declare const speakerDataSchema: z.ZodObject<{
76
78
  }, {
77
79
  voiceId: string;
78
80
  displayName?: Record<string, string> | undefined;
81
+ isDefault?: boolean | undefined;
79
82
  speechOptions?: {
80
83
  speed?: number | undefined;
81
84
  instruction?: string | undefined;
@@ -86,6 +89,7 @@ export declare const speakerDataSchema: z.ZodObject<{
86
89
  export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObject<{
87
90
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
88
91
  voiceId: z.ZodString;
92
+ isDefault: z.ZodOptional<z.ZodBoolean>;
89
93
  speechOptions: z.ZodOptional<z.ZodObject<{
90
94
  speed: z.ZodOptional<z.ZodNumber>;
91
95
  instruction: z.ZodOptional<z.ZodString>;
@@ -101,6 +105,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
101
105
  }, "strict", z.ZodTypeAny, {
102
106
  voiceId: string;
103
107
  displayName?: Record<string, string> | undefined;
108
+ isDefault?: boolean | undefined;
104
109
  speechOptions?: {
105
110
  speed?: number | undefined;
106
111
  instruction?: string | undefined;
@@ -110,6 +115,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
110
115
  }, {
111
116
  voiceId: string;
112
117
  displayName?: Record<string, string> | undefined;
118
+ isDefault?: boolean | undefined;
113
119
  speechOptions?: {
114
120
  speed?: number | undefined;
115
121
  instruction?: string | undefined;
@@ -1289,8 +1295,19 @@ export declare const htmlPromptParamsSchema: z.ZodObject<{
1289
1295
  systemPrompt?: string | undefined;
1290
1296
  }>;
1291
1297
  export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
1298
+ export declare const text2SoundEffectProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
1299
+ export declare const mulmoSoundEffectParamsSchema: z.ZodObject<{
1300
+ provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
1301
+ model: z.ZodOptional<z.ZodString>;
1302
+ }, "strip", z.ZodTypeAny, {
1303
+ provider?: string | undefined;
1304
+ model?: string | undefined;
1305
+ }, {
1306
+ provider?: string | undefined;
1307
+ model?: string | undefined;
1308
+ }>;
1292
1309
  export declare const mulmoBeatSchema: z.ZodObject<{
1293
- speaker: z.ZodDefault<z.ZodString>;
1310
+ speaker: z.ZodOptional<z.ZodString>;
1294
1311
  text: z.ZodDefault<z.ZodString>;
1295
1312
  id: z.ZodOptional<z.ZodString>;
1296
1313
  description: z.ZodOptional<z.ZodString>;
@@ -1981,6 +1998,16 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1981
1998
  style?: "aspectFit" | "aspectFill" | undefined;
1982
1999
  } | undefined;
1983
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
+ }>>;
1984
2011
  htmlImageParams: z.ZodOptional<z.ZodObject<{
1985
2012
  model: z.ZodOptional<z.ZodString>;
1986
2013
  }, "strict", z.ZodTypeAny, {
@@ -2018,6 +2045,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2018
2045
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2019
2046
  imagePrompt: z.ZodOptional<z.ZodString>;
2020
2047
  moviePrompt: z.ZodOptional<z.ZodString>;
2048
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
2021
2049
  htmlPrompt: z.ZodOptional<z.ZodObject<{
2022
2050
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
2023
2051
  prompt: z.ZodDefault<z.ZodString>;
@@ -2036,12 +2064,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2036
2064
  }>>;
2037
2065
  }, "strict", z.ZodTypeAny, {
2038
2066
  text: string;
2039
- speaker: string;
2040
- duration?: number | undefined;
2041
- speechOptions?: {
2042
- speed?: number | undefined;
2043
- instruction?: string | undefined;
2044
- } | undefined;
2045
2067
  image?: {
2046
2068
  type: "markdown";
2047
2069
  markdown: string | string[];
@@ -2146,6 +2168,11 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2146
2168
  type: "voice_over";
2147
2169
  startAt?: number | undefined;
2148
2170
  } | undefined;
2171
+ duration?: number | undefined;
2172
+ speechOptions?: {
2173
+ speed?: number | undefined;
2174
+ instruction?: string | undefined;
2175
+ } | undefined;
2149
2176
  id?: string | undefined;
2150
2177
  audio?: {
2151
2178
  type: "audio";
@@ -2167,6 +2194,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2167
2194
  source: string;
2168
2195
  } | undefined;
2169
2196
  imagePrompt?: string | undefined;
2197
+ speaker?: string | undefined;
2170
2198
  description?: string | undefined;
2171
2199
  imageParams?: {
2172
2200
  provider: string;
@@ -2205,6 +2233,10 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2205
2233
  style: "aspectFit" | "aspectFill";
2206
2234
  } | undefined;
2207
2235
  } | undefined;
2236
+ soundEffectParams?: {
2237
+ provider?: string | undefined;
2238
+ model?: string | undefined;
2239
+ } | undefined;
2208
2240
  htmlImageParams?: {
2209
2241
  model?: string | undefined;
2210
2242
  } | undefined;
@@ -2217,6 +2249,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2217
2249
  } | undefined;
2218
2250
  imageNames?: string[] | undefined;
2219
2251
  moviePrompt?: string | undefined;
2252
+ soundEffectPrompt?: string | undefined;
2220
2253
  htmlPrompt?: {
2221
2254
  prompt: string;
2222
2255
  data?: any;
@@ -2224,12 +2257,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2224
2257
  systemPrompt?: string | undefined;
2225
2258
  } | undefined;
2226
2259
  }, {
2227
- text?: string | undefined;
2228
- duration?: number | undefined;
2229
- speechOptions?: {
2230
- speed?: number | undefined;
2231
- instruction?: string | undefined;
2232
- } | undefined;
2233
2260
  image?: {
2234
2261
  type: "markdown";
2235
2262
  markdown: string | string[];
@@ -2334,6 +2361,12 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2334
2361
  type: "voice_over";
2335
2362
  startAt?: number | undefined;
2336
2363
  } | undefined;
2364
+ text?: string | undefined;
2365
+ duration?: number | undefined;
2366
+ speechOptions?: {
2367
+ speed?: number | undefined;
2368
+ instruction?: string | undefined;
2369
+ } | undefined;
2337
2370
  id?: string | undefined;
2338
2371
  audio?: {
2339
2372
  type: "audio";
@@ -2394,6 +2427,10 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2394
2427
  style?: "aspectFit" | "aspectFill" | undefined;
2395
2428
  } | undefined;
2396
2429
  } | undefined;
2430
+ soundEffectParams?: {
2431
+ provider?: string | undefined;
2432
+ model?: string | undefined;
2433
+ } | undefined;
2397
2434
  htmlImageParams?: {
2398
2435
  model?: string | undefined;
2399
2436
  } | undefined;
@@ -2406,6 +2443,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
2406
2443
  } | undefined;
2407
2444
  imageNames?: string[] | undefined;
2408
2445
  moviePrompt?: string | undefined;
2446
+ soundEffectPrompt?: string | undefined;
2409
2447
  htmlPrompt?: {
2410
2448
  data?: any;
2411
2449
  prompt?: string | undefined;
@@ -2424,79 +2462,15 @@ export declare const mulmoCanvasDimensionSchema: z.ZodDefault<z.ZodObject<{
2424
2462
  height: number;
2425
2463
  }>>;
2426
2464
  export declare const mulmoCastCreditSchema: z.ZodObject<{
2427
- version: z.ZodLiteral<"1.0">;
2465
+ version: z.ZodLiteral<"1.1">;
2428
2466
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
2429
2467
  }, "strict", z.ZodTypeAny, {
2430
- version: "1.0";
2468
+ version: "1.1";
2431
2469
  credit?: "closing" | undefined;
2432
2470
  }, {
2433
- version: "1.0";
2471
+ version: "1.1";
2434
2472
  credit?: "closing" | undefined;
2435
2473
  }>;
2436
- export declare const mulmoSpeechParamsSchema: z.ZodObject<{
2437
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2438
- speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
2439
- displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2440
- voiceId: z.ZodString;
2441
- speechOptions: z.ZodOptional<z.ZodObject<{
2442
- speed: z.ZodOptional<z.ZodNumber>;
2443
- instruction: z.ZodOptional<z.ZodString>;
2444
- }, "strict", z.ZodTypeAny, {
2445
- speed?: number | undefined;
2446
- instruction?: string | undefined;
2447
- }, {
2448
- speed?: number | undefined;
2449
- instruction?: string | undefined;
2450
- }>>;
2451
- provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
2452
- model: z.ZodOptional<z.ZodString>;
2453
- }, "strict", z.ZodTypeAny, {
2454
- voiceId: string;
2455
- displayName?: Record<string, string> | undefined;
2456
- speechOptions?: {
2457
- speed?: number | undefined;
2458
- instruction?: string | undefined;
2459
- } | undefined;
2460
- provider?: string | undefined;
2461
- model?: string | undefined;
2462
- }, {
2463
- voiceId: string;
2464
- displayName?: Record<string, string> | undefined;
2465
- speechOptions?: {
2466
- speed?: number | undefined;
2467
- instruction?: string | undefined;
2468
- } | undefined;
2469
- provider?: string | undefined;
2470
- model?: string | undefined;
2471
- }>>;
2472
- model: z.ZodOptional<z.ZodString>;
2473
- }, "strict", z.ZodTypeAny, {
2474
- provider: string;
2475
- speakers: Record<string, {
2476
- voiceId: string;
2477
- displayName?: Record<string, string> | undefined;
2478
- speechOptions?: {
2479
- speed?: number | undefined;
2480
- instruction?: string | undefined;
2481
- } | undefined;
2482
- provider?: string | undefined;
2483
- model?: string | undefined;
2484
- }>;
2485
- model?: string | undefined;
2486
- }, {
2487
- speakers: Record<string, {
2488
- voiceId: string;
2489
- displayName?: Record<string, string> | undefined;
2490
- speechOptions?: {
2491
- speed?: number | undefined;
2492
- instruction?: string | undefined;
2493
- } | undefined;
2494
- provider?: string | undefined;
2495
- model?: string | undefined;
2496
- }>;
2497
- provider?: string | undefined;
2498
- model?: string | undefined;
2499
- }>;
2500
2474
  export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2501
2475
  export declare const mulmoGoogleMovieModelSchema: z.ZodObject<{
2502
2476
  provider: z.ZodLiteral<"google">;
@@ -2571,13 +2545,13 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
2571
2545
  }>;
2572
2546
  export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2573
2547
  $mulmocast: z.ZodObject<{
2574
- version: z.ZodLiteral<"1.0">;
2548
+ version: z.ZodLiteral<"1.1">;
2575
2549
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
2576
2550
  }, "strict", z.ZodTypeAny, {
2577
- version: "1.0";
2551
+ version: "1.1";
2578
2552
  credit?: "closing" | undefined;
2579
2553
  }, {
2580
- version: "1.0";
2554
+ version: "1.1";
2581
2555
  credit?: "closing" | undefined;
2582
2556
  }>;
2583
2557
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -2591,10 +2565,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2591
2565
  height: number;
2592
2566
  }>>;
2593
2567
  speechParams: z.ZodDefault<z.ZodObject<{
2594
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
2595
2568
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
2596
2569
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2597
2570
  voiceId: z.ZodString;
2571
+ isDefault: z.ZodOptional<z.ZodBoolean>;
2598
2572
  speechOptions: z.ZodOptional<z.ZodObject<{
2599
2573
  speed: z.ZodOptional<z.ZodNumber>;
2600
2574
  instruction: z.ZodOptional<z.ZodString>;
@@ -2610,6 +2584,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2610
2584
  }, "strict", z.ZodTypeAny, {
2611
2585
  voiceId: string;
2612
2586
  displayName?: Record<string, string> | undefined;
2587
+ isDefault?: boolean | undefined;
2613
2588
  speechOptions?: {
2614
2589
  speed?: number | undefined;
2615
2590
  instruction?: string | undefined;
@@ -2619,6 +2594,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2619
2594
  }, {
2620
2595
  voiceId: string;
2621
2596
  displayName?: Record<string, string> | undefined;
2597
+ isDefault?: boolean | undefined;
2622
2598
  speechOptions?: {
2623
2599
  speed?: number | undefined;
2624
2600
  instruction?: string | undefined;
@@ -2626,12 +2602,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2626
2602
  provider?: string | undefined;
2627
2603
  model?: string | undefined;
2628
2604
  }>>;
2629
- model: z.ZodOptional<z.ZodString>;
2630
- }, "strict", z.ZodTypeAny, {
2631
- provider: string;
2605
+ }, "strip", z.ZodTypeAny, {
2632
2606
  speakers: Record<string, {
2633
2607
  voiceId: string;
2634
2608
  displayName?: Record<string, string> | undefined;
2609
+ isDefault?: boolean | undefined;
2635
2610
  speechOptions?: {
2636
2611
  speed?: number | undefined;
2637
2612
  instruction?: string | undefined;
@@ -2639,11 +2614,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2639
2614
  provider?: string | undefined;
2640
2615
  model?: string | undefined;
2641
2616
  }>;
2642
- model?: string | undefined;
2643
2617
  }, {
2644
2618
  speakers: Record<string, {
2645
2619
  voiceId: string;
2646
2620
  displayName?: Record<string, string> | undefined;
2621
+ isDefault?: boolean | undefined;
2647
2622
  speechOptions?: {
2648
2623
  speed?: number | undefined;
2649
2624
  instruction?: string | undefined;
@@ -2651,8 +2626,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2651
2626
  provider?: string | undefined;
2652
2627
  model?: string | undefined;
2653
2628
  }>;
2654
- provider?: string | undefined;
2655
- model?: string | undefined;
2656
2629
  }>>;
2657
2630
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2658
2631
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -2828,6 +2801,16 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2828
2801
  duration?: number | undefined;
2829
2802
  } | undefined;
2830
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
+ }>>>;
2831
2814
  htmlImageParams: z.ZodOptional<z.ZodObject<{
2832
2815
  model: z.ZodOptional<z.ZodString>;
2833
2816
  } & {
@@ -3003,8 +2986,12 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3003
2986
  duration: number;
3004
2987
  } | undefined;
3005
2988
  };
2989
+ soundEffectParams: {
2990
+ provider?: string | undefined;
2991
+ model?: string | undefined;
2992
+ };
3006
2993
  $mulmocast: {
3007
- version: "1.0";
2994
+ version: "1.1";
3008
2995
  credit?: "closing" | undefined;
3009
2996
  };
3010
2997
  canvasSize: {
@@ -3012,10 +2999,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3012
2999
  height: number;
3013
3000
  };
3014
3001
  speechParams: {
3015
- provider: string;
3016
3002
  speakers: Record<string, {
3017
3003
  voiceId: string;
3018
3004
  displayName?: Record<string, string> | undefined;
3005
+ isDefault?: boolean | undefined;
3019
3006
  speechOptions?: {
3020
3007
  speed?: number | undefined;
3021
3008
  instruction?: string | undefined;
@@ -3023,7 +3010,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3023
3010
  provider?: string | undefined;
3024
3011
  model?: string | undefined;
3025
3012
  }>;
3026
- model?: string | undefined;
3027
3013
  };
3028
3014
  htmlImageParams?: {
3029
3015
  provider: string;
@@ -3038,7 +3024,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3038
3024
  } | undefined;
3039
3025
  }, {
3040
3026
  $mulmocast: {
3041
- version: "1.0";
3027
+ version: "1.1";
3042
3028
  credit?: "closing" | undefined;
3043
3029
  };
3044
3030
  imageParams?: {
@@ -3099,6 +3085,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3099
3085
  duration?: number | undefined;
3100
3086
  } | undefined;
3101
3087
  } | undefined;
3088
+ soundEffectParams?: {
3089
+ provider?: string | undefined;
3090
+ model?: string | undefined;
3091
+ } | undefined;
3102
3092
  htmlImageParams?: {
3103
3093
  provider?: string | undefined;
3104
3094
  model?: string | undefined;
@@ -3118,6 +3108,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3118
3108
  speakers: Record<string, {
3119
3109
  voiceId: string;
3120
3110
  displayName?: Record<string, string> | undefined;
3111
+ isDefault?: boolean | undefined;
3121
3112
  speechOptions?: {
3122
3113
  speed?: number | undefined;
3123
3114
  instruction?: string | undefined;
@@ -3125,8 +3116,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
3125
3116
  provider?: string | undefined;
3126
3117
  model?: string | undefined;
3127
3118
  }>;
3128
- provider?: string | undefined;
3129
- model?: string | undefined;
3130
3119
  } | undefined;
3131
3120
  }>;
3132
3121
  export declare const mulmoReferenceSchema: z.ZodObject<{
@@ -3147,13 +3136,13 @@ export declare const mulmoReferenceSchema: z.ZodObject<{
3147
3136
  }>;
3148
3137
  export declare const mulmoScriptSchema: z.ZodObject<{
3149
3138
  $mulmocast: z.ZodObject<{
3150
- version: z.ZodLiteral<"1.0">;
3139
+ version: z.ZodLiteral<"1.1">;
3151
3140
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
3152
3141
  }, "strict", z.ZodTypeAny, {
3153
- version: "1.0";
3142
+ version: "1.1";
3154
3143
  credit?: "closing" | undefined;
3155
3144
  }, {
3156
- version: "1.0";
3145
+ version: "1.1";
3157
3146
  credit?: "closing" | undefined;
3158
3147
  }>;
3159
3148
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -3167,10 +3156,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3167
3156
  height: number;
3168
3157
  }>>;
3169
3158
  speechParams: z.ZodDefault<z.ZodObject<{
3170
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
3171
3159
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
3172
3160
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3173
3161
  voiceId: z.ZodString;
3162
+ isDefault: z.ZodOptional<z.ZodBoolean>;
3174
3163
  speechOptions: z.ZodOptional<z.ZodObject<{
3175
3164
  speed: z.ZodOptional<z.ZodNumber>;
3176
3165
  instruction: z.ZodOptional<z.ZodString>;
@@ -3186,6 +3175,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3186
3175
  }, "strict", z.ZodTypeAny, {
3187
3176
  voiceId: string;
3188
3177
  displayName?: Record<string, string> | undefined;
3178
+ isDefault?: boolean | undefined;
3189
3179
  speechOptions?: {
3190
3180
  speed?: number | undefined;
3191
3181
  instruction?: string | undefined;
@@ -3195,6 +3185,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3195
3185
  }, {
3196
3186
  voiceId: string;
3197
3187
  displayName?: Record<string, string> | undefined;
3188
+ isDefault?: boolean | undefined;
3198
3189
  speechOptions?: {
3199
3190
  speed?: number | undefined;
3200
3191
  instruction?: string | undefined;
@@ -3202,12 +3193,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3202
3193
  provider?: string | undefined;
3203
3194
  model?: string | undefined;
3204
3195
  }>>;
3205
- model: z.ZodOptional<z.ZodString>;
3206
- }, "strict", z.ZodTypeAny, {
3207
- provider: string;
3196
+ }, "strip", z.ZodTypeAny, {
3208
3197
  speakers: Record<string, {
3209
3198
  voiceId: string;
3210
3199
  displayName?: Record<string, string> | undefined;
3200
+ isDefault?: boolean | undefined;
3211
3201
  speechOptions?: {
3212
3202
  speed?: number | undefined;
3213
3203
  instruction?: string | undefined;
@@ -3215,11 +3205,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3215
3205
  provider?: string | undefined;
3216
3206
  model?: string | undefined;
3217
3207
  }>;
3218
- model?: string | undefined;
3219
3208
  }, {
3220
3209
  speakers: Record<string, {
3221
3210
  voiceId: string;
3222
3211
  displayName?: Record<string, string> | undefined;
3212
+ isDefault?: boolean | undefined;
3223
3213
  speechOptions?: {
3224
3214
  speed?: number | undefined;
3225
3215
  instruction?: string | undefined;
@@ -3227,8 +3217,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3227
3217
  provider?: string | undefined;
3228
3218
  model?: string | undefined;
3229
3219
  }>;
3230
- provider?: string | undefined;
3231
- model?: string | undefined;
3232
3220
  }>>;
3233
3221
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3234
3222
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -3404,6 +3392,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3404
3392
  duration?: number | undefined;
3405
3393
  } | undefined;
3406
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
+ }>>>;
3407
3405
  htmlImageParams: z.ZodOptional<z.ZodObject<{
3408
3406
  model: z.ZodOptional<z.ZodString>;
3409
3407
  } & {
@@ -3541,7 +3539,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3541
3539
  }>, "many">>;
3542
3540
  lang: z.ZodOptional<z.ZodString>;
3543
3541
  beats: z.ZodArray<z.ZodObject<{
3544
- speaker: z.ZodDefault<z.ZodString>;
3542
+ speaker: z.ZodOptional<z.ZodString>;
3545
3543
  text: z.ZodDefault<z.ZodString>;
3546
3544
  id: z.ZodOptional<z.ZodString>;
3547
3545
  description: z.ZodOptional<z.ZodString>;
@@ -4232,6 +4230,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4232
4230
  style?: "aspectFit" | "aspectFill" | undefined;
4233
4231
  } | undefined;
4234
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
+ }>>;
4235
4243
  htmlImageParams: z.ZodOptional<z.ZodObject<{
4236
4244
  model: z.ZodOptional<z.ZodString>;
4237
4245
  }, "strict", z.ZodTypeAny, {
@@ -4269,6 +4277,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4269
4277
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4270
4278
  imagePrompt: z.ZodOptional<z.ZodString>;
4271
4279
  moviePrompt: z.ZodOptional<z.ZodString>;
4280
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
4272
4281
  htmlPrompt: z.ZodOptional<z.ZodObject<{
4273
4282
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
4274
4283
  prompt: z.ZodDefault<z.ZodString>;
@@ -4287,12 +4296,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4287
4296
  }>>;
4288
4297
  }, "strict", z.ZodTypeAny, {
4289
4298
  text: string;
4290
- speaker: string;
4291
- duration?: number | undefined;
4292
- speechOptions?: {
4293
- speed?: number | undefined;
4294
- instruction?: string | undefined;
4295
- } | undefined;
4296
4299
  image?: {
4297
4300
  type: "markdown";
4298
4301
  markdown: string | string[];
@@ -4397,6 +4400,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4397
4400
  type: "voice_over";
4398
4401
  startAt?: number | undefined;
4399
4402
  } | undefined;
4403
+ duration?: number | undefined;
4404
+ speechOptions?: {
4405
+ speed?: number | undefined;
4406
+ instruction?: string | undefined;
4407
+ } | undefined;
4400
4408
  id?: string | undefined;
4401
4409
  audio?: {
4402
4410
  type: "audio";
@@ -4418,6 +4426,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4418
4426
  source: string;
4419
4427
  } | undefined;
4420
4428
  imagePrompt?: string | undefined;
4429
+ speaker?: string | undefined;
4421
4430
  description?: string | undefined;
4422
4431
  imageParams?: {
4423
4432
  provider: string;
@@ -4456,6 +4465,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4456
4465
  style: "aspectFit" | "aspectFill";
4457
4466
  } | undefined;
4458
4467
  } | undefined;
4468
+ soundEffectParams?: {
4469
+ provider?: string | undefined;
4470
+ model?: string | undefined;
4471
+ } | undefined;
4459
4472
  htmlImageParams?: {
4460
4473
  model?: string | undefined;
4461
4474
  } | undefined;
@@ -4468,6 +4481,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4468
4481
  } | undefined;
4469
4482
  imageNames?: string[] | undefined;
4470
4483
  moviePrompt?: string | undefined;
4484
+ soundEffectPrompt?: string | undefined;
4471
4485
  htmlPrompt?: {
4472
4486
  prompt: string;
4473
4487
  data?: any;
@@ -4475,12 +4489,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4475
4489
  systemPrompt?: string | undefined;
4476
4490
  } | undefined;
4477
4491
  }, {
4478
- text?: string | undefined;
4479
- duration?: number | undefined;
4480
- speechOptions?: {
4481
- speed?: number | undefined;
4482
- instruction?: string | undefined;
4483
- } | undefined;
4484
4492
  image?: {
4485
4493
  type: "markdown";
4486
4494
  markdown: string | string[];
@@ -4585,6 +4593,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4585
4593
  type: "voice_over";
4586
4594
  startAt?: number | undefined;
4587
4595
  } | undefined;
4596
+ text?: string | undefined;
4597
+ duration?: number | undefined;
4598
+ speechOptions?: {
4599
+ speed?: number | undefined;
4600
+ instruction?: string | undefined;
4601
+ } | undefined;
4588
4602
  id?: string | undefined;
4589
4603
  audio?: {
4590
4604
  type: "audio";
@@ -4645,6 +4659,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4645
4659
  style?: "aspectFit" | "aspectFill" | undefined;
4646
4660
  } | undefined;
4647
4661
  } | undefined;
4662
+ soundEffectParams?: {
4663
+ provider?: string | undefined;
4664
+ model?: string | undefined;
4665
+ } | undefined;
4648
4666
  htmlImageParams?: {
4649
4667
  model?: string | undefined;
4650
4668
  } | undefined;
@@ -4657,6 +4675,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4657
4675
  } | undefined;
4658
4676
  imageNames?: string[] | undefined;
4659
4677
  moviePrompt?: string | undefined;
4678
+ soundEffectPrompt?: string | undefined;
4660
4679
  htmlPrompt?: {
4661
4680
  data?: any;
4662
4681
  prompt?: string | undefined;
@@ -4725,8 +4744,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4725
4744
  duration: number;
4726
4745
  } | undefined;
4727
4746
  };
4747
+ soundEffectParams: {
4748
+ provider?: string | undefined;
4749
+ model?: string | undefined;
4750
+ };
4728
4751
  $mulmocast: {
4729
- version: "1.0";
4752
+ version: "1.1";
4730
4753
  credit?: "closing" | undefined;
4731
4754
  };
4732
4755
  canvasSize: {
@@ -4734,10 +4757,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4734
4757
  height: number;
4735
4758
  };
4736
4759
  speechParams: {
4737
- provider: string;
4738
4760
  speakers: Record<string, {
4739
4761
  voiceId: string;
4740
4762
  displayName?: Record<string, string> | undefined;
4763
+ isDefault?: boolean | undefined;
4741
4764
  speechOptions?: {
4742
4765
  speed?: number | undefined;
4743
4766
  instruction?: string | undefined;
@@ -4745,16 +4768,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4745
4768
  provider?: string | undefined;
4746
4769
  model?: string | undefined;
4747
4770
  }>;
4748
- model?: string | undefined;
4749
4771
  };
4750
4772
  beats: {
4751
4773
  text: string;
4752
- speaker: string;
4753
- duration?: number | undefined;
4754
- speechOptions?: {
4755
- speed?: number | undefined;
4756
- instruction?: string | undefined;
4757
- } | undefined;
4758
4774
  image?: {
4759
4775
  type: "markdown";
4760
4776
  markdown: string | string[];
@@ -4859,6 +4875,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4859
4875
  type: "voice_over";
4860
4876
  startAt?: number | undefined;
4861
4877
  } | undefined;
4878
+ duration?: number | undefined;
4879
+ speechOptions?: {
4880
+ speed?: number | undefined;
4881
+ instruction?: string | undefined;
4882
+ } | undefined;
4862
4883
  id?: string | undefined;
4863
4884
  audio?: {
4864
4885
  type: "audio";
@@ -4880,6 +4901,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4880
4901
  source: string;
4881
4902
  } | undefined;
4882
4903
  imagePrompt?: string | undefined;
4904
+ speaker?: string | undefined;
4883
4905
  description?: string | undefined;
4884
4906
  imageParams?: {
4885
4907
  provider: string;
@@ -4918,6 +4940,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4918
4940
  style: "aspectFit" | "aspectFill";
4919
4941
  } | undefined;
4920
4942
  } | undefined;
4943
+ soundEffectParams?: {
4944
+ provider?: string | undefined;
4945
+ model?: string | undefined;
4946
+ } | undefined;
4921
4947
  htmlImageParams?: {
4922
4948
  model?: string | undefined;
4923
4949
  } | undefined;
@@ -4930,6 +4956,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4930
4956
  } | undefined;
4931
4957
  imageNames?: string[] | undefined;
4932
4958
  moviePrompt?: string | undefined;
4959
+ soundEffectPrompt?: string | undefined;
4933
4960
  htmlPrompt?: {
4934
4961
  prompt: string;
4935
4962
  data?: any;
@@ -4961,16 +4988,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
4961
4988
  __test_invalid__?: boolean | undefined;
4962
4989
  }, {
4963
4990
  $mulmocast: {
4964
- version: "1.0";
4991
+ version: "1.1";
4965
4992
  credit?: "closing" | undefined;
4966
4993
  };
4967
4994
  beats: {
4968
- text?: string | undefined;
4969
- duration?: number | undefined;
4970
- speechOptions?: {
4971
- speed?: number | undefined;
4972
- instruction?: string | undefined;
4973
- } | undefined;
4974
4995
  image?: {
4975
4996
  type: "markdown";
4976
4997
  markdown: string | string[];
@@ -5075,6 +5096,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5075
5096
  type: "voice_over";
5076
5097
  startAt?: number | undefined;
5077
5098
  } | undefined;
5099
+ text?: string | undefined;
5100
+ duration?: number | undefined;
5101
+ speechOptions?: {
5102
+ speed?: number | undefined;
5103
+ instruction?: string | undefined;
5104
+ } | undefined;
5078
5105
  id?: string | undefined;
5079
5106
  audio?: {
5080
5107
  type: "audio";
@@ -5135,6 +5162,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5135
5162
  style?: "aspectFit" | "aspectFill" | undefined;
5136
5163
  } | undefined;
5137
5164
  } | undefined;
5165
+ soundEffectParams?: {
5166
+ provider?: string | undefined;
5167
+ model?: string | undefined;
5168
+ } | undefined;
5138
5169
  htmlImageParams?: {
5139
5170
  model?: string | undefined;
5140
5171
  } | undefined;
@@ -5147,6 +5178,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5147
5178
  } | undefined;
5148
5179
  imageNames?: string[] | undefined;
5149
5180
  moviePrompt?: string | undefined;
5181
+ soundEffectPrompt?: string | undefined;
5150
5182
  htmlPrompt?: {
5151
5183
  data?: any;
5152
5184
  prompt?: string | undefined;
@@ -5215,6 +5247,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5215
5247
  duration?: number | undefined;
5216
5248
  } | undefined;
5217
5249
  } | undefined;
5250
+ soundEffectParams?: {
5251
+ provider?: string | undefined;
5252
+ model?: string | undefined;
5253
+ } | undefined;
5218
5254
  htmlImageParams?: {
5219
5255
  provider?: string | undefined;
5220
5256
  model?: string | undefined;
@@ -5234,6 +5270,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5234
5270
  speakers: Record<string, {
5235
5271
  voiceId: string;
5236
5272
  displayName?: Record<string, string> | undefined;
5273
+ isDefault?: boolean | undefined;
5237
5274
  speechOptions?: {
5238
5275
  speed?: number | undefined;
5239
5276
  instruction?: string | undefined;
@@ -5241,8 +5278,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
5241
5278
  provider?: string | undefined;
5242
5279
  model?: string | undefined;
5243
5280
  }>;
5244
- provider?: string | undefined;
5245
- model?: string | undefined;
5246
5281
  } | undefined;
5247
5282
  references?: {
5248
5283
  url: string;
@@ -5264,6 +5299,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5264
5299
  audioFile: z.ZodOptional<z.ZodString>;
5265
5300
  imageFile: z.ZodOptional<z.ZodString>;
5266
5301
  movieFile: z.ZodOptional<z.ZodString>;
5302
+ soundEffectFile: z.ZodOptional<z.ZodString>;
5267
5303
  captionFile: z.ZodOptional<z.ZodString>;
5268
5304
  }, "strict", z.ZodTypeAny, {
5269
5305
  duration?: number | undefined;
@@ -5276,6 +5312,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5276
5312
  audioFile?: string | undefined;
5277
5313
  imageFile?: string | undefined;
5278
5314
  movieFile?: string | undefined;
5315
+ soundEffectFile?: string | undefined;
5279
5316
  captionFile?: string | undefined;
5280
5317
  }, {
5281
5318
  duration?: number | undefined;
@@ -5288,6 +5325,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
5288
5325
  audioFile?: string | undefined;
5289
5326
  imageFile?: string | undefined;
5290
5327
  movieFile?: string | undefined;
5328
+ soundEffectFile?: string | undefined;
5291
5329
  captionFile?: string | undefined;
5292
5330
  }>;
5293
5331
  export declare const mulmoStudioMultiLingualDataSchema: z.ZodObject<{
@@ -5373,15 +5411,15 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5373
5411
  caption: z.ZodBoolean;
5374
5412
  pdf: z.ZodBoolean;
5375
5413
  }, "strip", z.ZodTypeAny, {
5376
- pdf: boolean;
5377
5414
  image: boolean;
5415
+ pdf: boolean;
5378
5416
  audio: boolean;
5379
5417
  video: boolean;
5380
5418
  multiLingual: boolean;
5381
5419
  caption: boolean;
5382
5420
  }, {
5383
- pdf: boolean;
5384
5421
  image: boolean;
5422
+ pdf: boolean;
5385
5423
  audio: boolean;
5386
5424
  video: boolean;
5387
5425
  multiLingual: boolean;
@@ -5395,6 +5433,7 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5395
5433
  caption: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5396
5434
  html: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5397
5435
  imageReference: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5436
+ soundEffect: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
5398
5437
  }, "strip", z.ZodTypeAny, {
5399
5438
  image: Record<number, boolean>;
5400
5439
  movie: Record<number, boolean>;
@@ -5403,6 +5442,7 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5403
5442
  multiLingual: Record<number, boolean>;
5404
5443
  caption: Record<number, boolean>;
5405
5444
  imageReference: Record<number, boolean>;
5445
+ soundEffect: Record<number, boolean>;
5406
5446
  }, {
5407
5447
  image: Record<number, boolean>;
5408
5448
  movie: Record<number, boolean>;
@@ -5411,11 +5451,12 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5411
5451
  multiLingual: Record<number, boolean>;
5412
5452
  caption: Record<number, boolean>;
5413
5453
  imageReference: Record<number, boolean>;
5454
+ soundEffect: Record<number, boolean>;
5414
5455
  }>;
5415
5456
  }, "strip", z.ZodTypeAny, {
5416
5457
  inSession: {
5417
- pdf: boolean;
5418
5458
  image: boolean;
5459
+ pdf: boolean;
5419
5460
  audio: boolean;
5420
5461
  video: boolean;
5421
5462
  multiLingual: boolean;
@@ -5429,11 +5470,12 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5429
5470
  multiLingual: Record<number, boolean>;
5430
5471
  caption: Record<number, boolean>;
5431
5472
  imageReference: Record<number, boolean>;
5473
+ soundEffect: Record<number, boolean>;
5432
5474
  };
5433
5475
  }, {
5434
5476
  inSession: {
5435
- pdf: boolean;
5436
5477
  image: boolean;
5478
+ pdf: boolean;
5437
5479
  audio: boolean;
5438
5480
  video: boolean;
5439
5481
  multiLingual: boolean;
@@ -5447,18 +5489,19 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
5447
5489
  multiLingual: Record<number, boolean>;
5448
5490
  caption: Record<number, boolean>;
5449
5491
  imageReference: Record<number, boolean>;
5492
+ soundEffect: Record<number, boolean>;
5450
5493
  };
5451
5494
  }>;
5452
5495
  export declare const mulmoStudioSchema: z.ZodObject<{
5453
5496
  script: z.ZodObject<{
5454
5497
  $mulmocast: z.ZodObject<{
5455
- version: z.ZodLiteral<"1.0">;
5498
+ version: z.ZodLiteral<"1.1">;
5456
5499
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
5457
5500
  }, "strict", z.ZodTypeAny, {
5458
- version: "1.0";
5501
+ version: "1.1";
5459
5502
  credit?: "closing" | undefined;
5460
5503
  }, {
5461
- version: "1.0";
5504
+ version: "1.1";
5462
5505
  credit?: "closing" | undefined;
5463
5506
  }>;
5464
5507
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -5472,10 +5515,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5472
5515
  height: number;
5473
5516
  }>>;
5474
5517
  speechParams: z.ZodDefault<z.ZodObject<{
5475
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
5476
5518
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
5477
5519
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5478
5520
  voiceId: z.ZodString;
5521
+ isDefault: z.ZodOptional<z.ZodBoolean>;
5479
5522
  speechOptions: z.ZodOptional<z.ZodObject<{
5480
5523
  speed: z.ZodOptional<z.ZodNumber>;
5481
5524
  instruction: z.ZodOptional<z.ZodString>;
@@ -5491,6 +5534,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5491
5534
  }, "strict", z.ZodTypeAny, {
5492
5535
  voiceId: string;
5493
5536
  displayName?: Record<string, string> | undefined;
5537
+ isDefault?: boolean | undefined;
5494
5538
  speechOptions?: {
5495
5539
  speed?: number | undefined;
5496
5540
  instruction?: string | undefined;
@@ -5500,6 +5544,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5500
5544
  }, {
5501
5545
  voiceId: string;
5502
5546
  displayName?: Record<string, string> | undefined;
5547
+ isDefault?: boolean | undefined;
5503
5548
  speechOptions?: {
5504
5549
  speed?: number | undefined;
5505
5550
  instruction?: string | undefined;
@@ -5507,12 +5552,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5507
5552
  provider?: string | undefined;
5508
5553
  model?: string | undefined;
5509
5554
  }>>;
5510
- model: z.ZodOptional<z.ZodString>;
5511
- }, "strict", z.ZodTypeAny, {
5512
- provider: string;
5555
+ }, "strip", z.ZodTypeAny, {
5513
5556
  speakers: Record<string, {
5514
5557
  voiceId: string;
5515
5558
  displayName?: Record<string, string> | undefined;
5559
+ isDefault?: boolean | undefined;
5516
5560
  speechOptions?: {
5517
5561
  speed?: number | undefined;
5518
5562
  instruction?: string | undefined;
@@ -5520,11 +5564,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5520
5564
  provider?: string | undefined;
5521
5565
  model?: string | undefined;
5522
5566
  }>;
5523
- model?: string | undefined;
5524
5567
  }, {
5525
5568
  speakers: Record<string, {
5526
5569
  voiceId: string;
5527
5570
  displayName?: Record<string, string> | undefined;
5571
+ isDefault?: boolean | undefined;
5528
5572
  speechOptions?: {
5529
5573
  speed?: number | undefined;
5530
5574
  instruction?: string | undefined;
@@ -5532,8 +5576,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5532
5576
  provider?: string | undefined;
5533
5577
  model?: string | undefined;
5534
5578
  }>;
5535
- provider?: string | undefined;
5536
- model?: string | undefined;
5537
5579
  }>>;
5538
5580
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5539
5581
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -5709,6 +5751,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5709
5751
  duration?: number | undefined;
5710
5752
  } | undefined;
5711
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
+ }>>>;
5712
5764
  htmlImageParams: z.ZodOptional<z.ZodObject<{
5713
5765
  model: z.ZodOptional<z.ZodString>;
5714
5766
  } & {
@@ -5846,7 +5898,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5846
5898
  }>, "many">>;
5847
5899
  lang: z.ZodOptional<z.ZodString>;
5848
5900
  beats: z.ZodArray<z.ZodObject<{
5849
- speaker: z.ZodDefault<z.ZodString>;
5901
+ speaker: z.ZodOptional<z.ZodString>;
5850
5902
  text: z.ZodDefault<z.ZodString>;
5851
5903
  id: z.ZodOptional<z.ZodString>;
5852
5904
  description: z.ZodOptional<z.ZodString>;
@@ -6537,6 +6589,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6537
6589
  style?: "aspectFit" | "aspectFill" | undefined;
6538
6590
  } | undefined;
6539
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
+ }>>;
6540
6602
  htmlImageParams: z.ZodOptional<z.ZodObject<{
6541
6603
  model: z.ZodOptional<z.ZodString>;
6542
6604
  }, "strict", z.ZodTypeAny, {
@@ -6574,6 +6636,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6574
6636
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6575
6637
  imagePrompt: z.ZodOptional<z.ZodString>;
6576
6638
  moviePrompt: z.ZodOptional<z.ZodString>;
6639
+ soundEffectPrompt: z.ZodOptional<z.ZodString>;
6577
6640
  htmlPrompt: z.ZodOptional<z.ZodObject<{
6578
6641
  systemPrompt: z.ZodOptional<z.ZodDefault<z.ZodString>>;
6579
6642
  prompt: z.ZodDefault<z.ZodString>;
@@ -6592,12 +6655,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6592
6655
  }>>;
6593
6656
  }, "strict", z.ZodTypeAny, {
6594
6657
  text: string;
6595
- speaker: string;
6596
- duration?: number | undefined;
6597
- speechOptions?: {
6598
- speed?: number | undefined;
6599
- instruction?: string | undefined;
6600
- } | undefined;
6601
6658
  image?: {
6602
6659
  type: "markdown";
6603
6660
  markdown: string | string[];
@@ -6702,6 +6759,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6702
6759
  type: "voice_over";
6703
6760
  startAt?: number | undefined;
6704
6761
  } | undefined;
6762
+ duration?: number | undefined;
6763
+ speechOptions?: {
6764
+ speed?: number | undefined;
6765
+ instruction?: string | undefined;
6766
+ } | undefined;
6705
6767
  id?: string | undefined;
6706
6768
  audio?: {
6707
6769
  type: "audio";
@@ -6723,6 +6785,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6723
6785
  source: string;
6724
6786
  } | undefined;
6725
6787
  imagePrompt?: string | undefined;
6788
+ speaker?: string | undefined;
6726
6789
  description?: string | undefined;
6727
6790
  imageParams?: {
6728
6791
  provider: string;
@@ -6761,6 +6824,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6761
6824
  style: "aspectFit" | "aspectFill";
6762
6825
  } | undefined;
6763
6826
  } | undefined;
6827
+ soundEffectParams?: {
6828
+ provider?: string | undefined;
6829
+ model?: string | undefined;
6830
+ } | undefined;
6764
6831
  htmlImageParams?: {
6765
6832
  model?: string | undefined;
6766
6833
  } | undefined;
@@ -6773,6 +6840,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6773
6840
  } | undefined;
6774
6841
  imageNames?: string[] | undefined;
6775
6842
  moviePrompt?: string | undefined;
6843
+ soundEffectPrompt?: string | undefined;
6776
6844
  htmlPrompt?: {
6777
6845
  prompt: string;
6778
6846
  data?: any;
@@ -6780,12 +6848,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6780
6848
  systemPrompt?: string | undefined;
6781
6849
  } | undefined;
6782
6850
  }, {
6783
- text?: string | undefined;
6784
- duration?: number | undefined;
6785
- speechOptions?: {
6786
- speed?: number | undefined;
6787
- instruction?: string | undefined;
6788
- } | undefined;
6789
6851
  image?: {
6790
6852
  type: "markdown";
6791
6853
  markdown: string | string[];
@@ -6890,6 +6952,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6890
6952
  type: "voice_over";
6891
6953
  startAt?: number | undefined;
6892
6954
  } | undefined;
6955
+ text?: string | undefined;
6956
+ duration?: number | undefined;
6957
+ speechOptions?: {
6958
+ speed?: number | undefined;
6959
+ instruction?: string | undefined;
6960
+ } | undefined;
6893
6961
  id?: string | undefined;
6894
6962
  audio?: {
6895
6963
  type: "audio";
@@ -6950,6 +7018,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6950
7018
  style?: "aspectFit" | "aspectFill" | undefined;
6951
7019
  } | undefined;
6952
7020
  } | undefined;
7021
+ soundEffectParams?: {
7022
+ provider?: string | undefined;
7023
+ model?: string | undefined;
7024
+ } | undefined;
6953
7025
  htmlImageParams?: {
6954
7026
  model?: string | undefined;
6955
7027
  } | undefined;
@@ -6962,6 +7034,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6962
7034
  } | undefined;
6963
7035
  imageNames?: string[] | undefined;
6964
7036
  moviePrompt?: string | undefined;
7037
+ soundEffectPrompt?: string | undefined;
6965
7038
  htmlPrompt?: {
6966
7039
  data?: any;
6967
7040
  prompt?: string | undefined;
@@ -7030,8 +7103,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7030
7103
  duration: number;
7031
7104
  } | undefined;
7032
7105
  };
7106
+ soundEffectParams: {
7107
+ provider?: string | undefined;
7108
+ model?: string | undefined;
7109
+ };
7033
7110
  $mulmocast: {
7034
- version: "1.0";
7111
+ version: "1.1";
7035
7112
  credit?: "closing" | undefined;
7036
7113
  };
7037
7114
  canvasSize: {
@@ -7039,10 +7116,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7039
7116
  height: number;
7040
7117
  };
7041
7118
  speechParams: {
7042
- provider: string;
7043
7119
  speakers: Record<string, {
7044
7120
  voiceId: string;
7045
7121
  displayName?: Record<string, string> | undefined;
7122
+ isDefault?: boolean | undefined;
7046
7123
  speechOptions?: {
7047
7124
  speed?: number | undefined;
7048
7125
  instruction?: string | undefined;
@@ -7050,16 +7127,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7050
7127
  provider?: string | undefined;
7051
7128
  model?: string | undefined;
7052
7129
  }>;
7053
- model?: string | undefined;
7054
7130
  };
7055
7131
  beats: {
7056
7132
  text: string;
7057
- speaker: string;
7058
- duration?: number | undefined;
7059
- speechOptions?: {
7060
- speed?: number | undefined;
7061
- instruction?: string | undefined;
7062
- } | undefined;
7063
7133
  image?: {
7064
7134
  type: "markdown";
7065
7135
  markdown: string | string[];
@@ -7164,6 +7234,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7164
7234
  type: "voice_over";
7165
7235
  startAt?: number | undefined;
7166
7236
  } | undefined;
7237
+ duration?: number | undefined;
7238
+ speechOptions?: {
7239
+ speed?: number | undefined;
7240
+ instruction?: string | undefined;
7241
+ } | undefined;
7167
7242
  id?: string | undefined;
7168
7243
  audio?: {
7169
7244
  type: "audio";
@@ -7185,6 +7260,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7185
7260
  source: string;
7186
7261
  } | undefined;
7187
7262
  imagePrompt?: string | undefined;
7263
+ speaker?: string | undefined;
7188
7264
  description?: string | undefined;
7189
7265
  imageParams?: {
7190
7266
  provider: string;
@@ -7223,6 +7299,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7223
7299
  style: "aspectFit" | "aspectFill";
7224
7300
  } | undefined;
7225
7301
  } | undefined;
7302
+ soundEffectParams?: {
7303
+ provider?: string | undefined;
7304
+ model?: string | undefined;
7305
+ } | undefined;
7226
7306
  htmlImageParams?: {
7227
7307
  model?: string | undefined;
7228
7308
  } | undefined;
@@ -7235,6 +7315,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7235
7315
  } | undefined;
7236
7316
  imageNames?: string[] | undefined;
7237
7317
  moviePrompt?: string | undefined;
7318
+ soundEffectPrompt?: string | undefined;
7238
7319
  htmlPrompt?: {
7239
7320
  prompt: string;
7240
7321
  data?: any;
@@ -7266,16 +7347,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7266
7347
  __test_invalid__?: boolean | undefined;
7267
7348
  }, {
7268
7349
  $mulmocast: {
7269
- version: "1.0";
7350
+ version: "1.1";
7270
7351
  credit?: "closing" | undefined;
7271
7352
  };
7272
7353
  beats: {
7273
- text?: string | undefined;
7274
- duration?: number | undefined;
7275
- speechOptions?: {
7276
- speed?: number | undefined;
7277
- instruction?: string | undefined;
7278
- } | undefined;
7279
7354
  image?: {
7280
7355
  type: "markdown";
7281
7356
  markdown: string | string[];
@@ -7380,6 +7455,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7380
7455
  type: "voice_over";
7381
7456
  startAt?: number | undefined;
7382
7457
  } | undefined;
7458
+ text?: string | undefined;
7459
+ duration?: number | undefined;
7460
+ speechOptions?: {
7461
+ speed?: number | undefined;
7462
+ instruction?: string | undefined;
7463
+ } | undefined;
7383
7464
  id?: string | undefined;
7384
7465
  audio?: {
7385
7466
  type: "audio";
@@ -7440,6 +7521,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7440
7521
  style?: "aspectFit" | "aspectFill" | undefined;
7441
7522
  } | undefined;
7442
7523
  } | undefined;
7524
+ soundEffectParams?: {
7525
+ provider?: string | undefined;
7526
+ model?: string | undefined;
7527
+ } | undefined;
7443
7528
  htmlImageParams?: {
7444
7529
  model?: string | undefined;
7445
7530
  } | undefined;
@@ -7452,6 +7537,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7452
7537
  } | undefined;
7453
7538
  imageNames?: string[] | undefined;
7454
7539
  moviePrompt?: string | undefined;
7540
+ soundEffectPrompt?: string | undefined;
7455
7541
  htmlPrompt?: {
7456
7542
  data?: any;
7457
7543
  prompt?: string | undefined;
@@ -7520,6 +7606,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7520
7606
  duration?: number | undefined;
7521
7607
  } | undefined;
7522
7608
  } | undefined;
7609
+ soundEffectParams?: {
7610
+ provider?: string | undefined;
7611
+ model?: string | undefined;
7612
+ } | undefined;
7523
7613
  htmlImageParams?: {
7524
7614
  provider?: string | undefined;
7525
7615
  model?: string | undefined;
@@ -7539,6 +7629,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7539
7629
  speakers: Record<string, {
7540
7630
  voiceId: string;
7541
7631
  displayName?: Record<string, string> | undefined;
7632
+ isDefault?: boolean | undefined;
7542
7633
  speechOptions?: {
7543
7634
  speed?: number | undefined;
7544
7635
  instruction?: string | undefined;
@@ -7546,8 +7637,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7546
7637
  provider?: string | undefined;
7547
7638
  model?: string | undefined;
7548
7639
  }>;
7549
- provider?: string | undefined;
7550
- model?: string | undefined;
7551
7640
  } | undefined;
7552
7641
  references?: {
7553
7642
  url: string;
@@ -7570,6 +7659,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7570
7659
  audioFile: z.ZodOptional<z.ZodString>;
7571
7660
  imageFile: z.ZodOptional<z.ZodString>;
7572
7661
  movieFile: z.ZodOptional<z.ZodString>;
7662
+ soundEffectFile: z.ZodOptional<z.ZodString>;
7573
7663
  captionFile: z.ZodOptional<z.ZodString>;
7574
7664
  }, "strict", z.ZodTypeAny, {
7575
7665
  duration?: number | undefined;
@@ -7582,6 +7672,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7582
7672
  audioFile?: string | undefined;
7583
7673
  imageFile?: string | undefined;
7584
7674
  movieFile?: string | undefined;
7675
+ soundEffectFile?: string | undefined;
7585
7676
  captionFile?: string | undefined;
7586
7677
  }, {
7587
7678
  duration?: number | undefined;
@@ -7594,6 +7685,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7594
7685
  audioFile?: string | undefined;
7595
7686
  imageFile?: string | undefined;
7596
7687
  movieFile?: string | undefined;
7688
+ soundEffectFile?: string | undefined;
7597
7689
  captionFile?: string | undefined;
7598
7690
  }>, "many">;
7599
7691
  }, "strict", z.ZodTypeAny, {
@@ -7608,6 +7700,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7608
7700
  audioFile?: string | undefined;
7609
7701
  imageFile?: string | undefined;
7610
7702
  movieFile?: string | undefined;
7703
+ soundEffectFile?: string | undefined;
7611
7704
  captionFile?: string | undefined;
7612
7705
  }[];
7613
7706
  script: {
@@ -7669,8 +7762,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7669
7762
  duration: number;
7670
7763
  } | undefined;
7671
7764
  };
7765
+ soundEffectParams: {
7766
+ provider?: string | undefined;
7767
+ model?: string | undefined;
7768
+ };
7672
7769
  $mulmocast: {
7673
- version: "1.0";
7770
+ version: "1.1";
7674
7771
  credit?: "closing" | undefined;
7675
7772
  };
7676
7773
  canvasSize: {
@@ -7678,10 +7775,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7678
7775
  height: number;
7679
7776
  };
7680
7777
  speechParams: {
7681
- provider: string;
7682
7778
  speakers: Record<string, {
7683
7779
  voiceId: string;
7684
7780
  displayName?: Record<string, string> | undefined;
7781
+ isDefault?: boolean | undefined;
7685
7782
  speechOptions?: {
7686
7783
  speed?: number | undefined;
7687
7784
  instruction?: string | undefined;
@@ -7689,16 +7786,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7689
7786
  provider?: string | undefined;
7690
7787
  model?: string | undefined;
7691
7788
  }>;
7692
- model?: string | undefined;
7693
7789
  };
7694
7790
  beats: {
7695
7791
  text: string;
7696
- speaker: string;
7697
- duration?: number | undefined;
7698
- speechOptions?: {
7699
- speed?: number | undefined;
7700
- instruction?: string | undefined;
7701
- } | undefined;
7702
7792
  image?: {
7703
7793
  type: "markdown";
7704
7794
  markdown: string | string[];
@@ -7803,6 +7893,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7803
7893
  type: "voice_over";
7804
7894
  startAt?: number | undefined;
7805
7895
  } | undefined;
7896
+ duration?: number | undefined;
7897
+ speechOptions?: {
7898
+ speed?: number | undefined;
7899
+ instruction?: string | undefined;
7900
+ } | undefined;
7806
7901
  id?: string | undefined;
7807
7902
  audio?: {
7808
7903
  type: "audio";
@@ -7824,6 +7919,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7824
7919
  source: string;
7825
7920
  } | undefined;
7826
7921
  imagePrompt?: string | undefined;
7922
+ speaker?: string | undefined;
7827
7923
  description?: string | undefined;
7828
7924
  imageParams?: {
7829
7925
  provider: string;
@@ -7862,6 +7958,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7862
7958
  style: "aspectFit" | "aspectFill";
7863
7959
  } | undefined;
7864
7960
  } | undefined;
7961
+ soundEffectParams?: {
7962
+ provider?: string | undefined;
7963
+ model?: string | undefined;
7964
+ } | undefined;
7865
7965
  htmlImageParams?: {
7866
7966
  model?: string | undefined;
7867
7967
  } | undefined;
@@ -7874,6 +7974,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7874
7974
  } | undefined;
7875
7975
  imageNames?: string[] | undefined;
7876
7976
  moviePrompt?: string | undefined;
7977
+ soundEffectPrompt?: string | undefined;
7877
7978
  htmlPrompt?: {
7878
7979
  prompt: string;
7879
7980
  data?: any;
@@ -7917,20 +8018,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
7917
8018
  audioFile?: string | undefined;
7918
8019
  imageFile?: string | undefined;
7919
8020
  movieFile?: string | undefined;
8021
+ soundEffectFile?: string | undefined;
7920
8022
  captionFile?: string | undefined;
7921
8023
  }[];
7922
8024
  script: {
7923
8025
  $mulmocast: {
7924
- version: "1.0";
8026
+ version: "1.1";
7925
8027
  credit?: "closing" | undefined;
7926
8028
  };
7927
8029
  beats: {
7928
- text?: string | undefined;
7929
- duration?: number | undefined;
7930
- speechOptions?: {
7931
- speed?: number | undefined;
7932
- instruction?: string | undefined;
7933
- } | undefined;
7934
8030
  image?: {
7935
8031
  type: "markdown";
7936
8032
  markdown: string | string[];
@@ -8035,6 +8131,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8035
8131
  type: "voice_over";
8036
8132
  startAt?: number | undefined;
8037
8133
  } | undefined;
8134
+ text?: string | undefined;
8135
+ duration?: number | undefined;
8136
+ speechOptions?: {
8137
+ speed?: number | undefined;
8138
+ instruction?: string | undefined;
8139
+ } | undefined;
8038
8140
  id?: string | undefined;
8039
8141
  audio?: {
8040
8142
  type: "audio";
@@ -8095,6 +8197,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8095
8197
  style?: "aspectFit" | "aspectFill" | undefined;
8096
8198
  } | undefined;
8097
8199
  } | undefined;
8200
+ soundEffectParams?: {
8201
+ provider?: string | undefined;
8202
+ model?: string | undefined;
8203
+ } | undefined;
8098
8204
  htmlImageParams?: {
8099
8205
  model?: string | undefined;
8100
8206
  } | undefined;
@@ -8107,6 +8213,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8107
8213
  } | undefined;
8108
8214
  imageNames?: string[] | undefined;
8109
8215
  moviePrompt?: string | undefined;
8216
+ soundEffectPrompt?: string | undefined;
8110
8217
  htmlPrompt?: {
8111
8218
  data?: any;
8112
8219
  prompt?: string | undefined;
@@ -8175,6 +8282,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8175
8282
  duration?: number | undefined;
8176
8283
  } | undefined;
8177
8284
  } | undefined;
8285
+ soundEffectParams?: {
8286
+ provider?: string | undefined;
8287
+ model?: string | undefined;
8288
+ } | undefined;
8178
8289
  htmlImageParams?: {
8179
8290
  provider?: string | undefined;
8180
8291
  model?: string | undefined;
@@ -8194,6 +8305,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8194
8305
  speakers: Record<string, {
8195
8306
  voiceId: string;
8196
8307
  displayName?: Record<string, string> | undefined;
8308
+ isDefault?: boolean | undefined;
8197
8309
  speechOptions?: {
8198
8310
  speed?: number | undefined;
8199
8311
  instruction?: string | undefined;
@@ -8201,8 +8313,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8201
8313
  provider?: string | undefined;
8202
8314
  model?: string | undefined;
8203
8315
  }>;
8204
- provider?: string | undefined;
8205
- model?: string | undefined;
8206
8316
  } | undefined;
8207
8317
  references?: {
8208
8318
  url: string;
@@ -8222,13 +8332,13 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8222
8332
  scriptName: z.ZodOptional<z.ZodString>;
8223
8333
  presentationStyle: z.ZodOptional<z.ZodObject<{
8224
8334
  $mulmocast: z.ZodObject<{
8225
- version: z.ZodLiteral<"1.0">;
8335
+ version: z.ZodLiteral<"1.1">;
8226
8336
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
8227
8337
  }, "strict", z.ZodTypeAny, {
8228
- version: "1.0";
8338
+ version: "1.1";
8229
8339
  credit?: "closing" | undefined;
8230
8340
  }, {
8231
- version: "1.0";
8341
+ version: "1.1";
8232
8342
  credit?: "closing" | undefined;
8233
8343
  }>;
8234
8344
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -8242,10 +8352,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8242
8352
  height: number;
8243
8353
  }>>;
8244
8354
  speechParams: z.ZodDefault<z.ZodObject<{
8245
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
8246
8355
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
8247
8356
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8248
8357
  voiceId: z.ZodString;
8358
+ isDefault: z.ZodOptional<z.ZodBoolean>;
8249
8359
  speechOptions: z.ZodOptional<z.ZodObject<{
8250
8360
  speed: z.ZodOptional<z.ZodNumber>;
8251
8361
  instruction: z.ZodOptional<z.ZodString>;
@@ -8261,6 +8371,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8261
8371
  }, "strict", z.ZodTypeAny, {
8262
8372
  voiceId: string;
8263
8373
  displayName?: Record<string, string> | undefined;
8374
+ isDefault?: boolean | undefined;
8264
8375
  speechOptions?: {
8265
8376
  speed?: number | undefined;
8266
8377
  instruction?: string | undefined;
@@ -8270,6 +8381,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8270
8381
  }, {
8271
8382
  voiceId: string;
8272
8383
  displayName?: Record<string, string> | undefined;
8384
+ isDefault?: boolean | undefined;
8273
8385
  speechOptions?: {
8274
8386
  speed?: number | undefined;
8275
8387
  instruction?: string | undefined;
@@ -8277,12 +8389,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8277
8389
  provider?: string | undefined;
8278
8390
  model?: string | undefined;
8279
8391
  }>>;
8280
- model: z.ZodOptional<z.ZodString>;
8281
- }, "strict", z.ZodTypeAny, {
8282
- provider: string;
8392
+ }, "strip", z.ZodTypeAny, {
8283
8393
  speakers: Record<string, {
8284
8394
  voiceId: string;
8285
8395
  displayName?: Record<string, string> | undefined;
8396
+ isDefault?: boolean | undefined;
8286
8397
  speechOptions?: {
8287
8398
  speed?: number | undefined;
8288
8399
  instruction?: string | undefined;
@@ -8290,11 +8401,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8290
8401
  provider?: string | undefined;
8291
8402
  model?: string | undefined;
8292
8403
  }>;
8293
- model?: string | undefined;
8294
8404
  }, {
8295
8405
  speakers: Record<string, {
8296
8406
  voiceId: string;
8297
8407
  displayName?: Record<string, string> | undefined;
8408
+ isDefault?: boolean | undefined;
8298
8409
  speechOptions?: {
8299
8410
  speed?: number | undefined;
8300
8411
  instruction?: string | undefined;
@@ -8302,8 +8413,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8302
8413
  provider?: string | undefined;
8303
8414
  model?: string | undefined;
8304
8415
  }>;
8305
- provider?: string | undefined;
8306
- model?: string | undefined;
8307
8416
  }>>;
8308
8417
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
8309
8418
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -8479,6 +8588,16 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8479
8588
  duration?: number | undefined;
8480
8589
  } | undefined;
8481
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
+ }>>>;
8482
8601
  htmlImageParams: z.ZodOptional<z.ZodObject<{
8483
8602
  model: z.ZodOptional<z.ZodString>;
8484
8603
  } & {
@@ -8654,8 +8773,12 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8654
8773
  duration: number;
8655
8774
  } | undefined;
8656
8775
  };
8776
+ soundEffectParams: {
8777
+ provider?: string | undefined;
8778
+ model?: string | undefined;
8779
+ };
8657
8780
  $mulmocast: {
8658
- version: "1.0";
8781
+ version: "1.1";
8659
8782
  credit?: "closing" | undefined;
8660
8783
  };
8661
8784
  canvasSize: {
@@ -8663,10 +8786,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8663
8786
  height: number;
8664
8787
  };
8665
8788
  speechParams: {
8666
- provider: string;
8667
8789
  speakers: Record<string, {
8668
8790
  voiceId: string;
8669
8791
  displayName?: Record<string, string> | undefined;
8792
+ isDefault?: boolean | undefined;
8670
8793
  speechOptions?: {
8671
8794
  speed?: number | undefined;
8672
8795
  instruction?: string | undefined;
@@ -8674,7 +8797,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8674
8797
  provider?: string | undefined;
8675
8798
  model?: string | undefined;
8676
8799
  }>;
8677
- model?: string | undefined;
8678
8800
  };
8679
8801
  htmlImageParams?: {
8680
8802
  provider: string;
@@ -8689,7 +8811,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8689
8811
  } | undefined;
8690
8812
  }, {
8691
8813
  $mulmocast: {
8692
- version: "1.0";
8814
+ version: "1.1";
8693
8815
  credit?: "closing" | undefined;
8694
8816
  };
8695
8817
  imageParams?: {
@@ -8750,6 +8872,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8750
8872
  duration?: number | undefined;
8751
8873
  } | undefined;
8752
8874
  } | undefined;
8875
+ soundEffectParams?: {
8876
+ provider?: string | undefined;
8877
+ model?: string | undefined;
8878
+ } | undefined;
8753
8879
  htmlImageParams?: {
8754
8880
  provider?: string | undefined;
8755
8881
  model?: string | undefined;
@@ -8769,6 +8895,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8769
8895
  speakers: Record<string, {
8770
8896
  voiceId: string;
8771
8897
  displayName?: Record<string, string> | undefined;
8898
+ isDefault?: boolean | undefined;
8772
8899
  speechOptions?: {
8773
8900
  speed?: number | undefined;
8774
8901
  instruction?: string | undefined;
@@ -8776,8 +8903,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8776
8903
  provider?: string | undefined;
8777
8904
  model?: string | undefined;
8778
8905
  }>;
8779
- provider?: string | undefined;
8780
- model?: string | undefined;
8781
8906
  } | undefined;
8782
8907
  }>>;
8783
8908
  }, "strict", z.ZodTypeAny, {
@@ -8844,8 +8969,12 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8844
8969
  duration: number;
8845
8970
  } | undefined;
8846
8971
  };
8972
+ soundEffectParams: {
8973
+ provider?: string | undefined;
8974
+ model?: string | undefined;
8975
+ };
8847
8976
  $mulmocast: {
8848
- version: "1.0";
8977
+ version: "1.1";
8849
8978
  credit?: "closing" | undefined;
8850
8979
  };
8851
8980
  canvasSize: {
@@ -8853,10 +8982,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8853
8982
  height: number;
8854
8983
  };
8855
8984
  speechParams: {
8856
- provider: string;
8857
8985
  speakers: Record<string, {
8858
8986
  voiceId: string;
8859
8987
  displayName?: Record<string, string> | undefined;
8988
+ isDefault?: boolean | undefined;
8860
8989
  speechOptions?: {
8861
8990
  speed?: number | undefined;
8862
8991
  instruction?: string | undefined;
@@ -8864,7 +8993,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8864
8993
  provider?: string | undefined;
8865
8994
  model?: string | undefined;
8866
8995
  }>;
8867
- model?: string | undefined;
8868
8996
  };
8869
8997
  htmlImageParams?: {
8870
8998
  provider: string;
@@ -8885,7 +9013,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8885
9013
  scriptName?: string | undefined;
8886
9014
  presentationStyle?: {
8887
9015
  $mulmocast: {
8888
- version: "1.0";
9016
+ version: "1.1";
8889
9017
  credit?: "closing" | undefined;
8890
9018
  };
8891
9019
  imageParams?: {
@@ -8946,6 +9074,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8946
9074
  duration?: number | undefined;
8947
9075
  } | undefined;
8948
9076
  } | undefined;
9077
+ soundEffectParams?: {
9078
+ provider?: string | undefined;
9079
+ model?: string | undefined;
9080
+ } | undefined;
8949
9081
  htmlImageParams?: {
8950
9082
  provider?: string | undefined;
8951
9083
  model?: string | undefined;
@@ -8965,6 +9097,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8965
9097
  speakers: Record<string, {
8966
9098
  voiceId: string;
8967
9099
  displayName?: Record<string, string> | undefined;
9100
+ isDefault?: boolean | undefined;
8968
9101
  speechOptions?: {
8969
9102
  speed?: number | undefined;
8970
9103
  instruction?: string | undefined;
@@ -8972,8 +9105,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
8972
9105
  provider?: string | undefined;
8973
9106
  model?: string | undefined;
8974
9107
  }>;
8975
- provider?: string | undefined;
8976
- model?: string | undefined;
8977
9108
  } | undefined;
8978
9109
  } | undefined;
8979
9110
  }>;
@@ -8984,13 +9115,13 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
8984
9115
  scriptName: z.ZodOptional<z.ZodString>;
8985
9116
  presentationStyle: z.ZodOptional<z.ZodObject<{
8986
9117
  $mulmocast: z.ZodObject<{
8987
- version: z.ZodLiteral<"1.0">;
9118
+ version: z.ZodLiteral<"1.1">;
8988
9119
  credit: z.ZodOptional<z.ZodLiteral<"closing">>;
8989
9120
  }, "strict", z.ZodTypeAny, {
8990
- version: "1.0";
9121
+ version: "1.1";
8991
9122
  credit?: "closing" | undefined;
8992
9123
  }, {
8993
- version: "1.0";
9124
+ version: "1.1";
8994
9125
  credit?: "closing" | undefined;
8995
9126
  }>;
8996
9127
  canvasSize: z.ZodDefault<z.ZodObject<{
@@ -9004,10 +9135,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9004
9135
  height: number;
9005
9136
  }>>;
9006
9137
  speechParams: z.ZodDefault<z.ZodObject<{
9007
- provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
9008
9138
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
9009
9139
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
9010
9140
  voiceId: z.ZodString;
9141
+ isDefault: z.ZodOptional<z.ZodBoolean>;
9011
9142
  speechOptions: z.ZodOptional<z.ZodObject<{
9012
9143
  speed: z.ZodOptional<z.ZodNumber>;
9013
9144
  instruction: z.ZodOptional<z.ZodString>;
@@ -9023,6 +9154,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9023
9154
  }, "strict", z.ZodTypeAny, {
9024
9155
  voiceId: string;
9025
9156
  displayName?: Record<string, string> | undefined;
9157
+ isDefault?: boolean | undefined;
9026
9158
  speechOptions?: {
9027
9159
  speed?: number | undefined;
9028
9160
  instruction?: string | undefined;
@@ -9032,6 +9164,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9032
9164
  }, {
9033
9165
  voiceId: string;
9034
9166
  displayName?: Record<string, string> | undefined;
9167
+ isDefault?: boolean | undefined;
9035
9168
  speechOptions?: {
9036
9169
  speed?: number | undefined;
9037
9170
  instruction?: string | undefined;
@@ -9039,12 +9172,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9039
9172
  provider?: string | undefined;
9040
9173
  model?: string | undefined;
9041
9174
  }>>;
9042
- model: z.ZodOptional<z.ZodString>;
9043
- }, "strict", z.ZodTypeAny, {
9044
- provider: string;
9175
+ }, "strip", z.ZodTypeAny, {
9045
9176
  speakers: Record<string, {
9046
9177
  voiceId: string;
9047
9178
  displayName?: Record<string, string> | undefined;
9179
+ isDefault?: boolean | undefined;
9048
9180
  speechOptions?: {
9049
9181
  speed?: number | undefined;
9050
9182
  instruction?: string | undefined;
@@ -9052,11 +9184,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9052
9184
  provider?: string | undefined;
9053
9185
  model?: string | undefined;
9054
9186
  }>;
9055
- model?: string | undefined;
9056
9187
  }, {
9057
9188
  speakers: Record<string, {
9058
9189
  voiceId: string;
9059
9190
  displayName?: Record<string, string> | undefined;
9191
+ isDefault?: boolean | undefined;
9060
9192
  speechOptions?: {
9061
9193
  speed?: number | undefined;
9062
9194
  instruction?: string | undefined;
@@ -9064,8 +9196,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9064
9196
  provider?: string | undefined;
9065
9197
  model?: string | undefined;
9066
9198
  }>;
9067
- provider?: string | undefined;
9068
- model?: string | undefined;
9069
9199
  }>>;
9070
9200
  imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
9071
9201
  provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
@@ -9241,6 +9371,16 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9241
9371
  duration?: number | undefined;
9242
9372
  } | undefined;
9243
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
+ }>>>;
9244
9384
  htmlImageParams: z.ZodOptional<z.ZodObject<{
9245
9385
  model: z.ZodOptional<z.ZodString>;
9246
9386
  } & {
@@ -9416,8 +9556,12 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9416
9556
  duration: number;
9417
9557
  } | undefined;
9418
9558
  };
9559
+ soundEffectParams: {
9560
+ provider?: string | undefined;
9561
+ model?: string | undefined;
9562
+ };
9419
9563
  $mulmocast: {
9420
- version: "1.0";
9564
+ version: "1.1";
9421
9565
  credit?: "closing" | undefined;
9422
9566
  };
9423
9567
  canvasSize: {
@@ -9425,10 +9569,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9425
9569
  height: number;
9426
9570
  };
9427
9571
  speechParams: {
9428
- provider: string;
9429
9572
  speakers: Record<string, {
9430
9573
  voiceId: string;
9431
9574
  displayName?: Record<string, string> | undefined;
9575
+ isDefault?: boolean | undefined;
9432
9576
  speechOptions?: {
9433
9577
  speed?: number | undefined;
9434
9578
  instruction?: string | undefined;
@@ -9436,7 +9580,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9436
9580
  provider?: string | undefined;
9437
9581
  model?: string | undefined;
9438
9582
  }>;
9439
- model?: string | undefined;
9440
9583
  };
9441
9584
  htmlImageParams?: {
9442
9585
  provider: string;
@@ -9451,7 +9594,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9451
9594
  } | undefined;
9452
9595
  }, {
9453
9596
  $mulmocast: {
9454
- version: "1.0";
9597
+ version: "1.1";
9455
9598
  credit?: "closing" | undefined;
9456
9599
  };
9457
9600
  imageParams?: {
@@ -9512,6 +9655,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9512
9655
  duration?: number | undefined;
9513
9656
  } | undefined;
9514
9657
  } | undefined;
9658
+ soundEffectParams?: {
9659
+ provider?: string | undefined;
9660
+ model?: string | undefined;
9661
+ } | undefined;
9515
9662
  htmlImageParams?: {
9516
9663
  provider?: string | undefined;
9517
9664
  model?: string | undefined;
@@ -9531,6 +9678,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9531
9678
  speakers: Record<string, {
9532
9679
  voiceId: string;
9533
9680
  displayName?: Record<string, string> | undefined;
9681
+ isDefault?: boolean | undefined;
9534
9682
  speechOptions?: {
9535
9683
  speed?: number | undefined;
9536
9684
  instruction?: string | undefined;
@@ -9538,8 +9686,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9538
9686
  provider?: string | undefined;
9539
9687
  model?: string | undefined;
9540
9688
  }>;
9541
- provider?: string | undefined;
9542
- model?: string | undefined;
9543
9689
  } | undefined;
9544
9690
  }>>;
9545
9691
  } & {
@@ -9609,8 +9755,12 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9609
9755
  duration: number;
9610
9756
  } | undefined;
9611
9757
  };
9758
+ soundEffectParams: {
9759
+ provider?: string | undefined;
9760
+ model?: string | undefined;
9761
+ };
9612
9762
  $mulmocast: {
9613
- version: "1.0";
9763
+ version: "1.1";
9614
9764
  credit?: "closing" | undefined;
9615
9765
  };
9616
9766
  canvasSize: {
@@ -9618,10 +9768,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9618
9768
  height: number;
9619
9769
  };
9620
9770
  speechParams: {
9621
- provider: string;
9622
9771
  speakers: Record<string, {
9623
9772
  voiceId: string;
9624
9773
  displayName?: Record<string, string> | undefined;
9774
+ isDefault?: boolean | undefined;
9625
9775
  speechOptions?: {
9626
9776
  speed?: number | undefined;
9627
9777
  instruction?: string | undefined;
@@ -9629,7 +9779,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9629
9779
  provider?: string | undefined;
9630
9780
  model?: string | undefined;
9631
9781
  }>;
9632
- model?: string | undefined;
9633
9782
  };
9634
9783
  htmlImageParams?: {
9635
9784
  provider: string;
@@ -9651,7 +9800,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9651
9800
  scriptName?: string | undefined;
9652
9801
  presentationStyle?: {
9653
9802
  $mulmocast: {
9654
- version: "1.0";
9803
+ version: "1.1";
9655
9804
  credit?: "closing" | undefined;
9656
9805
  };
9657
9806
  imageParams?: {
@@ -9712,6 +9861,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9712
9861
  duration?: number | undefined;
9713
9862
  } | undefined;
9714
9863
  } | undefined;
9864
+ soundEffectParams?: {
9865
+ provider?: string | undefined;
9866
+ model?: string | undefined;
9867
+ } | undefined;
9715
9868
  htmlImageParams?: {
9716
9869
  provider?: string | undefined;
9717
9870
  model?: string | undefined;
@@ -9731,6 +9884,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9731
9884
  speakers: Record<string, {
9732
9885
  voiceId: string;
9733
9886
  displayName?: Record<string, string> | undefined;
9887
+ isDefault?: boolean | undefined;
9734
9888
  speechOptions?: {
9735
9889
  speed?: number | undefined;
9736
9890
  instruction?: string | undefined;
@@ -9738,8 +9892,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
9738
9892
  provider?: string | undefined;
9739
9893
  model?: string | undefined;
9740
9894
  }>;
9741
- provider?: string | undefined;
9742
- model?: string | undefined;
9743
9895
  } | undefined;
9744
9896
  } | undefined;
9745
9897
  }>;