@mulmocast/types 2.6.3 → 2.6.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/agent.d.ts +6 -0
- package/lib/agent.d.ts.map +1 -1
- package/lib/provider2agent.d.ts +6 -11
- package/lib/provider2agent.d.ts.map +1 -1
- package/lib/provider2agent.js +10 -0
- package/lib/provider2agent.js.map +1 -1
- package/lib/schema.d.ts +532 -0
- package/lib/schema.d.ts.map +1 -1
- package/lib/schema.js +14 -0
- package/lib/schema.js.map +1 -1
- package/lib/slide.d.ts +176 -0
- package/lib/slide.d.ts.map +1 -1
- package/lib/slide.js +18 -0
- package/lib/slide.js.map +1 -1
- package/package.json +1 -1
package/lib/schema.d.ts
CHANGED
|
@@ -351,6 +351,26 @@ export declare const mulmoChartMediaSchema: z.ZodObject<{
|
|
|
351
351
|
type: z.ZodLiteral<"chart">;
|
|
352
352
|
title: z.ZodString;
|
|
353
353
|
chartData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
354
|
+
style: z.ZodOptional<z.ZodString>;
|
|
355
|
+
backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
356
|
+
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
357
|
+
kind: z.ZodLiteral<"url">;
|
|
358
|
+
url: z.ZodURL;
|
|
359
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
360
|
+
kind: z.ZodLiteral<"base64">;
|
|
361
|
+
data: z.ZodString;
|
|
362
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
363
|
+
kind: z.ZodLiteral<"path">;
|
|
364
|
+
path: z.ZodString;
|
|
365
|
+
}, z.core.$strict>], "kind">;
|
|
366
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
367
|
+
auto: "auto";
|
|
368
|
+
contain: "contain";
|
|
369
|
+
cover: "cover";
|
|
370
|
+
fill: "fill";
|
|
371
|
+
}>>;
|
|
372
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
373
|
+
}, z.core.$strip>]>>>;
|
|
354
374
|
}, z.core.$strict>;
|
|
355
375
|
export declare const mulmoMermaidMediaSchema: z.ZodObject<{
|
|
356
376
|
type: z.ZodLiteral<"mermaid">;
|
|
@@ -532,6 +552,26 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
532
552
|
type: z.ZodLiteral<"chart">;
|
|
533
553
|
title: z.ZodString;
|
|
534
554
|
chartData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
555
|
+
style: z.ZodOptional<z.ZodString>;
|
|
556
|
+
backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
557
|
+
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
558
|
+
kind: z.ZodLiteral<"url">;
|
|
559
|
+
url: z.ZodURL;
|
|
560
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
561
|
+
kind: z.ZodLiteral<"base64">;
|
|
562
|
+
data: z.ZodString;
|
|
563
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
564
|
+
kind: z.ZodLiteral<"path">;
|
|
565
|
+
path: z.ZodString;
|
|
566
|
+
}, z.core.$strict>], "kind">;
|
|
567
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
568
|
+
auto: "auto";
|
|
569
|
+
contain: "contain";
|
|
570
|
+
cover: "cover";
|
|
571
|
+
fill: "fill";
|
|
572
|
+
}>>;
|
|
573
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
574
|
+
}, z.core.$strip>]>>>;
|
|
535
575
|
}, z.core.$strict>, z.ZodObject<{
|
|
536
576
|
type: z.ZodLiteral<"mermaid">;
|
|
537
577
|
title: z.ZodString;
|
|
@@ -2915,6 +2955,59 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2915
2955
|
footer: z.ZodOptional<z.ZodString>;
|
|
2916
2956
|
}, z.core.$strip>>;
|
|
2917
2957
|
layout: z.ZodLiteral<"funnel">;
|
|
2958
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2959
|
+
title: z.ZodString;
|
|
2960
|
+
stepLabel: z.ZodOptional<z.ZodString>;
|
|
2961
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
2962
|
+
items: z.ZodArray<z.ZodObject<{
|
|
2963
|
+
label: z.ZodString;
|
|
2964
|
+
value: z.ZodNumber;
|
|
2965
|
+
isTotal: z.ZodOptional<z.ZodBoolean>;
|
|
2966
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2967
|
+
success: "success";
|
|
2968
|
+
primary: "primary";
|
|
2969
|
+
accent: "accent";
|
|
2970
|
+
warning: "warning";
|
|
2971
|
+
danger: "danger";
|
|
2972
|
+
info: "info";
|
|
2973
|
+
highlight: "highlight";
|
|
2974
|
+
}>>;
|
|
2975
|
+
}, z.core.$strip>>;
|
|
2976
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
2977
|
+
callout: z.ZodOptional<z.ZodObject<{
|
|
2978
|
+
text: z.ZodString;
|
|
2979
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2980
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2981
|
+
success: "success";
|
|
2982
|
+
primary: "primary";
|
|
2983
|
+
accent: "accent";
|
|
2984
|
+
warning: "warning";
|
|
2985
|
+
danger: "danger";
|
|
2986
|
+
info: "info";
|
|
2987
|
+
highlight: "highlight";
|
|
2988
|
+
}>>;
|
|
2989
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
2990
|
+
left: "left";
|
|
2991
|
+
center: "center";
|
|
2992
|
+
}>>;
|
|
2993
|
+
leftBar: z.ZodOptional<z.ZodBoolean>;
|
|
2994
|
+
}, z.core.$strip>>;
|
|
2995
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
2996
|
+
success: "success";
|
|
2997
|
+
primary: "primary";
|
|
2998
|
+
accent: "accent";
|
|
2999
|
+
warning: "warning";
|
|
3000
|
+
danger: "danger";
|
|
3001
|
+
info: "info";
|
|
3002
|
+
highlight: "highlight";
|
|
3003
|
+
}>>;
|
|
3004
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
3005
|
+
bgColor: z.ZodOptional<z.ZodString>;
|
|
3006
|
+
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
3007
|
+
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
3008
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
3009
|
+
}, z.core.$strip>>;
|
|
3010
|
+
layout: z.ZodLiteral<"waterfall">;
|
|
2918
3011
|
}, z.core.$strip>], "layout">;
|
|
2919
3012
|
reference: z.ZodOptional<z.ZodString>;
|
|
2920
3013
|
branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2982,6 +3075,17 @@ export declare const mulmoImagePromptMediaSchema: z.ZodObject<{
|
|
|
2982
3075
|
width: z.ZodNumber;
|
|
2983
3076
|
height: z.ZodNumber;
|
|
2984
3077
|
}, z.core.$strict>>;
|
|
3078
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
3079
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3080
|
+
kind: z.ZodLiteral<"url">;
|
|
3081
|
+
url: z.ZodURL;
|
|
3082
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3083
|
+
kind: z.ZodLiteral<"base64">;
|
|
3084
|
+
data: z.ZodString;
|
|
3085
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3086
|
+
kind: z.ZodLiteral<"path">;
|
|
3087
|
+
path: z.ZodString;
|
|
3088
|
+
}, z.core.$strict>], "kind">>;
|
|
2985
3089
|
}, z.core.$strict>;
|
|
2986
3090
|
export declare const mulmoImageParamsImagesValueSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
2987
3091
|
type: z.ZodLiteral<"image">;
|
|
@@ -3002,6 +3106,17 @@ export declare const mulmoImageParamsImagesValueSchema: z.ZodUnion<readonly [z.Z
|
|
|
3002
3106
|
width: z.ZodNumber;
|
|
3003
3107
|
height: z.ZodNumber;
|
|
3004
3108
|
}, z.core.$strict>>;
|
|
3109
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
3110
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3111
|
+
kind: z.ZodLiteral<"url">;
|
|
3112
|
+
url: z.ZodURL;
|
|
3113
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3114
|
+
kind: z.ZodLiteral<"base64">;
|
|
3115
|
+
data: z.ZodString;
|
|
3116
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3117
|
+
kind: z.ZodLiteral<"path">;
|
|
3118
|
+
path: z.ZodString;
|
|
3119
|
+
}, z.core.$strict>], "kind">>;
|
|
3005
3120
|
}, z.core.$strict>, z.ZodObject<{
|
|
3006
3121
|
type: z.ZodLiteral<"movie">;
|
|
3007
3122
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -3038,6 +3153,17 @@ export declare const mulmoImageParamsImagesSchema: z.ZodRecord<z.ZodString, z.Zo
|
|
|
3038
3153
|
width: z.ZodNumber;
|
|
3039
3154
|
height: z.ZodNumber;
|
|
3040
3155
|
}, z.core.$strict>>;
|
|
3156
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
3157
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3158
|
+
kind: z.ZodLiteral<"url">;
|
|
3159
|
+
url: z.ZodURL;
|
|
3160
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3161
|
+
kind: z.ZodLiteral<"base64">;
|
|
3162
|
+
data: z.ZodString;
|
|
3163
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3164
|
+
kind: z.ZodLiteral<"path">;
|
|
3165
|
+
path: z.ZodString;
|
|
3166
|
+
}, z.core.$strict>], "kind">>;
|
|
3041
3167
|
}, z.core.$strict>, z.ZodObject<{
|
|
3042
3168
|
type: z.ZodLiteral<"movie">;
|
|
3043
3169
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -3126,6 +3252,17 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
3126
3252
|
width: z.ZodNumber;
|
|
3127
3253
|
height: z.ZodNumber;
|
|
3128
3254
|
}, z.core.$strict>>;
|
|
3255
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
3256
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3257
|
+
kind: z.ZodLiteral<"url">;
|
|
3258
|
+
url: z.ZodURL;
|
|
3259
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3260
|
+
kind: z.ZodLiteral<"base64">;
|
|
3261
|
+
data: z.ZodString;
|
|
3262
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3263
|
+
kind: z.ZodLiteral<"path">;
|
|
3264
|
+
path: z.ZodString;
|
|
3265
|
+
}, z.core.$strict>], "kind">>;
|
|
3129
3266
|
}, z.core.$strict>, z.ZodObject<{
|
|
3130
3267
|
type: z.ZodLiteral<"movie">;
|
|
3131
3268
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -3301,6 +3438,13 @@ export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
|
3301
3438
|
}>;
|
|
3302
3439
|
duration: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
3303
3440
|
}, z.core.$strip>;
|
|
3441
|
+
export declare const movieReferenceImageSchema: z.ZodObject<{
|
|
3442
|
+
imageName: z.ZodString;
|
|
3443
|
+
referenceType: z.ZodEnum<{
|
|
3444
|
+
ASSET: "ASSET";
|
|
3445
|
+
STYLE: "STYLE";
|
|
3446
|
+
}>;
|
|
3447
|
+
}, z.core.$strip>;
|
|
3304
3448
|
export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
3305
3449
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
3306
3450
|
[x: string]: string;
|
|
@@ -3530,6 +3674,15 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
3530
3674
|
}, z.core.$strip>]>>>;
|
|
3531
3675
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
3532
3676
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
3677
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
3678
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
3679
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3680
|
+
imageName: z.ZodString;
|
|
3681
|
+
referenceType: z.ZodEnum<{
|
|
3682
|
+
ASSET: "ASSET";
|
|
3683
|
+
STYLE: "STYLE";
|
|
3684
|
+
}>;
|
|
3685
|
+
}, z.core.$strip>>>;
|
|
3533
3686
|
}, z.core.$strip>;
|
|
3534
3687
|
export declare const mulmoBeatSchema: z.ZodObject<{
|
|
3535
3688
|
speaker: z.ZodOptional<z.ZodString>;
|
|
@@ -3651,6 +3804,26 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
3651
3804
|
type: z.ZodLiteral<"chart">;
|
|
3652
3805
|
title: z.ZodString;
|
|
3653
3806
|
chartData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3807
|
+
style: z.ZodOptional<z.ZodString>;
|
|
3808
|
+
backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3809
|
+
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3810
|
+
kind: z.ZodLiteral<"url">;
|
|
3811
|
+
url: z.ZodURL;
|
|
3812
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3813
|
+
kind: z.ZodLiteral<"base64">;
|
|
3814
|
+
data: z.ZodString;
|
|
3815
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3816
|
+
kind: z.ZodLiteral<"path">;
|
|
3817
|
+
path: z.ZodString;
|
|
3818
|
+
}, z.core.$strict>], "kind">;
|
|
3819
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3820
|
+
auto: "auto";
|
|
3821
|
+
contain: "contain";
|
|
3822
|
+
cover: "cover";
|
|
3823
|
+
fill: "fill";
|
|
3824
|
+
}>>;
|
|
3825
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
3826
|
+
}, z.core.$strip>]>>>;
|
|
3654
3827
|
}, z.core.$strict>, z.ZodObject<{
|
|
3655
3828
|
type: z.ZodLiteral<"mermaid">;
|
|
3656
3829
|
title: z.ZodString;
|
|
@@ -6034,6 +6207,59 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
6034
6207
|
footer: z.ZodOptional<z.ZodString>;
|
|
6035
6208
|
}, z.core.$strip>>;
|
|
6036
6209
|
layout: z.ZodLiteral<"funnel">;
|
|
6210
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6211
|
+
title: z.ZodString;
|
|
6212
|
+
stepLabel: z.ZodOptional<z.ZodString>;
|
|
6213
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
6214
|
+
items: z.ZodArray<z.ZodObject<{
|
|
6215
|
+
label: z.ZodString;
|
|
6216
|
+
value: z.ZodNumber;
|
|
6217
|
+
isTotal: z.ZodOptional<z.ZodBoolean>;
|
|
6218
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6219
|
+
success: "success";
|
|
6220
|
+
primary: "primary";
|
|
6221
|
+
accent: "accent";
|
|
6222
|
+
warning: "warning";
|
|
6223
|
+
danger: "danger";
|
|
6224
|
+
info: "info";
|
|
6225
|
+
highlight: "highlight";
|
|
6226
|
+
}>>;
|
|
6227
|
+
}, z.core.$strip>>;
|
|
6228
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
6229
|
+
callout: z.ZodOptional<z.ZodObject<{
|
|
6230
|
+
text: z.ZodString;
|
|
6231
|
+
label: z.ZodOptional<z.ZodString>;
|
|
6232
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6233
|
+
success: "success";
|
|
6234
|
+
primary: "primary";
|
|
6235
|
+
accent: "accent";
|
|
6236
|
+
warning: "warning";
|
|
6237
|
+
danger: "danger";
|
|
6238
|
+
info: "info";
|
|
6239
|
+
highlight: "highlight";
|
|
6240
|
+
}>>;
|
|
6241
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
6242
|
+
left: "left";
|
|
6243
|
+
center: "center";
|
|
6244
|
+
}>>;
|
|
6245
|
+
leftBar: z.ZodOptional<z.ZodBoolean>;
|
|
6246
|
+
}, z.core.$strip>>;
|
|
6247
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
6248
|
+
success: "success";
|
|
6249
|
+
primary: "primary";
|
|
6250
|
+
accent: "accent";
|
|
6251
|
+
warning: "warning";
|
|
6252
|
+
danger: "danger";
|
|
6253
|
+
info: "info";
|
|
6254
|
+
highlight: "highlight";
|
|
6255
|
+
}>>;
|
|
6256
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
6257
|
+
bgColor: z.ZodOptional<z.ZodString>;
|
|
6258
|
+
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
6259
|
+
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
6260
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
6261
|
+
}, z.core.$strip>>;
|
|
6262
|
+
layout: z.ZodLiteral<"waterfall">;
|
|
6037
6263
|
}, z.core.$strip>], "layout">;
|
|
6038
6264
|
reference: z.ZodOptional<z.ZodString>;
|
|
6039
6265
|
branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6341,6 +6567,15 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
6341
6567
|
}, z.core.$strip>]>>>;
|
|
6342
6568
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
6343
6569
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
6570
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
6571
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
6572
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6573
|
+
imageName: z.ZodString;
|
|
6574
|
+
referenceType: z.ZodEnum<{
|
|
6575
|
+
ASSET: "ASSET";
|
|
6576
|
+
STYLE: "STYLE";
|
|
6577
|
+
}>;
|
|
6578
|
+
}, z.core.$strip>>>;
|
|
6344
6579
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
6345
6580
|
}, z.core.$strip>>;
|
|
6346
6581
|
soundEffectParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -6400,6 +6635,17 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
6400
6635
|
width: z.ZodNumber;
|
|
6401
6636
|
height: z.ZodNumber;
|
|
6402
6637
|
}, z.core.$strict>>;
|
|
6638
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
6639
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6640
|
+
kind: z.ZodLiteral<"url">;
|
|
6641
|
+
url: z.ZodURL;
|
|
6642
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6643
|
+
kind: z.ZodLiteral<"base64">;
|
|
6644
|
+
data: z.ZodString;
|
|
6645
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6646
|
+
kind: z.ZodLiteral<"path">;
|
|
6647
|
+
path: z.ZodString;
|
|
6648
|
+
}, z.core.$strict>], "kind">>;
|
|
6403
6649
|
}, z.core.$strict>, z.ZodObject<{
|
|
6404
6650
|
type: z.ZodLiteral<"movie">;
|
|
6405
6651
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -6531,6 +6777,17 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
6531
6777
|
width: z.ZodNumber;
|
|
6532
6778
|
height: z.ZodNumber;
|
|
6533
6779
|
}, z.core.$strict>>;
|
|
6780
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
6781
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6782
|
+
kind: z.ZodLiteral<"url">;
|
|
6783
|
+
url: z.ZodURL;
|
|
6784
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6785
|
+
kind: z.ZodLiteral<"base64">;
|
|
6786
|
+
data: z.ZodString;
|
|
6787
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6788
|
+
kind: z.ZodLiteral<"path">;
|
|
6789
|
+
path: z.ZodString;
|
|
6790
|
+
}, z.core.$strict>], "kind">>;
|
|
6534
6791
|
}, z.core.$strict>, z.ZodObject<{
|
|
6535
6792
|
type: z.ZodLiteral<"movie">;
|
|
6536
6793
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -6797,6 +7054,15 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
6797
7054
|
}, z.core.$strip>]>>>;
|
|
6798
7055
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
6799
7056
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
7057
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
7058
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
7059
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7060
|
+
imageName: z.ZodString;
|
|
7061
|
+
referenceType: z.ZodEnum<{
|
|
7062
|
+
ASSET: "ASSET";
|
|
7063
|
+
STYLE: "STYLE";
|
|
7064
|
+
}>;
|
|
7065
|
+
}, z.core.$strip>>>;
|
|
6800
7066
|
}, z.core.$strip>>>;
|
|
6801
7067
|
soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
6802
7068
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
@@ -7007,6 +7273,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
7007
7273
|
width: z.ZodNumber;
|
|
7008
7274
|
height: z.ZodNumber;
|
|
7009
7275
|
}, z.core.$strict>>;
|
|
7276
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
7277
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7278
|
+
kind: z.ZodLiteral<"url">;
|
|
7279
|
+
url: z.ZodURL;
|
|
7280
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7281
|
+
kind: z.ZodLiteral<"base64">;
|
|
7282
|
+
data: z.ZodString;
|
|
7283
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7284
|
+
kind: z.ZodLiteral<"path">;
|
|
7285
|
+
path: z.ZodString;
|
|
7286
|
+
}, z.core.$strict>], "kind">>;
|
|
7010
7287
|
}, z.core.$strict>, z.ZodObject<{
|
|
7011
7288
|
type: z.ZodLiteral<"movie">;
|
|
7012
7289
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -7273,6 +7550,15 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
7273
7550
|
}, z.core.$strip>]>>>;
|
|
7274
7551
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
7275
7552
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
7553
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
7554
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
7555
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7556
|
+
imageName: z.ZodString;
|
|
7557
|
+
referenceType: z.ZodEnum<{
|
|
7558
|
+
ASSET: "ASSET";
|
|
7559
|
+
STYLE: "STYLE";
|
|
7560
|
+
}>;
|
|
7561
|
+
}, z.core.$strip>>>;
|
|
7276
7562
|
}, z.core.$strip>>>;
|
|
7277
7563
|
soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
7278
7564
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
@@ -7527,6 +7813,26 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
7527
7813
|
type: z.ZodLiteral<"chart">;
|
|
7528
7814
|
title: z.ZodString;
|
|
7529
7815
|
chartData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7816
|
+
style: z.ZodOptional<z.ZodString>;
|
|
7817
|
+
backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7818
|
+
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7819
|
+
kind: z.ZodLiteral<"url">;
|
|
7820
|
+
url: z.ZodURL;
|
|
7821
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7822
|
+
kind: z.ZodLiteral<"base64">;
|
|
7823
|
+
data: z.ZodString;
|
|
7824
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7825
|
+
kind: z.ZodLiteral<"path">;
|
|
7826
|
+
path: z.ZodString;
|
|
7827
|
+
}, z.core.$strict>], "kind">;
|
|
7828
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7829
|
+
auto: "auto";
|
|
7830
|
+
contain: "contain";
|
|
7831
|
+
cover: "cover";
|
|
7832
|
+
fill: "fill";
|
|
7833
|
+
}>>;
|
|
7834
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
7835
|
+
}, z.core.$strip>]>>>;
|
|
7530
7836
|
}, z.core.$strict>, z.ZodObject<{
|
|
7531
7837
|
type: z.ZodLiteral<"mermaid">;
|
|
7532
7838
|
title: z.ZodString;
|
|
@@ -9910,6 +10216,59 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
9910
10216
|
footer: z.ZodOptional<z.ZodString>;
|
|
9911
10217
|
}, z.core.$strip>>;
|
|
9912
10218
|
layout: z.ZodLiteral<"funnel">;
|
|
10219
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10220
|
+
title: z.ZodString;
|
|
10221
|
+
stepLabel: z.ZodOptional<z.ZodString>;
|
|
10222
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
10223
|
+
items: z.ZodArray<z.ZodObject<{
|
|
10224
|
+
label: z.ZodString;
|
|
10225
|
+
value: z.ZodNumber;
|
|
10226
|
+
isTotal: z.ZodOptional<z.ZodBoolean>;
|
|
10227
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10228
|
+
success: "success";
|
|
10229
|
+
primary: "primary";
|
|
10230
|
+
accent: "accent";
|
|
10231
|
+
warning: "warning";
|
|
10232
|
+
danger: "danger";
|
|
10233
|
+
info: "info";
|
|
10234
|
+
highlight: "highlight";
|
|
10235
|
+
}>>;
|
|
10236
|
+
}, z.core.$strip>>;
|
|
10237
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
10238
|
+
callout: z.ZodOptional<z.ZodObject<{
|
|
10239
|
+
text: z.ZodString;
|
|
10240
|
+
label: z.ZodOptional<z.ZodString>;
|
|
10241
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10242
|
+
success: "success";
|
|
10243
|
+
primary: "primary";
|
|
10244
|
+
accent: "accent";
|
|
10245
|
+
warning: "warning";
|
|
10246
|
+
danger: "danger";
|
|
10247
|
+
info: "info";
|
|
10248
|
+
highlight: "highlight";
|
|
10249
|
+
}>>;
|
|
10250
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
10251
|
+
left: "left";
|
|
10252
|
+
center: "center";
|
|
10253
|
+
}>>;
|
|
10254
|
+
leftBar: z.ZodOptional<z.ZodBoolean>;
|
|
10255
|
+
}, z.core.$strip>>;
|
|
10256
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
10257
|
+
success: "success";
|
|
10258
|
+
primary: "primary";
|
|
10259
|
+
accent: "accent";
|
|
10260
|
+
warning: "warning";
|
|
10261
|
+
danger: "danger";
|
|
10262
|
+
info: "info";
|
|
10263
|
+
highlight: "highlight";
|
|
10264
|
+
}>>;
|
|
10265
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
10266
|
+
bgColor: z.ZodOptional<z.ZodString>;
|
|
10267
|
+
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
10268
|
+
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
10269
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
10270
|
+
}, z.core.$strip>>;
|
|
10271
|
+
layout: z.ZodLiteral<"waterfall">;
|
|
9913
10272
|
}, z.core.$strip>], "layout">;
|
|
9914
10273
|
reference: z.ZodOptional<z.ZodString>;
|
|
9915
10274
|
branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -10217,6 +10576,15 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
10217
10576
|
}, z.core.$strip>]>>>;
|
|
10218
10577
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
10219
10578
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
10579
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
10580
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
10581
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10582
|
+
imageName: z.ZodString;
|
|
10583
|
+
referenceType: z.ZodEnum<{
|
|
10584
|
+
ASSET: "ASSET";
|
|
10585
|
+
STYLE: "STYLE";
|
|
10586
|
+
}>;
|
|
10587
|
+
}, z.core.$strip>>>;
|
|
10220
10588
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
10221
10589
|
}, z.core.$strip>>;
|
|
10222
10590
|
soundEffectParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -10276,6 +10644,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
10276
10644
|
width: z.ZodNumber;
|
|
10277
10645
|
height: z.ZodNumber;
|
|
10278
10646
|
}, z.core.$strict>>;
|
|
10647
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
10648
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10649
|
+
kind: z.ZodLiteral<"url">;
|
|
10650
|
+
url: z.ZodURL;
|
|
10651
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
10652
|
+
kind: z.ZodLiteral<"base64">;
|
|
10653
|
+
data: z.ZodString;
|
|
10654
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
10655
|
+
kind: z.ZodLiteral<"path">;
|
|
10656
|
+
path: z.ZodString;
|
|
10657
|
+
}, z.core.$strict>], "kind">>;
|
|
10279
10658
|
}, z.core.$strict>, z.ZodObject<{
|
|
10280
10659
|
type: z.ZodLiteral<"movie">;
|
|
10281
10660
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -10482,6 +10861,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
10482
10861
|
width: z.ZodNumber;
|
|
10483
10862
|
height: z.ZodNumber;
|
|
10484
10863
|
}, z.core.$strict>>;
|
|
10864
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
10865
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10866
|
+
kind: z.ZodLiteral<"url">;
|
|
10867
|
+
url: z.ZodURL;
|
|
10868
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
10869
|
+
kind: z.ZodLiteral<"base64">;
|
|
10870
|
+
data: z.ZodString;
|
|
10871
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
10872
|
+
kind: z.ZodLiteral<"path">;
|
|
10873
|
+
path: z.ZodString;
|
|
10874
|
+
}, z.core.$strict>], "kind">>;
|
|
10485
10875
|
}, z.core.$strict>, z.ZodObject<{
|
|
10486
10876
|
type: z.ZodLiteral<"movie">;
|
|
10487
10877
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -10748,6 +11138,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
10748
11138
|
}, z.core.$strip>]>>>;
|
|
10749
11139
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
10750
11140
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
11141
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
11142
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
11143
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11144
|
+
imageName: z.ZodString;
|
|
11145
|
+
referenceType: z.ZodEnum<{
|
|
11146
|
+
ASSET: "ASSET";
|
|
11147
|
+
STYLE: "STYLE";
|
|
11148
|
+
}>;
|
|
11149
|
+
}, z.core.$strip>>>;
|
|
10751
11150
|
}, z.core.$strip>>>;
|
|
10752
11151
|
soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
10753
11152
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
@@ -11002,6 +11401,26 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
11002
11401
|
type: z.ZodLiteral<"chart">;
|
|
11003
11402
|
title: z.ZodString;
|
|
11004
11403
|
chartData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
11404
|
+
style: z.ZodOptional<z.ZodString>;
|
|
11405
|
+
backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
11406
|
+
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11407
|
+
kind: z.ZodLiteral<"url">;
|
|
11408
|
+
url: z.ZodURL;
|
|
11409
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
11410
|
+
kind: z.ZodLiteral<"base64">;
|
|
11411
|
+
data: z.ZodString;
|
|
11412
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
11413
|
+
kind: z.ZodLiteral<"path">;
|
|
11414
|
+
path: z.ZodString;
|
|
11415
|
+
}, z.core.$strict>], "kind">;
|
|
11416
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11417
|
+
auto: "auto";
|
|
11418
|
+
contain: "contain";
|
|
11419
|
+
cover: "cover";
|
|
11420
|
+
fill: "fill";
|
|
11421
|
+
}>>;
|
|
11422
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
11423
|
+
}, z.core.$strip>]>>>;
|
|
11005
11424
|
}, z.core.$strict>, z.ZodObject<{
|
|
11006
11425
|
type: z.ZodLiteral<"mermaid">;
|
|
11007
11426
|
title: z.ZodString;
|
|
@@ -13385,6 +13804,59 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
13385
13804
|
footer: z.ZodOptional<z.ZodString>;
|
|
13386
13805
|
}, z.core.$strip>>;
|
|
13387
13806
|
layout: z.ZodLiteral<"funnel">;
|
|
13807
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13808
|
+
title: z.ZodString;
|
|
13809
|
+
stepLabel: z.ZodOptional<z.ZodString>;
|
|
13810
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
13811
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13812
|
+
label: z.ZodString;
|
|
13813
|
+
value: z.ZodNumber;
|
|
13814
|
+
isTotal: z.ZodOptional<z.ZodBoolean>;
|
|
13815
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
13816
|
+
success: "success";
|
|
13817
|
+
primary: "primary";
|
|
13818
|
+
accent: "accent";
|
|
13819
|
+
warning: "warning";
|
|
13820
|
+
danger: "danger";
|
|
13821
|
+
info: "info";
|
|
13822
|
+
highlight: "highlight";
|
|
13823
|
+
}>>;
|
|
13824
|
+
}, z.core.$strip>>;
|
|
13825
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
13826
|
+
callout: z.ZodOptional<z.ZodObject<{
|
|
13827
|
+
text: z.ZodString;
|
|
13828
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13829
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
13830
|
+
success: "success";
|
|
13831
|
+
primary: "primary";
|
|
13832
|
+
accent: "accent";
|
|
13833
|
+
warning: "warning";
|
|
13834
|
+
danger: "danger";
|
|
13835
|
+
info: "info";
|
|
13836
|
+
highlight: "highlight";
|
|
13837
|
+
}>>;
|
|
13838
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
13839
|
+
left: "left";
|
|
13840
|
+
center: "center";
|
|
13841
|
+
}>>;
|
|
13842
|
+
leftBar: z.ZodOptional<z.ZodBoolean>;
|
|
13843
|
+
}, z.core.$strip>>;
|
|
13844
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
13845
|
+
success: "success";
|
|
13846
|
+
primary: "primary";
|
|
13847
|
+
accent: "accent";
|
|
13848
|
+
warning: "warning";
|
|
13849
|
+
danger: "danger";
|
|
13850
|
+
info: "info";
|
|
13851
|
+
highlight: "highlight";
|
|
13852
|
+
}>>;
|
|
13853
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
13854
|
+
bgColor: z.ZodOptional<z.ZodString>;
|
|
13855
|
+
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
13856
|
+
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
13857
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
13858
|
+
}, z.core.$strip>>;
|
|
13859
|
+
layout: z.ZodLiteral<"waterfall">;
|
|
13388
13860
|
}, z.core.$strip>], "layout">;
|
|
13389
13861
|
reference: z.ZodOptional<z.ZodString>;
|
|
13390
13862
|
branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -13692,6 +14164,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
13692
14164
|
}, z.core.$strip>]>>>;
|
|
13693
14165
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
13694
14166
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
14167
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
14168
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
14169
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14170
|
+
imageName: z.ZodString;
|
|
14171
|
+
referenceType: z.ZodEnum<{
|
|
14172
|
+
ASSET: "ASSET";
|
|
14173
|
+
STYLE: "STYLE";
|
|
14174
|
+
}>;
|
|
14175
|
+
}, z.core.$strip>>>;
|
|
13695
14176
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
13696
14177
|
}, z.core.$strip>>;
|
|
13697
14178
|
soundEffectParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -13751,6 +14232,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
13751
14232
|
width: z.ZodNumber;
|
|
13752
14233
|
height: z.ZodNumber;
|
|
13753
14234
|
}, z.core.$strict>>;
|
|
14235
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
14236
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
14237
|
+
kind: z.ZodLiteral<"url">;
|
|
14238
|
+
url: z.ZodURL;
|
|
14239
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
14240
|
+
kind: z.ZodLiteral<"base64">;
|
|
14241
|
+
data: z.ZodString;
|
|
14242
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
14243
|
+
kind: z.ZodLiteral<"path">;
|
|
14244
|
+
path: z.ZodString;
|
|
14245
|
+
}, z.core.$strict>], "kind">>;
|
|
13754
14246
|
}, z.core.$strict>, z.ZodObject<{
|
|
13755
14247
|
type: z.ZodLiteral<"movie">;
|
|
13756
14248
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -13893,6 +14385,17 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
13893
14385
|
width: z.ZodNumber;
|
|
13894
14386
|
height: z.ZodNumber;
|
|
13895
14387
|
}, z.core.$strict>>;
|
|
14388
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
14389
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
14390
|
+
kind: z.ZodLiteral<"url">;
|
|
14391
|
+
url: z.ZodURL;
|
|
14392
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
14393
|
+
kind: z.ZodLiteral<"base64">;
|
|
14394
|
+
data: z.ZodString;
|
|
14395
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
14396
|
+
kind: z.ZodLiteral<"path">;
|
|
14397
|
+
path: z.ZodString;
|
|
14398
|
+
}, z.core.$strict>], "kind">>;
|
|
13896
14399
|
}, z.core.$strict>, z.ZodObject<{
|
|
13897
14400
|
type: z.ZodLiteral<"movie">;
|
|
13898
14401
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -14159,6 +14662,15 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
14159
14662
|
}, z.core.$strip>]>>>;
|
|
14160
14663
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
14161
14664
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
14665
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
14666
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
14667
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14668
|
+
imageName: z.ZodString;
|
|
14669
|
+
referenceType: z.ZodEnum<{
|
|
14670
|
+
ASSET: "ASSET";
|
|
14671
|
+
STYLE: "STYLE";
|
|
14672
|
+
}>;
|
|
14673
|
+
}, z.core.$strip>>>;
|
|
14162
14674
|
}, z.core.$strip>>>;
|
|
14163
14675
|
soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
14164
14676
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
@@ -14363,6 +14875,17 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
14363
14875
|
width: z.ZodNumber;
|
|
14364
14876
|
height: z.ZodNumber;
|
|
14365
14877
|
}, z.core.$strict>>;
|
|
14878
|
+
referenceImageName: z.ZodOptional<z.ZodString>;
|
|
14879
|
+
referenceImage: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
14880
|
+
kind: z.ZodLiteral<"url">;
|
|
14881
|
+
url: z.ZodURL;
|
|
14882
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
14883
|
+
kind: z.ZodLiteral<"base64">;
|
|
14884
|
+
data: z.ZodString;
|
|
14885
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
14886
|
+
kind: z.ZodLiteral<"path">;
|
|
14887
|
+
path: z.ZodString;
|
|
14888
|
+
}, z.core.$strict>], "kind">>;
|
|
14366
14889
|
}, z.core.$strict>, z.ZodObject<{
|
|
14367
14890
|
type: z.ZodLiteral<"movie">;
|
|
14368
14891
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -14629,6 +15152,15 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
14629
15152
|
}, z.core.$strip>]>>>;
|
|
14630
15153
|
vertexai_project: z.ZodOptional<z.ZodString>;
|
|
14631
15154
|
vertexai_location: z.ZodOptional<z.ZodString>;
|
|
15155
|
+
firstFrameImageName: z.ZodOptional<z.ZodString>;
|
|
15156
|
+
lastFrameImageName: z.ZodOptional<z.ZodString>;
|
|
15157
|
+
referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15158
|
+
imageName: z.ZodString;
|
|
15159
|
+
referenceType: z.ZodEnum<{
|
|
15160
|
+
ASSET: "ASSET";
|
|
15161
|
+
STYLE: "STYLE";
|
|
15162
|
+
}>;
|
|
15163
|
+
}, z.core.$strip>>>;
|
|
14632
15164
|
}, z.core.$strip>>>;
|
|
14633
15165
|
soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
14634
15166
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|