mulmocast 0.0.5 → 0.0.6

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 (132) hide show
  1. package/README.md +257 -39
  2. package/assets/audio/silent60sec.mp3 +0 -0
  3. package/assets/html/caption.html +45 -0
  4. package/assets/html/chart.html +1 -1
  5. package/assets/html/mermaid.html +6 -2
  6. package/assets/html/tailwind.html +13 -0
  7. package/assets/templates/business.json +57 -4
  8. package/assets/templates/comic_strips.json +35 -0
  9. package/assets/templates/ghibli_strips.json +35 -0
  10. package/lib/actions/audio.js +24 -11
  11. package/lib/actions/captions.d.ts +2 -0
  12. package/lib/actions/captions.js +62 -0
  13. package/lib/actions/images.js +3 -2
  14. package/lib/actions/index.d.ts +1 -0
  15. package/lib/actions/index.js +1 -0
  16. package/lib/actions/movie.js +78 -86
  17. package/lib/actions/pdf.js +15 -5
  18. package/lib/actions/translate.js +32 -26
  19. package/lib/agents/add_bgm_agent.js +15 -39
  20. package/lib/agents/combine_audio_files_agent.js +43 -36
  21. package/lib/agents/index.d.ts +2 -3
  22. package/lib/agents/index.js +2 -3
  23. package/lib/agents/tts_google_agent.d.ts +4 -0
  24. package/lib/agents/tts_google_agent.js +51 -0
  25. package/lib/agents/validate_schema_agent.d.ts +19 -0
  26. package/lib/agents/validate_schema_agent.js +36 -0
  27. package/lib/cli/args.d.ts +2 -0
  28. package/lib/cli/args.js +9 -2
  29. package/lib/cli/bin.d.ts +3 -0
  30. package/lib/cli/bin.js +38 -0
  31. package/lib/cli/cli.js +34 -7
  32. package/lib/cli/commands/audio/builder.d.ts +14 -0
  33. package/lib/cli/commands/audio/builder.js +6 -0
  34. package/lib/cli/commands/audio/handler.d.ts +4 -0
  35. package/lib/cli/commands/audio/handler.js +7 -0
  36. package/lib/cli/commands/audio/index.d.ts +4 -0
  37. package/lib/cli/commands/audio/index.js +4 -0
  38. package/lib/cli/commands/image/builder.d.ts +14 -0
  39. package/lib/cli/commands/image/builder.js +6 -0
  40. package/lib/cli/commands/image/handler.d.ts +4 -0
  41. package/lib/cli/commands/image/handler.js +7 -0
  42. package/lib/cli/commands/image/index.d.ts +4 -0
  43. package/lib/cli/commands/image/index.js +4 -0
  44. package/lib/cli/commands/movie/builder.d.ts +18 -0
  45. package/lib/cli/commands/movie/builder.js +19 -0
  46. package/lib/cli/commands/movie/handler.d.ts +6 -0
  47. package/lib/cli/commands/movie/handler.js +12 -0
  48. package/lib/cli/commands/movie/index.d.ts +4 -0
  49. package/lib/cli/commands/movie/index.js +4 -0
  50. package/lib/cli/commands/pdf/builder.d.ts +18 -0
  51. package/lib/cli/commands/pdf/builder.js +19 -0
  52. package/lib/cli/commands/pdf/handler.d.ts +6 -0
  53. package/lib/cli/commands/pdf/handler.js +8 -0
  54. package/lib/cli/commands/pdf/index.d.ts +4 -0
  55. package/lib/cli/commands/pdf/index.js +4 -0
  56. package/lib/cli/commands/tool/index.d.ts +6 -0
  57. package/lib/cli/commands/tool/index.js +8 -0
  58. package/lib/cli/commands/tool/prompt/builder.d.ts +4 -0
  59. package/lib/cli/commands/tool/prompt/builder.js +11 -0
  60. package/lib/cli/commands/tool/prompt/handler.d.ts +4 -0
  61. package/lib/cli/commands/tool/prompt/handler.js +14 -0
  62. package/lib/cli/commands/tool/prompt/index.d.ts +4 -0
  63. package/lib/cli/commands/tool/prompt/index.js +4 -0
  64. package/lib/cli/commands/tool/schema/builder.d.ts +2 -0
  65. package/lib/cli/commands/tool/schema/builder.js +3 -0
  66. package/lib/cli/commands/tool/schema/handler.d.ts +2 -0
  67. package/lib/cli/commands/tool/schema/handler.js +12 -0
  68. package/lib/cli/commands/tool/schema/index.d.ts +4 -0
  69. package/lib/cli/commands/tool/schema/index.js +4 -0
  70. package/lib/cli/commands/tool/scripting/builder.d.ts +20 -0
  71. package/lib/cli/commands/tool/scripting/builder.js +63 -0
  72. package/lib/cli/commands/tool/scripting/handler.d.ts +12 -0
  73. package/lib/cli/commands/tool/scripting/handler.js +36 -0
  74. package/lib/cli/commands/tool/scripting/index.d.ts +4 -0
  75. package/lib/cli/commands/tool/scripting/index.js +4 -0
  76. package/lib/cli/commands/tool/story_to_script/builder.d.ts +18 -0
  77. package/lib/cli/commands/tool/story_to_script/builder.js +53 -0
  78. package/lib/cli/commands/tool/story_to_script/handler.d.ts +11 -0
  79. package/lib/cli/commands/tool/story_to_script/handler.js +35 -0
  80. package/lib/cli/commands/tool/story_to_script/index.d.ts +4 -0
  81. package/lib/cli/commands/tool/story_to_script/index.js +4 -0
  82. package/lib/cli/commands/translate/builder.d.ts +14 -0
  83. package/lib/cli/commands/translate/builder.js +5 -0
  84. package/lib/cli/commands/translate/handler.d.ts +4 -0
  85. package/lib/cli/commands/translate/handler.js +6 -0
  86. package/lib/cli/commands/translate/index.d.ts +4 -0
  87. package/lib/cli/commands/translate/index.js +4 -0
  88. package/lib/cli/common.d.ts +6 -2
  89. package/lib/cli/common.js +18 -7
  90. package/lib/cli/helpers.d.ts +38 -0
  91. package/lib/cli/helpers.js +115 -0
  92. package/lib/cli/tool-args.d.ts +1 -0
  93. package/lib/cli/tool-args.js +1 -1
  94. package/lib/cli/tool-cli.js +8 -0
  95. package/lib/methods/mulmo_script.d.ts +0 -1
  96. package/lib/methods/mulmo_script.js +4 -7
  97. package/lib/methods/mulmo_script_template.js +2 -12
  98. package/lib/tools/create_mulmo_script_from_url.d.ts +1 -1
  99. package/lib/tools/create_mulmo_script_from_url.js +43 -14
  100. package/lib/tools/create_mulmo_script_interactively.js +14 -13
  101. package/lib/tools/dump_prompt.js +2 -0
  102. package/lib/tools/story_to_script.d.ts +10 -0
  103. package/lib/tools/story_to_script.js +201 -0
  104. package/lib/types/cli_types.d.ts +14 -0
  105. package/lib/types/cli_types.js +1 -0
  106. package/lib/types/schema.d.ts +493 -176
  107. package/lib/types/schema.js +37 -7
  108. package/lib/types/type.d.ts +6 -1
  109. package/lib/utils/const.d.ts +1 -0
  110. package/lib/utils/const.js +1 -0
  111. package/lib/utils/ffmpeg_utils.d.ts +12 -0
  112. package/lib/utils/ffmpeg_utils.js +63 -0
  113. package/lib/utils/file.d.ts +7 -3
  114. package/lib/utils/file.js +24 -5
  115. package/lib/utils/image_plugins/chart.js +6 -1
  116. package/lib/utils/image_plugins/html_tailwind.d.ts +3 -0
  117. package/lib/utils/image_plugins/html_tailwind.js +18 -0
  118. package/lib/utils/image_plugins/index.d.ts +2 -1
  119. package/lib/utils/image_plugins/index.js +2 -1
  120. package/lib/utils/image_plugins/mermaid.js +1 -1
  121. package/lib/utils/image_plugins/tailwind.d.ts +3 -0
  122. package/lib/utils/image_plugins/tailwind.js +18 -0
  123. package/lib/utils/image_plugins/text_slide.js +9 -2
  124. package/lib/utils/markdown.d.ts +1 -1
  125. package/lib/utils/markdown.js +8 -2
  126. package/lib/utils/preprocess.d.ts +23 -12
  127. package/lib/utils/preprocess.js +4 -0
  128. package/lib/utils/prompt.d.ts +15 -0
  129. package/lib/utils/prompt.js +57 -0
  130. package/lib/utils/utils.d.ts +2 -0
  131. package/lib/utils/utils.js +10 -0
  132. package/package.json +27 -23
@@ -197,25 +197,30 @@ export declare const mulmoTextSlideMediaSchema: z.ZodObject<{
197
197
  type: z.ZodLiteral<"textSlide">;
198
198
  slide: z.ZodObject<{
199
199
  title: z.ZodString;
200
- bullets: z.ZodArray<z.ZodString, "many">;
200
+ subtitle: z.ZodOptional<z.ZodString>;
201
+ bullets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
201
202
  }, "strip", z.ZodTypeAny, {
202
203
  title: string;
203
- bullets: string[];
204
+ subtitle?: string | undefined;
205
+ bullets?: string[] | undefined;
204
206
  }, {
205
207
  title: string;
206
- bullets: string[];
208
+ subtitle?: string | undefined;
209
+ bullets?: string[] | undefined;
207
210
  }>;
208
211
  }, "strict", z.ZodTypeAny, {
209
212
  type: "textSlide";
210
213
  slide: {
211
214
  title: string;
212
- bullets: string[];
215
+ subtitle?: string | undefined;
216
+ bullets?: string[] | undefined;
213
217
  };
214
218
  }, {
215
219
  type: "textSlide";
216
220
  slide: {
217
221
  title: string;
218
- bullets: string[];
222
+ subtitle?: string | undefined;
223
+ bullets?: string[] | undefined;
219
224
  };
220
225
  }>;
221
226
  export declare const mulmoChartMediaSchema: z.ZodObject<{
@@ -307,6 +312,16 @@ export declare const mulmoMermaidMediaSchema: z.ZodObject<{
307
312
  title: string;
308
313
  appendix?: string[] | undefined;
309
314
  }>;
315
+ export declare const mulmoHtmlTailwindMediaSchema: z.ZodObject<{
316
+ type: z.ZodLiteral<"html_tailwind">;
317
+ html: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
318
+ }, "strict", z.ZodTypeAny, {
319
+ type: "html_tailwind";
320
+ html: string | string[];
321
+ }, {
322
+ type: "html_tailwind";
323
+ html: string | string[];
324
+ }>;
310
325
  export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
311
326
  type: z.ZodLiteral<"markdown">;
312
327
  markdown: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
@@ -605,25 +620,30 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
605
620
  type: z.ZodLiteral<"textSlide">;
606
621
  slide: z.ZodObject<{
607
622
  title: z.ZodString;
608
- bullets: z.ZodArray<z.ZodString, "many">;
623
+ subtitle: z.ZodOptional<z.ZodString>;
624
+ bullets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
609
625
  }, "strip", z.ZodTypeAny, {
610
626
  title: string;
611
- bullets: string[];
627
+ subtitle?: string | undefined;
628
+ bullets?: string[] | undefined;
612
629
  }, {
613
630
  title: string;
614
- bullets: string[];
631
+ subtitle?: string | undefined;
632
+ bullets?: string[] | undefined;
615
633
  }>;
616
634
  }, "strict", z.ZodTypeAny, {
617
635
  type: "textSlide";
618
636
  slide: {
619
637
  title: string;
620
- bullets: string[];
638
+ subtitle?: string | undefined;
639
+ bullets?: string[] | undefined;
621
640
  };
622
641
  }, {
623
642
  type: "textSlide";
624
643
  slide: {
625
644
  title: string;
626
- bullets: string[];
645
+ subtitle?: string | undefined;
646
+ bullets?: string[] | undefined;
627
647
  };
628
648
  }>, z.ZodObject<{
629
649
  type: z.ZodLiteral<"chart">;
@@ -712,6 +732,15 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
712
732
  type: "mermaid";
713
733
  title: string;
714
734
  appendix?: string[] | undefined;
735
+ }>, z.ZodObject<{
736
+ type: z.ZodLiteral<"html_tailwind">;
737
+ html: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
738
+ }, "strict", z.ZodTypeAny, {
739
+ type: "html_tailwind";
740
+ html: string | string[];
741
+ }, {
742
+ type: "html_tailwind";
743
+ html: string | string[];
715
744
  }>]>;
716
745
  export declare const mulmoAudioAssetSchema: z.ZodUnion<[z.ZodObject<{
717
746
  type: z.ZodLiteral<"audio">;
@@ -815,12 +844,21 @@ export declare const textSlideParamsSchema: z.ZodObject<{
815
844
  }, {
816
845
  cssStyles: string | string[];
817
846
  }>;
818
- export declare const videoParamsSchema: z.ZodObject<{
819
- padding: z.ZodOptional<z.ZodNumber>;
847
+ export declare const audioParamsSchema: z.ZodObject<{
848
+ introPadding: z.ZodNumber;
849
+ padding: z.ZodNumber;
850
+ closingPadding: z.ZodNumber;
851
+ outroPadding: z.ZodNumber;
820
852
  }, "strict", z.ZodTypeAny, {
821
- padding?: number | undefined;
853
+ introPadding: number;
854
+ padding: number;
855
+ closingPadding: number;
856
+ outroPadding: number;
822
857
  }, {
823
- padding?: number | undefined;
858
+ introPadding: number;
859
+ padding: number;
860
+ closingPadding: number;
861
+ outroPadding: number;
824
862
  }>;
825
863
  export declare const mulmoBeatSchema: z.ZodObject<{
826
864
  speaker: z.ZodDefault<z.ZodString>;
@@ -1123,25 +1161,30 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1123
1161
  type: z.ZodLiteral<"textSlide">;
1124
1162
  slide: z.ZodObject<{
1125
1163
  title: z.ZodString;
1126
- bullets: z.ZodArray<z.ZodString, "many">;
1164
+ subtitle: z.ZodOptional<z.ZodString>;
1165
+ bullets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1127
1166
  }, "strip", z.ZodTypeAny, {
1128
1167
  title: string;
1129
- bullets: string[];
1168
+ subtitle?: string | undefined;
1169
+ bullets?: string[] | undefined;
1130
1170
  }, {
1131
1171
  title: string;
1132
- bullets: string[];
1172
+ subtitle?: string | undefined;
1173
+ bullets?: string[] | undefined;
1133
1174
  }>;
1134
1175
  }, "strict", z.ZodTypeAny, {
1135
1176
  type: "textSlide";
1136
1177
  slide: {
1137
1178
  title: string;
1138
- bullets: string[];
1179
+ subtitle?: string | undefined;
1180
+ bullets?: string[] | undefined;
1139
1181
  };
1140
1182
  }, {
1141
1183
  type: "textSlide";
1142
1184
  slide: {
1143
1185
  title: string;
1144
- bullets: string[];
1186
+ subtitle?: string | undefined;
1187
+ bullets?: string[] | undefined;
1145
1188
  };
1146
1189
  }>, z.ZodObject<{
1147
1190
  type: z.ZodLiteral<"chart">;
@@ -1230,6 +1273,15 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1230
1273
  type: "mermaid";
1231
1274
  title: string;
1232
1275
  appendix?: string[] | undefined;
1276
+ }>, z.ZodObject<{
1277
+ type: z.ZodLiteral<"html_tailwind">;
1278
+ html: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
1279
+ }, "strict", z.ZodTypeAny, {
1280
+ type: "html_tailwind";
1281
+ html: string | string[];
1282
+ }, {
1283
+ type: "html_tailwind";
1284
+ html: string | string[];
1233
1285
  }>]>>;
1234
1286
  audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1235
1287
  type: z.ZodLiteral<"audio">;
@@ -1310,6 +1362,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1310
1362
  type: "midi";
1311
1363
  source: string;
1312
1364
  }>]>>;
1365
+ duration: z.ZodOptional<z.ZodNumber>;
1313
1366
  imageParams: z.ZodOptional<z.ZodObject<{
1314
1367
  model: z.ZodOptional<z.ZodString>;
1315
1368
  size: z.ZodOptional<z.ZodString>;
@@ -1347,6 +1400,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1347
1400
  }, "strict", z.ZodTypeAny, {
1348
1401
  text: string;
1349
1402
  speaker: string;
1403
+ duration?: number | undefined;
1350
1404
  speechOptions?: {
1351
1405
  speed?: number | undefined;
1352
1406
  instruction?: string | undefined;
@@ -1421,7 +1475,8 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1421
1475
  type: "textSlide";
1422
1476
  slide: {
1423
1477
  title: string;
1424
- bullets: string[];
1478
+ subtitle?: string | undefined;
1479
+ bullets?: string[] | undefined;
1425
1480
  };
1426
1481
  } | {
1427
1482
  type: "chart";
@@ -1444,6 +1499,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1444
1499
  type: "mermaid";
1445
1500
  title: string;
1446
1501
  appendix?: string[] | undefined;
1502
+ } | {
1503
+ type: "html_tailwind";
1504
+ html: string | string[];
1447
1505
  } | undefined;
1448
1506
  audio?: {
1449
1507
  type: "audio";
@@ -1476,6 +1534,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1476
1534
  imagePrompt?: string | undefined;
1477
1535
  }, {
1478
1536
  text: string;
1537
+ duration?: number | undefined;
1479
1538
  speechOptions?: {
1480
1539
  speed?: number | undefined;
1481
1540
  instruction?: string | undefined;
@@ -1550,7 +1609,8 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1550
1609
  type: "textSlide";
1551
1610
  slide: {
1552
1611
  title: string;
1553
- bullets: string[];
1612
+ subtitle?: string | undefined;
1613
+ bullets?: string[] | undefined;
1554
1614
  };
1555
1615
  } | {
1556
1616
  type: "chart";
@@ -1573,6 +1633,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1573
1633
  type: "mermaid";
1574
1634
  title: string;
1575
1635
  appendix?: string[] | undefined;
1636
+ } | {
1637
+ type: "html_tailwind";
1638
+ html: string | string[];
1576
1639
  } | undefined;
1577
1640
  audio?: {
1578
1641
  type: "audio";
@@ -1625,9 +1688,9 @@ export declare const mulmoCastCreditSchema: z.ZodObject<{
1625
1688
  version: "1.0";
1626
1689
  credit?: "closing" | undefined;
1627
1690
  }>;
1628
- export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">]>>;
1691
+ export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">, z.ZodLiteral<"google">]>>;
1629
1692
  export declare const mulmoSpeechParamsSchema: z.ZodObject<{
1630
- provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">]>>;
1693
+ provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">, z.ZodLiteral<"google">]>>;
1631
1694
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
1632
1695
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1633
1696
  voiceId: z.ZodString;
@@ -1657,7 +1720,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
1657
1720
  } | undefined;
1658
1721
  }>>;
1659
1722
  }, "strict", z.ZodTypeAny, {
1660
- provider: "openai" | "nijivoice";
1723
+ provider: "openai" | "nijivoice" | "google";
1661
1724
  speakers: Record<string, {
1662
1725
  voiceId: string;
1663
1726
  displayName?: Record<string, string> | undefined;
@@ -1675,7 +1738,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
1675
1738
  instruction?: string | undefined;
1676
1739
  } | undefined;
1677
1740
  }>;
1678
- provider?: "openai" | "nijivoice" | undefined;
1741
+ provider?: "openai" | "nijivoice" | "google" | undefined;
1679
1742
  }>;
1680
1743
  export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
1681
1744
  export declare const mulmoPresentationStyleSchema: z.ZodObject<{
@@ -1700,7 +1763,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1700
1763
  height: number;
1701
1764
  }>>;
1702
1765
  speechParams: z.ZodDefault<z.ZodObject<{
1703
- provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">]>>;
1766
+ provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">, z.ZodLiteral<"google">]>>;
1704
1767
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
1705
1768
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1706
1769
  voiceId: z.ZodString;
@@ -1730,7 +1793,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1730
1793
  } | undefined;
1731
1794
  }>>;
1732
1795
  }, "strict", z.ZodTypeAny, {
1733
- provider: "openai" | "nijivoice";
1796
+ provider: "openai" | "nijivoice" | "google";
1734
1797
  speakers: Record<string, {
1735
1798
  voiceId: string;
1736
1799
  displayName?: Record<string, string> | undefined;
@@ -1748,7 +1811,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1748
1811
  instruction?: string | undefined;
1749
1812
  } | undefined;
1750
1813
  }>;
1751
- provider?: "openai" | "nijivoice" | undefined;
1814
+ provider?: "openai" | "nijivoice" | "google" | undefined;
1752
1815
  }>>;
1753
1816
  imageParams: z.ZodOptional<z.ZodObject<{
1754
1817
  model: z.ZodOptional<z.ZodString>;
@@ -1777,12 +1840,21 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1777
1840
  }, {
1778
1841
  cssStyles: string | string[];
1779
1842
  }>>;
1780
- videoParams: z.ZodOptional<z.ZodObject<{
1781
- padding: z.ZodOptional<z.ZodNumber>;
1843
+ audioParams: z.ZodDefault<z.ZodObject<{
1844
+ introPadding: z.ZodNumber;
1845
+ padding: z.ZodNumber;
1846
+ closingPadding: z.ZodNumber;
1847
+ outroPadding: z.ZodNumber;
1782
1848
  }, "strict", z.ZodTypeAny, {
1783
- padding?: number | undefined;
1849
+ introPadding: number;
1850
+ padding: number;
1851
+ closingPadding: number;
1852
+ outroPadding: number;
1784
1853
  }, {
1785
- padding?: number | undefined;
1854
+ introPadding: number;
1855
+ padding: number;
1856
+ closingPadding: number;
1857
+ outroPadding: number;
1786
1858
  }>>;
1787
1859
  omitCaptions: z.ZodOptional<z.ZodBoolean>;
1788
1860
  }, "strip", z.ZodTypeAny, {
@@ -1795,7 +1867,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1795
1867
  height: number;
1796
1868
  };
1797
1869
  speechParams: {
1798
- provider: "openai" | "nijivoice";
1870
+ provider: "openai" | "nijivoice" | "google";
1799
1871
  speakers: Record<string, {
1800
1872
  voiceId: string;
1801
1873
  displayName?: Record<string, string> | undefined;
@@ -1805,6 +1877,12 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1805
1877
  } | undefined;
1806
1878
  }>;
1807
1879
  };
1880
+ audioParams: {
1881
+ introPadding: number;
1882
+ padding: number;
1883
+ closingPadding: number;
1884
+ outroPadding: number;
1885
+ };
1808
1886
  imageParams?: {
1809
1887
  provider: "openai" | "google";
1810
1888
  model?: string | undefined;
@@ -1815,9 +1893,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1815
1893
  textSlideParams?: {
1816
1894
  cssStyles: string | string[];
1817
1895
  } | undefined;
1818
- videoParams?: {
1819
- padding?: number | undefined;
1820
- } | undefined;
1821
1896
  omitCaptions?: boolean | undefined;
1822
1897
  }, {
1823
1898
  $mulmocast: {
@@ -1847,10 +1922,13 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1847
1922
  instruction?: string | undefined;
1848
1923
  } | undefined;
1849
1924
  }>;
1850
- provider?: "openai" | "nijivoice" | undefined;
1925
+ provider?: "openai" | "nijivoice" | "google" | undefined;
1851
1926
  } | undefined;
1852
- videoParams?: {
1853
- padding?: number | undefined;
1927
+ audioParams?: {
1928
+ introPadding: number;
1929
+ padding: number;
1930
+ closingPadding: number;
1931
+ outroPadding: number;
1854
1932
  } | undefined;
1855
1933
  omitCaptions?: boolean | undefined;
1856
1934
  }>;
@@ -1892,7 +1970,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
1892
1970
  height: number;
1893
1971
  }>>;
1894
1972
  speechParams: z.ZodDefault<z.ZodObject<{
1895
- provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">]>>;
1973
+ provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">, z.ZodLiteral<"google">]>>;
1896
1974
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
1897
1975
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1898
1976
  voiceId: z.ZodString;
@@ -1922,7 +2000,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
1922
2000
  } | undefined;
1923
2001
  }>>;
1924
2002
  }, "strict", z.ZodTypeAny, {
1925
- provider: "openai" | "nijivoice";
2003
+ provider: "openai" | "nijivoice" | "google";
1926
2004
  speakers: Record<string, {
1927
2005
  voiceId: string;
1928
2006
  displayName?: Record<string, string> | undefined;
@@ -1940,7 +2018,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
1940
2018
  instruction?: string | undefined;
1941
2019
  } | undefined;
1942
2020
  }>;
1943
- provider?: "openai" | "nijivoice" | undefined;
2021
+ provider?: "openai" | "nijivoice" | "google" | undefined;
1944
2022
  }>>;
1945
2023
  imageParams: z.ZodOptional<z.ZodObject<{
1946
2024
  model: z.ZodOptional<z.ZodString>;
@@ -1969,12 +2047,21 @@ export declare const mulmoScriptSchema: z.ZodObject<{
1969
2047
  }, {
1970
2048
  cssStyles: string | string[];
1971
2049
  }>>;
1972
- videoParams: z.ZodOptional<z.ZodObject<{
1973
- padding: z.ZodOptional<z.ZodNumber>;
2050
+ audioParams: z.ZodDefault<z.ZodObject<{
2051
+ introPadding: z.ZodNumber;
2052
+ padding: z.ZodNumber;
2053
+ closingPadding: z.ZodNumber;
2054
+ outroPadding: z.ZodNumber;
1974
2055
  }, "strict", z.ZodTypeAny, {
1975
- padding?: number | undefined;
2056
+ introPadding: number;
2057
+ padding: number;
2058
+ closingPadding: number;
2059
+ outroPadding: number;
1976
2060
  }, {
1977
- padding?: number | undefined;
2061
+ introPadding: number;
2062
+ padding: number;
2063
+ closingPadding: number;
2064
+ outroPadding: number;
1978
2065
  }>>;
1979
2066
  omitCaptions: z.ZodOptional<z.ZodBoolean>;
1980
2067
  } & {
@@ -2298,25 +2385,30 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2298
2385
  type: z.ZodLiteral<"textSlide">;
2299
2386
  slide: z.ZodObject<{
2300
2387
  title: z.ZodString;
2301
- bullets: z.ZodArray<z.ZodString, "many">;
2388
+ subtitle: z.ZodOptional<z.ZodString>;
2389
+ bullets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2302
2390
  }, "strip", z.ZodTypeAny, {
2303
2391
  title: string;
2304
- bullets: string[];
2392
+ subtitle?: string | undefined;
2393
+ bullets?: string[] | undefined;
2305
2394
  }, {
2306
2395
  title: string;
2307
- bullets: string[];
2396
+ subtitle?: string | undefined;
2397
+ bullets?: string[] | undefined;
2308
2398
  }>;
2309
2399
  }, "strict", z.ZodTypeAny, {
2310
2400
  type: "textSlide";
2311
2401
  slide: {
2312
2402
  title: string;
2313
- bullets: string[];
2403
+ subtitle?: string | undefined;
2404
+ bullets?: string[] | undefined;
2314
2405
  };
2315
2406
  }, {
2316
2407
  type: "textSlide";
2317
2408
  slide: {
2318
2409
  title: string;
2319
- bullets: string[];
2410
+ subtitle?: string | undefined;
2411
+ bullets?: string[] | undefined;
2320
2412
  };
2321
2413
  }>, z.ZodObject<{
2322
2414
  type: z.ZodLiteral<"chart">;
@@ -2405,6 +2497,15 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2405
2497
  type: "mermaid";
2406
2498
  title: string;
2407
2499
  appendix?: string[] | undefined;
2500
+ }>, z.ZodObject<{
2501
+ type: z.ZodLiteral<"html_tailwind">;
2502
+ html: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
2503
+ }, "strict", z.ZodTypeAny, {
2504
+ type: "html_tailwind";
2505
+ html: string | string[];
2506
+ }, {
2507
+ type: "html_tailwind";
2508
+ html: string | string[];
2408
2509
  }>]>>;
2409
2510
  audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2410
2511
  type: z.ZodLiteral<"audio">;
@@ -2485,6 +2586,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2485
2586
  type: "midi";
2486
2587
  source: string;
2487
2588
  }>]>>;
2589
+ duration: z.ZodOptional<z.ZodNumber>;
2488
2590
  imageParams: z.ZodOptional<z.ZodObject<{
2489
2591
  model: z.ZodOptional<z.ZodString>;
2490
2592
  size: z.ZodOptional<z.ZodString>;
@@ -2522,6 +2624,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2522
2624
  }, "strict", z.ZodTypeAny, {
2523
2625
  text: string;
2524
2626
  speaker: string;
2627
+ duration?: number | undefined;
2525
2628
  speechOptions?: {
2526
2629
  speed?: number | undefined;
2527
2630
  instruction?: string | undefined;
@@ -2596,7 +2699,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2596
2699
  type: "textSlide";
2597
2700
  slide: {
2598
2701
  title: string;
2599
- bullets: string[];
2702
+ subtitle?: string | undefined;
2703
+ bullets?: string[] | undefined;
2600
2704
  };
2601
2705
  } | {
2602
2706
  type: "chart";
@@ -2619,6 +2723,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2619
2723
  type: "mermaid";
2620
2724
  title: string;
2621
2725
  appendix?: string[] | undefined;
2726
+ } | {
2727
+ type: "html_tailwind";
2728
+ html: string | string[];
2622
2729
  } | undefined;
2623
2730
  audio?: {
2624
2731
  type: "audio";
@@ -2651,6 +2758,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2651
2758
  imagePrompt?: string | undefined;
2652
2759
  }, {
2653
2760
  text: string;
2761
+ duration?: number | undefined;
2654
2762
  speechOptions?: {
2655
2763
  speed?: number | undefined;
2656
2764
  instruction?: string | undefined;
@@ -2725,7 +2833,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2725
2833
  type: "textSlide";
2726
2834
  slide: {
2727
2835
  title: string;
2728
- bullets: string[];
2836
+ subtitle?: string | undefined;
2837
+ bullets?: string[] | undefined;
2729
2838
  };
2730
2839
  } | {
2731
2840
  type: "chart";
@@ -2748,6 +2857,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2748
2857
  type: "mermaid";
2749
2858
  title: string;
2750
2859
  appendix?: string[] | undefined;
2860
+ } | {
2861
+ type: "html_tailwind";
2862
+ html: string | string[];
2751
2863
  } | undefined;
2752
2864
  audio?: {
2753
2865
  type: "audio";
@@ -2792,7 +2904,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2792
2904
  height: number;
2793
2905
  };
2794
2906
  speechParams: {
2795
- provider: "openai" | "nijivoice";
2907
+ provider: "openai" | "nijivoice" | "google";
2796
2908
  speakers: Record<string, {
2797
2909
  voiceId: string;
2798
2910
  displayName?: Record<string, string> | undefined;
@@ -2802,9 +2914,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2802
2914
  } | undefined;
2803
2915
  }>;
2804
2916
  };
2917
+ audioParams: {
2918
+ introPadding: number;
2919
+ padding: number;
2920
+ closingPadding: number;
2921
+ outroPadding: number;
2922
+ };
2805
2923
  beats: {
2806
2924
  text: string;
2807
2925
  speaker: string;
2926
+ duration?: number | undefined;
2808
2927
  speechOptions?: {
2809
2928
  speed?: number | undefined;
2810
2929
  instruction?: string | undefined;
@@ -2879,7 +2998,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2879
2998
  type: "textSlide";
2880
2999
  slide: {
2881
3000
  title: string;
2882
- bullets: string[];
3001
+ subtitle?: string | undefined;
3002
+ bullets?: string[] | undefined;
2883
3003
  };
2884
3004
  } | {
2885
3005
  type: "chart";
@@ -2902,6 +3022,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2902
3022
  type: "mermaid";
2903
3023
  title: string;
2904
3024
  appendix?: string[] | undefined;
3025
+ } | {
3026
+ type: "html_tailwind";
3027
+ html: string | string[];
2905
3028
  } | undefined;
2906
3029
  audio?: {
2907
3030
  type: "audio";
@@ -2945,9 +3068,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2945
3068
  textSlideParams?: {
2946
3069
  cssStyles: string | string[];
2947
3070
  } | undefined;
2948
- videoParams?: {
2949
- padding?: number | undefined;
2950
- } | undefined;
2951
3071
  omitCaptions?: boolean | undefined;
2952
3072
  description?: string | undefined;
2953
3073
  references?: {
@@ -2965,6 +3085,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2965
3085
  };
2966
3086
  beats: {
2967
3087
  text: string;
3088
+ duration?: number | undefined;
2968
3089
  speechOptions?: {
2969
3090
  speed?: number | undefined;
2970
3091
  instruction?: string | undefined;
@@ -3039,7 +3160,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3039
3160
  type: "textSlide";
3040
3161
  slide: {
3041
3162
  title: string;
3042
- bullets: string[];
3163
+ subtitle?: string | undefined;
3164
+ bullets?: string[] | undefined;
3043
3165
  };
3044
3166
  } | {
3045
3167
  type: "chart";
@@ -3062,6 +3184,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3062
3184
  type: "mermaid";
3063
3185
  title: string;
3064
3186
  appendix?: string[] | undefined;
3187
+ } | {
3188
+ type: "html_tailwind";
3189
+ html: string | string[];
3065
3190
  } | undefined;
3066
3191
  audio?: {
3067
3192
  type: "audio";
@@ -3119,10 +3244,13 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3119
3244
  instruction?: string | undefined;
3120
3245
  } | undefined;
3121
3246
  }>;
3122
- provider?: "openai" | "nijivoice" | undefined;
3247
+ provider?: "openai" | "nijivoice" | "google" | undefined;
3123
3248
  } | undefined;
3124
- videoParams?: {
3125
- padding?: number | undefined;
3249
+ audioParams?: {
3250
+ introPadding: number;
3251
+ padding: number;
3252
+ closingPadding: number;
3253
+ outroPadding: number;
3126
3254
  } | undefined;
3127
3255
  omitCaptions?: boolean | undefined;
3128
3256
  description?: string | undefined;
@@ -3136,7 +3264,26 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3136
3264
  __test_invalid__?: boolean | undefined;
3137
3265
  }>;
3138
3266
  export declare const mulmoStudioBeatSchema: z.ZodObject<{
3139
- multiLingualTexts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3267
+ hash: z.ZodOptional<z.ZodString>;
3268
+ duration: z.ZodOptional<z.ZodNumber>;
3269
+ audioFile: z.ZodOptional<z.ZodString>;
3270
+ imageFile: z.ZodOptional<z.ZodString>;
3271
+ captionFile: z.ZodOptional<z.ZodString>;
3272
+ }, "strict", z.ZodTypeAny, {
3273
+ duration?: number | undefined;
3274
+ hash?: string | undefined;
3275
+ audioFile?: string | undefined;
3276
+ imageFile?: string | undefined;
3277
+ captionFile?: string | undefined;
3278
+ }, {
3279
+ duration?: number | undefined;
3280
+ hash?: string | undefined;
3281
+ audioFile?: string | undefined;
3282
+ imageFile?: string | undefined;
3283
+ captionFile?: string | undefined;
3284
+ }>;
3285
+ export declare const mulmoStudioMultiLingualDataSchema: z.ZodObject<{
3286
+ multiLingualTexts: z.ZodRecord<z.ZodString, z.ZodObject<{
3140
3287
  text: z.ZodString;
3141
3288
  lang: z.ZodString;
3142
3289
  texts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3154,36 +3301,61 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
3154
3301
  texts?: string[] | undefined;
3155
3302
  ttsTexts?: string[] | undefined;
3156
3303
  duration?: number | undefined;
3157
- }>>>;
3158
- hash: z.ZodOptional<z.ZodString>;
3159
- duration: z.ZodOptional<z.ZodNumber>;
3160
- audioFile: z.ZodOptional<z.ZodString>;
3161
- imageFile: z.ZodOptional<z.ZodString>;
3162
- }, "strict", z.ZodTypeAny, {
3163
- duration?: number | undefined;
3164
- multiLingualTexts?: Record<string, {
3304
+ }>>;
3305
+ }, "strip", z.ZodTypeAny, {
3306
+ multiLingualTexts: Record<string, {
3165
3307
  text: string;
3166
3308
  lang: string;
3167
3309
  texts?: string[] | undefined;
3168
3310
  ttsTexts?: string[] | undefined;
3169
3311
  duration?: number | undefined;
3170
- }> | undefined;
3171
- hash?: string | undefined;
3172
- audioFile?: string | undefined;
3173
- imageFile?: string | undefined;
3312
+ }>;
3174
3313
  }, {
3175
- duration?: number | undefined;
3176
- multiLingualTexts?: Record<string, {
3314
+ multiLingualTexts: Record<string, {
3177
3315
  text: string;
3178
3316
  lang: string;
3179
3317
  texts?: string[] | undefined;
3180
3318
  ttsTexts?: string[] | undefined;
3181
3319
  duration?: number | undefined;
3182
- }> | undefined;
3183
- hash?: string | undefined;
3184
- audioFile?: string | undefined;
3185
- imageFile?: string | undefined;
3320
+ }>;
3186
3321
  }>;
3322
+ export declare const mulmoStudioMultiLingualSchema: z.ZodArray<z.ZodObject<{
3323
+ multiLingualTexts: z.ZodRecord<z.ZodString, z.ZodObject<{
3324
+ text: z.ZodString;
3325
+ lang: z.ZodString;
3326
+ texts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3327
+ ttsTexts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3328
+ duration: z.ZodOptional<z.ZodNumber>;
3329
+ }, "strict", z.ZodTypeAny, {
3330
+ text: string;
3331
+ lang: string;
3332
+ texts?: string[] | undefined;
3333
+ ttsTexts?: string[] | undefined;
3334
+ duration?: number | undefined;
3335
+ }, {
3336
+ text: string;
3337
+ lang: string;
3338
+ texts?: string[] | undefined;
3339
+ ttsTexts?: string[] | undefined;
3340
+ duration?: number | undefined;
3341
+ }>>;
3342
+ }, "strip", z.ZodTypeAny, {
3343
+ multiLingualTexts: Record<string, {
3344
+ text: string;
3345
+ lang: string;
3346
+ texts?: string[] | undefined;
3347
+ ttsTexts?: string[] | undefined;
3348
+ duration?: number | undefined;
3349
+ }>;
3350
+ }, {
3351
+ multiLingualTexts: Record<string, {
3352
+ text: string;
3353
+ lang: string;
3354
+ texts?: string[] | undefined;
3355
+ ttsTexts?: string[] | undefined;
3356
+ duration?: number | undefined;
3357
+ }>;
3358
+ }>, "many">;
3187
3359
  export declare const mulmoStudioSchema: z.ZodObject<{
3188
3360
  script: z.ZodObject<{
3189
3361
  $mulmocast: z.ZodObject<{
@@ -3207,7 +3379,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3207
3379
  height: number;
3208
3380
  }>>;
3209
3381
  speechParams: z.ZodDefault<z.ZodObject<{
3210
- provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">]>>;
3382
+ provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">, z.ZodLiteral<"google">]>>;
3211
3383
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
3212
3384
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3213
3385
  voiceId: z.ZodString;
@@ -3237,7 +3409,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3237
3409
  } | undefined;
3238
3410
  }>>;
3239
3411
  }, "strict", z.ZodTypeAny, {
3240
- provider: "openai" | "nijivoice";
3412
+ provider: "openai" | "nijivoice" | "google";
3241
3413
  speakers: Record<string, {
3242
3414
  voiceId: string;
3243
3415
  displayName?: Record<string, string> | undefined;
@@ -3255,7 +3427,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3255
3427
  instruction?: string | undefined;
3256
3428
  } | undefined;
3257
3429
  }>;
3258
- provider?: "openai" | "nijivoice" | undefined;
3430
+ provider?: "openai" | "nijivoice" | "google" | undefined;
3259
3431
  }>>;
3260
3432
  imageParams: z.ZodOptional<z.ZodObject<{
3261
3433
  model: z.ZodOptional<z.ZodString>;
@@ -3284,12 +3456,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3284
3456
  }, {
3285
3457
  cssStyles: string | string[];
3286
3458
  }>>;
3287
- videoParams: z.ZodOptional<z.ZodObject<{
3288
- padding: z.ZodOptional<z.ZodNumber>;
3459
+ audioParams: z.ZodDefault<z.ZodObject<{
3460
+ introPadding: z.ZodNumber;
3461
+ padding: z.ZodNumber;
3462
+ closingPadding: z.ZodNumber;
3463
+ outroPadding: z.ZodNumber;
3289
3464
  }, "strict", z.ZodTypeAny, {
3290
- padding?: number | undefined;
3465
+ introPadding: number;
3466
+ padding: number;
3467
+ closingPadding: number;
3468
+ outroPadding: number;
3291
3469
  }, {
3292
- padding?: number | undefined;
3470
+ introPadding: number;
3471
+ padding: number;
3472
+ closingPadding: number;
3473
+ outroPadding: number;
3293
3474
  }>>;
3294
3475
  omitCaptions: z.ZodOptional<z.ZodBoolean>;
3295
3476
  } & {
@@ -3613,25 +3794,30 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3613
3794
  type: z.ZodLiteral<"textSlide">;
3614
3795
  slide: z.ZodObject<{
3615
3796
  title: z.ZodString;
3616
- bullets: z.ZodArray<z.ZodString, "many">;
3797
+ subtitle: z.ZodOptional<z.ZodString>;
3798
+ bullets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3617
3799
  }, "strip", z.ZodTypeAny, {
3618
3800
  title: string;
3619
- bullets: string[];
3801
+ subtitle?: string | undefined;
3802
+ bullets?: string[] | undefined;
3620
3803
  }, {
3621
3804
  title: string;
3622
- bullets: string[];
3805
+ subtitle?: string | undefined;
3806
+ bullets?: string[] | undefined;
3623
3807
  }>;
3624
3808
  }, "strict", z.ZodTypeAny, {
3625
3809
  type: "textSlide";
3626
3810
  slide: {
3627
3811
  title: string;
3628
- bullets: string[];
3812
+ subtitle?: string | undefined;
3813
+ bullets?: string[] | undefined;
3629
3814
  };
3630
3815
  }, {
3631
3816
  type: "textSlide";
3632
3817
  slide: {
3633
3818
  title: string;
3634
- bullets: string[];
3819
+ subtitle?: string | undefined;
3820
+ bullets?: string[] | undefined;
3635
3821
  };
3636
3822
  }>, z.ZodObject<{
3637
3823
  type: z.ZodLiteral<"chart">;
@@ -3720,6 +3906,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3720
3906
  type: "mermaid";
3721
3907
  title: string;
3722
3908
  appendix?: string[] | undefined;
3909
+ }>, z.ZodObject<{
3910
+ type: z.ZodLiteral<"html_tailwind">;
3911
+ html: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
3912
+ }, "strict", z.ZodTypeAny, {
3913
+ type: "html_tailwind";
3914
+ html: string | string[];
3915
+ }, {
3916
+ type: "html_tailwind";
3917
+ html: string | string[];
3723
3918
  }>]>>;
3724
3919
  audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3725
3920
  type: z.ZodLiteral<"audio">;
@@ -3800,6 +3995,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3800
3995
  type: "midi";
3801
3996
  source: string;
3802
3997
  }>]>>;
3998
+ duration: z.ZodOptional<z.ZodNumber>;
3803
3999
  imageParams: z.ZodOptional<z.ZodObject<{
3804
4000
  model: z.ZodOptional<z.ZodString>;
3805
4001
  size: z.ZodOptional<z.ZodString>;
@@ -3837,6 +4033,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3837
4033
  }, "strict", z.ZodTypeAny, {
3838
4034
  text: string;
3839
4035
  speaker: string;
4036
+ duration?: number | undefined;
3840
4037
  speechOptions?: {
3841
4038
  speed?: number | undefined;
3842
4039
  instruction?: string | undefined;
@@ -3911,7 +4108,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3911
4108
  type: "textSlide";
3912
4109
  slide: {
3913
4110
  title: string;
3914
- bullets: string[];
4111
+ subtitle?: string | undefined;
4112
+ bullets?: string[] | undefined;
3915
4113
  };
3916
4114
  } | {
3917
4115
  type: "chart";
@@ -3934,6 +4132,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3934
4132
  type: "mermaid";
3935
4133
  title: string;
3936
4134
  appendix?: string[] | undefined;
4135
+ } | {
4136
+ type: "html_tailwind";
4137
+ html: string | string[];
3937
4138
  } | undefined;
3938
4139
  audio?: {
3939
4140
  type: "audio";
@@ -3966,6 +4167,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3966
4167
  imagePrompt?: string | undefined;
3967
4168
  }, {
3968
4169
  text: string;
4170
+ duration?: number | undefined;
3969
4171
  speechOptions?: {
3970
4172
  speed?: number | undefined;
3971
4173
  instruction?: string | undefined;
@@ -4040,7 +4242,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4040
4242
  type: "textSlide";
4041
4243
  slide: {
4042
4244
  title: string;
4043
- bullets: string[];
4245
+ subtitle?: string | undefined;
4246
+ bullets?: string[] | undefined;
4044
4247
  };
4045
4248
  } | {
4046
4249
  type: "chart";
@@ -4063,6 +4266,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4063
4266
  type: "mermaid";
4064
4267
  title: string;
4065
4268
  appendix?: string[] | undefined;
4269
+ } | {
4270
+ type: "html_tailwind";
4271
+ html: string | string[];
4066
4272
  } | undefined;
4067
4273
  audio?: {
4068
4274
  type: "audio";
@@ -4107,7 +4313,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4107
4313
  height: number;
4108
4314
  };
4109
4315
  speechParams: {
4110
- provider: "openai" | "nijivoice";
4316
+ provider: "openai" | "nijivoice" | "google";
4111
4317
  speakers: Record<string, {
4112
4318
  voiceId: string;
4113
4319
  displayName?: Record<string, string> | undefined;
@@ -4117,9 +4323,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4117
4323
  } | undefined;
4118
4324
  }>;
4119
4325
  };
4326
+ audioParams: {
4327
+ introPadding: number;
4328
+ padding: number;
4329
+ closingPadding: number;
4330
+ outroPadding: number;
4331
+ };
4120
4332
  beats: {
4121
4333
  text: string;
4122
4334
  speaker: string;
4335
+ duration?: number | undefined;
4123
4336
  speechOptions?: {
4124
4337
  speed?: number | undefined;
4125
4338
  instruction?: string | undefined;
@@ -4194,7 +4407,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4194
4407
  type: "textSlide";
4195
4408
  slide: {
4196
4409
  title: string;
4197
- bullets: string[];
4410
+ subtitle?: string | undefined;
4411
+ bullets?: string[] | undefined;
4198
4412
  };
4199
4413
  } | {
4200
4414
  type: "chart";
@@ -4217,6 +4431,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4217
4431
  type: "mermaid";
4218
4432
  title: string;
4219
4433
  appendix?: string[] | undefined;
4434
+ } | {
4435
+ type: "html_tailwind";
4436
+ html: string | string[];
4220
4437
  } | undefined;
4221
4438
  audio?: {
4222
4439
  type: "audio";
@@ -4260,9 +4477,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4260
4477
  textSlideParams?: {
4261
4478
  cssStyles: string | string[];
4262
4479
  } | undefined;
4263
- videoParams?: {
4264
- padding?: number | undefined;
4265
- } | undefined;
4266
4480
  omitCaptions?: boolean | undefined;
4267
4481
  description?: string | undefined;
4268
4482
  references?: {
@@ -4280,6 +4494,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4280
4494
  };
4281
4495
  beats: {
4282
4496
  text: string;
4497
+ duration?: number | undefined;
4283
4498
  speechOptions?: {
4284
4499
  speed?: number | undefined;
4285
4500
  instruction?: string | undefined;
@@ -4354,7 +4569,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4354
4569
  type: "textSlide";
4355
4570
  slide: {
4356
4571
  title: string;
4357
- bullets: string[];
4572
+ subtitle?: string | undefined;
4573
+ bullets?: string[] | undefined;
4358
4574
  };
4359
4575
  } | {
4360
4576
  type: "chart";
@@ -4377,6 +4593,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4377
4593
  type: "mermaid";
4378
4594
  title: string;
4379
4595
  appendix?: string[] | undefined;
4596
+ } | {
4597
+ type: "html_tailwind";
4598
+ html: string | string[];
4380
4599
  } | undefined;
4381
4600
  audio?: {
4382
4601
  type: "audio";
@@ -4434,10 +4653,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4434
4653
  instruction?: string | undefined;
4435
4654
  } | undefined;
4436
4655
  }>;
4437
- provider?: "openai" | "nijivoice" | undefined;
4656
+ provider?: "openai" | "nijivoice" | "google" | undefined;
4438
4657
  } | undefined;
4439
- videoParams?: {
4440
- padding?: number | undefined;
4658
+ audioParams?: {
4659
+ introPadding: number;
4660
+ padding: number;
4661
+ closingPadding: number;
4662
+ outroPadding: number;
4441
4663
  } | undefined;
4442
4664
  omitCaptions?: boolean | undefined;
4443
4665
  description?: string | undefined;
@@ -4452,7 +4674,26 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4452
4674
  }>;
4453
4675
  filename: z.ZodString;
4454
4676
  beats: z.ZodArray<z.ZodObject<{
4455
- multiLingualTexts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
4677
+ hash: z.ZodOptional<z.ZodString>;
4678
+ duration: z.ZodOptional<z.ZodNumber>;
4679
+ audioFile: z.ZodOptional<z.ZodString>;
4680
+ imageFile: z.ZodOptional<z.ZodString>;
4681
+ captionFile: z.ZodOptional<z.ZodString>;
4682
+ }, "strict", z.ZodTypeAny, {
4683
+ duration?: number | undefined;
4684
+ hash?: string | undefined;
4685
+ audioFile?: string | undefined;
4686
+ imageFile?: string | undefined;
4687
+ captionFile?: string | undefined;
4688
+ }, {
4689
+ duration?: number | undefined;
4690
+ hash?: string | undefined;
4691
+ audioFile?: string | undefined;
4692
+ imageFile?: string | undefined;
4693
+ captionFile?: string | undefined;
4694
+ }>, "many">;
4695
+ multiLingual: z.ZodArray<z.ZodObject<{
4696
+ multiLingualTexts: z.ZodRecord<z.ZodString, z.ZodObject<{
4456
4697
  text: z.ZodString;
4457
4698
  lang: z.ZodString;
4458
4699
  texts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -4470,49 +4711,31 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4470
4711
  texts?: string[] | undefined;
4471
4712
  ttsTexts?: string[] | undefined;
4472
4713
  duration?: number | undefined;
4473
- }>>>;
4474
- hash: z.ZodOptional<z.ZodString>;
4475
- duration: z.ZodOptional<z.ZodNumber>;
4476
- audioFile: z.ZodOptional<z.ZodString>;
4477
- imageFile: z.ZodOptional<z.ZodString>;
4478
- }, "strict", z.ZodTypeAny, {
4479
- duration?: number | undefined;
4480
- multiLingualTexts?: Record<string, {
4714
+ }>>;
4715
+ }, "strip", z.ZodTypeAny, {
4716
+ multiLingualTexts: Record<string, {
4481
4717
  text: string;
4482
4718
  lang: string;
4483
4719
  texts?: string[] | undefined;
4484
4720
  ttsTexts?: string[] | undefined;
4485
4721
  duration?: number | undefined;
4486
- }> | undefined;
4487
- hash?: string | undefined;
4488
- audioFile?: string | undefined;
4489
- imageFile?: string | undefined;
4722
+ }>;
4490
4723
  }, {
4491
- duration?: number | undefined;
4492
- multiLingualTexts?: Record<string, {
4724
+ multiLingualTexts: Record<string, {
4493
4725
  text: string;
4494
4726
  lang: string;
4495
4727
  texts?: string[] | undefined;
4496
4728
  ttsTexts?: string[] | undefined;
4497
4729
  duration?: number | undefined;
4498
- }> | undefined;
4499
- hash?: string | undefined;
4500
- audioFile?: string | undefined;
4501
- imageFile?: string | undefined;
4730
+ }>;
4502
4731
  }>, "many">;
4503
4732
  }, "strict", z.ZodTypeAny, {
4504
4733
  beats: {
4505
4734
  duration?: number | undefined;
4506
- multiLingualTexts?: Record<string, {
4507
- text: string;
4508
- lang: string;
4509
- texts?: string[] | undefined;
4510
- ttsTexts?: string[] | undefined;
4511
- duration?: number | undefined;
4512
- }> | undefined;
4513
4735
  hash?: string | undefined;
4514
4736
  audioFile?: string | undefined;
4515
4737
  imageFile?: string | undefined;
4738
+ captionFile?: string | undefined;
4516
4739
  }[];
4517
4740
  script: {
4518
4741
  $mulmocast: {
@@ -4524,7 +4747,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4524
4747
  height: number;
4525
4748
  };
4526
4749
  speechParams: {
4527
- provider: "openai" | "nijivoice";
4750
+ provider: "openai" | "nijivoice" | "google";
4528
4751
  speakers: Record<string, {
4529
4752
  voiceId: string;
4530
4753
  displayName?: Record<string, string> | undefined;
@@ -4534,9 +4757,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4534
4757
  } | undefined;
4535
4758
  }>;
4536
4759
  };
4760
+ audioParams: {
4761
+ introPadding: number;
4762
+ padding: number;
4763
+ closingPadding: number;
4764
+ outroPadding: number;
4765
+ };
4537
4766
  beats: {
4538
4767
  text: string;
4539
4768
  speaker: string;
4769
+ duration?: number | undefined;
4540
4770
  speechOptions?: {
4541
4771
  speed?: number | undefined;
4542
4772
  instruction?: string | undefined;
@@ -4611,7 +4841,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4611
4841
  type: "textSlide";
4612
4842
  slide: {
4613
4843
  title: string;
4614
- bullets: string[];
4844
+ subtitle?: string | undefined;
4845
+ bullets?: string[] | undefined;
4615
4846
  };
4616
4847
  } | {
4617
4848
  type: "chart";
@@ -4634,6 +4865,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4634
4865
  type: "mermaid";
4635
4866
  title: string;
4636
4867
  appendix?: string[] | undefined;
4868
+ } | {
4869
+ type: "html_tailwind";
4870
+ html: string | string[];
4637
4871
  } | undefined;
4638
4872
  audio?: {
4639
4873
  type: "audio";
@@ -4677,9 +4911,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4677
4911
  textSlideParams?: {
4678
4912
  cssStyles: string | string[];
4679
4913
  } | undefined;
4680
- videoParams?: {
4681
- padding?: number | undefined;
4682
- } | undefined;
4683
4914
  omitCaptions?: boolean | undefined;
4684
4915
  description?: string | undefined;
4685
4916
  references?: {
@@ -4692,19 +4923,22 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4692
4923
  __test_invalid__?: boolean | undefined;
4693
4924
  };
4694
4925
  filename: string;
4695
- }, {
4696
- beats: {
4697
- duration?: number | undefined;
4698
- multiLingualTexts?: Record<string, {
4926
+ multiLingual: {
4927
+ multiLingualTexts: Record<string, {
4699
4928
  text: string;
4700
4929
  lang: string;
4701
4930
  texts?: string[] | undefined;
4702
4931
  ttsTexts?: string[] | undefined;
4703
4932
  duration?: number | undefined;
4704
- }> | undefined;
4933
+ }>;
4934
+ }[];
4935
+ }, {
4936
+ beats: {
4937
+ duration?: number | undefined;
4705
4938
  hash?: string | undefined;
4706
4939
  audioFile?: string | undefined;
4707
4940
  imageFile?: string | undefined;
4941
+ captionFile?: string | undefined;
4708
4942
  }[];
4709
4943
  script: {
4710
4944
  $mulmocast: {
@@ -4713,6 +4947,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4713
4947
  };
4714
4948
  beats: {
4715
4949
  text: string;
4950
+ duration?: number | undefined;
4716
4951
  speechOptions?: {
4717
4952
  speed?: number | undefined;
4718
4953
  instruction?: string | undefined;
@@ -4787,7 +5022,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4787
5022
  type: "textSlide";
4788
5023
  slide: {
4789
5024
  title: string;
4790
- bullets: string[];
5025
+ subtitle?: string | undefined;
5026
+ bullets?: string[] | undefined;
4791
5027
  };
4792
5028
  } | {
4793
5029
  type: "chart";
@@ -4810,6 +5046,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4810
5046
  type: "mermaid";
4811
5047
  title: string;
4812
5048
  appendix?: string[] | undefined;
5049
+ } | {
5050
+ type: "html_tailwind";
5051
+ html: string | string[];
4813
5052
  } | undefined;
4814
5053
  audio?: {
4815
5054
  type: "audio";
@@ -4867,10 +5106,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4867
5106
  instruction?: string | undefined;
4868
5107
  } | undefined;
4869
5108
  }>;
4870
- provider?: "openai" | "nijivoice" | undefined;
5109
+ provider?: "openai" | "nijivoice" | "google" | undefined;
4871
5110
  } | undefined;
4872
- videoParams?: {
4873
- padding?: number | undefined;
5111
+ audioParams?: {
5112
+ introPadding: number;
5113
+ padding: number;
5114
+ closingPadding: number;
5115
+ outroPadding: number;
4874
5116
  } | undefined;
4875
5117
  omitCaptions?: boolean | undefined;
4876
5118
  description?: string | undefined;
@@ -4884,6 +5126,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4884
5126
  __test_invalid__?: boolean | undefined;
4885
5127
  };
4886
5128
  filename: string;
5129
+ multiLingual: {
5130
+ multiLingualTexts: Record<string, {
5131
+ text: string;
5132
+ lang: string;
5133
+ texts?: string[] | undefined;
5134
+ ttsTexts?: string[] | undefined;
5135
+ duration?: number | undefined;
5136
+ }>;
5137
+ }[];
4887
5138
  }>;
4888
5139
  export declare const mulmoScriptTemplateSchema: z.ZodObject<{
4889
5140
  title: z.ZodString;
@@ -4911,7 +5162,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
4911
5162
  height: number;
4912
5163
  }>>;
4913
5164
  speechParams: z.ZodDefault<z.ZodObject<{
4914
- provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">]>>;
5165
+ provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"nijivoice">, z.ZodLiteral<"google">]>>;
4915
5166
  speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
4916
5167
  displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4917
5168
  voiceId: z.ZodString;
@@ -4941,7 +5192,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
4941
5192
  } | undefined;
4942
5193
  }>>;
4943
5194
  }, "strict", z.ZodTypeAny, {
4944
- provider: "openai" | "nijivoice";
5195
+ provider: "openai" | "nijivoice" | "google";
4945
5196
  speakers: Record<string, {
4946
5197
  voiceId: string;
4947
5198
  displayName?: Record<string, string> | undefined;
@@ -4959,7 +5210,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
4959
5210
  instruction?: string | undefined;
4960
5211
  } | undefined;
4961
5212
  }>;
4962
- provider?: "openai" | "nijivoice" | undefined;
5213
+ provider?: "openai" | "nijivoice" | "google" | undefined;
4963
5214
  }>>;
4964
5215
  imageParams: z.ZodOptional<z.ZodObject<{
4965
5216
  model: z.ZodOptional<z.ZodString>;
@@ -4988,12 +5239,21 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
4988
5239
  }, {
4989
5240
  cssStyles: string | string[];
4990
5241
  }>>;
4991
- videoParams: z.ZodOptional<z.ZodObject<{
4992
- padding: z.ZodOptional<z.ZodNumber>;
5242
+ audioParams: z.ZodDefault<z.ZodObject<{
5243
+ introPadding: z.ZodNumber;
5244
+ padding: z.ZodNumber;
5245
+ closingPadding: z.ZodNumber;
5246
+ outroPadding: z.ZodNumber;
4993
5247
  }, "strict", z.ZodTypeAny, {
4994
- padding?: number | undefined;
5248
+ introPadding: number;
5249
+ padding: number;
5250
+ closingPadding: number;
5251
+ outroPadding: number;
4995
5252
  }, {
4996
- padding?: number | undefined;
5253
+ introPadding: number;
5254
+ padding: number;
5255
+ closingPadding: number;
5256
+ outroPadding: number;
4997
5257
  }>>;
4998
5258
  omitCaptions: z.ZodOptional<z.ZodBoolean>;
4999
5259
  } & {
@@ -5317,25 +5577,30 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5317
5577
  type: z.ZodLiteral<"textSlide">;
5318
5578
  slide: z.ZodObject<{
5319
5579
  title: z.ZodString;
5320
- bullets: z.ZodArray<z.ZodString, "many">;
5580
+ subtitle: z.ZodOptional<z.ZodString>;
5581
+ bullets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5321
5582
  }, "strip", z.ZodTypeAny, {
5322
5583
  title: string;
5323
- bullets: string[];
5584
+ subtitle?: string | undefined;
5585
+ bullets?: string[] | undefined;
5324
5586
  }, {
5325
5587
  title: string;
5326
- bullets: string[];
5588
+ subtitle?: string | undefined;
5589
+ bullets?: string[] | undefined;
5327
5590
  }>;
5328
5591
  }, "strict", z.ZodTypeAny, {
5329
5592
  type: "textSlide";
5330
5593
  slide: {
5331
5594
  title: string;
5332
- bullets: string[];
5595
+ subtitle?: string | undefined;
5596
+ bullets?: string[] | undefined;
5333
5597
  };
5334
5598
  }, {
5335
5599
  type: "textSlide";
5336
5600
  slide: {
5337
5601
  title: string;
5338
- bullets: string[];
5602
+ subtitle?: string | undefined;
5603
+ bullets?: string[] | undefined;
5339
5604
  };
5340
5605
  }>, z.ZodObject<{
5341
5606
  type: z.ZodLiteral<"chart">;
@@ -5424,6 +5689,15 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5424
5689
  type: "mermaid";
5425
5690
  title: string;
5426
5691
  appendix?: string[] | undefined;
5692
+ }>, z.ZodObject<{
5693
+ type: z.ZodLiteral<"html_tailwind">;
5694
+ html: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
5695
+ }, "strict", z.ZodTypeAny, {
5696
+ type: "html_tailwind";
5697
+ html: string | string[];
5698
+ }, {
5699
+ type: "html_tailwind";
5700
+ html: string | string[];
5427
5701
  }>]>>;
5428
5702
  audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
5429
5703
  type: z.ZodLiteral<"audio">;
@@ -5504,6 +5778,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5504
5778
  type: "midi";
5505
5779
  source: string;
5506
5780
  }>]>>;
5781
+ duration: z.ZodOptional<z.ZodNumber>;
5507
5782
  imageParams: z.ZodOptional<z.ZodObject<{
5508
5783
  model: z.ZodOptional<z.ZodString>;
5509
5784
  size: z.ZodOptional<z.ZodString>;
@@ -5541,6 +5816,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5541
5816
  }, "strict", z.ZodTypeAny, {
5542
5817
  text: string;
5543
5818
  speaker: string;
5819
+ duration?: number | undefined;
5544
5820
  speechOptions?: {
5545
5821
  speed?: number | undefined;
5546
5822
  instruction?: string | undefined;
@@ -5615,7 +5891,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5615
5891
  type: "textSlide";
5616
5892
  slide: {
5617
5893
  title: string;
5618
- bullets: string[];
5894
+ subtitle?: string | undefined;
5895
+ bullets?: string[] | undefined;
5619
5896
  };
5620
5897
  } | {
5621
5898
  type: "chart";
@@ -5638,6 +5915,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5638
5915
  type: "mermaid";
5639
5916
  title: string;
5640
5917
  appendix?: string[] | undefined;
5918
+ } | {
5919
+ type: "html_tailwind";
5920
+ html: string | string[];
5641
5921
  } | undefined;
5642
5922
  audio?: {
5643
5923
  type: "audio";
@@ -5670,6 +5950,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5670
5950
  imagePrompt?: string | undefined;
5671
5951
  }, {
5672
5952
  text: string;
5953
+ duration?: number | undefined;
5673
5954
  speechOptions?: {
5674
5955
  speed?: number | undefined;
5675
5956
  instruction?: string | undefined;
@@ -5744,7 +6025,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5744
6025
  type: "textSlide";
5745
6026
  slide: {
5746
6027
  title: string;
5747
- bullets: string[];
6028
+ subtitle?: string | undefined;
6029
+ bullets?: string[] | undefined;
5748
6030
  };
5749
6031
  } | {
5750
6032
  type: "chart";
@@ -5767,6 +6049,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5767
6049
  type: "mermaid";
5768
6050
  title: string;
5769
6051
  appendix?: string[] | undefined;
6052
+ } | {
6053
+ type: "html_tailwind";
6054
+ html: string | string[];
5770
6055
  } | undefined;
5771
6056
  audio?: {
5772
6057
  type: "audio";
@@ -5811,7 +6096,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5811
6096
  height: number;
5812
6097
  };
5813
6098
  speechParams: {
5814
- provider: "openai" | "nijivoice";
6099
+ provider: "openai" | "nijivoice" | "google";
5815
6100
  speakers: Record<string, {
5816
6101
  voiceId: string;
5817
6102
  displayName?: Record<string, string> | undefined;
@@ -5821,9 +6106,16 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5821
6106
  } | undefined;
5822
6107
  }>;
5823
6108
  };
6109
+ audioParams: {
6110
+ introPadding: number;
6111
+ padding: number;
6112
+ closingPadding: number;
6113
+ outroPadding: number;
6114
+ };
5824
6115
  beats: {
5825
6116
  text: string;
5826
6117
  speaker: string;
6118
+ duration?: number | undefined;
5827
6119
  speechOptions?: {
5828
6120
  speed?: number | undefined;
5829
6121
  instruction?: string | undefined;
@@ -5898,7 +6190,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5898
6190
  type: "textSlide";
5899
6191
  slide: {
5900
6192
  title: string;
5901
- bullets: string[];
6193
+ subtitle?: string | undefined;
6194
+ bullets?: string[] | undefined;
5902
6195
  };
5903
6196
  } | {
5904
6197
  type: "chart";
@@ -5921,6 +6214,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5921
6214
  type: "mermaid";
5922
6215
  title: string;
5923
6216
  appendix?: string[] | undefined;
6217
+ } | {
6218
+ type: "html_tailwind";
6219
+ html: string | string[];
5924
6220
  } | undefined;
5925
6221
  audio?: {
5926
6222
  type: "audio";
@@ -5964,9 +6260,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5964
6260
  textSlideParams?: {
5965
6261
  cssStyles: string | string[];
5966
6262
  } | undefined;
5967
- videoParams?: {
5968
- padding?: number | undefined;
5969
- } | undefined;
5970
6263
  omitCaptions?: boolean | undefined;
5971
6264
  description?: string | undefined;
5972
6265
  references?: {
@@ -5984,6 +6277,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
5984
6277
  };
5985
6278
  beats: {
5986
6279
  text: string;
6280
+ duration?: number | undefined;
5987
6281
  speechOptions?: {
5988
6282
  speed?: number | undefined;
5989
6283
  instruction?: string | undefined;
@@ -6058,7 +6352,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6058
6352
  type: "textSlide";
6059
6353
  slide: {
6060
6354
  title: string;
6061
- bullets: string[];
6355
+ subtitle?: string | undefined;
6356
+ bullets?: string[] | undefined;
6062
6357
  };
6063
6358
  } | {
6064
6359
  type: "chart";
@@ -6081,6 +6376,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6081
6376
  type: "mermaid";
6082
6377
  title: string;
6083
6378
  appendix?: string[] | undefined;
6379
+ } | {
6380
+ type: "html_tailwind";
6381
+ html: string | string[];
6084
6382
  } | undefined;
6085
6383
  audio?: {
6086
6384
  type: "audio";
@@ -6138,10 +6436,13 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6138
6436
  instruction?: string | undefined;
6139
6437
  } | undefined;
6140
6438
  }>;
6141
- provider?: "openai" | "nijivoice" | undefined;
6439
+ provider?: "openai" | "nijivoice" | "google" | undefined;
6142
6440
  } | undefined;
6143
- videoParams?: {
6144
- padding?: number | undefined;
6441
+ audioParams?: {
6442
+ introPadding: number;
6443
+ padding: number;
6444
+ closingPadding: number;
6445
+ outroPadding: number;
6145
6446
  } | undefined;
6146
6447
  omitCaptions?: boolean | undefined;
6147
6448
  description?: string | undefined;
@@ -6168,7 +6469,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6168
6469
  height: number;
6169
6470
  };
6170
6471
  speechParams: {
6171
- provider: "openai" | "nijivoice";
6472
+ provider: "openai" | "nijivoice" | "google";
6172
6473
  speakers: Record<string, {
6173
6474
  voiceId: string;
6174
6475
  displayName?: Record<string, string> | undefined;
@@ -6178,9 +6479,16 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6178
6479
  } | undefined;
6179
6480
  }>;
6180
6481
  };
6482
+ audioParams: {
6483
+ introPadding: number;
6484
+ padding: number;
6485
+ closingPadding: number;
6486
+ outroPadding: number;
6487
+ };
6181
6488
  beats: {
6182
6489
  text: string;
6183
6490
  speaker: string;
6491
+ duration?: number | undefined;
6184
6492
  speechOptions?: {
6185
6493
  speed?: number | undefined;
6186
6494
  instruction?: string | undefined;
@@ -6255,7 +6563,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6255
6563
  type: "textSlide";
6256
6564
  slide: {
6257
6565
  title: string;
6258
- bullets: string[];
6566
+ subtitle?: string | undefined;
6567
+ bullets?: string[] | undefined;
6259
6568
  };
6260
6569
  } | {
6261
6570
  type: "chart";
@@ -6278,6 +6587,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6278
6587
  type: "mermaid";
6279
6588
  title: string;
6280
6589
  appendix?: string[] | undefined;
6590
+ } | {
6591
+ type: "html_tailwind";
6592
+ html: string | string[];
6281
6593
  } | undefined;
6282
6594
  audio?: {
6283
6595
  type: "audio";
@@ -6321,9 +6633,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6321
6633
  textSlideParams?: {
6322
6634
  cssStyles: string | string[];
6323
6635
  } | undefined;
6324
- videoParams?: {
6325
- padding?: number | undefined;
6326
- } | undefined;
6327
6636
  omitCaptions?: boolean | undefined;
6328
6637
  description?: string | undefined;
6329
6638
  references?: {
@@ -6346,6 +6655,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6346
6655
  };
6347
6656
  beats: {
6348
6657
  text: string;
6658
+ duration?: number | undefined;
6349
6659
  speechOptions?: {
6350
6660
  speed?: number | undefined;
6351
6661
  instruction?: string | undefined;
@@ -6420,7 +6730,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6420
6730
  type: "textSlide";
6421
6731
  slide: {
6422
6732
  title: string;
6423
- bullets: string[];
6733
+ subtitle?: string | undefined;
6734
+ bullets?: string[] | undefined;
6424
6735
  };
6425
6736
  } | {
6426
6737
  type: "chart";
@@ -6443,6 +6754,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6443
6754
  type: "mermaid";
6444
6755
  title: string;
6445
6756
  appendix?: string[] | undefined;
6757
+ } | {
6758
+ type: "html_tailwind";
6759
+ html: string | string[];
6446
6760
  } | undefined;
6447
6761
  audio?: {
6448
6762
  type: "audio";
@@ -6500,10 +6814,13 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6500
6814
  instruction?: string | undefined;
6501
6815
  } | undefined;
6502
6816
  }>;
6503
- provider?: "openai" | "nijivoice" | undefined;
6817
+ provider?: "openai" | "nijivoice" | "google" | undefined;
6504
6818
  } | undefined;
6505
- videoParams?: {
6506
- padding?: number | undefined;
6819
+ audioParams?: {
6820
+ introPadding: number;
6821
+ padding: number;
6822
+ closingPadding: number;
6823
+ outroPadding: number;
6507
6824
  } | undefined;
6508
6825
  omitCaptions?: boolean | undefined;
6509
6826
  description?: string | undefined;