mulmocast 0.1.4 → 0.1.5
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 +8 -5
- package/lib/actions/image_agents.d.ts +3 -3
- package/lib/actions/image_references.js +2 -1
- package/lib/actions/images.js +16 -2
- package/lib/actions/movie.js +3 -2
- package/lib/agents/add_bgm_agent.js +1 -1
- package/lib/agents/combine_audio_files_agent.js +10 -7
- package/lib/agents/tts_elevenlabs_agent.d.ts +2 -1
- package/lib/agents/tts_elevenlabs_agent.js +4 -3
- package/lib/agents/tts_google_agent.d.ts +2 -9
- package/lib/agents/tts_nijivoice_agent.d.ts +2 -1
- package/lib/agents/tts_nijivoice_agent.js +3 -3
- package/lib/agents/tts_openai_agent.d.ts +2 -13
- package/lib/agents/tts_openai_agent.js +4 -3
- package/lib/index.browser.d.ts +1 -0
- package/lib/index.browser.js +1 -0
- package/lib/index.js +1 -0
- package/lib/methods/mulmo_presentation_style.d.ts +1 -0
- package/lib/methods/mulmo_presentation_style.js +4 -0
- package/lib/types/agent.d.ts +29 -2
- package/lib/types/agent.js +0 -1
- package/lib/types/schema.d.ts +344 -254
- package/lib/types/schema.js +5 -3
- package/lib/utils/context.d.ts +24 -19
- package/lib/utils/ffmpeg_utils.d.ts +4 -1
- package/lib/utils/ffmpeg_utils.js +2 -1
- package/lib/utils/preprocess.d.ts +21 -18
- package/lib/utils/provider2agent.d.ts +4 -0
- package/lib/utils/provider2agent.js +6 -0
- package/package.json +2 -2
package/lib/types/schema.d.ts
CHANGED
|
@@ -63,6 +63,7 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
63
63
|
instruction?: string | undefined;
|
|
64
64
|
}>>;
|
|
65
65
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
66
|
+
model: z.ZodOptional<z.ZodString>;
|
|
66
67
|
}, "strict", z.ZodTypeAny, {
|
|
67
68
|
voiceId: string;
|
|
68
69
|
displayName?: Record<string, string> | undefined;
|
|
@@ -71,6 +72,7 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
71
72
|
instruction?: string | undefined;
|
|
72
73
|
} | undefined;
|
|
73
74
|
provider?: string | undefined;
|
|
75
|
+
model?: string | undefined;
|
|
74
76
|
}, {
|
|
75
77
|
voiceId: string;
|
|
76
78
|
displayName?: Record<string, string> | undefined;
|
|
@@ -79,6 +81,7 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
79
81
|
instruction?: string | undefined;
|
|
80
82
|
} | undefined;
|
|
81
83
|
provider?: string | undefined;
|
|
84
|
+
model?: string | undefined;
|
|
82
85
|
}>;
|
|
83
86
|
export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
84
87
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -94,6 +97,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
94
97
|
instruction?: string | undefined;
|
|
95
98
|
}>>;
|
|
96
99
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
100
|
+
model: z.ZodOptional<z.ZodString>;
|
|
97
101
|
}, "strict", z.ZodTypeAny, {
|
|
98
102
|
voiceId: string;
|
|
99
103
|
displayName?: Record<string, string> | undefined;
|
|
@@ -102,6 +106,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
102
106
|
instruction?: string | undefined;
|
|
103
107
|
} | undefined;
|
|
104
108
|
provider?: string | undefined;
|
|
109
|
+
model?: string | undefined;
|
|
105
110
|
}, {
|
|
106
111
|
voiceId: string;
|
|
107
112
|
displayName?: Record<string, string> | undefined;
|
|
@@ -110,6 +115,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
110
115
|
instruction?: string | undefined;
|
|
111
116
|
} | undefined;
|
|
112
117
|
provider?: string | undefined;
|
|
118
|
+
model?: string | undefined;
|
|
113
119
|
}>>;
|
|
114
120
|
export declare const mediaSourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
115
121
|
kind: z.ZodLiteral<"url">;
|
|
@@ -651,8 +657,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
651
657
|
path: string;
|
|
652
658
|
kind: "path";
|
|
653
659
|
}>]>;
|
|
654
|
-
} & {
|
|
655
|
-
mixAudio: z.ZodDefault<z.ZodNumber>;
|
|
656
660
|
}, "strict", z.ZodTypeAny, {
|
|
657
661
|
type: "movie";
|
|
658
662
|
source: {
|
|
@@ -668,7 +672,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
668
672
|
path: string;
|
|
669
673
|
kind: "path";
|
|
670
674
|
};
|
|
671
|
-
mixAudio: number;
|
|
672
675
|
}, {
|
|
673
676
|
type: "movie";
|
|
674
677
|
source: {
|
|
@@ -684,7 +687,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
684
687
|
path: string;
|
|
685
688
|
kind: "path";
|
|
686
689
|
};
|
|
687
|
-
mixAudio?: number | undefined;
|
|
688
690
|
}>, z.ZodObject<{
|
|
689
691
|
type: z.ZodLiteral<"textSlide">;
|
|
690
692
|
slide: z.ZodObject<{
|
|
@@ -1111,8 +1113,8 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1111
1113
|
}>]>>>;
|
|
1112
1114
|
}, "strict", z.ZodTypeAny, {
|
|
1113
1115
|
provider: string;
|
|
1114
|
-
style?: string | undefined;
|
|
1115
1116
|
model?: string | undefined;
|
|
1117
|
+
style?: string | undefined;
|
|
1116
1118
|
moderation?: string | undefined;
|
|
1117
1119
|
images?: Record<string, {
|
|
1118
1120
|
type: "image";
|
|
@@ -1135,8 +1137,8 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1135
1137
|
}> | undefined;
|
|
1136
1138
|
}, {
|
|
1137
1139
|
provider?: string | undefined;
|
|
1138
|
-
style?: string | undefined;
|
|
1139
1140
|
model?: string | undefined;
|
|
1141
|
+
style?: string | undefined;
|
|
1140
1142
|
moderation?: string | undefined;
|
|
1141
1143
|
images?: Record<string, {
|
|
1142
1144
|
type: "image";
|
|
@@ -1167,10 +1169,13 @@ export declare const textSlideParamsSchema: z.ZodObject<{
|
|
|
1167
1169
|
}>;
|
|
1168
1170
|
export declare const beatAudioParamsSchema: z.ZodObject<{
|
|
1169
1171
|
padding: z.ZodOptional<z.ZodNumber>;
|
|
1172
|
+
movieVolume: z.ZodDefault<z.ZodNumber>;
|
|
1170
1173
|
}, "strict", z.ZodTypeAny, {
|
|
1174
|
+
movieVolume: number;
|
|
1171
1175
|
padding?: number | undefined;
|
|
1172
1176
|
}, {
|
|
1173
1177
|
padding?: number | undefined;
|
|
1178
|
+
movieVolume?: number | undefined;
|
|
1174
1179
|
}>;
|
|
1175
1180
|
export declare const mulmoHtmlImageParamsSchema: z.ZodObject<{
|
|
1176
1181
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1552,8 +1557,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1552
1557
|
path: string;
|
|
1553
1558
|
kind: "path";
|
|
1554
1559
|
}>]>;
|
|
1555
|
-
} & {
|
|
1556
|
-
mixAudio: z.ZodDefault<z.ZodNumber>;
|
|
1557
1560
|
}, "strict", z.ZodTypeAny, {
|
|
1558
1561
|
type: "movie";
|
|
1559
1562
|
source: {
|
|
@@ -1569,7 +1572,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1569
1572
|
path: string;
|
|
1570
1573
|
kind: "path";
|
|
1571
1574
|
};
|
|
1572
|
-
mixAudio: number;
|
|
1573
1575
|
}, {
|
|
1574
1576
|
type: "movie";
|
|
1575
1577
|
source: {
|
|
@@ -1585,7 +1587,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1585
1587
|
path: string;
|
|
1586
1588
|
kind: "path";
|
|
1587
1589
|
};
|
|
1588
|
-
mixAudio?: number | undefined;
|
|
1589
1590
|
}>, z.ZodObject<{
|
|
1590
1591
|
type: z.ZodLiteral<"textSlide">;
|
|
1591
1592
|
slide: z.ZodObject<{
|
|
@@ -1896,8 +1897,8 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1896
1897
|
}>]>>>;
|
|
1897
1898
|
}, "strict", z.ZodTypeAny, {
|
|
1898
1899
|
provider: string;
|
|
1899
|
-
style?: string | undefined;
|
|
1900
1900
|
model?: string | undefined;
|
|
1901
|
+
style?: string | undefined;
|
|
1901
1902
|
moderation?: string | undefined;
|
|
1902
1903
|
images?: Record<string, {
|
|
1903
1904
|
type: "image";
|
|
@@ -1920,8 +1921,8 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1920
1921
|
}> | undefined;
|
|
1921
1922
|
}, {
|
|
1922
1923
|
provider?: string | undefined;
|
|
1923
|
-
style?: string | undefined;
|
|
1924
1924
|
model?: string | undefined;
|
|
1925
|
+
style?: string | undefined;
|
|
1925
1926
|
moderation?: string | undefined;
|
|
1926
1927
|
images?: Record<string, {
|
|
1927
1928
|
type: "image";
|
|
@@ -1945,10 +1946,13 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1945
1946
|
}>>;
|
|
1946
1947
|
audioParams: z.ZodOptional<z.ZodObject<{
|
|
1947
1948
|
padding: z.ZodOptional<z.ZodNumber>;
|
|
1949
|
+
movieVolume: z.ZodDefault<z.ZodNumber>;
|
|
1948
1950
|
}, "strict", z.ZodTypeAny, {
|
|
1951
|
+
movieVolume: number;
|
|
1949
1952
|
padding?: number | undefined;
|
|
1950
1953
|
}, {
|
|
1951
1954
|
padding?: number | undefined;
|
|
1955
|
+
movieVolume?: number | undefined;
|
|
1952
1956
|
}>>;
|
|
1953
1957
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
1954
1958
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -2085,6 +2089,21 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2085
2089
|
path: string;
|
|
2086
2090
|
kind: "path";
|
|
2087
2091
|
};
|
|
2092
|
+
} | {
|
|
2093
|
+
type: "movie";
|
|
2094
|
+
source: {
|
|
2095
|
+
url: string;
|
|
2096
|
+
kind: "url";
|
|
2097
|
+
} | {
|
|
2098
|
+
kind: "base64";
|
|
2099
|
+
data: string;
|
|
2100
|
+
} | {
|
|
2101
|
+
text: string;
|
|
2102
|
+
kind: "text";
|
|
2103
|
+
} | {
|
|
2104
|
+
path: string;
|
|
2105
|
+
kind: "path";
|
|
2106
|
+
};
|
|
2088
2107
|
} | {
|
|
2089
2108
|
type: "textSlide";
|
|
2090
2109
|
slide: {
|
|
@@ -2122,22 +2141,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2122
2141
|
} | {
|
|
2123
2142
|
type: "voice_over";
|
|
2124
2143
|
startAt?: number | undefined;
|
|
2125
|
-
} | {
|
|
2126
|
-
type: "movie";
|
|
2127
|
-
source: {
|
|
2128
|
-
url: string;
|
|
2129
|
-
kind: "url";
|
|
2130
|
-
} | {
|
|
2131
|
-
kind: "base64";
|
|
2132
|
-
data: string;
|
|
2133
|
-
} | {
|
|
2134
|
-
text: string;
|
|
2135
|
-
kind: "text";
|
|
2136
|
-
} | {
|
|
2137
|
-
path: string;
|
|
2138
|
-
kind: "path";
|
|
2139
|
-
};
|
|
2140
|
-
mixAudio: number;
|
|
2141
2144
|
} | undefined;
|
|
2142
2145
|
id?: string | undefined;
|
|
2143
2146
|
audio?: {
|
|
@@ -2163,8 +2166,8 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2163
2166
|
description?: string | undefined;
|
|
2164
2167
|
imageParams?: {
|
|
2165
2168
|
provider: string;
|
|
2166
|
-
style?: string | undefined;
|
|
2167
2169
|
model?: string | undefined;
|
|
2170
|
+
style?: string | undefined;
|
|
2168
2171
|
moderation?: string | undefined;
|
|
2169
2172
|
images?: Record<string, {
|
|
2170
2173
|
type: "image";
|
|
@@ -2187,6 +2190,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2187
2190
|
}> | undefined;
|
|
2188
2191
|
} | undefined;
|
|
2189
2192
|
audioParams?: {
|
|
2193
|
+
movieVolume: number;
|
|
2190
2194
|
padding?: number | undefined;
|
|
2191
2195
|
} | undefined;
|
|
2192
2196
|
movieParams?: {
|
|
@@ -2272,6 +2276,21 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2272
2276
|
path: string;
|
|
2273
2277
|
kind: "path";
|
|
2274
2278
|
};
|
|
2279
|
+
} | {
|
|
2280
|
+
type: "movie";
|
|
2281
|
+
source: {
|
|
2282
|
+
url: string;
|
|
2283
|
+
kind: "url";
|
|
2284
|
+
} | {
|
|
2285
|
+
kind: "base64";
|
|
2286
|
+
data: string;
|
|
2287
|
+
} | {
|
|
2288
|
+
text: string;
|
|
2289
|
+
kind: "text";
|
|
2290
|
+
} | {
|
|
2291
|
+
path: string;
|
|
2292
|
+
kind: "path";
|
|
2293
|
+
};
|
|
2275
2294
|
} | {
|
|
2276
2295
|
type: "textSlide";
|
|
2277
2296
|
slide: {
|
|
@@ -2309,22 +2328,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2309
2328
|
} | {
|
|
2310
2329
|
type: "voice_over";
|
|
2311
2330
|
startAt?: number | undefined;
|
|
2312
|
-
} | {
|
|
2313
|
-
type: "movie";
|
|
2314
|
-
source: {
|
|
2315
|
-
url: string;
|
|
2316
|
-
kind: "url";
|
|
2317
|
-
} | {
|
|
2318
|
-
kind: "base64";
|
|
2319
|
-
data: string;
|
|
2320
|
-
} | {
|
|
2321
|
-
text: string;
|
|
2322
|
-
kind: "text";
|
|
2323
|
-
} | {
|
|
2324
|
-
path: string;
|
|
2325
|
-
kind: "path";
|
|
2326
|
-
};
|
|
2327
|
-
mixAudio?: number | undefined;
|
|
2328
2331
|
} | undefined;
|
|
2329
2332
|
id?: string | undefined;
|
|
2330
2333
|
audio?: {
|
|
@@ -2351,8 +2354,8 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2351
2354
|
description?: string | undefined;
|
|
2352
2355
|
imageParams?: {
|
|
2353
2356
|
provider?: string | undefined;
|
|
2354
|
-
style?: string | undefined;
|
|
2355
2357
|
model?: string | undefined;
|
|
2358
|
+
style?: string | undefined;
|
|
2356
2359
|
moderation?: string | undefined;
|
|
2357
2360
|
images?: Record<string, {
|
|
2358
2361
|
type: "image";
|
|
@@ -2376,6 +2379,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2376
2379
|
} | undefined;
|
|
2377
2380
|
audioParams?: {
|
|
2378
2381
|
padding?: number | undefined;
|
|
2382
|
+
movieVolume?: number | undefined;
|
|
2379
2383
|
} | undefined;
|
|
2380
2384
|
movieParams?: {
|
|
2381
2385
|
speed?: number | undefined;
|
|
@@ -2439,6 +2443,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2439
2443
|
instruction?: string | undefined;
|
|
2440
2444
|
}>>;
|
|
2441
2445
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2446
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2442
2447
|
}, "strict", z.ZodTypeAny, {
|
|
2443
2448
|
voiceId: string;
|
|
2444
2449
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2447,6 +2452,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2447
2452
|
instruction?: string | undefined;
|
|
2448
2453
|
} | undefined;
|
|
2449
2454
|
provider?: string | undefined;
|
|
2455
|
+
model?: string | undefined;
|
|
2450
2456
|
}, {
|
|
2451
2457
|
voiceId: string;
|
|
2452
2458
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2455,7 +2461,9 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2455
2461
|
instruction?: string | undefined;
|
|
2456
2462
|
} | undefined;
|
|
2457
2463
|
provider?: string | undefined;
|
|
2464
|
+
model?: string | undefined;
|
|
2458
2465
|
}>>;
|
|
2466
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2459
2467
|
}, "strict", z.ZodTypeAny, {
|
|
2460
2468
|
provider: string;
|
|
2461
2469
|
speakers: Record<string, {
|
|
@@ -2466,7 +2474,9 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2466
2474
|
instruction?: string | undefined;
|
|
2467
2475
|
} | undefined;
|
|
2468
2476
|
provider?: string | undefined;
|
|
2477
|
+
model?: string | undefined;
|
|
2469
2478
|
}>;
|
|
2479
|
+
model?: string | undefined;
|
|
2470
2480
|
}, {
|
|
2471
2481
|
speakers: Record<string, {
|
|
2472
2482
|
voiceId: string;
|
|
@@ -2476,8 +2486,10 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2476
2486
|
instruction?: string | undefined;
|
|
2477
2487
|
} | undefined;
|
|
2478
2488
|
provider?: string | undefined;
|
|
2489
|
+
model?: string | undefined;
|
|
2479
2490
|
}>;
|
|
2480
2491
|
provider?: string | undefined;
|
|
2492
|
+
model?: string | undefined;
|
|
2481
2493
|
}>;
|
|
2482
2494
|
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2483
2495
|
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
@@ -2589,6 +2601,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2589
2601
|
instruction?: string | undefined;
|
|
2590
2602
|
}>>;
|
|
2591
2603
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2604
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2592
2605
|
}, "strict", z.ZodTypeAny, {
|
|
2593
2606
|
voiceId: string;
|
|
2594
2607
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2597,6 +2610,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2597
2610
|
instruction?: string | undefined;
|
|
2598
2611
|
} | undefined;
|
|
2599
2612
|
provider?: string | undefined;
|
|
2613
|
+
model?: string | undefined;
|
|
2600
2614
|
}, {
|
|
2601
2615
|
voiceId: string;
|
|
2602
2616
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2605,7 +2619,9 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2605
2619
|
instruction?: string | undefined;
|
|
2606
2620
|
} | undefined;
|
|
2607
2621
|
provider?: string | undefined;
|
|
2622
|
+
model?: string | undefined;
|
|
2608
2623
|
}>>;
|
|
2624
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2609
2625
|
}, "strict", z.ZodTypeAny, {
|
|
2610
2626
|
provider: string;
|
|
2611
2627
|
speakers: Record<string, {
|
|
@@ -2616,7 +2632,9 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2616
2632
|
instruction?: string | undefined;
|
|
2617
2633
|
} | undefined;
|
|
2618
2634
|
provider?: string | undefined;
|
|
2635
|
+
model?: string | undefined;
|
|
2619
2636
|
}>;
|
|
2637
|
+
model?: string | undefined;
|
|
2620
2638
|
}, {
|
|
2621
2639
|
speakers: Record<string, {
|
|
2622
2640
|
voiceId: string;
|
|
@@ -2626,8 +2644,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2626
2644
|
instruction?: string | undefined;
|
|
2627
2645
|
} | undefined;
|
|
2628
2646
|
provider?: string | undefined;
|
|
2647
|
+
model?: string | undefined;
|
|
2629
2648
|
}>;
|
|
2630
2649
|
provider?: string | undefined;
|
|
2650
|
+
model?: string | undefined;
|
|
2631
2651
|
}>>;
|
|
2632
2652
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
2633
2653
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
@@ -2715,8 +2735,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2715
2735
|
}>]>>>;
|
|
2716
2736
|
}, "strict", z.ZodTypeAny, {
|
|
2717
2737
|
provider: string;
|
|
2718
|
-
style?: string | undefined;
|
|
2719
2738
|
model?: string | undefined;
|
|
2739
|
+
style?: string | undefined;
|
|
2720
2740
|
moderation?: string | undefined;
|
|
2721
2741
|
images?: Record<string, {
|
|
2722
2742
|
type: "image";
|
|
@@ -2739,8 +2759,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2739
2759
|
}> | undefined;
|
|
2740
2760
|
}, {
|
|
2741
2761
|
provider?: string | undefined;
|
|
2742
|
-
style?: string | undefined;
|
|
2743
2762
|
model?: string | undefined;
|
|
2763
|
+
style?: string | undefined;
|
|
2744
2764
|
moderation?: string | undefined;
|
|
2745
2765
|
images?: Record<string, {
|
|
2746
2766
|
type: "image";
|
|
@@ -2960,12 +2980,14 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2960
2980
|
instruction?: string | undefined;
|
|
2961
2981
|
} | undefined;
|
|
2962
2982
|
provider?: string | undefined;
|
|
2983
|
+
model?: string | undefined;
|
|
2963
2984
|
}>;
|
|
2985
|
+
model?: string | undefined;
|
|
2964
2986
|
};
|
|
2965
2987
|
imageParams?: {
|
|
2966
2988
|
provider: string;
|
|
2967
|
-
style?: string | undefined;
|
|
2968
2989
|
model?: string | undefined;
|
|
2990
|
+
style?: string | undefined;
|
|
2969
2991
|
moderation?: string | undefined;
|
|
2970
2992
|
images?: Record<string, {
|
|
2971
2993
|
type: "image";
|
|
@@ -3016,8 +3038,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3016
3038
|
};
|
|
3017
3039
|
imageParams?: {
|
|
3018
3040
|
provider?: string | undefined;
|
|
3019
|
-
style?: string | undefined;
|
|
3020
3041
|
model?: string | undefined;
|
|
3042
|
+
style?: string | undefined;
|
|
3021
3043
|
moderation?: string | undefined;
|
|
3022
3044
|
images?: Record<string, {
|
|
3023
3045
|
type: "image";
|
|
@@ -3096,8 +3118,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3096
3118
|
instruction?: string | undefined;
|
|
3097
3119
|
} | undefined;
|
|
3098
3120
|
provider?: string | undefined;
|
|
3121
|
+
model?: string | undefined;
|
|
3099
3122
|
}>;
|
|
3100
3123
|
provider?: string | undefined;
|
|
3124
|
+
model?: string | undefined;
|
|
3101
3125
|
} | undefined;
|
|
3102
3126
|
}>;
|
|
3103
3127
|
export declare const mulmoReferenceSchema: z.ZodObject<{
|
|
@@ -3153,6 +3177,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3153
3177
|
instruction?: string | undefined;
|
|
3154
3178
|
}>>;
|
|
3155
3179
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
3180
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3156
3181
|
}, "strict", z.ZodTypeAny, {
|
|
3157
3182
|
voiceId: string;
|
|
3158
3183
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3161,6 +3186,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3161
3186
|
instruction?: string | undefined;
|
|
3162
3187
|
} | undefined;
|
|
3163
3188
|
provider?: string | undefined;
|
|
3189
|
+
model?: string | undefined;
|
|
3164
3190
|
}, {
|
|
3165
3191
|
voiceId: string;
|
|
3166
3192
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3169,7 +3195,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3169
3195
|
instruction?: string | undefined;
|
|
3170
3196
|
} | undefined;
|
|
3171
3197
|
provider?: string | undefined;
|
|
3198
|
+
model?: string | undefined;
|
|
3172
3199
|
}>>;
|
|
3200
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3173
3201
|
}, "strict", z.ZodTypeAny, {
|
|
3174
3202
|
provider: string;
|
|
3175
3203
|
speakers: Record<string, {
|
|
@@ -3180,7 +3208,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3180
3208
|
instruction?: string | undefined;
|
|
3181
3209
|
} | undefined;
|
|
3182
3210
|
provider?: string | undefined;
|
|
3211
|
+
model?: string | undefined;
|
|
3183
3212
|
}>;
|
|
3213
|
+
model?: string | undefined;
|
|
3184
3214
|
}, {
|
|
3185
3215
|
speakers: Record<string, {
|
|
3186
3216
|
voiceId: string;
|
|
@@ -3190,8 +3220,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3190
3220
|
instruction?: string | undefined;
|
|
3191
3221
|
} | undefined;
|
|
3192
3222
|
provider?: string | undefined;
|
|
3223
|
+
model?: string | undefined;
|
|
3193
3224
|
}>;
|
|
3194
3225
|
provider?: string | undefined;
|
|
3226
|
+
model?: string | undefined;
|
|
3195
3227
|
}>>;
|
|
3196
3228
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3197
3229
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
@@ -3279,8 +3311,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3279
3311
|
}>]>>>;
|
|
3280
3312
|
}, "strict", z.ZodTypeAny, {
|
|
3281
3313
|
provider: string;
|
|
3282
|
-
style?: string | undefined;
|
|
3283
3314
|
model?: string | undefined;
|
|
3315
|
+
style?: string | undefined;
|
|
3284
3316
|
moderation?: string | undefined;
|
|
3285
3317
|
images?: Record<string, {
|
|
3286
3318
|
type: "image";
|
|
@@ -3303,8 +3335,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3303
3335
|
}> | undefined;
|
|
3304
3336
|
}, {
|
|
3305
3337
|
provider?: string | undefined;
|
|
3306
|
-
style?: string | undefined;
|
|
3307
3338
|
model?: string | undefined;
|
|
3339
|
+
style?: string | undefined;
|
|
3308
3340
|
moderation?: string | undefined;
|
|
3309
3341
|
images?: Record<string, {
|
|
3310
3342
|
type: "image";
|
|
@@ -3772,8 +3804,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3772
3804
|
path: string;
|
|
3773
3805
|
kind: "path";
|
|
3774
3806
|
}>]>;
|
|
3775
|
-
} & {
|
|
3776
|
-
mixAudio: z.ZodDefault<z.ZodNumber>;
|
|
3777
3807
|
}, "strict", z.ZodTypeAny, {
|
|
3778
3808
|
type: "movie";
|
|
3779
3809
|
source: {
|
|
@@ -3789,7 +3819,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3789
3819
|
path: string;
|
|
3790
3820
|
kind: "path";
|
|
3791
3821
|
};
|
|
3792
|
-
mixAudio: number;
|
|
3793
3822
|
}, {
|
|
3794
3823
|
type: "movie";
|
|
3795
3824
|
source: {
|
|
@@ -3805,7 +3834,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3805
3834
|
path: string;
|
|
3806
3835
|
kind: "path";
|
|
3807
3836
|
};
|
|
3808
|
-
mixAudio?: number | undefined;
|
|
3809
3837
|
}>, z.ZodObject<{
|
|
3810
3838
|
type: z.ZodLiteral<"textSlide">;
|
|
3811
3839
|
slide: z.ZodObject<{
|
|
@@ -4116,8 +4144,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4116
4144
|
}>]>>>;
|
|
4117
4145
|
}, "strict", z.ZodTypeAny, {
|
|
4118
4146
|
provider: string;
|
|
4119
|
-
style?: string | undefined;
|
|
4120
4147
|
model?: string | undefined;
|
|
4148
|
+
style?: string | undefined;
|
|
4121
4149
|
moderation?: string | undefined;
|
|
4122
4150
|
images?: Record<string, {
|
|
4123
4151
|
type: "image";
|
|
@@ -4140,8 +4168,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4140
4168
|
}> | undefined;
|
|
4141
4169
|
}, {
|
|
4142
4170
|
provider?: string | undefined;
|
|
4143
|
-
style?: string | undefined;
|
|
4144
4171
|
model?: string | undefined;
|
|
4172
|
+
style?: string | undefined;
|
|
4145
4173
|
moderation?: string | undefined;
|
|
4146
4174
|
images?: Record<string, {
|
|
4147
4175
|
type: "image";
|
|
@@ -4165,10 +4193,13 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4165
4193
|
}>>;
|
|
4166
4194
|
audioParams: z.ZodOptional<z.ZodObject<{
|
|
4167
4195
|
padding: z.ZodOptional<z.ZodNumber>;
|
|
4196
|
+
movieVolume: z.ZodDefault<z.ZodNumber>;
|
|
4168
4197
|
}, "strict", z.ZodTypeAny, {
|
|
4198
|
+
movieVolume: number;
|
|
4169
4199
|
padding?: number | undefined;
|
|
4170
4200
|
}, {
|
|
4171
4201
|
padding?: number | undefined;
|
|
4202
|
+
movieVolume?: number | undefined;
|
|
4172
4203
|
}>>;
|
|
4173
4204
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
4174
4205
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -4305,6 +4336,21 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4305
4336
|
path: string;
|
|
4306
4337
|
kind: "path";
|
|
4307
4338
|
};
|
|
4339
|
+
} | {
|
|
4340
|
+
type: "movie";
|
|
4341
|
+
source: {
|
|
4342
|
+
url: string;
|
|
4343
|
+
kind: "url";
|
|
4344
|
+
} | {
|
|
4345
|
+
kind: "base64";
|
|
4346
|
+
data: string;
|
|
4347
|
+
} | {
|
|
4348
|
+
text: string;
|
|
4349
|
+
kind: "text";
|
|
4350
|
+
} | {
|
|
4351
|
+
path: string;
|
|
4352
|
+
kind: "path";
|
|
4353
|
+
};
|
|
4308
4354
|
} | {
|
|
4309
4355
|
type: "textSlide";
|
|
4310
4356
|
slide: {
|
|
@@ -4342,22 +4388,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4342
4388
|
} | {
|
|
4343
4389
|
type: "voice_over";
|
|
4344
4390
|
startAt?: number | undefined;
|
|
4345
|
-
} | {
|
|
4346
|
-
type: "movie";
|
|
4347
|
-
source: {
|
|
4348
|
-
url: string;
|
|
4349
|
-
kind: "url";
|
|
4350
|
-
} | {
|
|
4351
|
-
kind: "base64";
|
|
4352
|
-
data: string;
|
|
4353
|
-
} | {
|
|
4354
|
-
text: string;
|
|
4355
|
-
kind: "text";
|
|
4356
|
-
} | {
|
|
4357
|
-
path: string;
|
|
4358
|
-
kind: "path";
|
|
4359
|
-
};
|
|
4360
|
-
mixAudio: number;
|
|
4361
4391
|
} | undefined;
|
|
4362
4392
|
id?: string | undefined;
|
|
4363
4393
|
audio?: {
|
|
@@ -4383,8 +4413,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4383
4413
|
description?: string | undefined;
|
|
4384
4414
|
imageParams?: {
|
|
4385
4415
|
provider: string;
|
|
4386
|
-
style?: string | undefined;
|
|
4387
4416
|
model?: string | undefined;
|
|
4417
|
+
style?: string | undefined;
|
|
4388
4418
|
moderation?: string | undefined;
|
|
4389
4419
|
images?: Record<string, {
|
|
4390
4420
|
type: "image";
|
|
@@ -4407,6 +4437,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4407
4437
|
}> | undefined;
|
|
4408
4438
|
} | undefined;
|
|
4409
4439
|
audioParams?: {
|
|
4440
|
+
movieVolume: number;
|
|
4410
4441
|
padding?: number | undefined;
|
|
4411
4442
|
} | undefined;
|
|
4412
4443
|
movieParams?: {
|
|
@@ -4492,6 +4523,21 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4492
4523
|
path: string;
|
|
4493
4524
|
kind: "path";
|
|
4494
4525
|
};
|
|
4526
|
+
} | {
|
|
4527
|
+
type: "movie";
|
|
4528
|
+
source: {
|
|
4529
|
+
url: string;
|
|
4530
|
+
kind: "url";
|
|
4531
|
+
} | {
|
|
4532
|
+
kind: "base64";
|
|
4533
|
+
data: string;
|
|
4534
|
+
} | {
|
|
4535
|
+
text: string;
|
|
4536
|
+
kind: "text";
|
|
4537
|
+
} | {
|
|
4538
|
+
path: string;
|
|
4539
|
+
kind: "path";
|
|
4540
|
+
};
|
|
4495
4541
|
} | {
|
|
4496
4542
|
type: "textSlide";
|
|
4497
4543
|
slide: {
|
|
@@ -4529,22 +4575,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4529
4575
|
} | {
|
|
4530
4576
|
type: "voice_over";
|
|
4531
4577
|
startAt?: number | undefined;
|
|
4532
|
-
} | {
|
|
4533
|
-
type: "movie";
|
|
4534
|
-
source: {
|
|
4535
|
-
url: string;
|
|
4536
|
-
kind: "url";
|
|
4537
|
-
} | {
|
|
4538
|
-
kind: "base64";
|
|
4539
|
-
data: string;
|
|
4540
|
-
} | {
|
|
4541
|
-
text: string;
|
|
4542
|
-
kind: "text";
|
|
4543
|
-
} | {
|
|
4544
|
-
path: string;
|
|
4545
|
-
kind: "path";
|
|
4546
|
-
};
|
|
4547
|
-
mixAudio?: number | undefined;
|
|
4548
4578
|
} | undefined;
|
|
4549
4579
|
id?: string | undefined;
|
|
4550
4580
|
audio?: {
|
|
@@ -4571,8 +4601,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4571
4601
|
description?: string | undefined;
|
|
4572
4602
|
imageParams?: {
|
|
4573
4603
|
provider?: string | undefined;
|
|
4574
|
-
style?: string | undefined;
|
|
4575
4604
|
model?: string | undefined;
|
|
4605
|
+
style?: string | undefined;
|
|
4576
4606
|
moderation?: string | undefined;
|
|
4577
4607
|
images?: Record<string, {
|
|
4578
4608
|
type: "image";
|
|
@@ -4596,6 +4626,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4596
4626
|
} | undefined;
|
|
4597
4627
|
audioParams?: {
|
|
4598
4628
|
padding?: number | undefined;
|
|
4629
|
+
movieVolume?: number | undefined;
|
|
4599
4630
|
} | undefined;
|
|
4600
4631
|
movieParams?: {
|
|
4601
4632
|
speed?: number | undefined;
|
|
@@ -4666,7 +4697,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4666
4697
|
instruction?: string | undefined;
|
|
4667
4698
|
} | undefined;
|
|
4668
4699
|
provider?: string | undefined;
|
|
4700
|
+
model?: string | undefined;
|
|
4669
4701
|
}>;
|
|
4702
|
+
model?: string | undefined;
|
|
4670
4703
|
};
|
|
4671
4704
|
beats: {
|
|
4672
4705
|
text: string;
|
|
@@ -4727,6 +4760,21 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4727
4760
|
path: string;
|
|
4728
4761
|
kind: "path";
|
|
4729
4762
|
};
|
|
4763
|
+
} | {
|
|
4764
|
+
type: "movie";
|
|
4765
|
+
source: {
|
|
4766
|
+
url: string;
|
|
4767
|
+
kind: "url";
|
|
4768
|
+
} | {
|
|
4769
|
+
kind: "base64";
|
|
4770
|
+
data: string;
|
|
4771
|
+
} | {
|
|
4772
|
+
text: string;
|
|
4773
|
+
kind: "text";
|
|
4774
|
+
} | {
|
|
4775
|
+
path: string;
|
|
4776
|
+
kind: "path";
|
|
4777
|
+
};
|
|
4730
4778
|
} | {
|
|
4731
4779
|
type: "textSlide";
|
|
4732
4780
|
slide: {
|
|
@@ -4764,22 +4812,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4764
4812
|
} | {
|
|
4765
4813
|
type: "voice_over";
|
|
4766
4814
|
startAt?: number | undefined;
|
|
4767
|
-
} | {
|
|
4768
|
-
type: "movie";
|
|
4769
|
-
source: {
|
|
4770
|
-
url: string;
|
|
4771
|
-
kind: "url";
|
|
4772
|
-
} | {
|
|
4773
|
-
kind: "base64";
|
|
4774
|
-
data: string;
|
|
4775
|
-
} | {
|
|
4776
|
-
text: string;
|
|
4777
|
-
kind: "text";
|
|
4778
|
-
} | {
|
|
4779
|
-
path: string;
|
|
4780
|
-
kind: "path";
|
|
4781
|
-
};
|
|
4782
|
-
mixAudio: number;
|
|
4783
4815
|
} | undefined;
|
|
4784
4816
|
id?: string | undefined;
|
|
4785
4817
|
audio?: {
|
|
@@ -4805,8 +4837,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4805
4837
|
description?: string | undefined;
|
|
4806
4838
|
imageParams?: {
|
|
4807
4839
|
provider: string;
|
|
4808
|
-
style?: string | undefined;
|
|
4809
4840
|
model?: string | undefined;
|
|
4841
|
+
style?: string | undefined;
|
|
4810
4842
|
moderation?: string | undefined;
|
|
4811
4843
|
images?: Record<string, {
|
|
4812
4844
|
type: "image";
|
|
@@ -4829,6 +4861,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4829
4861
|
}> | undefined;
|
|
4830
4862
|
} | undefined;
|
|
4831
4863
|
audioParams?: {
|
|
4864
|
+
movieVolume: number;
|
|
4832
4865
|
padding?: number | undefined;
|
|
4833
4866
|
} | undefined;
|
|
4834
4867
|
movieParams?: {
|
|
@@ -4862,8 +4895,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4862
4895
|
description?: string | undefined;
|
|
4863
4896
|
imageParams?: {
|
|
4864
4897
|
provider: string;
|
|
4865
|
-
style?: string | undefined;
|
|
4866
4898
|
model?: string | undefined;
|
|
4899
|
+
style?: string | undefined;
|
|
4867
4900
|
moderation?: string | undefined;
|
|
4868
4901
|
images?: Record<string, {
|
|
4869
4902
|
type: "image";
|
|
@@ -4978,6 +5011,21 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4978
5011
|
path: string;
|
|
4979
5012
|
kind: "path";
|
|
4980
5013
|
};
|
|
5014
|
+
} | {
|
|
5015
|
+
type: "movie";
|
|
5016
|
+
source: {
|
|
5017
|
+
url: string;
|
|
5018
|
+
kind: "url";
|
|
5019
|
+
} | {
|
|
5020
|
+
kind: "base64";
|
|
5021
|
+
data: string;
|
|
5022
|
+
} | {
|
|
5023
|
+
text: string;
|
|
5024
|
+
kind: "text";
|
|
5025
|
+
} | {
|
|
5026
|
+
path: string;
|
|
5027
|
+
kind: "path";
|
|
5028
|
+
};
|
|
4981
5029
|
} | {
|
|
4982
5030
|
type: "textSlide";
|
|
4983
5031
|
slide: {
|
|
@@ -5015,22 +5063,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5015
5063
|
} | {
|
|
5016
5064
|
type: "voice_over";
|
|
5017
5065
|
startAt?: number | undefined;
|
|
5018
|
-
} | {
|
|
5019
|
-
type: "movie";
|
|
5020
|
-
source: {
|
|
5021
|
-
url: string;
|
|
5022
|
-
kind: "url";
|
|
5023
|
-
} | {
|
|
5024
|
-
kind: "base64";
|
|
5025
|
-
data: string;
|
|
5026
|
-
} | {
|
|
5027
|
-
text: string;
|
|
5028
|
-
kind: "text";
|
|
5029
|
-
} | {
|
|
5030
|
-
path: string;
|
|
5031
|
-
kind: "path";
|
|
5032
|
-
};
|
|
5033
|
-
mixAudio?: number | undefined;
|
|
5034
5066
|
} | undefined;
|
|
5035
5067
|
id?: string | undefined;
|
|
5036
5068
|
audio?: {
|
|
@@ -5057,8 +5089,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5057
5089
|
description?: string | undefined;
|
|
5058
5090
|
imageParams?: {
|
|
5059
5091
|
provider?: string | undefined;
|
|
5060
|
-
style?: string | undefined;
|
|
5061
5092
|
model?: string | undefined;
|
|
5093
|
+
style?: string | undefined;
|
|
5062
5094
|
moderation?: string | undefined;
|
|
5063
5095
|
images?: Record<string, {
|
|
5064
5096
|
type: "image";
|
|
@@ -5082,6 +5114,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5082
5114
|
} | undefined;
|
|
5083
5115
|
audioParams?: {
|
|
5084
5116
|
padding?: number | undefined;
|
|
5117
|
+
movieVolume?: number | undefined;
|
|
5085
5118
|
} | undefined;
|
|
5086
5119
|
movieParams?: {
|
|
5087
5120
|
speed?: number | undefined;
|
|
@@ -5114,8 +5147,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5114
5147
|
description?: string | undefined;
|
|
5115
5148
|
imageParams?: {
|
|
5116
5149
|
provider?: string | undefined;
|
|
5117
|
-
style?: string | undefined;
|
|
5118
5150
|
model?: string | undefined;
|
|
5151
|
+
style?: string | undefined;
|
|
5119
5152
|
moderation?: string | undefined;
|
|
5120
5153
|
images?: Record<string, {
|
|
5121
5154
|
type: "image";
|
|
@@ -5194,8 +5227,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5194
5227
|
instruction?: string | undefined;
|
|
5195
5228
|
} | undefined;
|
|
5196
5229
|
provider?: string | undefined;
|
|
5230
|
+
model?: string | undefined;
|
|
5197
5231
|
}>;
|
|
5198
5232
|
provider?: string | undefined;
|
|
5233
|
+
model?: string | undefined;
|
|
5199
5234
|
} | undefined;
|
|
5200
5235
|
references?: {
|
|
5201
5236
|
url: string;
|
|
@@ -5213,6 +5248,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
|
|
|
5213
5248
|
audioDuration: z.ZodOptional<z.ZodNumber>;
|
|
5214
5249
|
movieDuration: z.ZodOptional<z.ZodNumber>;
|
|
5215
5250
|
silenceDuration: z.ZodOptional<z.ZodNumber>;
|
|
5251
|
+
hasMovieAudio: z.ZodOptional<z.ZodBoolean>;
|
|
5216
5252
|
audioFile: z.ZodOptional<z.ZodString>;
|
|
5217
5253
|
imageFile: z.ZodOptional<z.ZodString>;
|
|
5218
5254
|
movieFile: z.ZodOptional<z.ZodString>;
|
|
@@ -5224,6 +5260,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
|
|
|
5224
5260
|
audioDuration?: number | undefined;
|
|
5225
5261
|
movieDuration?: number | undefined;
|
|
5226
5262
|
silenceDuration?: number | undefined;
|
|
5263
|
+
hasMovieAudio?: boolean | undefined;
|
|
5227
5264
|
audioFile?: string | undefined;
|
|
5228
5265
|
imageFile?: string | undefined;
|
|
5229
5266
|
movieFile?: string | undefined;
|
|
@@ -5235,6 +5272,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
|
|
|
5235
5272
|
audioDuration?: number | undefined;
|
|
5236
5273
|
movieDuration?: number | undefined;
|
|
5237
5274
|
silenceDuration?: number | undefined;
|
|
5275
|
+
hasMovieAudio?: boolean | undefined;
|
|
5238
5276
|
audioFile?: string | undefined;
|
|
5239
5277
|
imageFile?: string | undefined;
|
|
5240
5278
|
movieFile?: string | undefined;
|
|
@@ -5437,6 +5475,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5437
5475
|
instruction?: string | undefined;
|
|
5438
5476
|
}>>;
|
|
5439
5477
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
5478
|
+
model: z.ZodOptional<z.ZodString>;
|
|
5440
5479
|
}, "strict", z.ZodTypeAny, {
|
|
5441
5480
|
voiceId: string;
|
|
5442
5481
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5445,6 +5484,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5445
5484
|
instruction?: string | undefined;
|
|
5446
5485
|
} | undefined;
|
|
5447
5486
|
provider?: string | undefined;
|
|
5487
|
+
model?: string | undefined;
|
|
5448
5488
|
}, {
|
|
5449
5489
|
voiceId: string;
|
|
5450
5490
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5453,7 +5493,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5453
5493
|
instruction?: string | undefined;
|
|
5454
5494
|
} | undefined;
|
|
5455
5495
|
provider?: string | undefined;
|
|
5496
|
+
model?: string | undefined;
|
|
5456
5497
|
}>>;
|
|
5498
|
+
model: z.ZodOptional<z.ZodString>;
|
|
5457
5499
|
}, "strict", z.ZodTypeAny, {
|
|
5458
5500
|
provider: string;
|
|
5459
5501
|
speakers: Record<string, {
|
|
@@ -5464,7 +5506,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5464
5506
|
instruction?: string | undefined;
|
|
5465
5507
|
} | undefined;
|
|
5466
5508
|
provider?: string | undefined;
|
|
5509
|
+
model?: string | undefined;
|
|
5467
5510
|
}>;
|
|
5511
|
+
model?: string | undefined;
|
|
5468
5512
|
}, {
|
|
5469
5513
|
speakers: Record<string, {
|
|
5470
5514
|
voiceId: string;
|
|
@@ -5474,8 +5518,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5474
5518
|
instruction?: string | undefined;
|
|
5475
5519
|
} | undefined;
|
|
5476
5520
|
provider?: string | undefined;
|
|
5521
|
+
model?: string | undefined;
|
|
5477
5522
|
}>;
|
|
5478
5523
|
provider?: string | undefined;
|
|
5524
|
+
model?: string | undefined;
|
|
5479
5525
|
}>>;
|
|
5480
5526
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
5481
5527
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
@@ -5563,8 +5609,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5563
5609
|
}>]>>>;
|
|
5564
5610
|
}, "strict", z.ZodTypeAny, {
|
|
5565
5611
|
provider: string;
|
|
5566
|
-
style?: string | undefined;
|
|
5567
5612
|
model?: string | undefined;
|
|
5613
|
+
style?: string | undefined;
|
|
5568
5614
|
moderation?: string | undefined;
|
|
5569
5615
|
images?: Record<string, {
|
|
5570
5616
|
type: "image";
|
|
@@ -5587,8 +5633,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5587
5633
|
}> | undefined;
|
|
5588
5634
|
}, {
|
|
5589
5635
|
provider?: string | undefined;
|
|
5590
|
-
style?: string | undefined;
|
|
5591
5636
|
model?: string | undefined;
|
|
5637
|
+
style?: string | undefined;
|
|
5592
5638
|
moderation?: string | undefined;
|
|
5593
5639
|
images?: Record<string, {
|
|
5594
5640
|
type: "image";
|
|
@@ -6056,8 +6102,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6056
6102
|
path: string;
|
|
6057
6103
|
kind: "path";
|
|
6058
6104
|
}>]>;
|
|
6059
|
-
} & {
|
|
6060
|
-
mixAudio: z.ZodDefault<z.ZodNumber>;
|
|
6061
6105
|
}, "strict", z.ZodTypeAny, {
|
|
6062
6106
|
type: "movie";
|
|
6063
6107
|
source: {
|
|
@@ -6073,7 +6117,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6073
6117
|
path: string;
|
|
6074
6118
|
kind: "path";
|
|
6075
6119
|
};
|
|
6076
|
-
mixAudio: number;
|
|
6077
6120
|
}, {
|
|
6078
6121
|
type: "movie";
|
|
6079
6122
|
source: {
|
|
@@ -6089,7 +6132,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6089
6132
|
path: string;
|
|
6090
6133
|
kind: "path";
|
|
6091
6134
|
};
|
|
6092
|
-
mixAudio?: number | undefined;
|
|
6093
6135
|
}>, z.ZodObject<{
|
|
6094
6136
|
type: z.ZodLiteral<"textSlide">;
|
|
6095
6137
|
slide: z.ZodObject<{
|
|
@@ -6400,8 +6442,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6400
6442
|
}>]>>>;
|
|
6401
6443
|
}, "strict", z.ZodTypeAny, {
|
|
6402
6444
|
provider: string;
|
|
6403
|
-
style?: string | undefined;
|
|
6404
6445
|
model?: string | undefined;
|
|
6446
|
+
style?: string | undefined;
|
|
6405
6447
|
moderation?: string | undefined;
|
|
6406
6448
|
images?: Record<string, {
|
|
6407
6449
|
type: "image";
|
|
@@ -6424,8 +6466,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6424
6466
|
}> | undefined;
|
|
6425
6467
|
}, {
|
|
6426
6468
|
provider?: string | undefined;
|
|
6427
|
-
style?: string | undefined;
|
|
6428
6469
|
model?: string | undefined;
|
|
6470
|
+
style?: string | undefined;
|
|
6429
6471
|
moderation?: string | undefined;
|
|
6430
6472
|
images?: Record<string, {
|
|
6431
6473
|
type: "image";
|
|
@@ -6449,10 +6491,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6449
6491
|
}>>;
|
|
6450
6492
|
audioParams: z.ZodOptional<z.ZodObject<{
|
|
6451
6493
|
padding: z.ZodOptional<z.ZodNumber>;
|
|
6494
|
+
movieVolume: z.ZodDefault<z.ZodNumber>;
|
|
6452
6495
|
}, "strict", z.ZodTypeAny, {
|
|
6496
|
+
movieVolume: number;
|
|
6453
6497
|
padding?: number | undefined;
|
|
6454
6498
|
}, {
|
|
6455
6499
|
padding?: number | undefined;
|
|
6500
|
+
movieVolume?: number | undefined;
|
|
6456
6501
|
}>>;
|
|
6457
6502
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
6458
6503
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -6589,6 +6634,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6589
6634
|
path: string;
|
|
6590
6635
|
kind: "path";
|
|
6591
6636
|
};
|
|
6637
|
+
} | {
|
|
6638
|
+
type: "movie";
|
|
6639
|
+
source: {
|
|
6640
|
+
url: string;
|
|
6641
|
+
kind: "url";
|
|
6642
|
+
} | {
|
|
6643
|
+
kind: "base64";
|
|
6644
|
+
data: string;
|
|
6645
|
+
} | {
|
|
6646
|
+
text: string;
|
|
6647
|
+
kind: "text";
|
|
6648
|
+
} | {
|
|
6649
|
+
path: string;
|
|
6650
|
+
kind: "path";
|
|
6651
|
+
};
|
|
6592
6652
|
} | {
|
|
6593
6653
|
type: "textSlide";
|
|
6594
6654
|
slide: {
|
|
@@ -6626,22 +6686,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6626
6686
|
} | {
|
|
6627
6687
|
type: "voice_over";
|
|
6628
6688
|
startAt?: number | undefined;
|
|
6629
|
-
} | {
|
|
6630
|
-
type: "movie";
|
|
6631
|
-
source: {
|
|
6632
|
-
url: string;
|
|
6633
|
-
kind: "url";
|
|
6634
|
-
} | {
|
|
6635
|
-
kind: "base64";
|
|
6636
|
-
data: string;
|
|
6637
|
-
} | {
|
|
6638
|
-
text: string;
|
|
6639
|
-
kind: "text";
|
|
6640
|
-
} | {
|
|
6641
|
-
path: string;
|
|
6642
|
-
kind: "path";
|
|
6643
|
-
};
|
|
6644
|
-
mixAudio: number;
|
|
6645
6689
|
} | undefined;
|
|
6646
6690
|
id?: string | undefined;
|
|
6647
6691
|
audio?: {
|
|
@@ -6667,8 +6711,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6667
6711
|
description?: string | undefined;
|
|
6668
6712
|
imageParams?: {
|
|
6669
6713
|
provider: string;
|
|
6670
|
-
style?: string | undefined;
|
|
6671
6714
|
model?: string | undefined;
|
|
6715
|
+
style?: string | undefined;
|
|
6672
6716
|
moderation?: string | undefined;
|
|
6673
6717
|
images?: Record<string, {
|
|
6674
6718
|
type: "image";
|
|
@@ -6691,6 +6735,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6691
6735
|
}> | undefined;
|
|
6692
6736
|
} | undefined;
|
|
6693
6737
|
audioParams?: {
|
|
6738
|
+
movieVolume: number;
|
|
6694
6739
|
padding?: number | undefined;
|
|
6695
6740
|
} | undefined;
|
|
6696
6741
|
movieParams?: {
|
|
@@ -6776,6 +6821,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6776
6821
|
path: string;
|
|
6777
6822
|
kind: "path";
|
|
6778
6823
|
};
|
|
6824
|
+
} | {
|
|
6825
|
+
type: "movie";
|
|
6826
|
+
source: {
|
|
6827
|
+
url: string;
|
|
6828
|
+
kind: "url";
|
|
6829
|
+
} | {
|
|
6830
|
+
kind: "base64";
|
|
6831
|
+
data: string;
|
|
6832
|
+
} | {
|
|
6833
|
+
text: string;
|
|
6834
|
+
kind: "text";
|
|
6835
|
+
} | {
|
|
6836
|
+
path: string;
|
|
6837
|
+
kind: "path";
|
|
6838
|
+
};
|
|
6779
6839
|
} | {
|
|
6780
6840
|
type: "textSlide";
|
|
6781
6841
|
slide: {
|
|
@@ -6813,22 +6873,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6813
6873
|
} | {
|
|
6814
6874
|
type: "voice_over";
|
|
6815
6875
|
startAt?: number | undefined;
|
|
6816
|
-
} | {
|
|
6817
|
-
type: "movie";
|
|
6818
|
-
source: {
|
|
6819
|
-
url: string;
|
|
6820
|
-
kind: "url";
|
|
6821
|
-
} | {
|
|
6822
|
-
kind: "base64";
|
|
6823
|
-
data: string;
|
|
6824
|
-
} | {
|
|
6825
|
-
text: string;
|
|
6826
|
-
kind: "text";
|
|
6827
|
-
} | {
|
|
6828
|
-
path: string;
|
|
6829
|
-
kind: "path";
|
|
6830
|
-
};
|
|
6831
|
-
mixAudio?: number | undefined;
|
|
6832
6876
|
} | undefined;
|
|
6833
6877
|
id?: string | undefined;
|
|
6834
6878
|
audio?: {
|
|
@@ -6855,8 +6899,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6855
6899
|
description?: string | undefined;
|
|
6856
6900
|
imageParams?: {
|
|
6857
6901
|
provider?: string | undefined;
|
|
6858
|
-
style?: string | undefined;
|
|
6859
6902
|
model?: string | undefined;
|
|
6903
|
+
style?: string | undefined;
|
|
6860
6904
|
moderation?: string | undefined;
|
|
6861
6905
|
images?: Record<string, {
|
|
6862
6906
|
type: "image";
|
|
@@ -6880,6 +6924,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6880
6924
|
} | undefined;
|
|
6881
6925
|
audioParams?: {
|
|
6882
6926
|
padding?: number | undefined;
|
|
6927
|
+
movieVolume?: number | undefined;
|
|
6883
6928
|
} | undefined;
|
|
6884
6929
|
movieParams?: {
|
|
6885
6930
|
speed?: number | undefined;
|
|
@@ -6950,7 +6995,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6950
6995
|
instruction?: string | undefined;
|
|
6951
6996
|
} | undefined;
|
|
6952
6997
|
provider?: string | undefined;
|
|
6998
|
+
model?: string | undefined;
|
|
6953
6999
|
}>;
|
|
7000
|
+
model?: string | undefined;
|
|
6954
7001
|
};
|
|
6955
7002
|
beats: {
|
|
6956
7003
|
text: string;
|
|
@@ -7011,6 +7058,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7011
7058
|
path: string;
|
|
7012
7059
|
kind: "path";
|
|
7013
7060
|
};
|
|
7061
|
+
} | {
|
|
7062
|
+
type: "movie";
|
|
7063
|
+
source: {
|
|
7064
|
+
url: string;
|
|
7065
|
+
kind: "url";
|
|
7066
|
+
} | {
|
|
7067
|
+
kind: "base64";
|
|
7068
|
+
data: string;
|
|
7069
|
+
} | {
|
|
7070
|
+
text: string;
|
|
7071
|
+
kind: "text";
|
|
7072
|
+
} | {
|
|
7073
|
+
path: string;
|
|
7074
|
+
kind: "path";
|
|
7075
|
+
};
|
|
7014
7076
|
} | {
|
|
7015
7077
|
type: "textSlide";
|
|
7016
7078
|
slide: {
|
|
@@ -7048,22 +7110,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7048
7110
|
} | {
|
|
7049
7111
|
type: "voice_over";
|
|
7050
7112
|
startAt?: number | undefined;
|
|
7051
|
-
} | {
|
|
7052
|
-
type: "movie";
|
|
7053
|
-
source: {
|
|
7054
|
-
url: string;
|
|
7055
|
-
kind: "url";
|
|
7056
|
-
} | {
|
|
7057
|
-
kind: "base64";
|
|
7058
|
-
data: string;
|
|
7059
|
-
} | {
|
|
7060
|
-
text: string;
|
|
7061
|
-
kind: "text";
|
|
7062
|
-
} | {
|
|
7063
|
-
path: string;
|
|
7064
|
-
kind: "path";
|
|
7065
|
-
};
|
|
7066
|
-
mixAudio: number;
|
|
7067
7113
|
} | undefined;
|
|
7068
7114
|
id?: string | undefined;
|
|
7069
7115
|
audio?: {
|
|
@@ -7089,8 +7135,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7089
7135
|
description?: string | undefined;
|
|
7090
7136
|
imageParams?: {
|
|
7091
7137
|
provider: string;
|
|
7092
|
-
style?: string | undefined;
|
|
7093
7138
|
model?: string | undefined;
|
|
7139
|
+
style?: string | undefined;
|
|
7094
7140
|
moderation?: string | undefined;
|
|
7095
7141
|
images?: Record<string, {
|
|
7096
7142
|
type: "image";
|
|
@@ -7113,6 +7159,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7113
7159
|
}> | undefined;
|
|
7114
7160
|
} | undefined;
|
|
7115
7161
|
audioParams?: {
|
|
7162
|
+
movieVolume: number;
|
|
7116
7163
|
padding?: number | undefined;
|
|
7117
7164
|
} | undefined;
|
|
7118
7165
|
movieParams?: {
|
|
@@ -7146,8 +7193,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7146
7193
|
description?: string | undefined;
|
|
7147
7194
|
imageParams?: {
|
|
7148
7195
|
provider: string;
|
|
7149
|
-
style?: string | undefined;
|
|
7150
7196
|
model?: string | undefined;
|
|
7197
|
+
style?: string | undefined;
|
|
7151
7198
|
moderation?: string | undefined;
|
|
7152
7199
|
images?: Record<string, {
|
|
7153
7200
|
type: "image";
|
|
@@ -7262,6 +7309,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7262
7309
|
path: string;
|
|
7263
7310
|
kind: "path";
|
|
7264
7311
|
};
|
|
7312
|
+
} | {
|
|
7313
|
+
type: "movie";
|
|
7314
|
+
source: {
|
|
7315
|
+
url: string;
|
|
7316
|
+
kind: "url";
|
|
7317
|
+
} | {
|
|
7318
|
+
kind: "base64";
|
|
7319
|
+
data: string;
|
|
7320
|
+
} | {
|
|
7321
|
+
text: string;
|
|
7322
|
+
kind: "text";
|
|
7323
|
+
} | {
|
|
7324
|
+
path: string;
|
|
7325
|
+
kind: "path";
|
|
7326
|
+
};
|
|
7265
7327
|
} | {
|
|
7266
7328
|
type: "textSlide";
|
|
7267
7329
|
slide: {
|
|
@@ -7299,22 +7361,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7299
7361
|
} | {
|
|
7300
7362
|
type: "voice_over";
|
|
7301
7363
|
startAt?: number | undefined;
|
|
7302
|
-
} | {
|
|
7303
|
-
type: "movie";
|
|
7304
|
-
source: {
|
|
7305
|
-
url: string;
|
|
7306
|
-
kind: "url";
|
|
7307
|
-
} | {
|
|
7308
|
-
kind: "base64";
|
|
7309
|
-
data: string;
|
|
7310
|
-
} | {
|
|
7311
|
-
text: string;
|
|
7312
|
-
kind: "text";
|
|
7313
|
-
} | {
|
|
7314
|
-
path: string;
|
|
7315
|
-
kind: "path";
|
|
7316
|
-
};
|
|
7317
|
-
mixAudio?: number | undefined;
|
|
7318
7364
|
} | undefined;
|
|
7319
7365
|
id?: string | undefined;
|
|
7320
7366
|
audio?: {
|
|
@@ -7341,8 +7387,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7341
7387
|
description?: string | undefined;
|
|
7342
7388
|
imageParams?: {
|
|
7343
7389
|
provider?: string | undefined;
|
|
7344
|
-
style?: string | undefined;
|
|
7345
7390
|
model?: string | undefined;
|
|
7391
|
+
style?: string | undefined;
|
|
7346
7392
|
moderation?: string | undefined;
|
|
7347
7393
|
images?: Record<string, {
|
|
7348
7394
|
type: "image";
|
|
@@ -7366,6 +7412,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7366
7412
|
} | undefined;
|
|
7367
7413
|
audioParams?: {
|
|
7368
7414
|
padding?: number | undefined;
|
|
7415
|
+
movieVolume?: number | undefined;
|
|
7369
7416
|
} | undefined;
|
|
7370
7417
|
movieParams?: {
|
|
7371
7418
|
speed?: number | undefined;
|
|
@@ -7398,8 +7445,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7398
7445
|
description?: string | undefined;
|
|
7399
7446
|
imageParams?: {
|
|
7400
7447
|
provider?: string | undefined;
|
|
7401
|
-
style?: string | undefined;
|
|
7402
7448
|
model?: string | undefined;
|
|
7449
|
+
style?: string | undefined;
|
|
7403
7450
|
moderation?: string | undefined;
|
|
7404
7451
|
images?: Record<string, {
|
|
7405
7452
|
type: "image";
|
|
@@ -7478,8 +7525,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7478
7525
|
instruction?: string | undefined;
|
|
7479
7526
|
} | undefined;
|
|
7480
7527
|
provider?: string | undefined;
|
|
7528
|
+
model?: string | undefined;
|
|
7481
7529
|
}>;
|
|
7482
7530
|
provider?: string | undefined;
|
|
7531
|
+
model?: string | undefined;
|
|
7483
7532
|
} | undefined;
|
|
7484
7533
|
references?: {
|
|
7485
7534
|
url: string;
|
|
@@ -7498,6 +7547,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7498
7547
|
audioDuration: z.ZodOptional<z.ZodNumber>;
|
|
7499
7548
|
movieDuration: z.ZodOptional<z.ZodNumber>;
|
|
7500
7549
|
silenceDuration: z.ZodOptional<z.ZodNumber>;
|
|
7550
|
+
hasMovieAudio: z.ZodOptional<z.ZodBoolean>;
|
|
7501
7551
|
audioFile: z.ZodOptional<z.ZodString>;
|
|
7502
7552
|
imageFile: z.ZodOptional<z.ZodString>;
|
|
7503
7553
|
movieFile: z.ZodOptional<z.ZodString>;
|
|
@@ -7509,6 +7559,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7509
7559
|
audioDuration?: number | undefined;
|
|
7510
7560
|
movieDuration?: number | undefined;
|
|
7511
7561
|
silenceDuration?: number | undefined;
|
|
7562
|
+
hasMovieAudio?: boolean | undefined;
|
|
7512
7563
|
audioFile?: string | undefined;
|
|
7513
7564
|
imageFile?: string | undefined;
|
|
7514
7565
|
movieFile?: string | undefined;
|
|
@@ -7520,6 +7571,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7520
7571
|
audioDuration?: number | undefined;
|
|
7521
7572
|
movieDuration?: number | undefined;
|
|
7522
7573
|
silenceDuration?: number | undefined;
|
|
7574
|
+
hasMovieAudio?: boolean | undefined;
|
|
7523
7575
|
audioFile?: string | undefined;
|
|
7524
7576
|
imageFile?: string | undefined;
|
|
7525
7577
|
movieFile?: string | undefined;
|
|
@@ -7533,6 +7585,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7533
7585
|
audioDuration?: number | undefined;
|
|
7534
7586
|
movieDuration?: number | undefined;
|
|
7535
7587
|
silenceDuration?: number | undefined;
|
|
7588
|
+
hasMovieAudio?: boolean | undefined;
|
|
7536
7589
|
audioFile?: string | undefined;
|
|
7537
7590
|
imageFile?: string | undefined;
|
|
7538
7591
|
movieFile?: string | undefined;
|
|
@@ -7579,7 +7632,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7579
7632
|
instruction?: string | undefined;
|
|
7580
7633
|
} | undefined;
|
|
7581
7634
|
provider?: string | undefined;
|
|
7635
|
+
model?: string | undefined;
|
|
7582
7636
|
}>;
|
|
7637
|
+
model?: string | undefined;
|
|
7583
7638
|
};
|
|
7584
7639
|
beats: {
|
|
7585
7640
|
text: string;
|
|
@@ -7640,6 +7695,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7640
7695
|
path: string;
|
|
7641
7696
|
kind: "path";
|
|
7642
7697
|
};
|
|
7698
|
+
} | {
|
|
7699
|
+
type: "movie";
|
|
7700
|
+
source: {
|
|
7701
|
+
url: string;
|
|
7702
|
+
kind: "url";
|
|
7703
|
+
} | {
|
|
7704
|
+
kind: "base64";
|
|
7705
|
+
data: string;
|
|
7706
|
+
} | {
|
|
7707
|
+
text: string;
|
|
7708
|
+
kind: "text";
|
|
7709
|
+
} | {
|
|
7710
|
+
path: string;
|
|
7711
|
+
kind: "path";
|
|
7712
|
+
};
|
|
7643
7713
|
} | {
|
|
7644
7714
|
type: "textSlide";
|
|
7645
7715
|
slide: {
|
|
@@ -7677,22 +7747,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7677
7747
|
} | {
|
|
7678
7748
|
type: "voice_over";
|
|
7679
7749
|
startAt?: number | undefined;
|
|
7680
|
-
} | {
|
|
7681
|
-
type: "movie";
|
|
7682
|
-
source: {
|
|
7683
|
-
url: string;
|
|
7684
|
-
kind: "url";
|
|
7685
|
-
} | {
|
|
7686
|
-
kind: "base64";
|
|
7687
|
-
data: string;
|
|
7688
|
-
} | {
|
|
7689
|
-
text: string;
|
|
7690
|
-
kind: "text";
|
|
7691
|
-
} | {
|
|
7692
|
-
path: string;
|
|
7693
|
-
kind: "path";
|
|
7694
|
-
};
|
|
7695
|
-
mixAudio: number;
|
|
7696
7750
|
} | undefined;
|
|
7697
7751
|
id?: string | undefined;
|
|
7698
7752
|
audio?: {
|
|
@@ -7718,8 +7772,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7718
7772
|
description?: string | undefined;
|
|
7719
7773
|
imageParams?: {
|
|
7720
7774
|
provider: string;
|
|
7721
|
-
style?: string | undefined;
|
|
7722
7775
|
model?: string | undefined;
|
|
7776
|
+
style?: string | undefined;
|
|
7723
7777
|
moderation?: string | undefined;
|
|
7724
7778
|
images?: Record<string, {
|
|
7725
7779
|
type: "image";
|
|
@@ -7742,6 +7796,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7742
7796
|
}> | undefined;
|
|
7743
7797
|
} | undefined;
|
|
7744
7798
|
audioParams?: {
|
|
7799
|
+
movieVolume: number;
|
|
7745
7800
|
padding?: number | undefined;
|
|
7746
7801
|
} | undefined;
|
|
7747
7802
|
movieParams?: {
|
|
@@ -7775,8 +7830,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7775
7830
|
description?: string | undefined;
|
|
7776
7831
|
imageParams?: {
|
|
7777
7832
|
provider: string;
|
|
7778
|
-
style?: string | undefined;
|
|
7779
7833
|
model?: string | undefined;
|
|
7834
|
+
style?: string | undefined;
|
|
7780
7835
|
moderation?: string | undefined;
|
|
7781
7836
|
images?: Record<string, {
|
|
7782
7837
|
type: "image";
|
|
@@ -7838,6 +7893,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7838
7893
|
audioDuration?: number | undefined;
|
|
7839
7894
|
movieDuration?: number | undefined;
|
|
7840
7895
|
silenceDuration?: number | undefined;
|
|
7896
|
+
hasMovieAudio?: boolean | undefined;
|
|
7841
7897
|
audioFile?: string | undefined;
|
|
7842
7898
|
imageFile?: string | undefined;
|
|
7843
7899
|
movieFile?: string | undefined;
|
|
@@ -7906,6 +7962,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7906
7962
|
path: string;
|
|
7907
7963
|
kind: "path";
|
|
7908
7964
|
};
|
|
7965
|
+
} | {
|
|
7966
|
+
type: "movie";
|
|
7967
|
+
source: {
|
|
7968
|
+
url: string;
|
|
7969
|
+
kind: "url";
|
|
7970
|
+
} | {
|
|
7971
|
+
kind: "base64";
|
|
7972
|
+
data: string;
|
|
7973
|
+
} | {
|
|
7974
|
+
text: string;
|
|
7975
|
+
kind: "text";
|
|
7976
|
+
} | {
|
|
7977
|
+
path: string;
|
|
7978
|
+
kind: "path";
|
|
7979
|
+
};
|
|
7909
7980
|
} | {
|
|
7910
7981
|
type: "textSlide";
|
|
7911
7982
|
slide: {
|
|
@@ -7943,22 +8014,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7943
8014
|
} | {
|
|
7944
8015
|
type: "voice_over";
|
|
7945
8016
|
startAt?: number | undefined;
|
|
7946
|
-
} | {
|
|
7947
|
-
type: "movie";
|
|
7948
|
-
source: {
|
|
7949
|
-
url: string;
|
|
7950
|
-
kind: "url";
|
|
7951
|
-
} | {
|
|
7952
|
-
kind: "base64";
|
|
7953
|
-
data: string;
|
|
7954
|
-
} | {
|
|
7955
|
-
text: string;
|
|
7956
|
-
kind: "text";
|
|
7957
|
-
} | {
|
|
7958
|
-
path: string;
|
|
7959
|
-
kind: "path";
|
|
7960
|
-
};
|
|
7961
|
-
mixAudio?: number | undefined;
|
|
7962
8017
|
} | undefined;
|
|
7963
8018
|
id?: string | undefined;
|
|
7964
8019
|
audio?: {
|
|
@@ -7985,8 +8040,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7985
8040
|
description?: string | undefined;
|
|
7986
8041
|
imageParams?: {
|
|
7987
8042
|
provider?: string | undefined;
|
|
7988
|
-
style?: string | undefined;
|
|
7989
8043
|
model?: string | undefined;
|
|
8044
|
+
style?: string | undefined;
|
|
7990
8045
|
moderation?: string | undefined;
|
|
7991
8046
|
images?: Record<string, {
|
|
7992
8047
|
type: "image";
|
|
@@ -8010,6 +8065,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8010
8065
|
} | undefined;
|
|
8011
8066
|
audioParams?: {
|
|
8012
8067
|
padding?: number | undefined;
|
|
8068
|
+
movieVolume?: number | undefined;
|
|
8013
8069
|
} | undefined;
|
|
8014
8070
|
movieParams?: {
|
|
8015
8071
|
speed?: number | undefined;
|
|
@@ -8042,8 +8098,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8042
8098
|
description?: string | undefined;
|
|
8043
8099
|
imageParams?: {
|
|
8044
8100
|
provider?: string | undefined;
|
|
8045
|
-
style?: string | undefined;
|
|
8046
8101
|
model?: string | undefined;
|
|
8102
|
+
style?: string | undefined;
|
|
8047
8103
|
moderation?: string | undefined;
|
|
8048
8104
|
images?: Record<string, {
|
|
8049
8105
|
type: "image";
|
|
@@ -8122,8 +8178,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8122
8178
|
instruction?: string | undefined;
|
|
8123
8179
|
} | undefined;
|
|
8124
8180
|
provider?: string | undefined;
|
|
8181
|
+
model?: string | undefined;
|
|
8125
8182
|
}>;
|
|
8126
8183
|
provider?: string | undefined;
|
|
8184
|
+
model?: string | undefined;
|
|
8127
8185
|
} | undefined;
|
|
8128
8186
|
references?: {
|
|
8129
8187
|
url: string;
|
|
@@ -8178,6 +8236,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8178
8236
|
instruction?: string | undefined;
|
|
8179
8237
|
}>>;
|
|
8180
8238
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
8239
|
+
model: z.ZodOptional<z.ZodString>;
|
|
8181
8240
|
}, "strict", z.ZodTypeAny, {
|
|
8182
8241
|
voiceId: string;
|
|
8183
8242
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8186,6 +8245,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8186
8245
|
instruction?: string | undefined;
|
|
8187
8246
|
} | undefined;
|
|
8188
8247
|
provider?: string | undefined;
|
|
8248
|
+
model?: string | undefined;
|
|
8189
8249
|
}, {
|
|
8190
8250
|
voiceId: string;
|
|
8191
8251
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8194,7 +8254,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8194
8254
|
instruction?: string | undefined;
|
|
8195
8255
|
} | undefined;
|
|
8196
8256
|
provider?: string | undefined;
|
|
8257
|
+
model?: string | undefined;
|
|
8197
8258
|
}>>;
|
|
8259
|
+
model: z.ZodOptional<z.ZodString>;
|
|
8198
8260
|
}, "strict", z.ZodTypeAny, {
|
|
8199
8261
|
provider: string;
|
|
8200
8262
|
speakers: Record<string, {
|
|
@@ -8205,7 +8267,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8205
8267
|
instruction?: string | undefined;
|
|
8206
8268
|
} | undefined;
|
|
8207
8269
|
provider?: string | undefined;
|
|
8270
|
+
model?: string | undefined;
|
|
8208
8271
|
}>;
|
|
8272
|
+
model?: string | undefined;
|
|
8209
8273
|
}, {
|
|
8210
8274
|
speakers: Record<string, {
|
|
8211
8275
|
voiceId: string;
|
|
@@ -8215,8 +8279,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8215
8279
|
instruction?: string | undefined;
|
|
8216
8280
|
} | undefined;
|
|
8217
8281
|
provider?: string | undefined;
|
|
8282
|
+
model?: string | undefined;
|
|
8218
8283
|
}>;
|
|
8219
8284
|
provider?: string | undefined;
|
|
8285
|
+
model?: string | undefined;
|
|
8220
8286
|
}>>;
|
|
8221
8287
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8222
8288
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
@@ -8304,8 +8370,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8304
8370
|
}>]>>>;
|
|
8305
8371
|
}, "strict", z.ZodTypeAny, {
|
|
8306
8372
|
provider: string;
|
|
8307
|
-
style?: string | undefined;
|
|
8308
8373
|
model?: string | undefined;
|
|
8374
|
+
style?: string | undefined;
|
|
8309
8375
|
moderation?: string | undefined;
|
|
8310
8376
|
images?: Record<string, {
|
|
8311
8377
|
type: "image";
|
|
@@ -8328,8 +8394,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8328
8394
|
}> | undefined;
|
|
8329
8395
|
}, {
|
|
8330
8396
|
provider?: string | undefined;
|
|
8331
|
-
style?: string | undefined;
|
|
8332
8397
|
model?: string | undefined;
|
|
8398
|
+
style?: string | undefined;
|
|
8333
8399
|
moderation?: string | undefined;
|
|
8334
8400
|
images?: Record<string, {
|
|
8335
8401
|
type: "image";
|
|
@@ -8549,12 +8615,14 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8549
8615
|
instruction?: string | undefined;
|
|
8550
8616
|
} | undefined;
|
|
8551
8617
|
provider?: string | undefined;
|
|
8618
|
+
model?: string | undefined;
|
|
8552
8619
|
}>;
|
|
8620
|
+
model?: string | undefined;
|
|
8553
8621
|
};
|
|
8554
8622
|
imageParams?: {
|
|
8555
8623
|
provider: string;
|
|
8556
|
-
style?: string | undefined;
|
|
8557
8624
|
model?: string | undefined;
|
|
8625
|
+
style?: string | undefined;
|
|
8558
8626
|
moderation?: string | undefined;
|
|
8559
8627
|
images?: Record<string, {
|
|
8560
8628
|
type: "image";
|
|
@@ -8605,8 +8673,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8605
8673
|
};
|
|
8606
8674
|
imageParams?: {
|
|
8607
8675
|
provider?: string | undefined;
|
|
8608
|
-
style?: string | undefined;
|
|
8609
8676
|
model?: string | undefined;
|
|
8677
|
+
style?: string | undefined;
|
|
8610
8678
|
moderation?: string | undefined;
|
|
8611
8679
|
images?: Record<string, {
|
|
8612
8680
|
type: "image";
|
|
@@ -8685,8 +8753,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8685
8753
|
instruction?: string | undefined;
|
|
8686
8754
|
} | undefined;
|
|
8687
8755
|
provider?: string | undefined;
|
|
8756
|
+
model?: string | undefined;
|
|
8688
8757
|
}>;
|
|
8689
8758
|
provider?: string | undefined;
|
|
8759
|
+
model?: string | undefined;
|
|
8690
8760
|
} | undefined;
|
|
8691
8761
|
}>>;
|
|
8692
8762
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -8735,12 +8805,14 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8735
8805
|
instruction?: string | undefined;
|
|
8736
8806
|
} | undefined;
|
|
8737
8807
|
provider?: string | undefined;
|
|
8808
|
+
model?: string | undefined;
|
|
8738
8809
|
}>;
|
|
8810
|
+
model?: string | undefined;
|
|
8739
8811
|
};
|
|
8740
8812
|
imageParams?: {
|
|
8741
8813
|
provider: string;
|
|
8742
|
-
style?: string | undefined;
|
|
8743
8814
|
model?: string | undefined;
|
|
8815
|
+
style?: string | undefined;
|
|
8744
8816
|
moderation?: string | undefined;
|
|
8745
8817
|
images?: Record<string, {
|
|
8746
8818
|
type: "image";
|
|
@@ -8797,8 +8869,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8797
8869
|
};
|
|
8798
8870
|
imageParams?: {
|
|
8799
8871
|
provider?: string | undefined;
|
|
8800
|
-
style?: string | undefined;
|
|
8801
8872
|
model?: string | undefined;
|
|
8873
|
+
style?: string | undefined;
|
|
8802
8874
|
moderation?: string | undefined;
|
|
8803
8875
|
images?: Record<string, {
|
|
8804
8876
|
type: "image";
|
|
@@ -8877,8 +8949,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8877
8949
|
instruction?: string | undefined;
|
|
8878
8950
|
} | undefined;
|
|
8879
8951
|
provider?: string | undefined;
|
|
8952
|
+
model?: string | undefined;
|
|
8880
8953
|
}>;
|
|
8881
8954
|
provider?: string | undefined;
|
|
8955
|
+
model?: string | undefined;
|
|
8882
8956
|
} | undefined;
|
|
8883
8957
|
} | undefined;
|
|
8884
8958
|
}>;
|
|
@@ -8924,6 +8998,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8924
8998
|
instruction?: string | undefined;
|
|
8925
8999
|
}>>;
|
|
8926
9000
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
9001
|
+
model: z.ZodOptional<z.ZodString>;
|
|
8927
9002
|
}, "strict", z.ZodTypeAny, {
|
|
8928
9003
|
voiceId: string;
|
|
8929
9004
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8932,6 +9007,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8932
9007
|
instruction?: string | undefined;
|
|
8933
9008
|
} | undefined;
|
|
8934
9009
|
provider?: string | undefined;
|
|
9010
|
+
model?: string | undefined;
|
|
8935
9011
|
}, {
|
|
8936
9012
|
voiceId: string;
|
|
8937
9013
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8940,7 +9016,9 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8940
9016
|
instruction?: string | undefined;
|
|
8941
9017
|
} | undefined;
|
|
8942
9018
|
provider?: string | undefined;
|
|
9019
|
+
model?: string | undefined;
|
|
8943
9020
|
}>>;
|
|
9021
|
+
model: z.ZodOptional<z.ZodString>;
|
|
8944
9022
|
}, "strict", z.ZodTypeAny, {
|
|
8945
9023
|
provider: string;
|
|
8946
9024
|
speakers: Record<string, {
|
|
@@ -8951,7 +9029,9 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8951
9029
|
instruction?: string | undefined;
|
|
8952
9030
|
} | undefined;
|
|
8953
9031
|
provider?: string | undefined;
|
|
9032
|
+
model?: string | undefined;
|
|
8954
9033
|
}>;
|
|
9034
|
+
model?: string | undefined;
|
|
8955
9035
|
}, {
|
|
8956
9036
|
speakers: Record<string, {
|
|
8957
9037
|
voiceId: string;
|
|
@@ -8961,8 +9041,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8961
9041
|
instruction?: string | undefined;
|
|
8962
9042
|
} | undefined;
|
|
8963
9043
|
provider?: string | undefined;
|
|
9044
|
+
model?: string | undefined;
|
|
8964
9045
|
}>;
|
|
8965
9046
|
provider?: string | undefined;
|
|
9047
|
+
model?: string | undefined;
|
|
8966
9048
|
}>>;
|
|
8967
9049
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8968
9050
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
@@ -9050,8 +9132,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9050
9132
|
}>]>>>;
|
|
9051
9133
|
}, "strict", z.ZodTypeAny, {
|
|
9052
9134
|
provider: string;
|
|
9053
|
-
style?: string | undefined;
|
|
9054
9135
|
model?: string | undefined;
|
|
9136
|
+
style?: string | undefined;
|
|
9055
9137
|
moderation?: string | undefined;
|
|
9056
9138
|
images?: Record<string, {
|
|
9057
9139
|
type: "image";
|
|
@@ -9074,8 +9156,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9074
9156
|
}> | undefined;
|
|
9075
9157
|
}, {
|
|
9076
9158
|
provider?: string | undefined;
|
|
9077
|
-
style?: string | undefined;
|
|
9078
9159
|
model?: string | undefined;
|
|
9160
|
+
style?: string | undefined;
|
|
9079
9161
|
moderation?: string | undefined;
|
|
9080
9162
|
images?: Record<string, {
|
|
9081
9163
|
type: "image";
|
|
@@ -9295,12 +9377,14 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9295
9377
|
instruction?: string | undefined;
|
|
9296
9378
|
} | undefined;
|
|
9297
9379
|
provider?: string | undefined;
|
|
9380
|
+
model?: string | undefined;
|
|
9298
9381
|
}>;
|
|
9382
|
+
model?: string | undefined;
|
|
9299
9383
|
};
|
|
9300
9384
|
imageParams?: {
|
|
9301
9385
|
provider: string;
|
|
9302
|
-
style?: string | undefined;
|
|
9303
9386
|
model?: string | undefined;
|
|
9387
|
+
style?: string | undefined;
|
|
9304
9388
|
moderation?: string | undefined;
|
|
9305
9389
|
images?: Record<string, {
|
|
9306
9390
|
type: "image";
|
|
@@ -9351,8 +9435,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9351
9435
|
};
|
|
9352
9436
|
imageParams?: {
|
|
9353
9437
|
provider?: string | undefined;
|
|
9354
|
-
style?: string | undefined;
|
|
9355
9438
|
model?: string | undefined;
|
|
9439
|
+
style?: string | undefined;
|
|
9356
9440
|
moderation?: string | undefined;
|
|
9357
9441
|
images?: Record<string, {
|
|
9358
9442
|
type: "image";
|
|
@@ -9431,8 +9515,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9431
9515
|
instruction?: string | undefined;
|
|
9432
9516
|
} | undefined;
|
|
9433
9517
|
provider?: string | undefined;
|
|
9518
|
+
model?: string | undefined;
|
|
9434
9519
|
}>;
|
|
9435
9520
|
provider?: string | undefined;
|
|
9521
|
+
model?: string | undefined;
|
|
9436
9522
|
} | undefined;
|
|
9437
9523
|
}>>;
|
|
9438
9524
|
} & {
|
|
@@ -9484,12 +9570,14 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9484
9570
|
instruction?: string | undefined;
|
|
9485
9571
|
} | undefined;
|
|
9486
9572
|
provider?: string | undefined;
|
|
9573
|
+
model?: string | undefined;
|
|
9487
9574
|
}>;
|
|
9575
|
+
model?: string | undefined;
|
|
9488
9576
|
};
|
|
9489
9577
|
imageParams?: {
|
|
9490
9578
|
provider: string;
|
|
9491
|
-
style?: string | undefined;
|
|
9492
9579
|
model?: string | undefined;
|
|
9580
|
+
style?: string | undefined;
|
|
9493
9581
|
moderation?: string | undefined;
|
|
9494
9582
|
images?: Record<string, {
|
|
9495
9583
|
type: "image";
|
|
@@ -9547,8 +9635,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9547
9635
|
};
|
|
9548
9636
|
imageParams?: {
|
|
9549
9637
|
provider?: string | undefined;
|
|
9550
|
-
style?: string | undefined;
|
|
9551
9638
|
model?: string | undefined;
|
|
9639
|
+
style?: string | undefined;
|
|
9552
9640
|
moderation?: string | undefined;
|
|
9553
9641
|
images?: Record<string, {
|
|
9554
9642
|
type: "image";
|
|
@@ -9627,8 +9715,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9627
9715
|
instruction?: string | undefined;
|
|
9628
9716
|
} | undefined;
|
|
9629
9717
|
provider?: string | undefined;
|
|
9718
|
+
model?: string | undefined;
|
|
9630
9719
|
}>;
|
|
9631
9720
|
provider?: string | undefined;
|
|
9721
|
+
model?: string | undefined;
|
|
9632
9722
|
} | undefined;
|
|
9633
9723
|
} | undefined;
|
|
9634
9724
|
}>;
|