mulmocast 2.1.14 → 2.1.16

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 (52) hide show
  1. package/assets/images/mulmocast_credit-portrait.png +0 -0
  2. package/lib/actions/audio.js +1 -1
  3. package/lib/actions/bundle.d.ts +4 -1
  4. package/lib/actions/bundle.js +37 -21
  5. package/lib/actions/translate.js +1 -1
  6. package/lib/agents/image_genai_agent.js +2 -2
  7. package/lib/agents/image_openai_agent.js +1 -1
  8. package/lib/agents/image_replicate_agent.js +1 -1
  9. package/lib/agents/lipsync_replicate_agent.js +1 -1
  10. package/lib/agents/movie_genai_agent.js +2 -2
  11. package/lib/agents/movie_replicate_agent.js +1 -1
  12. package/lib/agents/sound_effect_replicate_agent.js +1 -1
  13. package/lib/agents/tts_elevenlabs_agent.js +1 -1
  14. package/lib/agents/tts_gemini_agent.js +1 -1
  15. package/lib/agents/tts_kotodama_agent.js +1 -1
  16. package/lib/agents/tts_openai_agent.js +5 -2
  17. package/lib/cli/commands/bundle/handler.js +1 -1
  18. package/lib/cli/commands/movie/builder.js +1 -1
  19. package/lib/cli/commands/pdf/builder.js +1 -1
  20. package/lib/cli/commands/tool/scripting/builder.js +1 -1
  21. package/lib/cli/commands/tool/scripting/handler.d.ts +1 -1
  22. package/lib/cli/commands/tool/scripting/handler.js +1 -1
  23. package/lib/cli/commands/tool/story_to_script/builder.js +2 -2
  24. package/lib/cli/commands/tool/story_to_script/handler.d.ts +1 -1
  25. package/lib/cli/commands/tool/story_to_script/handler.js +1 -1
  26. package/lib/cli/common.js +1 -1
  27. package/lib/cli/helpers.js +1 -1
  28. package/lib/data/scriptTemplates.js +2 -2
  29. package/lib/data/templateDataSet.js +1 -1
  30. package/lib/index.common.d.ts +2 -2
  31. package/lib/index.common.js +2 -2
  32. package/lib/mcp/server.js +1 -1
  33. package/lib/methods/mulmo_presentation_style.d.ts +6 -6
  34. package/lib/methods/mulmo_presentation_style.js +1 -1
  35. package/lib/methods/mulmo_studio_context.d.ts +1 -1
  36. package/lib/tools/story_to_script.d.ts +1 -1
  37. package/lib/tools/story_to_script.js +1 -1
  38. package/lib/types/agent.d.ts +1 -0
  39. package/lib/types/const.d.ts +15 -0
  40. package/lib/types/const.js +15 -0
  41. package/lib/types/provider2agent.d.ts +191 -0
  42. package/lib/types/provider2agent.js +326 -0
  43. package/lib/types/schema.js +2 -2
  44. package/lib/types/type.d.ts +2 -2
  45. package/lib/utils/context.js +5 -3
  46. package/lib/utils/utils.d.ts +1 -1
  47. package/lib/utils/utils.js +1 -1
  48. package/package.json +5 -5
  49. package/scripts/templates/html.json +1 -1
  50. package/scripts/templates/presentation.json +1 -1
  51. package/scripts/test/test_en_portrait.json +31 -0
  52. package/scripts/test/test_en_portrait.json~ +31 -0
@@ -0,0 +1,31 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1",
4
+ "credit": "closing"
5
+ },
6
+ "canvasSize": { "width": 1024, "height": 1536 },
7
+ "title": "THE ROAD TO SUPERINTELLIGENCE: EXPLORING AI-2027",
8
+ "speechParams": {
9
+ "speakers": {
10
+ "Host": {
11
+ "voiceId": "shimmer",
12
+ "displayName": {
13
+ "en": "Host"
14
+ }
15
+ }
16
+ }
17
+ },
18
+ "lang": "en",
19
+ "beats": [
20
+ {
21
+ "id": "beat1",
22
+ "speaker": "Host",
23
+ "text": "Welcome to Mulmocast Tech Insights."
24
+ },
25
+ {
26
+ "id": "beat2",
27
+ "speaker": "Host",
28
+ "text": "AI-2028 is a project from the AI Futures Project."
29
+ }
30
+ ]
31
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1",
4
+ "credit": "closing"
5
+ },
6
+ "canvasSize": { "width": 1024 "height": 1536, },
7
+ "title": "THE ROAD TO SUPERINTELLIGENCE: EXPLORING AI-2027",
8
+ "speechParams": {
9
+ "speakers": {
10
+ "Host": {
11
+ "voiceId": "shimmer",
12
+ "displayName": {
13
+ "en": "Host"
14
+ }
15
+ }
16
+ }
17
+ },
18
+ "lang": "en",
19
+ "beats": [
20
+ {
21
+ "id": "beat1",
22
+ "speaker": "Host",
23
+ "text": "Welcome to Mulmocast Tech Insights."
24
+ },
25
+ {
26
+ "id": "beat2",
27
+ "speaker": "Host",
28
+ "text": "AI-2028 is a project from the AI Futures Project."
29
+ }
30
+ ]
31
+ }