mulmocast 0.1.3 → 0.1.4
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/lib/actions/audio.js +5 -13
- package/lib/actions/image_agents.d.ts +27 -3
- package/lib/actions/image_agents.js +5 -2
- package/lib/actions/images.d.ts +9 -1
- package/lib/actions/images.js +22 -11
- package/lib/agents/image_google_agent.js +2 -2
- package/lib/agents/image_openai_agent.js +2 -2
- package/lib/agents/movie_replicate_agent.js +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/methods/mulmo_presentation_style.d.ts +1 -1
- package/lib/methods/mulmo_presentation_style.js +17 -17
- package/lib/types/schema.d.ts +243 -222
- package/lib/types/schema.js +10 -8
- package/lib/utils/const.d.ts +0 -1
- package/lib/utils/const.js +0 -1
- package/lib/utils/context.d.ts +12 -11
- package/lib/utils/preprocess.d.ts +7 -6
- package/lib/utils/provider2agent.d.ts +72 -0
- package/lib/utils/provider2agent.js +81 -0
- package/lib/utils/utils.d.ts +6 -11
- package/lib/utils/utils.js +5 -26
- package/package.json +1 -1
package/lib/types/schema.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare const speechOptionsSchema: z.ZodObject<{
|
|
|
48
48
|
speed?: number | undefined;
|
|
49
49
|
instruction?: string | undefined;
|
|
50
50
|
}>;
|
|
51
|
-
export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodEnum<[
|
|
51
|
+
export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
52
52
|
export declare const speakerDataSchema: z.ZodObject<{
|
|
53
53
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
54
54
|
voiceId: z.ZodString;
|
|
@@ -62,7 +62,7 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
62
62
|
speed?: number | undefined;
|
|
63
63
|
instruction?: string | undefined;
|
|
64
64
|
}>>;
|
|
65
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
65
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
66
66
|
}, "strict", z.ZodTypeAny, {
|
|
67
67
|
voiceId: string;
|
|
68
68
|
displayName?: Record<string, string> | undefined;
|
|
@@ -70,7 +70,7 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
70
70
|
speed?: number | undefined;
|
|
71
71
|
instruction?: string | undefined;
|
|
72
72
|
} | undefined;
|
|
73
|
-
provider?:
|
|
73
|
+
provider?: string | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
voiceId: string;
|
|
76
76
|
displayName?: Record<string, string> | undefined;
|
|
@@ -78,7 +78,7 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
78
78
|
speed?: number | undefined;
|
|
79
79
|
instruction?: string | undefined;
|
|
80
80
|
} | undefined;
|
|
81
|
-
provider?:
|
|
81
|
+
provider?: string | undefined;
|
|
82
82
|
}>;
|
|
83
83
|
export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
84
84
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -93,7 +93,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
93
93
|
speed?: number | undefined;
|
|
94
94
|
instruction?: string | undefined;
|
|
95
95
|
}>>;
|
|
96
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
96
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
97
97
|
}, "strict", z.ZodTypeAny, {
|
|
98
98
|
voiceId: string;
|
|
99
99
|
displayName?: Record<string, string> | undefined;
|
|
@@ -101,7 +101,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
101
101
|
speed?: number | undefined;
|
|
102
102
|
instruction?: string | undefined;
|
|
103
103
|
} | undefined;
|
|
104
|
-
provider?:
|
|
104
|
+
provider?: string | undefined;
|
|
105
105
|
}, {
|
|
106
106
|
voiceId: string;
|
|
107
107
|
displayName?: Record<string, string> | undefined;
|
|
@@ -109,7 +109,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
109
109
|
speed?: number | undefined;
|
|
110
110
|
instruction?: string | undefined;
|
|
111
111
|
} | undefined;
|
|
112
|
-
provider?:
|
|
112
|
+
provider?: string | undefined;
|
|
113
113
|
}>>;
|
|
114
114
|
export declare const mediaSourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
115
115
|
kind: z.ZodLiteral<"url">;
|
|
@@ -1004,29 +1004,29 @@ export declare const mulmoFillOptionSchema: z.ZodObject<{
|
|
|
1004
1004
|
}, {
|
|
1005
1005
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
1006
1006
|
}>;
|
|
1007
|
-
export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodEnum<[
|
|
1007
|
+
export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1008
1008
|
export declare const mulmoOpenAIImageModelSchema: z.ZodObject<{
|
|
1009
1009
|
provider: z.ZodLiteral<"openai">;
|
|
1010
|
-
model: z.ZodOptional<z.ZodEnum<[
|
|
1010
|
+
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
1011
1011
|
}, "strict", z.ZodTypeAny, {
|
|
1012
1012
|
provider: "openai";
|
|
1013
|
-
model?:
|
|
1013
|
+
model?: string | undefined;
|
|
1014
1014
|
}, {
|
|
1015
1015
|
provider: "openai";
|
|
1016
|
-
model?:
|
|
1016
|
+
model?: string | undefined;
|
|
1017
1017
|
}>;
|
|
1018
1018
|
export declare const mulmoGoogleImageModelSchema: z.ZodObject<{
|
|
1019
1019
|
provider: z.ZodLiteral<"google">;
|
|
1020
|
-
model: z.ZodOptional<z.ZodEnum<[
|
|
1020
|
+
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
1021
1021
|
}, "strict", z.ZodTypeAny, {
|
|
1022
1022
|
provider: "google";
|
|
1023
|
-
model?:
|
|
1023
|
+
model?: string | undefined;
|
|
1024
1024
|
}, {
|
|
1025
1025
|
provider: "google";
|
|
1026
|
-
model?:
|
|
1026
|
+
model?: string | undefined;
|
|
1027
1027
|
}>;
|
|
1028
1028
|
export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
1029
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
1029
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1030
1030
|
model: z.ZodOptional<z.ZodString>;
|
|
1031
1031
|
style: z.ZodOptional<z.ZodString>;
|
|
1032
1032
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -1110,7 +1110,7 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1110
1110
|
prompt: string;
|
|
1111
1111
|
}>]>>>;
|
|
1112
1112
|
}, "strict", z.ZodTypeAny, {
|
|
1113
|
-
provider:
|
|
1113
|
+
provider: string;
|
|
1114
1114
|
style?: string | undefined;
|
|
1115
1115
|
model?: string | undefined;
|
|
1116
1116
|
moderation?: string | undefined;
|
|
@@ -1134,7 +1134,7 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1134
1134
|
prompt: string;
|
|
1135
1135
|
}> | undefined;
|
|
1136
1136
|
}, {
|
|
1137
|
-
provider?:
|
|
1137
|
+
provider?: string | undefined;
|
|
1138
1138
|
style?: string | undefined;
|
|
1139
1139
|
model?: string | undefined;
|
|
1140
1140
|
moderation?: string | undefined;
|
|
@@ -1811,7 +1811,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1811
1811
|
}>]>>;
|
|
1812
1812
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
1813
1813
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
1814
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
1814
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1815
1815
|
model: z.ZodOptional<z.ZodString>;
|
|
1816
1816
|
style: z.ZodOptional<z.ZodString>;
|
|
1817
1817
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -1895,7 +1895,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1895
1895
|
prompt: string;
|
|
1896
1896
|
}>]>>>;
|
|
1897
1897
|
}, "strict", z.ZodTypeAny, {
|
|
1898
|
-
provider:
|
|
1898
|
+
provider: string;
|
|
1899
1899
|
style?: string | undefined;
|
|
1900
1900
|
model?: string | undefined;
|
|
1901
1901
|
moderation?: string | undefined;
|
|
@@ -1919,7 +1919,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1919
1919
|
prompt: string;
|
|
1920
1920
|
}> | undefined;
|
|
1921
1921
|
}, {
|
|
1922
|
-
provider?:
|
|
1922
|
+
provider?: string | undefined;
|
|
1923
1923
|
style?: string | undefined;
|
|
1924
1924
|
model?: string | undefined;
|
|
1925
1925
|
moderation?: string | undefined;
|
|
@@ -1951,6 +1951,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1951
1951
|
padding?: number | undefined;
|
|
1952
1952
|
}>>;
|
|
1953
1953
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
1954
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1954
1955
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
1955
1956
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
1956
1957
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1961,11 +1962,13 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1961
1962
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
1962
1963
|
}, "strip", z.ZodTypeAny, {
|
|
1963
1964
|
speed?: number | undefined;
|
|
1965
|
+
model?: string | undefined;
|
|
1964
1966
|
fillOption?: {
|
|
1965
1967
|
style: "aspectFit" | "aspectFill";
|
|
1966
1968
|
} | undefined;
|
|
1967
1969
|
}, {
|
|
1968
1970
|
speed?: number | undefined;
|
|
1971
|
+
model?: string | undefined;
|
|
1969
1972
|
fillOption?: {
|
|
1970
1973
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
1971
1974
|
} | undefined;
|
|
@@ -2159,7 +2162,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2159
2162
|
imagePrompt?: string | undefined;
|
|
2160
2163
|
description?: string | undefined;
|
|
2161
2164
|
imageParams?: {
|
|
2162
|
-
provider:
|
|
2165
|
+
provider: string;
|
|
2163
2166
|
style?: string | undefined;
|
|
2164
2167
|
model?: string | undefined;
|
|
2165
2168
|
moderation?: string | undefined;
|
|
@@ -2188,6 +2191,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2188
2191
|
} | undefined;
|
|
2189
2192
|
movieParams?: {
|
|
2190
2193
|
speed?: number | undefined;
|
|
2194
|
+
model?: string | undefined;
|
|
2191
2195
|
fillOption?: {
|
|
2192
2196
|
style: "aspectFit" | "aspectFill";
|
|
2193
2197
|
} | undefined;
|
|
@@ -2346,7 +2350,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2346
2350
|
speaker?: string | undefined;
|
|
2347
2351
|
description?: string | undefined;
|
|
2348
2352
|
imageParams?: {
|
|
2349
|
-
provider?:
|
|
2353
|
+
provider?: string | undefined;
|
|
2350
2354
|
style?: string | undefined;
|
|
2351
2355
|
model?: string | undefined;
|
|
2352
2356
|
moderation?: string | undefined;
|
|
@@ -2375,6 +2379,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2375
2379
|
} | undefined;
|
|
2376
2380
|
movieParams?: {
|
|
2377
2381
|
speed?: number | undefined;
|
|
2382
|
+
model?: string | undefined;
|
|
2378
2383
|
fillOption?: {
|
|
2379
2384
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2380
2385
|
} | undefined;
|
|
@@ -2419,7 +2424,7 @@ export declare const mulmoCastCreditSchema: z.ZodObject<{
|
|
|
2419
2424
|
credit?: "closing" | undefined;
|
|
2420
2425
|
}>;
|
|
2421
2426
|
export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
2422
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
2427
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2423
2428
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2424
2429
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2425
2430
|
voiceId: z.ZodString;
|
|
@@ -2433,7 +2438,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2433
2438
|
speed?: number | undefined;
|
|
2434
2439
|
instruction?: string | undefined;
|
|
2435
2440
|
}>>;
|
|
2436
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2441
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2437
2442
|
}, "strict", z.ZodTypeAny, {
|
|
2438
2443
|
voiceId: string;
|
|
2439
2444
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2441,7 +2446,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2441
2446
|
speed?: number | undefined;
|
|
2442
2447
|
instruction?: string | undefined;
|
|
2443
2448
|
} | undefined;
|
|
2444
|
-
provider?:
|
|
2449
|
+
provider?: string | undefined;
|
|
2445
2450
|
}, {
|
|
2446
2451
|
voiceId: string;
|
|
2447
2452
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2449,10 +2454,10 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2449
2454
|
speed?: number | undefined;
|
|
2450
2455
|
instruction?: string | undefined;
|
|
2451
2456
|
} | undefined;
|
|
2452
|
-
provider?:
|
|
2457
|
+
provider?: string | undefined;
|
|
2453
2458
|
}>>;
|
|
2454
2459
|
}, "strict", z.ZodTypeAny, {
|
|
2455
|
-
provider:
|
|
2460
|
+
provider: string;
|
|
2456
2461
|
speakers: Record<string, {
|
|
2457
2462
|
voiceId: string;
|
|
2458
2463
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2460,7 +2465,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2460
2465
|
speed?: number | undefined;
|
|
2461
2466
|
instruction?: string | undefined;
|
|
2462
2467
|
} | undefined;
|
|
2463
|
-
provider?:
|
|
2468
|
+
provider?: string | undefined;
|
|
2464
2469
|
}>;
|
|
2465
2470
|
}, {
|
|
2466
2471
|
speakers: Record<string, {
|
|
@@ -2470,31 +2475,31 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2470
2475
|
speed?: number | undefined;
|
|
2471
2476
|
instruction?: string | undefined;
|
|
2472
2477
|
} | undefined;
|
|
2473
|
-
provider?:
|
|
2478
|
+
provider?: string | undefined;
|
|
2474
2479
|
}>;
|
|
2475
|
-
provider?:
|
|
2480
|
+
provider?: string | undefined;
|
|
2476
2481
|
}>;
|
|
2477
|
-
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[
|
|
2478
|
-
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[
|
|
2482
|
+
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2483
|
+
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2479
2484
|
export declare const mulmoGoogleMovieModelSchema: z.ZodObject<{
|
|
2480
2485
|
provider: z.ZodLiteral<"google">;
|
|
2481
|
-
model: z.ZodOptional<z.ZodEnum<[
|
|
2486
|
+
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
2482
2487
|
}, "strict", z.ZodTypeAny, {
|
|
2483
2488
|
provider: "google";
|
|
2484
|
-
model?:
|
|
2489
|
+
model?: string | undefined;
|
|
2485
2490
|
}, {
|
|
2486
2491
|
provider: "google";
|
|
2487
|
-
model?:
|
|
2492
|
+
model?: string | undefined;
|
|
2488
2493
|
}>;
|
|
2489
2494
|
export declare const mulmoReplicateMovieModelSchema: z.ZodObject<{
|
|
2490
2495
|
provider: z.ZodLiteral<"replicate">;
|
|
2491
|
-
model: z.ZodOptional<z.ZodEnum<[
|
|
2496
|
+
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
2492
2497
|
}, "strict", z.ZodTypeAny, {
|
|
2493
2498
|
provider: "replicate";
|
|
2494
|
-
model?:
|
|
2499
|
+
model?: string | undefined;
|
|
2495
2500
|
}, {
|
|
2496
2501
|
provider: "replicate";
|
|
2497
|
-
model?:
|
|
2502
|
+
model?: string | undefined;
|
|
2498
2503
|
}>;
|
|
2499
2504
|
export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
2500
2505
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2507,7 +2512,7 @@ export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
|
2507
2512
|
duration?: number | undefined;
|
|
2508
2513
|
}>;
|
|
2509
2514
|
export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
2510
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2515
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2511
2516
|
model: z.ZodOptional<z.ZodString>;
|
|
2512
2517
|
transition: z.ZodOptional<z.ZodObject<{
|
|
2513
2518
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2527,7 +2532,7 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
2527
2532
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2528
2533
|
}>>;
|
|
2529
2534
|
}, "strict", z.ZodTypeAny, {
|
|
2530
|
-
provider?:
|
|
2535
|
+
provider?: string | undefined;
|
|
2531
2536
|
model?: string | undefined;
|
|
2532
2537
|
fillOption?: {
|
|
2533
2538
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2537,7 +2542,7 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
2537
2542
|
duration: number;
|
|
2538
2543
|
} | undefined;
|
|
2539
2544
|
}, {
|
|
2540
|
-
provider?:
|
|
2545
|
+
provider?: string | undefined;
|
|
2541
2546
|
model?: string | undefined;
|
|
2542
2547
|
fillOption?: {
|
|
2543
2548
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2569,7 +2574,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2569
2574
|
height: number;
|
|
2570
2575
|
}>>;
|
|
2571
2576
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
2572
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
2577
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2573
2578
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2574
2579
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2575
2580
|
voiceId: z.ZodString;
|
|
@@ -2583,7 +2588,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2583
2588
|
speed?: number | undefined;
|
|
2584
2589
|
instruction?: string | undefined;
|
|
2585
2590
|
}>>;
|
|
2586
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2591
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2587
2592
|
}, "strict", z.ZodTypeAny, {
|
|
2588
2593
|
voiceId: string;
|
|
2589
2594
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2591,7 +2596,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2591
2596
|
speed?: number | undefined;
|
|
2592
2597
|
instruction?: string | undefined;
|
|
2593
2598
|
} | undefined;
|
|
2594
|
-
provider?:
|
|
2599
|
+
provider?: string | undefined;
|
|
2595
2600
|
}, {
|
|
2596
2601
|
voiceId: string;
|
|
2597
2602
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2599,10 +2604,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2599
2604
|
speed?: number | undefined;
|
|
2600
2605
|
instruction?: string | undefined;
|
|
2601
2606
|
} | undefined;
|
|
2602
|
-
provider?:
|
|
2607
|
+
provider?: string | undefined;
|
|
2603
2608
|
}>>;
|
|
2604
2609
|
}, "strict", z.ZodTypeAny, {
|
|
2605
|
-
provider:
|
|
2610
|
+
provider: string;
|
|
2606
2611
|
speakers: Record<string, {
|
|
2607
2612
|
voiceId: string;
|
|
2608
2613
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2610,7 +2615,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2610
2615
|
speed?: number | undefined;
|
|
2611
2616
|
instruction?: string | undefined;
|
|
2612
2617
|
} | undefined;
|
|
2613
|
-
provider?:
|
|
2618
|
+
provider?: string | undefined;
|
|
2614
2619
|
}>;
|
|
2615
2620
|
}, {
|
|
2616
2621
|
speakers: Record<string, {
|
|
@@ -2620,12 +2625,12 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2620
2625
|
speed?: number | undefined;
|
|
2621
2626
|
instruction?: string | undefined;
|
|
2622
2627
|
} | undefined;
|
|
2623
|
-
provider?:
|
|
2628
|
+
provider?: string | undefined;
|
|
2624
2629
|
}>;
|
|
2625
|
-
provider?:
|
|
2630
|
+
provider?: string | undefined;
|
|
2626
2631
|
}>>;
|
|
2627
2632
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
2628
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
2633
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2629
2634
|
model: z.ZodOptional<z.ZodString>;
|
|
2630
2635
|
style: z.ZodOptional<z.ZodString>;
|
|
2631
2636
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -2709,7 +2714,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2709
2714
|
prompt: string;
|
|
2710
2715
|
}>]>>>;
|
|
2711
2716
|
}, "strict", z.ZodTypeAny, {
|
|
2712
|
-
provider:
|
|
2717
|
+
provider: string;
|
|
2713
2718
|
style?: string | undefined;
|
|
2714
2719
|
model?: string | undefined;
|
|
2715
2720
|
moderation?: string | undefined;
|
|
@@ -2733,7 +2738,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2733
2738
|
prompt: string;
|
|
2734
2739
|
}> | undefined;
|
|
2735
2740
|
}, {
|
|
2736
|
-
provider?:
|
|
2741
|
+
provider?: string | undefined;
|
|
2737
2742
|
style?: string | undefined;
|
|
2738
2743
|
model?: string | undefined;
|
|
2739
2744
|
moderation?: string | undefined;
|
|
@@ -2758,7 +2763,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2758
2763
|
}> | undefined;
|
|
2759
2764
|
}>>;
|
|
2760
2765
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
2761
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2766
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2762
2767
|
model: z.ZodOptional<z.ZodString>;
|
|
2763
2768
|
transition: z.ZodOptional<z.ZodObject<{
|
|
2764
2769
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2778,7 +2783,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2778
2783
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2779
2784
|
}>>;
|
|
2780
2785
|
}, "strict", z.ZodTypeAny, {
|
|
2781
|
-
provider?:
|
|
2786
|
+
provider?: string | undefined;
|
|
2782
2787
|
model?: string | undefined;
|
|
2783
2788
|
fillOption?: {
|
|
2784
2789
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2788,7 +2793,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2788
2793
|
duration: number;
|
|
2789
2794
|
} | undefined;
|
|
2790
2795
|
}, {
|
|
2791
|
-
provider?:
|
|
2796
|
+
provider?: string | undefined;
|
|
2792
2797
|
model?: string | undefined;
|
|
2793
2798
|
fillOption?: {
|
|
2794
2799
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2801,12 +2806,12 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2801
2806
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
2802
2807
|
model: z.ZodOptional<z.ZodString>;
|
|
2803
2808
|
} & {
|
|
2804
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
2809
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2805
2810
|
}, "strict", z.ZodTypeAny, {
|
|
2806
|
-
provider:
|
|
2811
|
+
provider: string;
|
|
2807
2812
|
model?: string | undefined;
|
|
2808
2813
|
}, {
|
|
2809
|
-
provider?:
|
|
2814
|
+
provider?: string | undefined;
|
|
2810
2815
|
model?: string | undefined;
|
|
2811
2816
|
}>>;
|
|
2812
2817
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -2946,7 +2951,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2946
2951
|
height: number;
|
|
2947
2952
|
};
|
|
2948
2953
|
speechParams: {
|
|
2949
|
-
provider:
|
|
2954
|
+
provider: string;
|
|
2950
2955
|
speakers: Record<string, {
|
|
2951
2956
|
voiceId: string;
|
|
2952
2957
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2954,11 +2959,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2954
2959
|
speed?: number | undefined;
|
|
2955
2960
|
instruction?: string | undefined;
|
|
2956
2961
|
} | undefined;
|
|
2957
|
-
provider?:
|
|
2962
|
+
provider?: string | undefined;
|
|
2958
2963
|
}>;
|
|
2959
2964
|
};
|
|
2960
2965
|
imageParams?: {
|
|
2961
|
-
provider:
|
|
2966
|
+
provider: string;
|
|
2962
2967
|
style?: string | undefined;
|
|
2963
2968
|
model?: string | undefined;
|
|
2964
2969
|
moderation?: string | undefined;
|
|
@@ -2983,7 +2988,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2983
2988
|
}> | undefined;
|
|
2984
2989
|
} | undefined;
|
|
2985
2990
|
movieParams?: {
|
|
2986
|
-
provider?:
|
|
2991
|
+
provider?: string | undefined;
|
|
2987
2992
|
model?: string | undefined;
|
|
2988
2993
|
fillOption?: {
|
|
2989
2994
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2994,7 +2999,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2994
2999
|
} | undefined;
|
|
2995
3000
|
} | undefined;
|
|
2996
3001
|
htmlImageParams?: {
|
|
2997
|
-
provider:
|
|
3002
|
+
provider: string;
|
|
2998
3003
|
model?: string | undefined;
|
|
2999
3004
|
} | undefined;
|
|
3000
3005
|
textSlideParams?: {
|
|
@@ -3010,7 +3015,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3010
3015
|
credit?: "closing" | undefined;
|
|
3011
3016
|
};
|
|
3012
3017
|
imageParams?: {
|
|
3013
|
-
provider?:
|
|
3018
|
+
provider?: string | undefined;
|
|
3014
3019
|
style?: string | undefined;
|
|
3015
3020
|
model?: string | undefined;
|
|
3016
3021
|
moderation?: string | undefined;
|
|
@@ -3057,7 +3062,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3057
3062
|
suppressSpeech?: boolean | undefined;
|
|
3058
3063
|
} | undefined;
|
|
3059
3064
|
movieParams?: {
|
|
3060
|
-
provider?:
|
|
3065
|
+
provider?: string | undefined;
|
|
3061
3066
|
model?: string | undefined;
|
|
3062
3067
|
fillOption?: {
|
|
3063
3068
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -3068,7 +3073,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3068
3073
|
} | undefined;
|
|
3069
3074
|
} | undefined;
|
|
3070
3075
|
htmlImageParams?: {
|
|
3071
|
-
provider?:
|
|
3076
|
+
provider?: string | undefined;
|
|
3072
3077
|
model?: string | undefined;
|
|
3073
3078
|
} | undefined;
|
|
3074
3079
|
textSlideParams?: {
|
|
@@ -3090,9 +3095,9 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3090
3095
|
speed?: number | undefined;
|
|
3091
3096
|
instruction?: string | undefined;
|
|
3092
3097
|
} | undefined;
|
|
3093
|
-
provider?:
|
|
3098
|
+
provider?: string | undefined;
|
|
3094
3099
|
}>;
|
|
3095
|
-
provider?:
|
|
3100
|
+
provider?: string | undefined;
|
|
3096
3101
|
} | undefined;
|
|
3097
3102
|
}>;
|
|
3098
3103
|
export declare const mulmoReferenceSchema: z.ZodObject<{
|
|
@@ -3133,7 +3138,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3133
3138
|
height: number;
|
|
3134
3139
|
}>>;
|
|
3135
3140
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
3136
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
3141
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
3137
3142
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3138
3143
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3139
3144
|
voiceId: z.ZodString;
|
|
@@ -3147,7 +3152,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3147
3152
|
speed?: number | undefined;
|
|
3148
3153
|
instruction?: string | undefined;
|
|
3149
3154
|
}>>;
|
|
3150
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
3155
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
3151
3156
|
}, "strict", z.ZodTypeAny, {
|
|
3152
3157
|
voiceId: string;
|
|
3153
3158
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3155,7 +3160,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3155
3160
|
speed?: number | undefined;
|
|
3156
3161
|
instruction?: string | undefined;
|
|
3157
3162
|
} | undefined;
|
|
3158
|
-
provider?:
|
|
3163
|
+
provider?: string | undefined;
|
|
3159
3164
|
}, {
|
|
3160
3165
|
voiceId: string;
|
|
3161
3166
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3163,10 +3168,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3163
3168
|
speed?: number | undefined;
|
|
3164
3169
|
instruction?: string | undefined;
|
|
3165
3170
|
} | undefined;
|
|
3166
|
-
provider?:
|
|
3171
|
+
provider?: string | undefined;
|
|
3167
3172
|
}>>;
|
|
3168
3173
|
}, "strict", z.ZodTypeAny, {
|
|
3169
|
-
provider:
|
|
3174
|
+
provider: string;
|
|
3170
3175
|
speakers: Record<string, {
|
|
3171
3176
|
voiceId: string;
|
|
3172
3177
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3174,7 +3179,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3174
3179
|
speed?: number | undefined;
|
|
3175
3180
|
instruction?: string | undefined;
|
|
3176
3181
|
} | undefined;
|
|
3177
|
-
provider?:
|
|
3182
|
+
provider?: string | undefined;
|
|
3178
3183
|
}>;
|
|
3179
3184
|
}, {
|
|
3180
3185
|
speakers: Record<string, {
|
|
@@ -3184,12 +3189,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3184
3189
|
speed?: number | undefined;
|
|
3185
3190
|
instruction?: string | undefined;
|
|
3186
3191
|
} | undefined;
|
|
3187
|
-
provider?:
|
|
3192
|
+
provider?: string | undefined;
|
|
3188
3193
|
}>;
|
|
3189
|
-
provider?:
|
|
3194
|
+
provider?: string | undefined;
|
|
3190
3195
|
}>>;
|
|
3191
3196
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3192
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
3197
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
3193
3198
|
model: z.ZodOptional<z.ZodString>;
|
|
3194
3199
|
style: z.ZodOptional<z.ZodString>;
|
|
3195
3200
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -3273,7 +3278,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3273
3278
|
prompt: string;
|
|
3274
3279
|
}>]>>>;
|
|
3275
3280
|
}, "strict", z.ZodTypeAny, {
|
|
3276
|
-
provider:
|
|
3281
|
+
provider: string;
|
|
3277
3282
|
style?: string | undefined;
|
|
3278
3283
|
model?: string | undefined;
|
|
3279
3284
|
moderation?: string | undefined;
|
|
@@ -3297,7 +3302,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3297
3302
|
prompt: string;
|
|
3298
3303
|
}> | undefined;
|
|
3299
3304
|
}, {
|
|
3300
|
-
provider?:
|
|
3305
|
+
provider?: string | undefined;
|
|
3301
3306
|
style?: string | undefined;
|
|
3302
3307
|
model?: string | undefined;
|
|
3303
3308
|
moderation?: string | undefined;
|
|
@@ -3322,7 +3327,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3322
3327
|
}> | undefined;
|
|
3323
3328
|
}>>;
|
|
3324
3329
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
3325
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
3330
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
3326
3331
|
model: z.ZodOptional<z.ZodString>;
|
|
3327
3332
|
transition: z.ZodOptional<z.ZodObject<{
|
|
3328
3333
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -3342,7 +3347,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3342
3347
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
3343
3348
|
}>>;
|
|
3344
3349
|
}, "strict", z.ZodTypeAny, {
|
|
3345
|
-
provider?:
|
|
3350
|
+
provider?: string | undefined;
|
|
3346
3351
|
model?: string | undefined;
|
|
3347
3352
|
fillOption?: {
|
|
3348
3353
|
style: "aspectFit" | "aspectFill";
|
|
@@ -3352,7 +3357,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3352
3357
|
duration: number;
|
|
3353
3358
|
} | undefined;
|
|
3354
3359
|
}, {
|
|
3355
|
-
provider?:
|
|
3360
|
+
provider?: string | undefined;
|
|
3356
3361
|
model?: string | undefined;
|
|
3357
3362
|
fillOption?: {
|
|
3358
3363
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -3365,12 +3370,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3365
3370
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
3366
3371
|
model: z.ZodOptional<z.ZodString>;
|
|
3367
3372
|
} & {
|
|
3368
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
3373
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
3369
3374
|
}, "strict", z.ZodTypeAny, {
|
|
3370
|
-
provider:
|
|
3375
|
+
provider: string;
|
|
3371
3376
|
model?: string | undefined;
|
|
3372
3377
|
}, {
|
|
3373
|
-
provider?:
|
|
3378
|
+
provider?: string | undefined;
|
|
3374
3379
|
model?: string | undefined;
|
|
3375
3380
|
}>>;
|
|
3376
3381
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -4026,7 +4031,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4026
4031
|
}>]>>;
|
|
4027
4032
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
4028
4033
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
4029
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
4034
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
4030
4035
|
model: z.ZodOptional<z.ZodString>;
|
|
4031
4036
|
style: z.ZodOptional<z.ZodString>;
|
|
4032
4037
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -4110,7 +4115,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4110
4115
|
prompt: string;
|
|
4111
4116
|
}>]>>>;
|
|
4112
4117
|
}, "strict", z.ZodTypeAny, {
|
|
4113
|
-
provider:
|
|
4118
|
+
provider: string;
|
|
4114
4119
|
style?: string | undefined;
|
|
4115
4120
|
model?: string | undefined;
|
|
4116
4121
|
moderation?: string | undefined;
|
|
@@ -4134,7 +4139,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4134
4139
|
prompt: string;
|
|
4135
4140
|
}> | undefined;
|
|
4136
4141
|
}, {
|
|
4137
|
-
provider?:
|
|
4142
|
+
provider?: string | undefined;
|
|
4138
4143
|
style?: string | undefined;
|
|
4139
4144
|
model?: string | undefined;
|
|
4140
4145
|
moderation?: string | undefined;
|
|
@@ -4166,6 +4171,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4166
4171
|
padding?: number | undefined;
|
|
4167
4172
|
}>>;
|
|
4168
4173
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
4174
|
+
model: z.ZodOptional<z.ZodString>;
|
|
4169
4175
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
4170
4176
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
4171
4177
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4176,11 +4182,13 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4176
4182
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
4177
4183
|
}, "strip", z.ZodTypeAny, {
|
|
4178
4184
|
speed?: number | undefined;
|
|
4185
|
+
model?: string | undefined;
|
|
4179
4186
|
fillOption?: {
|
|
4180
4187
|
style: "aspectFit" | "aspectFill";
|
|
4181
4188
|
} | undefined;
|
|
4182
4189
|
}, {
|
|
4183
4190
|
speed?: number | undefined;
|
|
4191
|
+
model?: string | undefined;
|
|
4184
4192
|
fillOption?: {
|
|
4185
4193
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
4186
4194
|
} | undefined;
|
|
@@ -4374,7 +4382,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4374
4382
|
imagePrompt?: string | undefined;
|
|
4375
4383
|
description?: string | undefined;
|
|
4376
4384
|
imageParams?: {
|
|
4377
|
-
provider:
|
|
4385
|
+
provider: string;
|
|
4378
4386
|
style?: string | undefined;
|
|
4379
4387
|
model?: string | undefined;
|
|
4380
4388
|
moderation?: string | undefined;
|
|
@@ -4403,6 +4411,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4403
4411
|
} | undefined;
|
|
4404
4412
|
movieParams?: {
|
|
4405
4413
|
speed?: number | undefined;
|
|
4414
|
+
model?: string | undefined;
|
|
4406
4415
|
fillOption?: {
|
|
4407
4416
|
style: "aspectFit" | "aspectFill";
|
|
4408
4417
|
} | undefined;
|
|
@@ -4561,7 +4570,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4561
4570
|
speaker?: string | undefined;
|
|
4562
4571
|
description?: string | undefined;
|
|
4563
4572
|
imageParams?: {
|
|
4564
|
-
provider?:
|
|
4573
|
+
provider?: string | undefined;
|
|
4565
4574
|
style?: string | undefined;
|
|
4566
4575
|
model?: string | undefined;
|
|
4567
4576
|
moderation?: string | undefined;
|
|
@@ -4590,6 +4599,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4590
4599
|
} | undefined;
|
|
4591
4600
|
movieParams?: {
|
|
4592
4601
|
speed?: number | undefined;
|
|
4602
|
+
model?: string | undefined;
|
|
4593
4603
|
fillOption?: {
|
|
4594
4604
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
4595
4605
|
} | undefined;
|
|
@@ -4647,7 +4657,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4647
4657
|
height: number;
|
|
4648
4658
|
};
|
|
4649
4659
|
speechParams: {
|
|
4650
|
-
provider:
|
|
4660
|
+
provider: string;
|
|
4651
4661
|
speakers: Record<string, {
|
|
4652
4662
|
voiceId: string;
|
|
4653
4663
|
displayName?: Record<string, string> | undefined;
|
|
@@ -4655,7 +4665,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4655
4665
|
speed?: number | undefined;
|
|
4656
4666
|
instruction?: string | undefined;
|
|
4657
4667
|
} | undefined;
|
|
4658
|
-
provider?:
|
|
4668
|
+
provider?: string | undefined;
|
|
4659
4669
|
}>;
|
|
4660
4670
|
};
|
|
4661
4671
|
beats: {
|
|
@@ -4794,7 +4804,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4794
4804
|
imagePrompt?: string | undefined;
|
|
4795
4805
|
description?: string | undefined;
|
|
4796
4806
|
imageParams?: {
|
|
4797
|
-
provider:
|
|
4807
|
+
provider: string;
|
|
4798
4808
|
style?: string | undefined;
|
|
4799
4809
|
model?: string | undefined;
|
|
4800
4810
|
moderation?: string | undefined;
|
|
@@ -4823,6 +4833,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4823
4833
|
} | undefined;
|
|
4824
4834
|
movieParams?: {
|
|
4825
4835
|
speed?: number | undefined;
|
|
4836
|
+
model?: string | undefined;
|
|
4826
4837
|
fillOption?: {
|
|
4827
4838
|
style: "aspectFit" | "aspectFill";
|
|
4828
4839
|
} | undefined;
|
|
@@ -4850,7 +4861,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4850
4861
|
title?: string | undefined;
|
|
4851
4862
|
description?: string | undefined;
|
|
4852
4863
|
imageParams?: {
|
|
4853
|
-
provider:
|
|
4864
|
+
provider: string;
|
|
4854
4865
|
style?: string | undefined;
|
|
4855
4866
|
model?: string | undefined;
|
|
4856
4867
|
moderation?: string | undefined;
|
|
@@ -4875,7 +4886,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4875
4886
|
}> | undefined;
|
|
4876
4887
|
} | undefined;
|
|
4877
4888
|
movieParams?: {
|
|
4878
|
-
provider?:
|
|
4889
|
+
provider?: string | undefined;
|
|
4879
4890
|
model?: string | undefined;
|
|
4880
4891
|
fillOption?: {
|
|
4881
4892
|
style: "aspectFit" | "aspectFill";
|
|
@@ -4886,7 +4897,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4886
4897
|
} | undefined;
|
|
4887
4898
|
} | undefined;
|
|
4888
4899
|
htmlImageParams?: {
|
|
4889
|
-
provider:
|
|
4900
|
+
provider: string;
|
|
4890
4901
|
model?: string | undefined;
|
|
4891
4902
|
} | undefined;
|
|
4892
4903
|
textSlideParams?: {
|
|
@@ -5045,7 +5056,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5045
5056
|
speaker?: string | undefined;
|
|
5046
5057
|
description?: string | undefined;
|
|
5047
5058
|
imageParams?: {
|
|
5048
|
-
provider?:
|
|
5059
|
+
provider?: string | undefined;
|
|
5049
5060
|
style?: string | undefined;
|
|
5050
5061
|
model?: string | undefined;
|
|
5051
5062
|
moderation?: string | undefined;
|
|
@@ -5074,6 +5085,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5074
5085
|
} | undefined;
|
|
5075
5086
|
movieParams?: {
|
|
5076
5087
|
speed?: number | undefined;
|
|
5088
|
+
model?: string | undefined;
|
|
5077
5089
|
fillOption?: {
|
|
5078
5090
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
5079
5091
|
} | undefined;
|
|
@@ -5101,7 +5113,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5101
5113
|
title?: string | undefined;
|
|
5102
5114
|
description?: string | undefined;
|
|
5103
5115
|
imageParams?: {
|
|
5104
|
-
provider?:
|
|
5116
|
+
provider?: string | undefined;
|
|
5105
5117
|
style?: string | undefined;
|
|
5106
5118
|
model?: string | undefined;
|
|
5107
5119
|
moderation?: string | undefined;
|
|
@@ -5148,7 +5160,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5148
5160
|
suppressSpeech?: boolean | undefined;
|
|
5149
5161
|
} | undefined;
|
|
5150
5162
|
movieParams?: {
|
|
5151
|
-
provider?:
|
|
5163
|
+
provider?: string | undefined;
|
|
5152
5164
|
model?: string | undefined;
|
|
5153
5165
|
fillOption?: {
|
|
5154
5166
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5159,7 +5171,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5159
5171
|
} | undefined;
|
|
5160
5172
|
} | undefined;
|
|
5161
5173
|
htmlImageParams?: {
|
|
5162
|
-
provider?:
|
|
5174
|
+
provider?: string | undefined;
|
|
5163
5175
|
model?: string | undefined;
|
|
5164
5176
|
} | undefined;
|
|
5165
5177
|
textSlideParams?: {
|
|
@@ -5181,9 +5193,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5181
5193
|
speed?: number | undefined;
|
|
5182
5194
|
instruction?: string | undefined;
|
|
5183
5195
|
} | undefined;
|
|
5184
|
-
provider?:
|
|
5196
|
+
provider?: string | undefined;
|
|
5185
5197
|
}>;
|
|
5186
|
-
provider?:
|
|
5198
|
+
provider?: string | undefined;
|
|
5187
5199
|
} | undefined;
|
|
5188
5200
|
references?: {
|
|
5189
5201
|
url: string;
|
|
@@ -5410,7 +5422,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5410
5422
|
height: number;
|
|
5411
5423
|
}>>;
|
|
5412
5424
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
5413
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
5425
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
5414
5426
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5415
5427
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5416
5428
|
voiceId: z.ZodString;
|
|
@@ -5424,7 +5436,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5424
5436
|
speed?: number | undefined;
|
|
5425
5437
|
instruction?: string | undefined;
|
|
5426
5438
|
}>>;
|
|
5427
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
5439
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
5428
5440
|
}, "strict", z.ZodTypeAny, {
|
|
5429
5441
|
voiceId: string;
|
|
5430
5442
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5432,7 +5444,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5432
5444
|
speed?: number | undefined;
|
|
5433
5445
|
instruction?: string | undefined;
|
|
5434
5446
|
} | undefined;
|
|
5435
|
-
provider?:
|
|
5447
|
+
provider?: string | undefined;
|
|
5436
5448
|
}, {
|
|
5437
5449
|
voiceId: string;
|
|
5438
5450
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5440,10 +5452,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5440
5452
|
speed?: number | undefined;
|
|
5441
5453
|
instruction?: string | undefined;
|
|
5442
5454
|
} | undefined;
|
|
5443
|
-
provider?:
|
|
5455
|
+
provider?: string | undefined;
|
|
5444
5456
|
}>>;
|
|
5445
5457
|
}, "strict", z.ZodTypeAny, {
|
|
5446
|
-
provider:
|
|
5458
|
+
provider: string;
|
|
5447
5459
|
speakers: Record<string, {
|
|
5448
5460
|
voiceId: string;
|
|
5449
5461
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5451,7 +5463,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5451
5463
|
speed?: number | undefined;
|
|
5452
5464
|
instruction?: string | undefined;
|
|
5453
5465
|
} | undefined;
|
|
5454
|
-
provider?:
|
|
5466
|
+
provider?: string | undefined;
|
|
5455
5467
|
}>;
|
|
5456
5468
|
}, {
|
|
5457
5469
|
speakers: Record<string, {
|
|
@@ -5461,12 +5473,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5461
5473
|
speed?: number | undefined;
|
|
5462
5474
|
instruction?: string | undefined;
|
|
5463
5475
|
} | undefined;
|
|
5464
|
-
provider?:
|
|
5476
|
+
provider?: string | undefined;
|
|
5465
5477
|
}>;
|
|
5466
|
-
provider?:
|
|
5478
|
+
provider?: string | undefined;
|
|
5467
5479
|
}>>;
|
|
5468
5480
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
5469
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
5481
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
5470
5482
|
model: z.ZodOptional<z.ZodString>;
|
|
5471
5483
|
style: z.ZodOptional<z.ZodString>;
|
|
5472
5484
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -5550,7 +5562,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5550
5562
|
prompt: string;
|
|
5551
5563
|
}>]>>>;
|
|
5552
5564
|
}, "strict", z.ZodTypeAny, {
|
|
5553
|
-
provider:
|
|
5565
|
+
provider: string;
|
|
5554
5566
|
style?: string | undefined;
|
|
5555
5567
|
model?: string | undefined;
|
|
5556
5568
|
moderation?: string | undefined;
|
|
@@ -5574,7 +5586,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5574
5586
|
prompt: string;
|
|
5575
5587
|
}> | undefined;
|
|
5576
5588
|
}, {
|
|
5577
|
-
provider?:
|
|
5589
|
+
provider?: string | undefined;
|
|
5578
5590
|
style?: string | undefined;
|
|
5579
5591
|
model?: string | undefined;
|
|
5580
5592
|
moderation?: string | undefined;
|
|
@@ -5599,7 +5611,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5599
5611
|
}> | undefined;
|
|
5600
5612
|
}>>;
|
|
5601
5613
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
5602
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
5614
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
5603
5615
|
model: z.ZodOptional<z.ZodString>;
|
|
5604
5616
|
transition: z.ZodOptional<z.ZodObject<{
|
|
5605
5617
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -5619,7 +5631,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5619
5631
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
5620
5632
|
}>>;
|
|
5621
5633
|
}, "strict", z.ZodTypeAny, {
|
|
5622
|
-
provider?:
|
|
5634
|
+
provider?: string | undefined;
|
|
5623
5635
|
model?: string | undefined;
|
|
5624
5636
|
fillOption?: {
|
|
5625
5637
|
style: "aspectFit" | "aspectFill";
|
|
@@ -5629,7 +5641,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5629
5641
|
duration: number;
|
|
5630
5642
|
} | undefined;
|
|
5631
5643
|
}, {
|
|
5632
|
-
provider?:
|
|
5644
|
+
provider?: string | undefined;
|
|
5633
5645
|
model?: string | undefined;
|
|
5634
5646
|
fillOption?: {
|
|
5635
5647
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5642,12 +5654,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5642
5654
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
5643
5655
|
model: z.ZodOptional<z.ZodString>;
|
|
5644
5656
|
} & {
|
|
5645
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
5657
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
5646
5658
|
}, "strict", z.ZodTypeAny, {
|
|
5647
|
-
provider:
|
|
5659
|
+
provider: string;
|
|
5648
5660
|
model?: string | undefined;
|
|
5649
5661
|
}, {
|
|
5650
|
-
provider?:
|
|
5662
|
+
provider?: string | undefined;
|
|
5651
5663
|
model?: string | undefined;
|
|
5652
5664
|
}>>;
|
|
5653
5665
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -6303,7 +6315,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6303
6315
|
}>]>>;
|
|
6304
6316
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
6305
6317
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
6306
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
6318
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
6307
6319
|
model: z.ZodOptional<z.ZodString>;
|
|
6308
6320
|
style: z.ZodOptional<z.ZodString>;
|
|
6309
6321
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -6387,7 +6399,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6387
6399
|
prompt: string;
|
|
6388
6400
|
}>]>>>;
|
|
6389
6401
|
}, "strict", z.ZodTypeAny, {
|
|
6390
|
-
provider:
|
|
6402
|
+
provider: string;
|
|
6391
6403
|
style?: string | undefined;
|
|
6392
6404
|
model?: string | undefined;
|
|
6393
6405
|
moderation?: string | undefined;
|
|
@@ -6411,7 +6423,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6411
6423
|
prompt: string;
|
|
6412
6424
|
}> | undefined;
|
|
6413
6425
|
}, {
|
|
6414
|
-
provider?:
|
|
6426
|
+
provider?: string | undefined;
|
|
6415
6427
|
style?: string | undefined;
|
|
6416
6428
|
model?: string | undefined;
|
|
6417
6429
|
moderation?: string | undefined;
|
|
@@ -6443,6 +6455,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6443
6455
|
padding?: number | undefined;
|
|
6444
6456
|
}>>;
|
|
6445
6457
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
6458
|
+
model: z.ZodOptional<z.ZodString>;
|
|
6446
6459
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
6447
6460
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
6448
6461
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6453,11 +6466,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6453
6466
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
6454
6467
|
}, "strip", z.ZodTypeAny, {
|
|
6455
6468
|
speed?: number | undefined;
|
|
6469
|
+
model?: string | undefined;
|
|
6456
6470
|
fillOption?: {
|
|
6457
6471
|
style: "aspectFit" | "aspectFill";
|
|
6458
6472
|
} | undefined;
|
|
6459
6473
|
}, {
|
|
6460
6474
|
speed?: number | undefined;
|
|
6475
|
+
model?: string | undefined;
|
|
6461
6476
|
fillOption?: {
|
|
6462
6477
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6463
6478
|
} | undefined;
|
|
@@ -6651,7 +6666,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6651
6666
|
imagePrompt?: string | undefined;
|
|
6652
6667
|
description?: string | undefined;
|
|
6653
6668
|
imageParams?: {
|
|
6654
|
-
provider:
|
|
6669
|
+
provider: string;
|
|
6655
6670
|
style?: string | undefined;
|
|
6656
6671
|
model?: string | undefined;
|
|
6657
6672
|
moderation?: string | undefined;
|
|
@@ -6680,6 +6695,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6680
6695
|
} | undefined;
|
|
6681
6696
|
movieParams?: {
|
|
6682
6697
|
speed?: number | undefined;
|
|
6698
|
+
model?: string | undefined;
|
|
6683
6699
|
fillOption?: {
|
|
6684
6700
|
style: "aspectFit" | "aspectFill";
|
|
6685
6701
|
} | undefined;
|
|
@@ -6838,7 +6854,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6838
6854
|
speaker?: string | undefined;
|
|
6839
6855
|
description?: string | undefined;
|
|
6840
6856
|
imageParams?: {
|
|
6841
|
-
provider?:
|
|
6857
|
+
provider?: string | undefined;
|
|
6842
6858
|
style?: string | undefined;
|
|
6843
6859
|
model?: string | undefined;
|
|
6844
6860
|
moderation?: string | undefined;
|
|
@@ -6867,6 +6883,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6867
6883
|
} | undefined;
|
|
6868
6884
|
movieParams?: {
|
|
6869
6885
|
speed?: number | undefined;
|
|
6886
|
+
model?: string | undefined;
|
|
6870
6887
|
fillOption?: {
|
|
6871
6888
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6872
6889
|
} | undefined;
|
|
@@ -6924,7 +6941,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6924
6941
|
height: number;
|
|
6925
6942
|
};
|
|
6926
6943
|
speechParams: {
|
|
6927
|
-
provider:
|
|
6944
|
+
provider: string;
|
|
6928
6945
|
speakers: Record<string, {
|
|
6929
6946
|
voiceId: string;
|
|
6930
6947
|
displayName?: Record<string, string> | undefined;
|
|
@@ -6932,7 +6949,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6932
6949
|
speed?: number | undefined;
|
|
6933
6950
|
instruction?: string | undefined;
|
|
6934
6951
|
} | undefined;
|
|
6935
|
-
provider?:
|
|
6952
|
+
provider?: string | undefined;
|
|
6936
6953
|
}>;
|
|
6937
6954
|
};
|
|
6938
6955
|
beats: {
|
|
@@ -7071,7 +7088,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7071
7088
|
imagePrompt?: string | undefined;
|
|
7072
7089
|
description?: string | undefined;
|
|
7073
7090
|
imageParams?: {
|
|
7074
|
-
provider:
|
|
7091
|
+
provider: string;
|
|
7075
7092
|
style?: string | undefined;
|
|
7076
7093
|
model?: string | undefined;
|
|
7077
7094
|
moderation?: string | undefined;
|
|
@@ -7100,6 +7117,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7100
7117
|
} | undefined;
|
|
7101
7118
|
movieParams?: {
|
|
7102
7119
|
speed?: number | undefined;
|
|
7120
|
+
model?: string | undefined;
|
|
7103
7121
|
fillOption?: {
|
|
7104
7122
|
style: "aspectFit" | "aspectFill";
|
|
7105
7123
|
} | undefined;
|
|
@@ -7127,7 +7145,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7127
7145
|
title?: string | undefined;
|
|
7128
7146
|
description?: string | undefined;
|
|
7129
7147
|
imageParams?: {
|
|
7130
|
-
provider:
|
|
7148
|
+
provider: string;
|
|
7131
7149
|
style?: string | undefined;
|
|
7132
7150
|
model?: string | undefined;
|
|
7133
7151
|
moderation?: string | undefined;
|
|
@@ -7152,7 +7170,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7152
7170
|
}> | undefined;
|
|
7153
7171
|
} | undefined;
|
|
7154
7172
|
movieParams?: {
|
|
7155
|
-
provider?:
|
|
7173
|
+
provider?: string | undefined;
|
|
7156
7174
|
model?: string | undefined;
|
|
7157
7175
|
fillOption?: {
|
|
7158
7176
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7163,7 +7181,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7163
7181
|
} | undefined;
|
|
7164
7182
|
} | undefined;
|
|
7165
7183
|
htmlImageParams?: {
|
|
7166
|
-
provider:
|
|
7184
|
+
provider: string;
|
|
7167
7185
|
model?: string | undefined;
|
|
7168
7186
|
} | undefined;
|
|
7169
7187
|
textSlideParams?: {
|
|
@@ -7322,7 +7340,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7322
7340
|
speaker?: string | undefined;
|
|
7323
7341
|
description?: string | undefined;
|
|
7324
7342
|
imageParams?: {
|
|
7325
|
-
provider?:
|
|
7343
|
+
provider?: string | undefined;
|
|
7326
7344
|
style?: string | undefined;
|
|
7327
7345
|
model?: string | undefined;
|
|
7328
7346
|
moderation?: string | undefined;
|
|
@@ -7351,6 +7369,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7351
7369
|
} | undefined;
|
|
7352
7370
|
movieParams?: {
|
|
7353
7371
|
speed?: number | undefined;
|
|
7372
|
+
model?: string | undefined;
|
|
7354
7373
|
fillOption?: {
|
|
7355
7374
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7356
7375
|
} | undefined;
|
|
@@ -7378,7 +7397,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7378
7397
|
title?: string | undefined;
|
|
7379
7398
|
description?: string | undefined;
|
|
7380
7399
|
imageParams?: {
|
|
7381
|
-
provider?:
|
|
7400
|
+
provider?: string | undefined;
|
|
7382
7401
|
style?: string | undefined;
|
|
7383
7402
|
model?: string | undefined;
|
|
7384
7403
|
moderation?: string | undefined;
|
|
@@ -7425,7 +7444,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7425
7444
|
suppressSpeech?: boolean | undefined;
|
|
7426
7445
|
} | undefined;
|
|
7427
7446
|
movieParams?: {
|
|
7428
|
-
provider?:
|
|
7447
|
+
provider?: string | undefined;
|
|
7429
7448
|
model?: string | undefined;
|
|
7430
7449
|
fillOption?: {
|
|
7431
7450
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7436,7 +7455,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7436
7455
|
} | undefined;
|
|
7437
7456
|
} | undefined;
|
|
7438
7457
|
htmlImageParams?: {
|
|
7439
|
-
provider?:
|
|
7458
|
+
provider?: string | undefined;
|
|
7440
7459
|
model?: string | undefined;
|
|
7441
7460
|
} | undefined;
|
|
7442
7461
|
textSlideParams?: {
|
|
@@ -7458,9 +7477,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7458
7477
|
speed?: number | undefined;
|
|
7459
7478
|
instruction?: string | undefined;
|
|
7460
7479
|
} | undefined;
|
|
7461
|
-
provider?:
|
|
7480
|
+
provider?: string | undefined;
|
|
7462
7481
|
}>;
|
|
7463
|
-
provider?:
|
|
7482
|
+
provider?: string | undefined;
|
|
7464
7483
|
} | undefined;
|
|
7465
7484
|
references?: {
|
|
7466
7485
|
url: string;
|
|
@@ -7551,7 +7570,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7551
7570
|
height: number;
|
|
7552
7571
|
};
|
|
7553
7572
|
speechParams: {
|
|
7554
|
-
provider:
|
|
7573
|
+
provider: string;
|
|
7555
7574
|
speakers: Record<string, {
|
|
7556
7575
|
voiceId: string;
|
|
7557
7576
|
displayName?: Record<string, string> | undefined;
|
|
@@ -7559,7 +7578,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7559
7578
|
speed?: number | undefined;
|
|
7560
7579
|
instruction?: string | undefined;
|
|
7561
7580
|
} | undefined;
|
|
7562
|
-
provider?:
|
|
7581
|
+
provider?: string | undefined;
|
|
7563
7582
|
}>;
|
|
7564
7583
|
};
|
|
7565
7584
|
beats: {
|
|
@@ -7698,7 +7717,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7698
7717
|
imagePrompt?: string | undefined;
|
|
7699
7718
|
description?: string | undefined;
|
|
7700
7719
|
imageParams?: {
|
|
7701
|
-
provider:
|
|
7720
|
+
provider: string;
|
|
7702
7721
|
style?: string | undefined;
|
|
7703
7722
|
model?: string | undefined;
|
|
7704
7723
|
moderation?: string | undefined;
|
|
@@ -7727,6 +7746,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7727
7746
|
} | undefined;
|
|
7728
7747
|
movieParams?: {
|
|
7729
7748
|
speed?: number | undefined;
|
|
7749
|
+
model?: string | undefined;
|
|
7730
7750
|
fillOption?: {
|
|
7731
7751
|
style: "aspectFit" | "aspectFill";
|
|
7732
7752
|
} | undefined;
|
|
@@ -7754,7 +7774,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7754
7774
|
title?: string | undefined;
|
|
7755
7775
|
description?: string | undefined;
|
|
7756
7776
|
imageParams?: {
|
|
7757
|
-
provider:
|
|
7777
|
+
provider: string;
|
|
7758
7778
|
style?: string | undefined;
|
|
7759
7779
|
model?: string | undefined;
|
|
7760
7780
|
moderation?: string | undefined;
|
|
@@ -7779,7 +7799,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7779
7799
|
}> | undefined;
|
|
7780
7800
|
} | undefined;
|
|
7781
7801
|
movieParams?: {
|
|
7782
|
-
provider?:
|
|
7802
|
+
provider?: string | undefined;
|
|
7783
7803
|
model?: string | undefined;
|
|
7784
7804
|
fillOption?: {
|
|
7785
7805
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7790,7 +7810,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7790
7810
|
} | undefined;
|
|
7791
7811
|
} | undefined;
|
|
7792
7812
|
htmlImageParams?: {
|
|
7793
|
-
provider:
|
|
7813
|
+
provider: string;
|
|
7794
7814
|
model?: string | undefined;
|
|
7795
7815
|
} | undefined;
|
|
7796
7816
|
textSlideParams?: {
|
|
@@ -7964,7 +7984,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7964
7984
|
speaker?: string | undefined;
|
|
7965
7985
|
description?: string | undefined;
|
|
7966
7986
|
imageParams?: {
|
|
7967
|
-
provider?:
|
|
7987
|
+
provider?: string | undefined;
|
|
7968
7988
|
style?: string | undefined;
|
|
7969
7989
|
model?: string | undefined;
|
|
7970
7990
|
moderation?: string | undefined;
|
|
@@ -7993,6 +8013,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7993
8013
|
} | undefined;
|
|
7994
8014
|
movieParams?: {
|
|
7995
8015
|
speed?: number | undefined;
|
|
8016
|
+
model?: string | undefined;
|
|
7996
8017
|
fillOption?: {
|
|
7997
8018
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7998
8019
|
} | undefined;
|
|
@@ -8020,7 +8041,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8020
8041
|
title?: string | undefined;
|
|
8021
8042
|
description?: string | undefined;
|
|
8022
8043
|
imageParams?: {
|
|
8023
|
-
provider?:
|
|
8044
|
+
provider?: string | undefined;
|
|
8024
8045
|
style?: string | undefined;
|
|
8025
8046
|
model?: string | undefined;
|
|
8026
8047
|
moderation?: string | undefined;
|
|
@@ -8067,7 +8088,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8067
8088
|
suppressSpeech?: boolean | undefined;
|
|
8068
8089
|
} | undefined;
|
|
8069
8090
|
movieParams?: {
|
|
8070
|
-
provider?:
|
|
8091
|
+
provider?: string | undefined;
|
|
8071
8092
|
model?: string | undefined;
|
|
8072
8093
|
fillOption?: {
|
|
8073
8094
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8078,7 +8099,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8078
8099
|
} | undefined;
|
|
8079
8100
|
} | undefined;
|
|
8080
8101
|
htmlImageParams?: {
|
|
8081
|
-
provider?:
|
|
8102
|
+
provider?: string | undefined;
|
|
8082
8103
|
model?: string | undefined;
|
|
8083
8104
|
} | undefined;
|
|
8084
8105
|
textSlideParams?: {
|
|
@@ -8100,9 +8121,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8100
8121
|
speed?: number | undefined;
|
|
8101
8122
|
instruction?: string | undefined;
|
|
8102
8123
|
} | undefined;
|
|
8103
|
-
provider?:
|
|
8124
|
+
provider?: string | undefined;
|
|
8104
8125
|
}>;
|
|
8105
|
-
provider?:
|
|
8126
|
+
provider?: string | undefined;
|
|
8106
8127
|
} | undefined;
|
|
8107
8128
|
references?: {
|
|
8108
8129
|
url: string;
|
|
@@ -8142,7 +8163,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8142
8163
|
height: number;
|
|
8143
8164
|
}>>;
|
|
8144
8165
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
8145
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8166
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8146
8167
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8147
8168
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8148
8169
|
voiceId: z.ZodString;
|
|
@@ -8156,7 +8177,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8156
8177
|
speed?: number | undefined;
|
|
8157
8178
|
instruction?: string | undefined;
|
|
8158
8179
|
}>>;
|
|
8159
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8180
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
8160
8181
|
}, "strict", z.ZodTypeAny, {
|
|
8161
8182
|
voiceId: string;
|
|
8162
8183
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8164,7 +8185,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8164
8185
|
speed?: number | undefined;
|
|
8165
8186
|
instruction?: string | undefined;
|
|
8166
8187
|
} | undefined;
|
|
8167
|
-
provider?:
|
|
8188
|
+
provider?: string | undefined;
|
|
8168
8189
|
}, {
|
|
8169
8190
|
voiceId: string;
|
|
8170
8191
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8172,10 +8193,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8172
8193
|
speed?: number | undefined;
|
|
8173
8194
|
instruction?: string | undefined;
|
|
8174
8195
|
} | undefined;
|
|
8175
|
-
provider?:
|
|
8196
|
+
provider?: string | undefined;
|
|
8176
8197
|
}>>;
|
|
8177
8198
|
}, "strict", z.ZodTypeAny, {
|
|
8178
|
-
provider:
|
|
8199
|
+
provider: string;
|
|
8179
8200
|
speakers: Record<string, {
|
|
8180
8201
|
voiceId: string;
|
|
8181
8202
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8183,7 +8204,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8183
8204
|
speed?: number | undefined;
|
|
8184
8205
|
instruction?: string | undefined;
|
|
8185
8206
|
} | undefined;
|
|
8186
|
-
provider?:
|
|
8207
|
+
provider?: string | undefined;
|
|
8187
8208
|
}>;
|
|
8188
8209
|
}, {
|
|
8189
8210
|
speakers: Record<string, {
|
|
@@ -8193,12 +8214,12 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8193
8214
|
speed?: number | undefined;
|
|
8194
8215
|
instruction?: string | undefined;
|
|
8195
8216
|
} | undefined;
|
|
8196
|
-
provider?:
|
|
8217
|
+
provider?: string | undefined;
|
|
8197
8218
|
}>;
|
|
8198
|
-
provider?:
|
|
8219
|
+
provider?: string | undefined;
|
|
8199
8220
|
}>>;
|
|
8200
8221
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8201
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8222
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8202
8223
|
model: z.ZodOptional<z.ZodString>;
|
|
8203
8224
|
style: z.ZodOptional<z.ZodString>;
|
|
8204
8225
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -8282,7 +8303,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8282
8303
|
prompt: string;
|
|
8283
8304
|
}>]>>>;
|
|
8284
8305
|
}, "strict", z.ZodTypeAny, {
|
|
8285
|
-
provider:
|
|
8306
|
+
provider: string;
|
|
8286
8307
|
style?: string | undefined;
|
|
8287
8308
|
model?: string | undefined;
|
|
8288
8309
|
moderation?: string | undefined;
|
|
@@ -8306,7 +8327,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8306
8327
|
prompt: string;
|
|
8307
8328
|
}> | undefined;
|
|
8308
8329
|
}, {
|
|
8309
|
-
provider?:
|
|
8330
|
+
provider?: string | undefined;
|
|
8310
8331
|
style?: string | undefined;
|
|
8311
8332
|
model?: string | undefined;
|
|
8312
8333
|
moderation?: string | undefined;
|
|
@@ -8331,7 +8352,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8331
8352
|
}> | undefined;
|
|
8332
8353
|
}>>;
|
|
8333
8354
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
8334
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8355
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
8335
8356
|
model: z.ZodOptional<z.ZodString>;
|
|
8336
8357
|
transition: z.ZodOptional<z.ZodObject<{
|
|
8337
8358
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -8351,7 +8372,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8351
8372
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
8352
8373
|
}>>;
|
|
8353
8374
|
}, "strict", z.ZodTypeAny, {
|
|
8354
|
-
provider?:
|
|
8375
|
+
provider?: string | undefined;
|
|
8355
8376
|
model?: string | undefined;
|
|
8356
8377
|
fillOption?: {
|
|
8357
8378
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8361,7 +8382,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8361
8382
|
duration: number;
|
|
8362
8383
|
} | undefined;
|
|
8363
8384
|
}, {
|
|
8364
|
-
provider?:
|
|
8385
|
+
provider?: string | undefined;
|
|
8365
8386
|
model?: string | undefined;
|
|
8366
8387
|
fillOption?: {
|
|
8367
8388
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8374,12 +8395,12 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8374
8395
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
8375
8396
|
model: z.ZodOptional<z.ZodString>;
|
|
8376
8397
|
} & {
|
|
8377
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8398
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8378
8399
|
}, "strict", z.ZodTypeAny, {
|
|
8379
|
-
provider:
|
|
8400
|
+
provider: string;
|
|
8380
8401
|
model?: string | undefined;
|
|
8381
8402
|
}, {
|
|
8382
|
-
provider?:
|
|
8403
|
+
provider?: string | undefined;
|
|
8383
8404
|
model?: string | undefined;
|
|
8384
8405
|
}>>;
|
|
8385
8406
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -8519,7 +8540,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8519
8540
|
height: number;
|
|
8520
8541
|
};
|
|
8521
8542
|
speechParams: {
|
|
8522
|
-
provider:
|
|
8543
|
+
provider: string;
|
|
8523
8544
|
speakers: Record<string, {
|
|
8524
8545
|
voiceId: string;
|
|
8525
8546
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8527,11 +8548,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8527
8548
|
speed?: number | undefined;
|
|
8528
8549
|
instruction?: string | undefined;
|
|
8529
8550
|
} | undefined;
|
|
8530
|
-
provider?:
|
|
8551
|
+
provider?: string | undefined;
|
|
8531
8552
|
}>;
|
|
8532
8553
|
};
|
|
8533
8554
|
imageParams?: {
|
|
8534
|
-
provider:
|
|
8555
|
+
provider: string;
|
|
8535
8556
|
style?: string | undefined;
|
|
8536
8557
|
model?: string | undefined;
|
|
8537
8558
|
moderation?: string | undefined;
|
|
@@ -8556,7 +8577,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8556
8577
|
}> | undefined;
|
|
8557
8578
|
} | undefined;
|
|
8558
8579
|
movieParams?: {
|
|
8559
|
-
provider?:
|
|
8580
|
+
provider?: string | undefined;
|
|
8560
8581
|
model?: string | undefined;
|
|
8561
8582
|
fillOption?: {
|
|
8562
8583
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8567,7 +8588,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8567
8588
|
} | undefined;
|
|
8568
8589
|
} | undefined;
|
|
8569
8590
|
htmlImageParams?: {
|
|
8570
|
-
provider:
|
|
8591
|
+
provider: string;
|
|
8571
8592
|
model?: string | undefined;
|
|
8572
8593
|
} | undefined;
|
|
8573
8594
|
textSlideParams?: {
|
|
@@ -8583,7 +8604,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8583
8604
|
credit?: "closing" | undefined;
|
|
8584
8605
|
};
|
|
8585
8606
|
imageParams?: {
|
|
8586
|
-
provider?:
|
|
8607
|
+
provider?: string | undefined;
|
|
8587
8608
|
style?: string | undefined;
|
|
8588
8609
|
model?: string | undefined;
|
|
8589
8610
|
moderation?: string | undefined;
|
|
@@ -8630,7 +8651,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8630
8651
|
suppressSpeech?: boolean | undefined;
|
|
8631
8652
|
} | undefined;
|
|
8632
8653
|
movieParams?: {
|
|
8633
|
-
provider?:
|
|
8654
|
+
provider?: string | undefined;
|
|
8634
8655
|
model?: string | undefined;
|
|
8635
8656
|
fillOption?: {
|
|
8636
8657
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8641,7 +8662,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8641
8662
|
} | undefined;
|
|
8642
8663
|
} | undefined;
|
|
8643
8664
|
htmlImageParams?: {
|
|
8644
|
-
provider?:
|
|
8665
|
+
provider?: string | undefined;
|
|
8645
8666
|
model?: string | undefined;
|
|
8646
8667
|
} | undefined;
|
|
8647
8668
|
textSlideParams?: {
|
|
@@ -8663,9 +8684,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8663
8684
|
speed?: number | undefined;
|
|
8664
8685
|
instruction?: string | undefined;
|
|
8665
8686
|
} | undefined;
|
|
8666
|
-
provider?:
|
|
8687
|
+
provider?: string | undefined;
|
|
8667
8688
|
}>;
|
|
8668
|
-
provider?:
|
|
8689
|
+
provider?: string | undefined;
|
|
8669
8690
|
} | undefined;
|
|
8670
8691
|
}>>;
|
|
8671
8692
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -8705,7 +8726,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8705
8726
|
height: number;
|
|
8706
8727
|
};
|
|
8707
8728
|
speechParams: {
|
|
8708
|
-
provider:
|
|
8729
|
+
provider: string;
|
|
8709
8730
|
speakers: Record<string, {
|
|
8710
8731
|
voiceId: string;
|
|
8711
8732
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8713,11 +8734,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8713
8734
|
speed?: number | undefined;
|
|
8714
8735
|
instruction?: string | undefined;
|
|
8715
8736
|
} | undefined;
|
|
8716
|
-
provider?:
|
|
8737
|
+
provider?: string | undefined;
|
|
8717
8738
|
}>;
|
|
8718
8739
|
};
|
|
8719
8740
|
imageParams?: {
|
|
8720
|
-
provider:
|
|
8741
|
+
provider: string;
|
|
8721
8742
|
style?: string | undefined;
|
|
8722
8743
|
model?: string | undefined;
|
|
8723
8744
|
moderation?: string | undefined;
|
|
@@ -8742,7 +8763,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8742
8763
|
}> | undefined;
|
|
8743
8764
|
} | undefined;
|
|
8744
8765
|
movieParams?: {
|
|
8745
|
-
provider?:
|
|
8766
|
+
provider?: string | undefined;
|
|
8746
8767
|
model?: string | undefined;
|
|
8747
8768
|
fillOption?: {
|
|
8748
8769
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8753,7 +8774,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8753
8774
|
} | undefined;
|
|
8754
8775
|
} | undefined;
|
|
8755
8776
|
htmlImageParams?: {
|
|
8756
|
-
provider:
|
|
8777
|
+
provider: string;
|
|
8757
8778
|
model?: string | undefined;
|
|
8758
8779
|
} | undefined;
|
|
8759
8780
|
textSlideParams?: {
|
|
@@ -8775,7 +8796,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8775
8796
|
credit?: "closing" | undefined;
|
|
8776
8797
|
};
|
|
8777
8798
|
imageParams?: {
|
|
8778
|
-
provider?:
|
|
8799
|
+
provider?: string | undefined;
|
|
8779
8800
|
style?: string | undefined;
|
|
8780
8801
|
model?: string | undefined;
|
|
8781
8802
|
moderation?: string | undefined;
|
|
@@ -8822,7 +8843,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8822
8843
|
suppressSpeech?: boolean | undefined;
|
|
8823
8844
|
} | undefined;
|
|
8824
8845
|
movieParams?: {
|
|
8825
|
-
provider?:
|
|
8846
|
+
provider?: string | undefined;
|
|
8826
8847
|
model?: string | undefined;
|
|
8827
8848
|
fillOption?: {
|
|
8828
8849
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8833,7 +8854,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8833
8854
|
} | undefined;
|
|
8834
8855
|
} | undefined;
|
|
8835
8856
|
htmlImageParams?: {
|
|
8836
|
-
provider?:
|
|
8857
|
+
provider?: string | undefined;
|
|
8837
8858
|
model?: string | undefined;
|
|
8838
8859
|
} | undefined;
|
|
8839
8860
|
textSlideParams?: {
|
|
@@ -8855,9 +8876,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8855
8876
|
speed?: number | undefined;
|
|
8856
8877
|
instruction?: string | undefined;
|
|
8857
8878
|
} | undefined;
|
|
8858
|
-
provider?:
|
|
8879
|
+
provider?: string | undefined;
|
|
8859
8880
|
}>;
|
|
8860
|
-
provider?:
|
|
8881
|
+
provider?: string | undefined;
|
|
8861
8882
|
} | undefined;
|
|
8862
8883
|
} | undefined;
|
|
8863
8884
|
}>;
|
|
@@ -8888,7 +8909,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8888
8909
|
height: number;
|
|
8889
8910
|
}>>;
|
|
8890
8911
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
8891
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8912
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8892
8913
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8893
8914
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8894
8915
|
voiceId: z.ZodString;
|
|
@@ -8902,7 +8923,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8902
8923
|
speed?: number | undefined;
|
|
8903
8924
|
instruction?: string | undefined;
|
|
8904
8925
|
}>>;
|
|
8905
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8926
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
8906
8927
|
}, "strict", z.ZodTypeAny, {
|
|
8907
8928
|
voiceId: string;
|
|
8908
8929
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8910,7 +8931,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8910
8931
|
speed?: number | undefined;
|
|
8911
8932
|
instruction?: string | undefined;
|
|
8912
8933
|
} | undefined;
|
|
8913
|
-
provider?:
|
|
8934
|
+
provider?: string | undefined;
|
|
8914
8935
|
}, {
|
|
8915
8936
|
voiceId: string;
|
|
8916
8937
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8918,10 +8939,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8918
8939
|
speed?: number | undefined;
|
|
8919
8940
|
instruction?: string | undefined;
|
|
8920
8941
|
} | undefined;
|
|
8921
|
-
provider?:
|
|
8942
|
+
provider?: string | undefined;
|
|
8922
8943
|
}>>;
|
|
8923
8944
|
}, "strict", z.ZodTypeAny, {
|
|
8924
|
-
provider:
|
|
8945
|
+
provider: string;
|
|
8925
8946
|
speakers: Record<string, {
|
|
8926
8947
|
voiceId: string;
|
|
8927
8948
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8929,7 +8950,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8929
8950
|
speed?: number | undefined;
|
|
8930
8951
|
instruction?: string | undefined;
|
|
8931
8952
|
} | undefined;
|
|
8932
|
-
provider?:
|
|
8953
|
+
provider?: string | undefined;
|
|
8933
8954
|
}>;
|
|
8934
8955
|
}, {
|
|
8935
8956
|
speakers: Record<string, {
|
|
@@ -8939,12 +8960,12 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8939
8960
|
speed?: number | undefined;
|
|
8940
8961
|
instruction?: string | undefined;
|
|
8941
8962
|
} | undefined;
|
|
8942
|
-
provider?:
|
|
8963
|
+
provider?: string | undefined;
|
|
8943
8964
|
}>;
|
|
8944
|
-
provider?:
|
|
8965
|
+
provider?: string | undefined;
|
|
8945
8966
|
}>>;
|
|
8946
8967
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8947
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8968
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8948
8969
|
model: z.ZodOptional<z.ZodString>;
|
|
8949
8970
|
style: z.ZodOptional<z.ZodString>;
|
|
8950
8971
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -9028,7 +9049,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9028
9049
|
prompt: string;
|
|
9029
9050
|
}>]>>>;
|
|
9030
9051
|
}, "strict", z.ZodTypeAny, {
|
|
9031
|
-
provider:
|
|
9052
|
+
provider: string;
|
|
9032
9053
|
style?: string | undefined;
|
|
9033
9054
|
model?: string | undefined;
|
|
9034
9055
|
moderation?: string | undefined;
|
|
@@ -9052,7 +9073,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9052
9073
|
prompt: string;
|
|
9053
9074
|
}> | undefined;
|
|
9054
9075
|
}, {
|
|
9055
|
-
provider?:
|
|
9076
|
+
provider?: string | undefined;
|
|
9056
9077
|
style?: string | undefined;
|
|
9057
9078
|
model?: string | undefined;
|
|
9058
9079
|
moderation?: string | undefined;
|
|
@@ -9077,7 +9098,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9077
9098
|
}> | undefined;
|
|
9078
9099
|
}>>;
|
|
9079
9100
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
9080
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
9101
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
9081
9102
|
model: z.ZodOptional<z.ZodString>;
|
|
9082
9103
|
transition: z.ZodOptional<z.ZodObject<{
|
|
9083
9104
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -9097,7 +9118,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9097
9118
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
9098
9119
|
}>>;
|
|
9099
9120
|
}, "strict", z.ZodTypeAny, {
|
|
9100
|
-
provider?:
|
|
9121
|
+
provider?: string | undefined;
|
|
9101
9122
|
model?: string | undefined;
|
|
9102
9123
|
fillOption?: {
|
|
9103
9124
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9107,7 +9128,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9107
9128
|
duration: number;
|
|
9108
9129
|
} | undefined;
|
|
9109
9130
|
}, {
|
|
9110
|
-
provider?:
|
|
9131
|
+
provider?: string | undefined;
|
|
9111
9132
|
model?: string | undefined;
|
|
9112
9133
|
fillOption?: {
|
|
9113
9134
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9120,12 +9141,12 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9120
9141
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
9121
9142
|
model: z.ZodOptional<z.ZodString>;
|
|
9122
9143
|
} & {
|
|
9123
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
9144
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
9124
9145
|
}, "strict", z.ZodTypeAny, {
|
|
9125
|
-
provider:
|
|
9146
|
+
provider: string;
|
|
9126
9147
|
model?: string | undefined;
|
|
9127
9148
|
}, {
|
|
9128
|
-
provider?:
|
|
9149
|
+
provider?: string | undefined;
|
|
9129
9150
|
model?: string | undefined;
|
|
9130
9151
|
}>>;
|
|
9131
9152
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -9265,7 +9286,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9265
9286
|
height: number;
|
|
9266
9287
|
};
|
|
9267
9288
|
speechParams: {
|
|
9268
|
-
provider:
|
|
9289
|
+
provider: string;
|
|
9269
9290
|
speakers: Record<string, {
|
|
9270
9291
|
voiceId: string;
|
|
9271
9292
|
displayName?: Record<string, string> | undefined;
|
|
@@ -9273,11 +9294,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9273
9294
|
speed?: number | undefined;
|
|
9274
9295
|
instruction?: string | undefined;
|
|
9275
9296
|
} | undefined;
|
|
9276
|
-
provider?:
|
|
9297
|
+
provider?: string | undefined;
|
|
9277
9298
|
}>;
|
|
9278
9299
|
};
|
|
9279
9300
|
imageParams?: {
|
|
9280
|
-
provider:
|
|
9301
|
+
provider: string;
|
|
9281
9302
|
style?: string | undefined;
|
|
9282
9303
|
model?: string | undefined;
|
|
9283
9304
|
moderation?: string | undefined;
|
|
@@ -9302,7 +9323,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9302
9323
|
}> | undefined;
|
|
9303
9324
|
} | undefined;
|
|
9304
9325
|
movieParams?: {
|
|
9305
|
-
provider?:
|
|
9326
|
+
provider?: string | undefined;
|
|
9306
9327
|
model?: string | undefined;
|
|
9307
9328
|
fillOption?: {
|
|
9308
9329
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9313,7 +9334,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9313
9334
|
} | undefined;
|
|
9314
9335
|
} | undefined;
|
|
9315
9336
|
htmlImageParams?: {
|
|
9316
|
-
provider:
|
|
9337
|
+
provider: string;
|
|
9317
9338
|
model?: string | undefined;
|
|
9318
9339
|
} | undefined;
|
|
9319
9340
|
textSlideParams?: {
|
|
@@ -9329,7 +9350,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9329
9350
|
credit?: "closing" | undefined;
|
|
9330
9351
|
};
|
|
9331
9352
|
imageParams?: {
|
|
9332
|
-
provider?:
|
|
9353
|
+
provider?: string | undefined;
|
|
9333
9354
|
style?: string | undefined;
|
|
9334
9355
|
model?: string | undefined;
|
|
9335
9356
|
moderation?: string | undefined;
|
|
@@ -9376,7 +9397,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9376
9397
|
suppressSpeech?: boolean | undefined;
|
|
9377
9398
|
} | undefined;
|
|
9378
9399
|
movieParams?: {
|
|
9379
|
-
provider?:
|
|
9400
|
+
provider?: string | undefined;
|
|
9380
9401
|
model?: string | undefined;
|
|
9381
9402
|
fillOption?: {
|
|
9382
9403
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9387,7 +9408,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9387
9408
|
} | undefined;
|
|
9388
9409
|
} | undefined;
|
|
9389
9410
|
htmlImageParams?: {
|
|
9390
|
-
provider?:
|
|
9411
|
+
provider?: string | undefined;
|
|
9391
9412
|
model?: string | undefined;
|
|
9392
9413
|
} | undefined;
|
|
9393
9414
|
textSlideParams?: {
|
|
@@ -9409,9 +9430,9 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9409
9430
|
speed?: number | undefined;
|
|
9410
9431
|
instruction?: string | undefined;
|
|
9411
9432
|
} | undefined;
|
|
9412
|
-
provider?:
|
|
9433
|
+
provider?: string | undefined;
|
|
9413
9434
|
}>;
|
|
9414
|
-
provider?:
|
|
9435
|
+
provider?: string | undefined;
|
|
9415
9436
|
} | undefined;
|
|
9416
9437
|
}>>;
|
|
9417
9438
|
} & {
|
|
@@ -9454,7 +9475,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9454
9475
|
height: number;
|
|
9455
9476
|
};
|
|
9456
9477
|
speechParams: {
|
|
9457
|
-
provider:
|
|
9478
|
+
provider: string;
|
|
9458
9479
|
speakers: Record<string, {
|
|
9459
9480
|
voiceId: string;
|
|
9460
9481
|
displayName?: Record<string, string> | undefined;
|
|
@@ -9462,11 +9483,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9462
9483
|
speed?: number | undefined;
|
|
9463
9484
|
instruction?: string | undefined;
|
|
9464
9485
|
} | undefined;
|
|
9465
|
-
provider?:
|
|
9486
|
+
provider?: string | undefined;
|
|
9466
9487
|
}>;
|
|
9467
9488
|
};
|
|
9468
9489
|
imageParams?: {
|
|
9469
|
-
provider:
|
|
9490
|
+
provider: string;
|
|
9470
9491
|
style?: string | undefined;
|
|
9471
9492
|
model?: string | undefined;
|
|
9472
9493
|
moderation?: string | undefined;
|
|
@@ -9491,7 +9512,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9491
9512
|
}> | undefined;
|
|
9492
9513
|
} | undefined;
|
|
9493
9514
|
movieParams?: {
|
|
9494
|
-
provider?:
|
|
9515
|
+
provider?: string | undefined;
|
|
9495
9516
|
model?: string | undefined;
|
|
9496
9517
|
fillOption?: {
|
|
9497
9518
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9502,7 +9523,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9502
9523
|
} | undefined;
|
|
9503
9524
|
} | undefined;
|
|
9504
9525
|
htmlImageParams?: {
|
|
9505
|
-
provider:
|
|
9526
|
+
provider: string;
|
|
9506
9527
|
model?: string | undefined;
|
|
9507
9528
|
} | undefined;
|
|
9508
9529
|
textSlideParams?: {
|
|
@@ -9525,7 +9546,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9525
9546
|
credit?: "closing" | undefined;
|
|
9526
9547
|
};
|
|
9527
9548
|
imageParams?: {
|
|
9528
|
-
provider?:
|
|
9549
|
+
provider?: string | undefined;
|
|
9529
9550
|
style?: string | undefined;
|
|
9530
9551
|
model?: string | undefined;
|
|
9531
9552
|
moderation?: string | undefined;
|
|
@@ -9572,7 +9593,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9572
9593
|
suppressSpeech?: boolean | undefined;
|
|
9573
9594
|
} | undefined;
|
|
9574
9595
|
movieParams?: {
|
|
9575
|
-
provider?:
|
|
9596
|
+
provider?: string | undefined;
|
|
9576
9597
|
model?: string | undefined;
|
|
9577
9598
|
fillOption?: {
|
|
9578
9599
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9583,7 +9604,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9583
9604
|
} | undefined;
|
|
9584
9605
|
} | undefined;
|
|
9585
9606
|
htmlImageParams?: {
|
|
9586
|
-
provider?:
|
|
9607
|
+
provider?: string | undefined;
|
|
9587
9608
|
model?: string | undefined;
|
|
9588
9609
|
} | undefined;
|
|
9589
9610
|
textSlideParams?: {
|
|
@@ -9605,9 +9626,9 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9605
9626
|
speed?: number | undefined;
|
|
9606
9627
|
instruction?: string | undefined;
|
|
9607
9628
|
} | undefined;
|
|
9608
|
-
provider?:
|
|
9629
|
+
provider?: string | undefined;
|
|
9609
9630
|
}>;
|
|
9610
|
-
provider?:
|
|
9631
|
+
provider?: string | undefined;
|
|
9611
9632
|
} | undefined;
|
|
9612
9633
|
} | undefined;
|
|
9613
9634
|
}>;
|