@mulmocast/types 2.6.0 → 2.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/schema.d.ts CHANGED
@@ -276,6 +276,24 @@ export declare const mulmoImageMediaSchema: z.ZodObject<{
276
276
  path: z.ZodString;
277
277
  }, z.core.$strict>], "kind">;
278
278
  }, z.core.$strict>;
279
+ export declare const mulmoMovieMediaSchema: z.ZodObject<{
280
+ type: z.ZodLiteral<"movie">;
281
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
282
+ kind: z.ZodLiteral<"url">;
283
+ url: z.ZodURL;
284
+ }, z.core.$strict>, z.ZodObject<{
285
+ kind: z.ZodLiteral<"base64">;
286
+ data: z.ZodString;
287
+ }, z.core.$strict>, z.ZodObject<{
288
+ kind: z.ZodLiteral<"path">;
289
+ path: z.ZodString;
290
+ }, z.core.$strict>], "kind">;
291
+ }, z.core.$strict>;
292
+ export declare const mulmoMoviePromptMediaSchema: z.ZodObject<{
293
+ type: z.ZodLiteral<"moviePrompt">;
294
+ prompt: z.ZodString;
295
+ imageName: z.ZodOptional<z.ZodString>;
296
+ }, z.core.$strict>;
279
297
  export declare const mulmoTextSlideMediaSchema: z.ZodObject<{
280
298
  type: z.ZodLiteral<"textSlide">;
281
299
  slide: z.ZodObject<{
@@ -333,6 +351,26 @@ export declare const mulmoChartMediaSchema: z.ZodObject<{
333
351
  type: z.ZodLiteral<"chart">;
334
352
  title: z.ZodString;
335
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>]>>>;
336
374
  }, z.core.$strict>;
337
375
  export declare const mulmoMermaidMediaSchema: z.ZodObject<{
338
376
  type: z.ZodLiteral<"mermaid">;
@@ -514,6 +552,26 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
514
552
  type: z.ZodLiteral<"chart">;
515
553
  title: z.ZodString;
516
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>]>>>;
517
575
  }, z.core.$strict>, z.ZodObject<{
518
576
  type: z.ZodLiteral<"mermaid">;
519
577
  title: z.ZodString;
@@ -2897,6 +2955,59 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
2897
2955
  footer: z.ZodOptional<z.ZodString>;
2898
2956
  }, z.core.$strip>>;
2899
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">;
2900
3011
  }, z.core.$strip>], "layout">;
2901
3012
  reference: z.ZodOptional<z.ZodString>;
2902
3013
  branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2984,6 +3095,22 @@ export declare const mulmoImageParamsImagesValueSchema: z.ZodUnion<readonly [z.Z
2984
3095
  width: z.ZodNumber;
2985
3096
  height: z.ZodNumber;
2986
3097
  }, z.core.$strict>>;
3098
+ }, z.core.$strict>, z.ZodObject<{
3099
+ type: z.ZodLiteral<"movie">;
3100
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
3101
+ kind: z.ZodLiteral<"url">;
3102
+ url: z.ZodURL;
3103
+ }, z.core.$strict>, z.ZodObject<{
3104
+ kind: z.ZodLiteral<"base64">;
3105
+ data: z.ZodString;
3106
+ }, z.core.$strict>, z.ZodObject<{
3107
+ kind: z.ZodLiteral<"path">;
3108
+ path: z.ZodString;
3109
+ }, z.core.$strict>], "kind">;
3110
+ }, z.core.$strict>, z.ZodObject<{
3111
+ type: z.ZodLiteral<"moviePrompt">;
3112
+ prompt: z.ZodString;
3113
+ imageName: z.ZodOptional<z.ZodString>;
2987
3114
  }, z.core.$strict>]>;
2988
3115
  export declare const mulmoImageParamsImagesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
2989
3116
  type: z.ZodLiteral<"image">;
@@ -3004,6 +3131,22 @@ export declare const mulmoImageParamsImagesSchema: z.ZodRecord<z.ZodString, z.Zo
3004
3131
  width: z.ZodNumber;
3005
3132
  height: z.ZodNumber;
3006
3133
  }, z.core.$strict>>;
3134
+ }, z.core.$strict>, z.ZodObject<{
3135
+ type: z.ZodLiteral<"movie">;
3136
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
3137
+ kind: z.ZodLiteral<"url">;
3138
+ url: z.ZodURL;
3139
+ }, z.core.$strict>, z.ZodObject<{
3140
+ kind: z.ZodLiteral<"base64">;
3141
+ data: z.ZodString;
3142
+ }, z.core.$strict>, z.ZodObject<{
3143
+ kind: z.ZodLiteral<"path">;
3144
+ path: z.ZodString;
3145
+ }, z.core.$strict>], "kind">;
3146
+ }, z.core.$strict>, z.ZodObject<{
3147
+ type: z.ZodLiteral<"moviePrompt">;
3148
+ prompt: z.ZodString;
3149
+ imageName: z.ZodOptional<z.ZodString>;
3007
3150
  }, z.core.$strict>]>>;
3008
3151
  export declare const mulmoFillOptionSchema: z.ZodObject<{
3009
3152
  style: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
@@ -3076,6 +3219,22 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
3076
3219
  width: z.ZodNumber;
3077
3220
  height: z.ZodNumber;
3078
3221
  }, z.core.$strict>>;
3222
+ }, z.core.$strict>, z.ZodObject<{
3223
+ type: z.ZodLiteral<"movie">;
3224
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
3225
+ kind: z.ZodLiteral<"url">;
3226
+ url: z.ZodURL;
3227
+ }, z.core.$strict>, z.ZodObject<{
3228
+ kind: z.ZodLiteral<"base64">;
3229
+ data: z.ZodString;
3230
+ }, z.core.$strict>, z.ZodObject<{
3231
+ kind: z.ZodLiteral<"path">;
3232
+ path: z.ZodString;
3233
+ }, z.core.$strict>], "kind">;
3234
+ }, z.core.$strict>, z.ZodObject<{
3235
+ type: z.ZodLiteral<"moviePrompt">;
3236
+ prompt: z.ZodString;
3237
+ imageName: z.ZodOptional<z.ZodString>;
3079
3238
  }, z.core.$strict>]>>>;
3080
3239
  backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3081
3240
  source: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -3235,6 +3394,13 @@ export declare const mulmoTransitionSchema: z.ZodObject<{
3235
3394
  }>;
3236
3395
  duration: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
3237
3396
  }, z.core.$strip>;
3397
+ export declare const movieReferenceImageSchema: z.ZodObject<{
3398
+ imageName: z.ZodString;
3399
+ referenceType: z.ZodEnum<{
3400
+ ASSET: "ASSET";
3401
+ STYLE: "STYLE";
3402
+ }>;
3403
+ }, z.core.$strip>;
3238
3404
  export declare const mulmoMovieParamsSchema: z.ZodObject<{
3239
3405
  provider: z.ZodOptional<z.ZodEnum<{
3240
3406
  [x: string]: string;
@@ -3464,6 +3630,15 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
3464
3630
  }, z.core.$strip>]>>>;
3465
3631
  vertexai_project: z.ZodOptional<z.ZodString>;
3466
3632
  vertexai_location: z.ZodOptional<z.ZodString>;
3633
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
3634
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
3635
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3636
+ imageName: z.ZodString;
3637
+ referenceType: z.ZodEnum<{
3638
+ ASSET: "ASSET";
3639
+ STYLE: "STYLE";
3640
+ }>;
3641
+ }, z.core.$strip>>>;
3467
3642
  }, z.core.$strip>;
3468
3643
  export declare const mulmoBeatSchema: z.ZodObject<{
3469
3644
  speaker: z.ZodOptional<z.ZodString>;
@@ -3585,6 +3760,26 @@ export declare const mulmoBeatSchema: z.ZodObject<{
3585
3760
  type: z.ZodLiteral<"chart">;
3586
3761
  title: z.ZodString;
3587
3762
  chartData: z.ZodRecord<z.ZodString, z.ZodAny>;
3763
+ style: z.ZodOptional<z.ZodString>;
3764
+ backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3765
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
3766
+ kind: z.ZodLiteral<"url">;
3767
+ url: z.ZodURL;
3768
+ }, z.core.$strict>, z.ZodObject<{
3769
+ kind: z.ZodLiteral<"base64">;
3770
+ data: z.ZodString;
3771
+ }, z.core.$strict>, z.ZodObject<{
3772
+ kind: z.ZodLiteral<"path">;
3773
+ path: z.ZodString;
3774
+ }, z.core.$strict>], "kind">;
3775
+ size: z.ZodOptional<z.ZodEnum<{
3776
+ auto: "auto";
3777
+ contain: "contain";
3778
+ cover: "cover";
3779
+ fill: "fill";
3780
+ }>>;
3781
+ opacity: z.ZodOptional<z.ZodNumber>;
3782
+ }, z.core.$strip>]>>>;
3588
3783
  }, z.core.$strict>, z.ZodObject<{
3589
3784
  type: z.ZodLiteral<"mermaid">;
3590
3785
  title: z.ZodString;
@@ -5968,6 +6163,59 @@ export declare const mulmoBeatSchema: z.ZodObject<{
5968
6163
  footer: z.ZodOptional<z.ZodString>;
5969
6164
  }, z.core.$strip>>;
5970
6165
  layout: z.ZodLiteral<"funnel">;
6166
+ }, z.core.$strip>, z.ZodObject<{
6167
+ title: z.ZodString;
6168
+ stepLabel: z.ZodOptional<z.ZodString>;
6169
+ subtitle: z.ZodOptional<z.ZodString>;
6170
+ items: z.ZodArray<z.ZodObject<{
6171
+ label: z.ZodString;
6172
+ value: z.ZodNumber;
6173
+ isTotal: z.ZodOptional<z.ZodBoolean>;
6174
+ color: z.ZodOptional<z.ZodEnum<{
6175
+ success: "success";
6176
+ primary: "primary";
6177
+ accent: "accent";
6178
+ warning: "warning";
6179
+ danger: "danger";
6180
+ info: "info";
6181
+ highlight: "highlight";
6182
+ }>>;
6183
+ }, z.core.$strip>>;
6184
+ unit: z.ZodOptional<z.ZodString>;
6185
+ callout: z.ZodOptional<z.ZodObject<{
6186
+ text: z.ZodString;
6187
+ label: z.ZodOptional<z.ZodString>;
6188
+ color: z.ZodOptional<z.ZodEnum<{
6189
+ success: "success";
6190
+ primary: "primary";
6191
+ accent: "accent";
6192
+ warning: "warning";
6193
+ danger: "danger";
6194
+ info: "info";
6195
+ highlight: "highlight";
6196
+ }>>;
6197
+ align: z.ZodOptional<z.ZodEnum<{
6198
+ left: "left";
6199
+ center: "center";
6200
+ }>>;
6201
+ leftBar: z.ZodOptional<z.ZodBoolean>;
6202
+ }, z.core.$strip>>;
6203
+ accentColor: z.ZodOptional<z.ZodEnum<{
6204
+ success: "success";
6205
+ primary: "primary";
6206
+ accent: "accent";
6207
+ warning: "warning";
6208
+ danger: "danger";
6209
+ info: "info";
6210
+ highlight: "highlight";
6211
+ }>>;
6212
+ style: z.ZodOptional<z.ZodObject<{
6213
+ bgColor: z.ZodOptional<z.ZodString>;
6214
+ decorations: z.ZodOptional<z.ZodBoolean>;
6215
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
6216
+ footer: z.ZodOptional<z.ZodString>;
6217
+ }, z.core.$strip>>;
6218
+ layout: z.ZodLiteral<"waterfall">;
5971
6219
  }, z.core.$strip>], "layout">;
5972
6220
  reference: z.ZodOptional<z.ZodString>;
5973
6221
  branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6275,6 +6523,15 @@ export declare const mulmoBeatSchema: z.ZodObject<{
6275
6523
  }, z.core.$strip>]>>>;
6276
6524
  vertexai_project: z.ZodOptional<z.ZodString>;
6277
6525
  vertexai_location: z.ZodOptional<z.ZodString>;
6526
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
6527
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
6528
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
6529
+ imageName: z.ZodString;
6530
+ referenceType: z.ZodEnum<{
6531
+ ASSET: "ASSET";
6532
+ STYLE: "STYLE";
6533
+ }>;
6534
+ }, z.core.$strip>>>;
6278
6535
  speed: z.ZodOptional<z.ZodNumber>;
6279
6536
  }, z.core.$strip>>;
6280
6537
  soundEffectParams: z.ZodOptional<z.ZodObject<{
@@ -6315,6 +6572,42 @@ export declare const mulmoBeatSchema: z.ZodObject<{
6315
6572
  }, z.core.$strip>], "type">>;
6316
6573
  bottomOffset: z.ZodOptional<z.ZodNumber>;
6317
6574
  }, z.core.$strict>>;
6575
+ images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
6576
+ type: z.ZodLiteral<"image">;
6577
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
6578
+ kind: z.ZodLiteral<"url">;
6579
+ url: z.ZodURL;
6580
+ }, z.core.$strict>, z.ZodObject<{
6581
+ kind: z.ZodLiteral<"base64">;
6582
+ data: z.ZodString;
6583
+ }, z.core.$strict>, z.ZodObject<{
6584
+ kind: z.ZodLiteral<"path">;
6585
+ path: z.ZodString;
6586
+ }, z.core.$strict>], "kind">;
6587
+ }, z.core.$strict>, z.ZodObject<{
6588
+ type: z.ZodLiteral<"imagePrompt">;
6589
+ prompt: z.ZodString;
6590
+ canvasSize: z.ZodOptional<z.ZodObject<{
6591
+ width: z.ZodNumber;
6592
+ height: z.ZodNumber;
6593
+ }, z.core.$strict>>;
6594
+ }, z.core.$strict>, z.ZodObject<{
6595
+ type: z.ZodLiteral<"movie">;
6596
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
6597
+ kind: z.ZodLiteral<"url">;
6598
+ url: z.ZodURL;
6599
+ }, z.core.$strict>, z.ZodObject<{
6600
+ kind: z.ZodLiteral<"base64">;
6601
+ data: z.ZodString;
6602
+ }, z.core.$strict>, z.ZodObject<{
6603
+ kind: z.ZodLiteral<"path">;
6604
+ path: z.ZodString;
6605
+ }, z.core.$strict>], "kind">;
6606
+ }, z.core.$strict>, z.ZodObject<{
6607
+ type: z.ZodLiteral<"moviePrompt">;
6608
+ prompt: z.ZodString;
6609
+ imageName: z.ZodOptional<z.ZodString>;
6610
+ }, z.core.$strict>]>>>;
6318
6611
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
6319
6612
  imagePrompt: z.ZodOptional<z.ZodString>;
6320
6613
  moviePrompt: z.ZodOptional<z.ZodString>;
@@ -6429,6 +6722,22 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
6429
6722
  width: z.ZodNumber;
6430
6723
  height: z.ZodNumber;
6431
6724
  }, z.core.$strict>>;
6725
+ }, z.core.$strict>, z.ZodObject<{
6726
+ type: z.ZodLiteral<"movie">;
6727
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
6728
+ kind: z.ZodLiteral<"url">;
6729
+ url: z.ZodURL;
6730
+ }, z.core.$strict>, z.ZodObject<{
6731
+ kind: z.ZodLiteral<"base64">;
6732
+ data: z.ZodString;
6733
+ }, z.core.$strict>, z.ZodObject<{
6734
+ kind: z.ZodLiteral<"path">;
6735
+ path: z.ZodString;
6736
+ }, z.core.$strict>], "kind">;
6737
+ }, z.core.$strict>, z.ZodObject<{
6738
+ type: z.ZodLiteral<"moviePrompt">;
6739
+ prompt: z.ZodString;
6740
+ imageName: z.ZodOptional<z.ZodString>;
6432
6741
  }, z.core.$strict>]>>>;
6433
6742
  backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
6434
6743
  source: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -6679,6 +6988,15 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
6679
6988
  }, z.core.$strip>]>>>;
6680
6989
  vertexai_project: z.ZodOptional<z.ZodString>;
6681
6990
  vertexai_location: z.ZodOptional<z.ZodString>;
6991
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
6992
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
6993
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
6994
+ imageName: z.ZodString;
6995
+ referenceType: z.ZodEnum<{
6996
+ ASSET: "ASSET";
6997
+ STYLE: "STYLE";
6998
+ }>;
6999
+ }, z.core.$strip>>>;
6682
7000
  }, z.core.$strip>>>;
6683
7001
  soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
6684
7002
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
@@ -6889,6 +7207,22 @@ export declare const mulmoScriptSchema: z.ZodObject<{
6889
7207
  width: z.ZodNumber;
6890
7208
  height: z.ZodNumber;
6891
7209
  }, z.core.$strict>>;
7210
+ }, z.core.$strict>, z.ZodObject<{
7211
+ type: z.ZodLiteral<"movie">;
7212
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
7213
+ kind: z.ZodLiteral<"url">;
7214
+ url: z.ZodURL;
7215
+ }, z.core.$strict>, z.ZodObject<{
7216
+ kind: z.ZodLiteral<"base64">;
7217
+ data: z.ZodString;
7218
+ }, z.core.$strict>, z.ZodObject<{
7219
+ kind: z.ZodLiteral<"path">;
7220
+ path: z.ZodString;
7221
+ }, z.core.$strict>], "kind">;
7222
+ }, z.core.$strict>, z.ZodObject<{
7223
+ type: z.ZodLiteral<"moviePrompt">;
7224
+ prompt: z.ZodString;
7225
+ imageName: z.ZodOptional<z.ZodString>;
6892
7226
  }, z.core.$strict>]>>>;
6893
7227
  backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
6894
7228
  source: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -7139,6 +7473,15 @@ export declare const mulmoScriptSchema: z.ZodObject<{
7139
7473
  }, z.core.$strip>]>>>;
7140
7474
  vertexai_project: z.ZodOptional<z.ZodString>;
7141
7475
  vertexai_location: z.ZodOptional<z.ZodString>;
7476
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
7477
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
7478
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
7479
+ imageName: z.ZodString;
7480
+ referenceType: z.ZodEnum<{
7481
+ ASSET: "ASSET";
7482
+ STYLE: "STYLE";
7483
+ }>;
7484
+ }, z.core.$strip>>>;
7142
7485
  }, z.core.$strip>>>;
7143
7486
  soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
7144
7487
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
@@ -7393,6 +7736,26 @@ export declare const mulmoScriptSchema: z.ZodObject<{
7393
7736
  type: z.ZodLiteral<"chart">;
7394
7737
  title: z.ZodString;
7395
7738
  chartData: z.ZodRecord<z.ZodString, z.ZodAny>;
7739
+ style: z.ZodOptional<z.ZodString>;
7740
+ backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
7741
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
7742
+ kind: z.ZodLiteral<"url">;
7743
+ url: z.ZodURL;
7744
+ }, z.core.$strict>, z.ZodObject<{
7745
+ kind: z.ZodLiteral<"base64">;
7746
+ data: z.ZodString;
7747
+ }, z.core.$strict>, z.ZodObject<{
7748
+ kind: z.ZodLiteral<"path">;
7749
+ path: z.ZodString;
7750
+ }, z.core.$strict>], "kind">;
7751
+ size: z.ZodOptional<z.ZodEnum<{
7752
+ auto: "auto";
7753
+ contain: "contain";
7754
+ cover: "cover";
7755
+ fill: "fill";
7756
+ }>>;
7757
+ opacity: z.ZodOptional<z.ZodNumber>;
7758
+ }, z.core.$strip>]>>>;
7396
7759
  }, z.core.$strict>, z.ZodObject<{
7397
7760
  type: z.ZodLiteral<"mermaid">;
7398
7761
  title: z.ZodString;
@@ -9776,6 +10139,59 @@ export declare const mulmoScriptSchema: z.ZodObject<{
9776
10139
  footer: z.ZodOptional<z.ZodString>;
9777
10140
  }, z.core.$strip>>;
9778
10141
  layout: z.ZodLiteral<"funnel">;
10142
+ }, z.core.$strip>, z.ZodObject<{
10143
+ title: z.ZodString;
10144
+ stepLabel: z.ZodOptional<z.ZodString>;
10145
+ subtitle: z.ZodOptional<z.ZodString>;
10146
+ items: z.ZodArray<z.ZodObject<{
10147
+ label: z.ZodString;
10148
+ value: z.ZodNumber;
10149
+ isTotal: z.ZodOptional<z.ZodBoolean>;
10150
+ color: z.ZodOptional<z.ZodEnum<{
10151
+ success: "success";
10152
+ primary: "primary";
10153
+ accent: "accent";
10154
+ warning: "warning";
10155
+ danger: "danger";
10156
+ info: "info";
10157
+ highlight: "highlight";
10158
+ }>>;
10159
+ }, z.core.$strip>>;
10160
+ unit: z.ZodOptional<z.ZodString>;
10161
+ callout: z.ZodOptional<z.ZodObject<{
10162
+ text: z.ZodString;
10163
+ label: z.ZodOptional<z.ZodString>;
10164
+ color: z.ZodOptional<z.ZodEnum<{
10165
+ success: "success";
10166
+ primary: "primary";
10167
+ accent: "accent";
10168
+ warning: "warning";
10169
+ danger: "danger";
10170
+ info: "info";
10171
+ highlight: "highlight";
10172
+ }>>;
10173
+ align: z.ZodOptional<z.ZodEnum<{
10174
+ left: "left";
10175
+ center: "center";
10176
+ }>>;
10177
+ leftBar: z.ZodOptional<z.ZodBoolean>;
10178
+ }, z.core.$strip>>;
10179
+ accentColor: z.ZodOptional<z.ZodEnum<{
10180
+ success: "success";
10181
+ primary: "primary";
10182
+ accent: "accent";
10183
+ warning: "warning";
10184
+ danger: "danger";
10185
+ info: "info";
10186
+ highlight: "highlight";
10187
+ }>>;
10188
+ style: z.ZodOptional<z.ZodObject<{
10189
+ bgColor: z.ZodOptional<z.ZodString>;
10190
+ decorations: z.ZodOptional<z.ZodBoolean>;
10191
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
10192
+ footer: z.ZodOptional<z.ZodString>;
10193
+ }, z.core.$strip>>;
10194
+ layout: z.ZodLiteral<"waterfall">;
9779
10195
  }, z.core.$strip>], "layout">;
9780
10196
  reference: z.ZodOptional<z.ZodString>;
9781
10197
  branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -10083,6 +10499,15 @@ export declare const mulmoScriptSchema: z.ZodObject<{
10083
10499
  }, z.core.$strip>]>>>;
10084
10500
  vertexai_project: z.ZodOptional<z.ZodString>;
10085
10501
  vertexai_location: z.ZodOptional<z.ZodString>;
10502
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
10503
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
10504
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
10505
+ imageName: z.ZodString;
10506
+ referenceType: z.ZodEnum<{
10507
+ ASSET: "ASSET";
10508
+ STYLE: "STYLE";
10509
+ }>;
10510
+ }, z.core.$strip>>>;
10086
10511
  speed: z.ZodOptional<z.ZodNumber>;
10087
10512
  }, z.core.$strip>>;
10088
10513
  soundEffectParams: z.ZodOptional<z.ZodObject<{
@@ -10123,6 +10548,42 @@ export declare const mulmoScriptSchema: z.ZodObject<{
10123
10548
  }, z.core.$strip>], "type">>;
10124
10549
  bottomOffset: z.ZodOptional<z.ZodNumber>;
10125
10550
  }, z.core.$strict>>;
10551
+ images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
10552
+ type: z.ZodLiteral<"image">;
10553
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
10554
+ kind: z.ZodLiteral<"url">;
10555
+ url: z.ZodURL;
10556
+ }, z.core.$strict>, z.ZodObject<{
10557
+ kind: z.ZodLiteral<"base64">;
10558
+ data: z.ZodString;
10559
+ }, z.core.$strict>, z.ZodObject<{
10560
+ kind: z.ZodLiteral<"path">;
10561
+ path: z.ZodString;
10562
+ }, z.core.$strict>], "kind">;
10563
+ }, z.core.$strict>, z.ZodObject<{
10564
+ type: z.ZodLiteral<"imagePrompt">;
10565
+ prompt: z.ZodString;
10566
+ canvasSize: z.ZodOptional<z.ZodObject<{
10567
+ width: z.ZodNumber;
10568
+ height: z.ZodNumber;
10569
+ }, z.core.$strict>>;
10570
+ }, z.core.$strict>, z.ZodObject<{
10571
+ type: z.ZodLiteral<"movie">;
10572
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
10573
+ kind: z.ZodLiteral<"url">;
10574
+ url: z.ZodURL;
10575
+ }, z.core.$strict>, z.ZodObject<{
10576
+ kind: z.ZodLiteral<"base64">;
10577
+ data: z.ZodString;
10578
+ }, z.core.$strict>, z.ZodObject<{
10579
+ kind: z.ZodLiteral<"path">;
10580
+ path: z.ZodString;
10581
+ }, z.core.$strict>], "kind">;
10582
+ }, z.core.$strict>, z.ZodObject<{
10583
+ type: z.ZodLiteral<"moviePrompt">;
10584
+ prompt: z.ZodString;
10585
+ imageName: z.ZodOptional<z.ZodString>;
10586
+ }, z.core.$strict>]>>>;
10126
10587
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
10127
10588
  imagePrompt: z.ZodOptional<z.ZodString>;
10128
10589
  moviePrompt: z.ZodOptional<z.ZodString>;
@@ -10312,6 +10773,22 @@ export declare const mulmoStudioSchema: z.ZodObject<{
10312
10773
  width: z.ZodNumber;
10313
10774
  height: z.ZodNumber;
10314
10775
  }, z.core.$strict>>;
10776
+ }, z.core.$strict>, z.ZodObject<{
10777
+ type: z.ZodLiteral<"movie">;
10778
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
10779
+ kind: z.ZodLiteral<"url">;
10780
+ url: z.ZodURL;
10781
+ }, z.core.$strict>, z.ZodObject<{
10782
+ kind: z.ZodLiteral<"base64">;
10783
+ data: z.ZodString;
10784
+ }, z.core.$strict>, z.ZodObject<{
10785
+ kind: z.ZodLiteral<"path">;
10786
+ path: z.ZodString;
10787
+ }, z.core.$strict>], "kind">;
10788
+ }, z.core.$strict>, z.ZodObject<{
10789
+ type: z.ZodLiteral<"moviePrompt">;
10790
+ prompt: z.ZodString;
10791
+ imageName: z.ZodOptional<z.ZodString>;
10315
10792
  }, z.core.$strict>]>>>;
10316
10793
  backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
10317
10794
  source: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -10562,6 +11039,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
10562
11039
  }, z.core.$strip>]>>>;
10563
11040
  vertexai_project: z.ZodOptional<z.ZodString>;
10564
11041
  vertexai_location: z.ZodOptional<z.ZodString>;
11042
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
11043
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
11044
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
11045
+ imageName: z.ZodString;
11046
+ referenceType: z.ZodEnum<{
11047
+ ASSET: "ASSET";
11048
+ STYLE: "STYLE";
11049
+ }>;
11050
+ }, z.core.$strip>>>;
10565
11051
  }, z.core.$strip>>>;
10566
11052
  soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
10567
11053
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
@@ -10816,6 +11302,26 @@ export declare const mulmoStudioSchema: z.ZodObject<{
10816
11302
  type: z.ZodLiteral<"chart">;
10817
11303
  title: z.ZodString;
10818
11304
  chartData: z.ZodRecord<z.ZodString, z.ZodAny>;
11305
+ style: z.ZodOptional<z.ZodString>;
11306
+ backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
11307
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
11308
+ kind: z.ZodLiteral<"url">;
11309
+ url: z.ZodURL;
11310
+ }, z.core.$strict>, z.ZodObject<{
11311
+ kind: z.ZodLiteral<"base64">;
11312
+ data: z.ZodString;
11313
+ }, z.core.$strict>, z.ZodObject<{
11314
+ kind: z.ZodLiteral<"path">;
11315
+ path: z.ZodString;
11316
+ }, z.core.$strict>], "kind">;
11317
+ size: z.ZodOptional<z.ZodEnum<{
11318
+ auto: "auto";
11319
+ contain: "contain";
11320
+ cover: "cover";
11321
+ fill: "fill";
11322
+ }>>;
11323
+ opacity: z.ZodOptional<z.ZodNumber>;
11324
+ }, z.core.$strip>]>>>;
10819
11325
  }, z.core.$strict>, z.ZodObject<{
10820
11326
  type: z.ZodLiteral<"mermaid">;
10821
11327
  title: z.ZodString;
@@ -13199,6 +13705,59 @@ export declare const mulmoStudioSchema: z.ZodObject<{
13199
13705
  footer: z.ZodOptional<z.ZodString>;
13200
13706
  }, z.core.$strip>>;
13201
13707
  layout: z.ZodLiteral<"funnel">;
13708
+ }, z.core.$strip>, z.ZodObject<{
13709
+ title: z.ZodString;
13710
+ stepLabel: z.ZodOptional<z.ZodString>;
13711
+ subtitle: z.ZodOptional<z.ZodString>;
13712
+ items: z.ZodArray<z.ZodObject<{
13713
+ label: z.ZodString;
13714
+ value: z.ZodNumber;
13715
+ isTotal: z.ZodOptional<z.ZodBoolean>;
13716
+ color: z.ZodOptional<z.ZodEnum<{
13717
+ success: "success";
13718
+ primary: "primary";
13719
+ accent: "accent";
13720
+ warning: "warning";
13721
+ danger: "danger";
13722
+ info: "info";
13723
+ highlight: "highlight";
13724
+ }>>;
13725
+ }, z.core.$strip>>;
13726
+ unit: z.ZodOptional<z.ZodString>;
13727
+ callout: z.ZodOptional<z.ZodObject<{
13728
+ text: z.ZodString;
13729
+ label: z.ZodOptional<z.ZodString>;
13730
+ color: z.ZodOptional<z.ZodEnum<{
13731
+ success: "success";
13732
+ primary: "primary";
13733
+ accent: "accent";
13734
+ warning: "warning";
13735
+ danger: "danger";
13736
+ info: "info";
13737
+ highlight: "highlight";
13738
+ }>>;
13739
+ align: z.ZodOptional<z.ZodEnum<{
13740
+ left: "left";
13741
+ center: "center";
13742
+ }>>;
13743
+ leftBar: z.ZodOptional<z.ZodBoolean>;
13744
+ }, z.core.$strip>>;
13745
+ accentColor: z.ZodOptional<z.ZodEnum<{
13746
+ success: "success";
13747
+ primary: "primary";
13748
+ accent: "accent";
13749
+ warning: "warning";
13750
+ danger: "danger";
13751
+ info: "info";
13752
+ highlight: "highlight";
13753
+ }>>;
13754
+ style: z.ZodOptional<z.ZodObject<{
13755
+ bgColor: z.ZodOptional<z.ZodString>;
13756
+ decorations: z.ZodOptional<z.ZodBoolean>;
13757
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
13758
+ footer: z.ZodOptional<z.ZodString>;
13759
+ }, z.core.$strip>>;
13760
+ layout: z.ZodLiteral<"waterfall">;
13202
13761
  }, z.core.$strip>], "layout">;
13203
13762
  reference: z.ZodOptional<z.ZodString>;
13204
13763
  branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -13506,6 +14065,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
13506
14065
  }, z.core.$strip>]>>>;
13507
14066
  vertexai_project: z.ZodOptional<z.ZodString>;
13508
14067
  vertexai_location: z.ZodOptional<z.ZodString>;
14068
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
14069
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
14070
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
14071
+ imageName: z.ZodString;
14072
+ referenceType: z.ZodEnum<{
14073
+ ASSET: "ASSET";
14074
+ STYLE: "STYLE";
14075
+ }>;
14076
+ }, z.core.$strip>>>;
13509
14077
  speed: z.ZodOptional<z.ZodNumber>;
13510
14078
  }, z.core.$strip>>;
13511
14079
  soundEffectParams: z.ZodOptional<z.ZodObject<{
@@ -13546,6 +14114,42 @@ export declare const mulmoStudioSchema: z.ZodObject<{
13546
14114
  }, z.core.$strip>], "type">>;
13547
14115
  bottomOffset: z.ZodOptional<z.ZodNumber>;
13548
14116
  }, z.core.$strict>>;
14117
+ images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
14118
+ type: z.ZodLiteral<"image">;
14119
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
14120
+ kind: z.ZodLiteral<"url">;
14121
+ url: z.ZodURL;
14122
+ }, z.core.$strict>, z.ZodObject<{
14123
+ kind: z.ZodLiteral<"base64">;
14124
+ data: z.ZodString;
14125
+ }, z.core.$strict>, z.ZodObject<{
14126
+ kind: z.ZodLiteral<"path">;
14127
+ path: z.ZodString;
14128
+ }, z.core.$strict>], "kind">;
14129
+ }, z.core.$strict>, z.ZodObject<{
14130
+ type: z.ZodLiteral<"imagePrompt">;
14131
+ prompt: z.ZodString;
14132
+ canvasSize: z.ZodOptional<z.ZodObject<{
14133
+ width: z.ZodNumber;
14134
+ height: z.ZodNumber;
14135
+ }, z.core.$strict>>;
14136
+ }, z.core.$strict>, z.ZodObject<{
14137
+ type: z.ZodLiteral<"movie">;
14138
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
14139
+ kind: z.ZodLiteral<"url">;
14140
+ url: z.ZodURL;
14141
+ }, z.core.$strict>, z.ZodObject<{
14142
+ kind: z.ZodLiteral<"base64">;
14143
+ data: z.ZodString;
14144
+ }, z.core.$strict>, z.ZodObject<{
14145
+ kind: z.ZodLiteral<"path">;
14146
+ path: z.ZodString;
14147
+ }, z.core.$strict>], "kind">;
14148
+ }, z.core.$strict>, z.ZodObject<{
14149
+ type: z.ZodLiteral<"moviePrompt">;
14150
+ prompt: z.ZodString;
14151
+ imageName: z.ZodOptional<z.ZodString>;
14152
+ }, z.core.$strict>]>>>;
13549
14153
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
13550
14154
  imagePrompt: z.ZodOptional<z.ZodString>;
13551
14155
  moviePrompt: z.ZodOptional<z.ZodString>;
@@ -13671,6 +14275,22 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
13671
14275
  width: z.ZodNumber;
13672
14276
  height: z.ZodNumber;
13673
14277
  }, z.core.$strict>>;
14278
+ }, z.core.$strict>, z.ZodObject<{
14279
+ type: z.ZodLiteral<"movie">;
14280
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
14281
+ kind: z.ZodLiteral<"url">;
14282
+ url: z.ZodURL;
14283
+ }, z.core.$strict>, z.ZodObject<{
14284
+ kind: z.ZodLiteral<"base64">;
14285
+ data: z.ZodString;
14286
+ }, z.core.$strict>, z.ZodObject<{
14287
+ kind: z.ZodLiteral<"path">;
14288
+ path: z.ZodString;
14289
+ }, z.core.$strict>], "kind">;
14290
+ }, z.core.$strict>, z.ZodObject<{
14291
+ type: z.ZodLiteral<"moviePrompt">;
14292
+ prompt: z.ZodString;
14293
+ imageName: z.ZodOptional<z.ZodString>;
13674
14294
  }, z.core.$strict>]>>>;
13675
14295
  backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
13676
14296
  source: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -13921,6 +14541,15 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
13921
14541
  }, z.core.$strip>]>>>;
13922
14542
  vertexai_project: z.ZodOptional<z.ZodString>;
13923
14543
  vertexai_location: z.ZodOptional<z.ZodString>;
14544
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
14545
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
14546
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
14547
+ imageName: z.ZodString;
14548
+ referenceType: z.ZodEnum<{
14549
+ ASSET: "ASSET";
14550
+ STYLE: "STYLE";
14551
+ }>;
14552
+ }, z.core.$strip>>>;
13924
14553
  }, z.core.$strip>>>;
13925
14554
  soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
13926
14555
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
@@ -14125,6 +14754,22 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
14125
14754
  width: z.ZodNumber;
14126
14755
  height: z.ZodNumber;
14127
14756
  }, z.core.$strict>>;
14757
+ }, z.core.$strict>, z.ZodObject<{
14758
+ type: z.ZodLiteral<"movie">;
14759
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
14760
+ kind: z.ZodLiteral<"url">;
14761
+ url: z.ZodURL;
14762
+ }, z.core.$strict>, z.ZodObject<{
14763
+ kind: z.ZodLiteral<"base64">;
14764
+ data: z.ZodString;
14765
+ }, z.core.$strict>, z.ZodObject<{
14766
+ kind: z.ZodLiteral<"path">;
14767
+ path: z.ZodString;
14768
+ }, z.core.$strict>], "kind">;
14769
+ }, z.core.$strict>, z.ZodObject<{
14770
+ type: z.ZodLiteral<"moviePrompt">;
14771
+ prompt: z.ZodString;
14772
+ imageName: z.ZodOptional<z.ZodString>;
14128
14773
  }, z.core.$strict>]>>>;
14129
14774
  backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
14130
14775
  source: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -14375,6 +15020,15 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
14375
15020
  }, z.core.$strip>]>>>;
14376
15021
  vertexai_project: z.ZodOptional<z.ZodString>;
14377
15022
  vertexai_location: z.ZodOptional<z.ZodString>;
15023
+ firstFrameImageName: z.ZodOptional<z.ZodString>;
15024
+ lastFrameImageName: z.ZodOptional<z.ZodString>;
15025
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
15026
+ imageName: z.ZodString;
15027
+ referenceType: z.ZodEnum<{
15028
+ ASSET: "ASSET";
15029
+ STYLE: "STYLE";
15030
+ }>;
15031
+ }, z.core.$strip>>>;
14378
15032
  }, z.core.$strip>>>;
14379
15033
  soundEffectParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
14380
15034
  provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<{