mulmocast 0.0.23 → 0.0.25
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.
- package/README.md +8 -0
- package/assets/html/caption.html +2 -0
- package/lib/actions/audio.d.ts +2 -2
- package/lib/actions/audio.js +8 -7
- package/lib/actions/captions.js +6 -4
- package/lib/actions/images.d.ts +6 -6
- package/lib/actions/images.js +29 -32
- package/lib/actions/movie.js +3 -3
- package/lib/agents/image_openai_agent.d.ts +2 -0
- package/lib/agents/image_openai_agent.js +3 -2
- package/lib/agents/tts_elevenlabs_agent.js +2 -2
- package/lib/agents/tts_nijivoice_agent.js +3 -2
- package/lib/agents/tts_openai_agent.js +3 -2
- package/lib/cli/commands/tool/scripting/builder.d.ts +1 -1
- package/lib/cli/commands/tool/story_to_script/builder.d.ts +1 -1
- package/lib/methods/mulmo_presentation_style.js +5 -8
- package/lib/types/schema.d.ts +55 -385
- package/lib/types/schema.js +1 -7
- package/lib/types/type.d.ts +1 -0
- package/lib/utils/preprocess.d.ts +2 -14
- package/lib/utils/prompt.d.ts +2 -1
- package/lib/utils/prompt.js +10 -0
- package/lib/utils/utils.d.ts +3 -1
- package/lib/utils/utils.js +48 -6
- package/package.json +11 -11
package/lib/types/schema.d.ts
CHANGED
|
@@ -260,31 +260,13 @@ export declare const mulmoTextSlideMediaSchema: z.ZodObject<{
|
|
|
260
260
|
}>;
|
|
261
261
|
export declare const mulmoCaptionParamsSchema: z.ZodObject<{
|
|
262
262
|
lang: z.ZodOptional<z.ZodString>;
|
|
263
|
-
|
|
264
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
265
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
266
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
267
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
268
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
269
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
263
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
270
264
|
}, "strict", z.ZodTypeAny, {
|
|
271
|
-
|
|
272
|
-
backgroundColor: string;
|
|
273
|
-
fontSize: number;
|
|
274
|
-
fontFamily: string;
|
|
275
|
-
fontWeight: string;
|
|
276
|
-
textAlign: string;
|
|
277
|
-
textDecoration: string;
|
|
265
|
+
styles: string[];
|
|
278
266
|
lang?: string | undefined;
|
|
279
267
|
}, {
|
|
280
268
|
lang?: string | undefined;
|
|
281
|
-
|
|
282
|
-
backgroundColor?: string | undefined;
|
|
283
|
-
fontSize?: number | undefined;
|
|
284
|
-
fontFamily?: string | undefined;
|
|
285
|
-
fontWeight?: string | undefined;
|
|
286
|
-
textAlign?: string | undefined;
|
|
287
|
-
textDecoration?: string | undefined;
|
|
269
|
+
styles?: string[] | undefined;
|
|
288
270
|
}>;
|
|
289
271
|
export declare const mulmoChartMediaSchema: z.ZodObject<{
|
|
290
272
|
type: z.ZodLiteral<"chart">;
|
|
@@ -1904,31 +1886,13 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1904
1886
|
}>>;
|
|
1905
1887
|
captionParams: z.ZodOptional<z.ZodObject<{
|
|
1906
1888
|
lang: z.ZodOptional<z.ZodString>;
|
|
1907
|
-
|
|
1908
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
1909
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
1910
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
1911
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
1912
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
1913
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
1889
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1914
1890
|
}, "strict", z.ZodTypeAny, {
|
|
1915
|
-
|
|
1916
|
-
backgroundColor: string;
|
|
1917
|
-
fontSize: number;
|
|
1918
|
-
fontFamily: string;
|
|
1919
|
-
fontWeight: string;
|
|
1920
|
-
textAlign: string;
|
|
1921
|
-
textDecoration: string;
|
|
1891
|
+
styles: string[];
|
|
1922
1892
|
lang?: string | undefined;
|
|
1923
1893
|
}, {
|
|
1924
1894
|
lang?: string | undefined;
|
|
1925
|
-
|
|
1926
|
-
backgroundColor?: string | undefined;
|
|
1927
|
-
fontSize?: number | undefined;
|
|
1928
|
-
fontFamily?: string | undefined;
|
|
1929
|
-
fontWeight?: string | undefined;
|
|
1930
|
-
textAlign?: string | undefined;
|
|
1931
|
-
textDecoration?: string | undefined;
|
|
1895
|
+
styles?: string[] | undefined;
|
|
1932
1896
|
}>>;
|
|
1933
1897
|
imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1934
1898
|
imagePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -2116,13 +2080,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2116
2080
|
cssStyles: string | string[];
|
|
2117
2081
|
} | undefined;
|
|
2118
2082
|
captionParams?: {
|
|
2119
|
-
|
|
2120
|
-
backgroundColor: string;
|
|
2121
|
-
fontSize: number;
|
|
2122
|
-
fontFamily: string;
|
|
2123
|
-
fontWeight: string;
|
|
2124
|
-
textAlign: string;
|
|
2125
|
-
textDecoration: string;
|
|
2083
|
+
styles: string[];
|
|
2126
2084
|
lang?: string | undefined;
|
|
2127
2085
|
} | undefined;
|
|
2128
2086
|
imageNames?: string[] | undefined;
|
|
@@ -2302,13 +2260,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2302
2260
|
} | undefined;
|
|
2303
2261
|
captionParams?: {
|
|
2304
2262
|
lang?: string | undefined;
|
|
2305
|
-
|
|
2306
|
-
backgroundColor?: string | undefined;
|
|
2307
|
-
fontSize?: number | undefined;
|
|
2308
|
-
fontFamily?: string | undefined;
|
|
2309
|
-
fontWeight?: string | undefined;
|
|
2310
|
-
textAlign?: string | undefined;
|
|
2311
|
-
textDecoration?: string | undefined;
|
|
2263
|
+
styles?: string[] | undefined;
|
|
2312
2264
|
} | undefined;
|
|
2313
2265
|
imageNames?: string[] | undefined;
|
|
2314
2266
|
imagePrompt?: string | undefined;
|
|
@@ -2707,31 +2659,13 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2707
2659
|
}>>;
|
|
2708
2660
|
captionParams: z.ZodOptional<z.ZodObject<{
|
|
2709
2661
|
lang: z.ZodOptional<z.ZodString>;
|
|
2710
|
-
|
|
2711
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
2712
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
2713
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
2714
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
2715
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
2716
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
2662
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2717
2663
|
}, "strict", z.ZodTypeAny, {
|
|
2718
|
-
|
|
2719
|
-
backgroundColor: string;
|
|
2720
|
-
fontSize: number;
|
|
2721
|
-
fontFamily: string;
|
|
2722
|
-
fontWeight: string;
|
|
2723
|
-
textAlign: string;
|
|
2724
|
-
textDecoration: string;
|
|
2664
|
+
styles: string[];
|
|
2725
2665
|
lang?: string | undefined;
|
|
2726
2666
|
}, {
|
|
2727
2667
|
lang?: string | undefined;
|
|
2728
|
-
|
|
2729
|
-
backgroundColor?: string | undefined;
|
|
2730
|
-
fontSize?: number | undefined;
|
|
2731
|
-
fontFamily?: string | undefined;
|
|
2732
|
-
fontWeight?: string | undefined;
|
|
2733
|
-
textAlign?: string | undefined;
|
|
2734
|
-
textDecoration?: string | undefined;
|
|
2668
|
+
styles?: string[] | undefined;
|
|
2735
2669
|
}>>;
|
|
2736
2670
|
audioParams: z.ZodDefault<z.ZodObject<{
|
|
2737
2671
|
padding: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2901,13 +2835,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2901
2835
|
cssStyles: string | string[];
|
|
2902
2836
|
} | undefined;
|
|
2903
2837
|
captionParams?: {
|
|
2904
|
-
|
|
2905
|
-
backgroundColor: string;
|
|
2906
|
-
fontSize: number;
|
|
2907
|
-
fontFamily: string;
|
|
2908
|
-
fontWeight: string;
|
|
2909
|
-
textAlign: string;
|
|
2910
|
-
textDecoration: string;
|
|
2838
|
+
styles: string[];
|
|
2911
2839
|
lang?: string | undefined;
|
|
2912
2840
|
} | undefined;
|
|
2913
2841
|
}, {
|
|
@@ -2978,13 +2906,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2978
2906
|
} | undefined;
|
|
2979
2907
|
captionParams?: {
|
|
2980
2908
|
lang?: string | undefined;
|
|
2981
|
-
|
|
2982
|
-
backgroundColor?: string | undefined;
|
|
2983
|
-
fontSize?: number | undefined;
|
|
2984
|
-
fontFamily?: string | undefined;
|
|
2985
|
-
fontWeight?: string | undefined;
|
|
2986
|
-
textAlign?: string | undefined;
|
|
2987
|
-
textDecoration?: string | undefined;
|
|
2909
|
+
styles?: string[] | undefined;
|
|
2988
2910
|
} | undefined;
|
|
2989
2911
|
canvasSize?: {
|
|
2990
2912
|
width: number;
|
|
@@ -3276,31 +3198,13 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3276
3198
|
}>>;
|
|
3277
3199
|
captionParams: z.ZodOptional<z.ZodObject<{
|
|
3278
3200
|
lang: z.ZodOptional<z.ZodString>;
|
|
3279
|
-
|
|
3280
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
3281
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
3282
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
3283
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
3284
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
3285
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
3201
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3286
3202
|
}, "strict", z.ZodTypeAny, {
|
|
3287
|
-
|
|
3288
|
-
backgroundColor: string;
|
|
3289
|
-
fontSize: number;
|
|
3290
|
-
fontFamily: string;
|
|
3291
|
-
fontWeight: string;
|
|
3292
|
-
textAlign: string;
|
|
3293
|
-
textDecoration: string;
|
|
3203
|
+
styles: string[];
|
|
3294
3204
|
lang?: string | undefined;
|
|
3295
3205
|
}, {
|
|
3296
3206
|
lang?: string | undefined;
|
|
3297
|
-
|
|
3298
|
-
backgroundColor?: string | undefined;
|
|
3299
|
-
fontSize?: number | undefined;
|
|
3300
|
-
fontFamily?: string | undefined;
|
|
3301
|
-
fontWeight?: string | undefined;
|
|
3302
|
-
textAlign?: string | undefined;
|
|
3303
|
-
textDecoration?: string | undefined;
|
|
3207
|
+
styles?: string[] | undefined;
|
|
3304
3208
|
}>>;
|
|
3305
3209
|
audioParams: z.ZodDefault<z.ZodObject<{
|
|
3306
3210
|
padding: z.ZodDefault<z.ZodNumber>;
|
|
@@ -4090,31 +3994,13 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4090
3994
|
}>>;
|
|
4091
3995
|
captionParams: z.ZodOptional<z.ZodObject<{
|
|
4092
3996
|
lang: z.ZodOptional<z.ZodString>;
|
|
4093
|
-
|
|
4094
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
4095
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
4096
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
4097
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
4098
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
4099
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
3997
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
4100
3998
|
}, "strict", z.ZodTypeAny, {
|
|
4101
|
-
|
|
4102
|
-
backgroundColor: string;
|
|
4103
|
-
fontSize: number;
|
|
4104
|
-
fontFamily: string;
|
|
4105
|
-
fontWeight: string;
|
|
4106
|
-
textAlign: string;
|
|
4107
|
-
textDecoration: string;
|
|
3999
|
+
styles: string[];
|
|
4108
4000
|
lang?: string | undefined;
|
|
4109
4001
|
}, {
|
|
4110
4002
|
lang?: string | undefined;
|
|
4111
|
-
|
|
4112
|
-
backgroundColor?: string | undefined;
|
|
4113
|
-
fontSize?: number | undefined;
|
|
4114
|
-
fontFamily?: string | undefined;
|
|
4115
|
-
fontWeight?: string | undefined;
|
|
4116
|
-
textAlign?: string | undefined;
|
|
4117
|
-
textDecoration?: string | undefined;
|
|
4003
|
+
styles?: string[] | undefined;
|
|
4118
4004
|
}>>;
|
|
4119
4005
|
imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4120
4006
|
imagePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -4302,13 +4188,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4302
4188
|
cssStyles: string | string[];
|
|
4303
4189
|
} | undefined;
|
|
4304
4190
|
captionParams?: {
|
|
4305
|
-
|
|
4306
|
-
backgroundColor: string;
|
|
4307
|
-
fontSize: number;
|
|
4308
|
-
fontFamily: string;
|
|
4309
|
-
fontWeight: string;
|
|
4310
|
-
textAlign: string;
|
|
4311
|
-
textDecoration: string;
|
|
4191
|
+
styles: string[];
|
|
4312
4192
|
lang?: string | undefined;
|
|
4313
4193
|
} | undefined;
|
|
4314
4194
|
imageNames?: string[] | undefined;
|
|
@@ -4488,13 +4368,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4488
4368
|
} | undefined;
|
|
4489
4369
|
captionParams?: {
|
|
4490
4370
|
lang?: string | undefined;
|
|
4491
|
-
|
|
4492
|
-
backgroundColor?: string | undefined;
|
|
4493
|
-
fontSize?: number | undefined;
|
|
4494
|
-
fontFamily?: string | undefined;
|
|
4495
|
-
fontWeight?: string | undefined;
|
|
4496
|
-
textAlign?: string | undefined;
|
|
4497
|
-
textDecoration?: string | undefined;
|
|
4371
|
+
styles?: string[] | undefined;
|
|
4498
4372
|
} | undefined;
|
|
4499
4373
|
imageNames?: string[] | undefined;
|
|
4500
4374
|
imagePrompt?: string | undefined;
|
|
@@ -4717,13 +4591,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4717
4591
|
cssStyles: string | string[];
|
|
4718
4592
|
} | undefined;
|
|
4719
4593
|
captionParams?: {
|
|
4720
|
-
|
|
4721
|
-
backgroundColor: string;
|
|
4722
|
-
fontSize: number;
|
|
4723
|
-
fontFamily: string;
|
|
4724
|
-
fontWeight: string;
|
|
4725
|
-
textAlign: string;
|
|
4726
|
-
textDecoration: string;
|
|
4594
|
+
styles: string[];
|
|
4727
4595
|
lang?: string | undefined;
|
|
4728
4596
|
} | undefined;
|
|
4729
4597
|
imageNames?: string[] | undefined;
|
|
@@ -4780,13 +4648,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4780
4648
|
cssStyles: string | string[];
|
|
4781
4649
|
} | undefined;
|
|
4782
4650
|
captionParams?: {
|
|
4783
|
-
|
|
4784
|
-
backgroundColor: string;
|
|
4785
|
-
fontSize: number;
|
|
4786
|
-
fontFamily: string;
|
|
4787
|
-
fontWeight: string;
|
|
4788
|
-
textAlign: string;
|
|
4789
|
-
textDecoration: string;
|
|
4651
|
+
styles: string[];
|
|
4790
4652
|
lang?: string | undefined;
|
|
4791
4653
|
} | undefined;
|
|
4792
4654
|
references?: {
|
|
@@ -4970,13 +4832,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4970
4832
|
} | undefined;
|
|
4971
4833
|
captionParams?: {
|
|
4972
4834
|
lang?: string | undefined;
|
|
4973
|
-
|
|
4974
|
-
backgroundColor?: string | undefined;
|
|
4975
|
-
fontSize?: number | undefined;
|
|
4976
|
-
fontFamily?: string | undefined;
|
|
4977
|
-
fontWeight?: string | undefined;
|
|
4978
|
-
textAlign?: string | undefined;
|
|
4979
|
-
textDecoration?: string | undefined;
|
|
4835
|
+
styles?: string[] | undefined;
|
|
4980
4836
|
} | undefined;
|
|
4981
4837
|
imageNames?: string[] | undefined;
|
|
4982
4838
|
imagePrompt?: string | undefined;
|
|
@@ -5054,13 +4910,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5054
4910
|
} | undefined;
|
|
5055
4911
|
captionParams?: {
|
|
5056
4912
|
lang?: string | undefined;
|
|
5057
|
-
|
|
5058
|
-
backgroundColor?: string | undefined;
|
|
5059
|
-
fontSize?: number | undefined;
|
|
5060
|
-
fontFamily?: string | undefined;
|
|
5061
|
-
fontWeight?: string | undefined;
|
|
5062
|
-
textAlign?: string | undefined;
|
|
5063
|
-
textDecoration?: string | undefined;
|
|
4913
|
+
styles?: string[] | undefined;
|
|
5064
4914
|
} | undefined;
|
|
5065
4915
|
canvasSize?: {
|
|
5066
4916
|
width: number;
|
|
@@ -5516,31 +5366,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5516
5366
|
}>>;
|
|
5517
5367
|
captionParams: z.ZodOptional<z.ZodObject<{
|
|
5518
5368
|
lang: z.ZodOptional<z.ZodString>;
|
|
5519
|
-
|
|
5520
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
5521
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
5522
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
5523
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
5524
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
5525
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
5369
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
5526
5370
|
}, "strict", z.ZodTypeAny, {
|
|
5527
|
-
|
|
5528
|
-
backgroundColor: string;
|
|
5529
|
-
fontSize: number;
|
|
5530
|
-
fontFamily: string;
|
|
5531
|
-
fontWeight: string;
|
|
5532
|
-
textAlign: string;
|
|
5533
|
-
textDecoration: string;
|
|
5371
|
+
styles: string[];
|
|
5534
5372
|
lang?: string | undefined;
|
|
5535
5373
|
}, {
|
|
5536
5374
|
lang?: string | undefined;
|
|
5537
|
-
|
|
5538
|
-
backgroundColor?: string | undefined;
|
|
5539
|
-
fontSize?: number | undefined;
|
|
5540
|
-
fontFamily?: string | undefined;
|
|
5541
|
-
fontWeight?: string | undefined;
|
|
5542
|
-
textAlign?: string | undefined;
|
|
5543
|
-
textDecoration?: string | undefined;
|
|
5375
|
+
styles?: string[] | undefined;
|
|
5544
5376
|
}>>;
|
|
5545
5377
|
audioParams: z.ZodDefault<z.ZodObject<{
|
|
5546
5378
|
padding: z.ZodDefault<z.ZodNumber>;
|
|
@@ -6330,31 +6162,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6330
6162
|
}>>;
|
|
6331
6163
|
captionParams: z.ZodOptional<z.ZodObject<{
|
|
6332
6164
|
lang: z.ZodOptional<z.ZodString>;
|
|
6333
|
-
|
|
6334
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
6335
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
6336
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
6337
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
6338
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
6339
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
6165
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
6340
6166
|
}, "strict", z.ZodTypeAny, {
|
|
6341
|
-
|
|
6342
|
-
backgroundColor: string;
|
|
6343
|
-
fontSize: number;
|
|
6344
|
-
fontFamily: string;
|
|
6345
|
-
fontWeight: string;
|
|
6346
|
-
textAlign: string;
|
|
6347
|
-
textDecoration: string;
|
|
6167
|
+
styles: string[];
|
|
6348
6168
|
lang?: string | undefined;
|
|
6349
6169
|
}, {
|
|
6350
6170
|
lang?: string | undefined;
|
|
6351
|
-
|
|
6352
|
-
backgroundColor?: string | undefined;
|
|
6353
|
-
fontSize?: number | undefined;
|
|
6354
|
-
fontFamily?: string | undefined;
|
|
6355
|
-
fontWeight?: string | undefined;
|
|
6356
|
-
textAlign?: string | undefined;
|
|
6357
|
-
textDecoration?: string | undefined;
|
|
6171
|
+
styles?: string[] | undefined;
|
|
6358
6172
|
}>>;
|
|
6359
6173
|
imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6360
6174
|
imagePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -6542,13 +6356,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6542
6356
|
cssStyles: string | string[];
|
|
6543
6357
|
} | undefined;
|
|
6544
6358
|
captionParams?: {
|
|
6545
|
-
|
|
6546
|
-
backgroundColor: string;
|
|
6547
|
-
fontSize: number;
|
|
6548
|
-
fontFamily: string;
|
|
6549
|
-
fontWeight: string;
|
|
6550
|
-
textAlign: string;
|
|
6551
|
-
textDecoration: string;
|
|
6359
|
+
styles: string[];
|
|
6552
6360
|
lang?: string | undefined;
|
|
6553
6361
|
} | undefined;
|
|
6554
6362
|
imageNames?: string[] | undefined;
|
|
@@ -6728,13 +6536,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6728
6536
|
} | undefined;
|
|
6729
6537
|
captionParams?: {
|
|
6730
6538
|
lang?: string | undefined;
|
|
6731
|
-
|
|
6732
|
-
backgroundColor?: string | undefined;
|
|
6733
|
-
fontSize?: number | undefined;
|
|
6734
|
-
fontFamily?: string | undefined;
|
|
6735
|
-
fontWeight?: string | undefined;
|
|
6736
|
-
textAlign?: string | undefined;
|
|
6737
|
-
textDecoration?: string | undefined;
|
|
6539
|
+
styles?: string[] | undefined;
|
|
6738
6540
|
} | undefined;
|
|
6739
6541
|
imageNames?: string[] | undefined;
|
|
6740
6542
|
imagePrompt?: string | undefined;
|
|
@@ -6957,13 +6759,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6957
6759
|
cssStyles: string | string[];
|
|
6958
6760
|
} | undefined;
|
|
6959
6761
|
captionParams?: {
|
|
6960
|
-
|
|
6961
|
-
backgroundColor: string;
|
|
6962
|
-
fontSize: number;
|
|
6963
|
-
fontFamily: string;
|
|
6964
|
-
fontWeight: string;
|
|
6965
|
-
textAlign: string;
|
|
6966
|
-
textDecoration: string;
|
|
6762
|
+
styles: string[];
|
|
6967
6763
|
lang?: string | undefined;
|
|
6968
6764
|
} | undefined;
|
|
6969
6765
|
imageNames?: string[] | undefined;
|
|
@@ -7020,13 +6816,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7020
6816
|
cssStyles: string | string[];
|
|
7021
6817
|
} | undefined;
|
|
7022
6818
|
captionParams?: {
|
|
7023
|
-
|
|
7024
|
-
backgroundColor: string;
|
|
7025
|
-
fontSize: number;
|
|
7026
|
-
fontFamily: string;
|
|
7027
|
-
fontWeight: string;
|
|
7028
|
-
textAlign: string;
|
|
7029
|
-
textDecoration: string;
|
|
6819
|
+
styles: string[];
|
|
7030
6820
|
lang?: string | undefined;
|
|
7031
6821
|
} | undefined;
|
|
7032
6822
|
references?: {
|
|
@@ -7210,13 +7000,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7210
7000
|
} | undefined;
|
|
7211
7001
|
captionParams?: {
|
|
7212
7002
|
lang?: string | undefined;
|
|
7213
|
-
|
|
7214
|
-
backgroundColor?: string | undefined;
|
|
7215
|
-
fontSize?: number | undefined;
|
|
7216
|
-
fontFamily?: string | undefined;
|
|
7217
|
-
fontWeight?: string | undefined;
|
|
7218
|
-
textAlign?: string | undefined;
|
|
7219
|
-
textDecoration?: string | undefined;
|
|
7003
|
+
styles?: string[] | undefined;
|
|
7220
7004
|
} | undefined;
|
|
7221
7005
|
imageNames?: string[] | undefined;
|
|
7222
7006
|
imagePrompt?: string | undefined;
|
|
@@ -7294,13 +7078,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7294
7078
|
} | undefined;
|
|
7295
7079
|
captionParams?: {
|
|
7296
7080
|
lang?: string | undefined;
|
|
7297
|
-
|
|
7298
|
-
backgroundColor?: string | undefined;
|
|
7299
|
-
fontSize?: number | undefined;
|
|
7300
|
-
fontFamily?: string | undefined;
|
|
7301
|
-
fontWeight?: string | undefined;
|
|
7302
|
-
textAlign?: string | undefined;
|
|
7303
|
-
textDecoration?: string | undefined;
|
|
7081
|
+
styles?: string[] | undefined;
|
|
7304
7082
|
} | undefined;
|
|
7305
7083
|
canvasSize?: {
|
|
7306
7084
|
width: number;
|
|
@@ -7568,13 +7346,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7568
7346
|
cssStyles: string | string[];
|
|
7569
7347
|
} | undefined;
|
|
7570
7348
|
captionParams?: {
|
|
7571
|
-
|
|
7572
|
-
backgroundColor: string;
|
|
7573
|
-
fontSize: number;
|
|
7574
|
-
fontFamily: string;
|
|
7575
|
-
fontWeight: string;
|
|
7576
|
-
textAlign: string;
|
|
7577
|
-
textDecoration: string;
|
|
7349
|
+
styles: string[];
|
|
7578
7350
|
lang?: string | undefined;
|
|
7579
7351
|
} | undefined;
|
|
7580
7352
|
imageNames?: string[] | undefined;
|
|
@@ -7631,13 +7403,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7631
7403
|
cssStyles: string | string[];
|
|
7632
7404
|
} | undefined;
|
|
7633
7405
|
captionParams?: {
|
|
7634
|
-
|
|
7635
|
-
backgroundColor: string;
|
|
7636
|
-
fontSize: number;
|
|
7637
|
-
fontFamily: string;
|
|
7638
|
-
fontWeight: string;
|
|
7639
|
-
textAlign: string;
|
|
7640
|
-
textDecoration: string;
|
|
7406
|
+
styles: string[];
|
|
7641
7407
|
lang?: string | undefined;
|
|
7642
7408
|
} | undefined;
|
|
7643
7409
|
references?: {
|
|
@@ -7832,13 +7598,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7832
7598
|
} | undefined;
|
|
7833
7599
|
captionParams?: {
|
|
7834
7600
|
lang?: string | undefined;
|
|
7835
|
-
|
|
7836
|
-
backgroundColor?: string | undefined;
|
|
7837
|
-
fontSize?: number | undefined;
|
|
7838
|
-
fontFamily?: string | undefined;
|
|
7839
|
-
fontWeight?: string | undefined;
|
|
7840
|
-
textAlign?: string | undefined;
|
|
7841
|
-
textDecoration?: string | undefined;
|
|
7601
|
+
styles?: string[] | undefined;
|
|
7842
7602
|
} | undefined;
|
|
7843
7603
|
imageNames?: string[] | undefined;
|
|
7844
7604
|
imagePrompt?: string | undefined;
|
|
@@ -7916,13 +7676,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7916
7676
|
} | undefined;
|
|
7917
7677
|
captionParams?: {
|
|
7918
7678
|
lang?: string | undefined;
|
|
7919
|
-
|
|
7920
|
-
backgroundColor?: string | undefined;
|
|
7921
|
-
fontSize?: number | undefined;
|
|
7922
|
-
fontFamily?: string | undefined;
|
|
7923
|
-
fontWeight?: string | undefined;
|
|
7924
|
-
textAlign?: string | undefined;
|
|
7925
|
-
textDecoration?: string | undefined;
|
|
7679
|
+
styles?: string[] | undefined;
|
|
7926
7680
|
} | undefined;
|
|
7927
7681
|
canvasSize?: {
|
|
7928
7682
|
width: number;
|
|
@@ -8213,31 +7967,13 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8213
7967
|
}>>;
|
|
8214
7968
|
captionParams: z.ZodOptional<z.ZodObject<{
|
|
8215
7969
|
lang: z.ZodOptional<z.ZodString>;
|
|
8216
|
-
|
|
8217
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
8218
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
8219
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
8220
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
8221
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
8222
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
7970
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
8223
7971
|
}, "strict", z.ZodTypeAny, {
|
|
8224
|
-
|
|
8225
|
-
backgroundColor: string;
|
|
8226
|
-
fontSize: number;
|
|
8227
|
-
fontFamily: string;
|
|
8228
|
-
fontWeight: string;
|
|
8229
|
-
textAlign: string;
|
|
8230
|
-
textDecoration: string;
|
|
7972
|
+
styles: string[];
|
|
8231
7973
|
lang?: string | undefined;
|
|
8232
7974
|
}, {
|
|
8233
7975
|
lang?: string | undefined;
|
|
8234
|
-
|
|
8235
|
-
backgroundColor?: string | undefined;
|
|
8236
|
-
fontSize?: number | undefined;
|
|
8237
|
-
fontFamily?: string | undefined;
|
|
8238
|
-
fontWeight?: string | undefined;
|
|
8239
|
-
textAlign?: string | undefined;
|
|
8240
|
-
textDecoration?: string | undefined;
|
|
7976
|
+
styles?: string[] | undefined;
|
|
8241
7977
|
}>>;
|
|
8242
7978
|
audioParams: z.ZodDefault<z.ZodObject<{
|
|
8243
7979
|
padding: z.ZodDefault<z.ZodNumber>;
|
|
@@ -8407,13 +8143,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8407
8143
|
cssStyles: string | string[];
|
|
8408
8144
|
} | undefined;
|
|
8409
8145
|
captionParams?: {
|
|
8410
|
-
|
|
8411
|
-
backgroundColor: string;
|
|
8412
|
-
fontSize: number;
|
|
8413
|
-
fontFamily: string;
|
|
8414
|
-
fontWeight: string;
|
|
8415
|
-
textAlign: string;
|
|
8416
|
-
textDecoration: string;
|
|
8146
|
+
styles: string[];
|
|
8417
8147
|
lang?: string | undefined;
|
|
8418
8148
|
} | undefined;
|
|
8419
8149
|
}, {
|
|
@@ -8484,13 +8214,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8484
8214
|
} | undefined;
|
|
8485
8215
|
captionParams?: {
|
|
8486
8216
|
lang?: string | undefined;
|
|
8487
|
-
|
|
8488
|
-
backgroundColor?: string | undefined;
|
|
8489
|
-
fontSize?: number | undefined;
|
|
8490
|
-
fontFamily?: string | undefined;
|
|
8491
|
-
fontWeight?: string | undefined;
|
|
8492
|
-
textAlign?: string | undefined;
|
|
8493
|
-
textDecoration?: string | undefined;
|
|
8217
|
+
styles?: string[] | undefined;
|
|
8494
8218
|
} | undefined;
|
|
8495
8219
|
canvasSize?: {
|
|
8496
8220
|
width: number;
|
|
@@ -8597,13 +8321,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8597
8321
|
cssStyles: string | string[];
|
|
8598
8322
|
} | undefined;
|
|
8599
8323
|
captionParams?: {
|
|
8600
|
-
|
|
8601
|
-
backgroundColor: string;
|
|
8602
|
-
fontSize: number;
|
|
8603
|
-
fontFamily: string;
|
|
8604
|
-
fontWeight: string;
|
|
8605
|
-
textAlign: string;
|
|
8606
|
-
textDecoration: string;
|
|
8324
|
+
styles: string[];
|
|
8607
8325
|
lang?: string | undefined;
|
|
8608
8326
|
} | undefined;
|
|
8609
8327
|
} | undefined;
|
|
@@ -8680,13 +8398,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8680
8398
|
} | undefined;
|
|
8681
8399
|
captionParams?: {
|
|
8682
8400
|
lang?: string | undefined;
|
|
8683
|
-
|
|
8684
|
-
backgroundColor?: string | undefined;
|
|
8685
|
-
fontSize?: number | undefined;
|
|
8686
|
-
fontFamily?: string | undefined;
|
|
8687
|
-
fontWeight?: string | undefined;
|
|
8688
|
-
textAlign?: string | undefined;
|
|
8689
|
-
textDecoration?: string | undefined;
|
|
8401
|
+
styles?: string[] | undefined;
|
|
8690
8402
|
} | undefined;
|
|
8691
8403
|
canvasSize?: {
|
|
8692
8404
|
width: number;
|
|
@@ -8968,31 +8680,13 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8968
8680
|
}>>;
|
|
8969
8681
|
captionParams: z.ZodOptional<z.ZodObject<{
|
|
8970
8682
|
lang: z.ZodOptional<z.ZodString>;
|
|
8971
|
-
|
|
8972
|
-
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
8973
|
-
fontSize: z.ZodDefault<z.ZodNumber>;
|
|
8974
|
-
fontFamily: z.ZodDefault<z.ZodString>;
|
|
8975
|
-
fontWeight: z.ZodDefault<z.ZodString>;
|
|
8976
|
-
textAlign: z.ZodDefault<z.ZodString>;
|
|
8977
|
-
textDecoration: z.ZodDefault<z.ZodString>;
|
|
8683
|
+
styles: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
8978
8684
|
}, "strict", z.ZodTypeAny, {
|
|
8979
|
-
|
|
8980
|
-
backgroundColor: string;
|
|
8981
|
-
fontSize: number;
|
|
8982
|
-
fontFamily: string;
|
|
8983
|
-
fontWeight: string;
|
|
8984
|
-
textAlign: string;
|
|
8985
|
-
textDecoration: string;
|
|
8685
|
+
styles: string[];
|
|
8986
8686
|
lang?: string | undefined;
|
|
8987
8687
|
}, {
|
|
8988
8688
|
lang?: string | undefined;
|
|
8989
|
-
|
|
8990
|
-
backgroundColor?: string | undefined;
|
|
8991
|
-
fontSize?: number | undefined;
|
|
8992
|
-
fontFamily?: string | undefined;
|
|
8993
|
-
fontWeight?: string | undefined;
|
|
8994
|
-
textAlign?: string | undefined;
|
|
8995
|
-
textDecoration?: string | undefined;
|
|
8689
|
+
styles?: string[] | undefined;
|
|
8996
8690
|
}>>;
|
|
8997
8691
|
audioParams: z.ZodDefault<z.ZodObject<{
|
|
8998
8692
|
padding: z.ZodDefault<z.ZodNumber>;
|
|
@@ -9162,13 +8856,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9162
8856
|
cssStyles: string | string[];
|
|
9163
8857
|
} | undefined;
|
|
9164
8858
|
captionParams?: {
|
|
9165
|
-
|
|
9166
|
-
backgroundColor: string;
|
|
9167
|
-
fontSize: number;
|
|
9168
|
-
fontFamily: string;
|
|
9169
|
-
fontWeight: string;
|
|
9170
|
-
textAlign: string;
|
|
9171
|
-
textDecoration: string;
|
|
8859
|
+
styles: string[];
|
|
9172
8860
|
lang?: string | undefined;
|
|
9173
8861
|
} | undefined;
|
|
9174
8862
|
}, {
|
|
@@ -9239,13 +8927,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9239
8927
|
} | undefined;
|
|
9240
8928
|
captionParams?: {
|
|
9241
8929
|
lang?: string | undefined;
|
|
9242
|
-
|
|
9243
|
-
backgroundColor?: string | undefined;
|
|
9244
|
-
fontSize?: number | undefined;
|
|
9245
|
-
fontFamily?: string | undefined;
|
|
9246
|
-
fontWeight?: string | undefined;
|
|
9247
|
-
textAlign?: string | undefined;
|
|
9248
|
-
textDecoration?: string | undefined;
|
|
8930
|
+
styles?: string[] | undefined;
|
|
9249
8931
|
} | undefined;
|
|
9250
8932
|
canvasSize?: {
|
|
9251
8933
|
width: number;
|
|
@@ -9355,13 +9037,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9355
9037
|
cssStyles: string | string[];
|
|
9356
9038
|
} | undefined;
|
|
9357
9039
|
captionParams?: {
|
|
9358
|
-
|
|
9359
|
-
backgroundColor: string;
|
|
9360
|
-
fontSize: number;
|
|
9361
|
-
fontFamily: string;
|
|
9362
|
-
fontWeight: string;
|
|
9363
|
-
textAlign: string;
|
|
9364
|
-
textDecoration: string;
|
|
9040
|
+
styles: string[];
|
|
9365
9041
|
lang?: string | undefined;
|
|
9366
9042
|
} | undefined;
|
|
9367
9043
|
} | undefined;
|
|
@@ -9439,13 +9115,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9439
9115
|
} | undefined;
|
|
9440
9116
|
captionParams?: {
|
|
9441
9117
|
lang?: string | undefined;
|
|
9442
|
-
|
|
9443
|
-
backgroundColor?: string | undefined;
|
|
9444
|
-
fontSize?: number | undefined;
|
|
9445
|
-
fontFamily?: string | undefined;
|
|
9446
|
-
fontWeight?: string | undefined;
|
|
9447
|
-
textAlign?: string | undefined;
|
|
9448
|
-
textDecoration?: string | undefined;
|
|
9118
|
+
styles?: string[] | undefined;
|
|
9449
9119
|
} | undefined;
|
|
9450
9120
|
canvasSize?: {
|
|
9451
9121
|
width: number;
|