@shotstack/shotstack-studio 1.2.0 → 1.2.2
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/dist/core/loaders/asset-loader.d.ts +10 -2
- package/dist/core/schemas/asset.d.ts +14 -10
- package/dist/core/schemas/audio-asset.d.ts +10 -6
- package/dist/core/schemas/clip.d.ts +43 -29
- package/dist/core/schemas/edit.d.ts +115 -87
- package/dist/core/schemas/html-asset.d.ts +2 -2
- package/dist/core/schemas/track.d.ts +47 -33
- package/dist/core/schemas/video-asset.d.ts +10 -6
- package/dist/shotstack-studio.es.js +612 -558
- package/dist/shotstack-studio.umd.js +3 -3
- package/package.json +1 -1
|
@@ -8,15 +8,15 @@ export declare const HtmlAssetSchema: zod.ZodObject<{
|
|
|
8
8
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
9
9
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
10
10
|
}, "strip", zod.ZodTypeAny, {
|
|
11
|
-
type: "html";
|
|
12
11
|
html: string;
|
|
12
|
+
type: "html";
|
|
13
13
|
css: string;
|
|
14
14
|
width?: number | undefined;
|
|
15
15
|
height?: number | undefined;
|
|
16
16
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
17
17
|
}, {
|
|
18
|
-
type: "html";
|
|
19
18
|
html: string;
|
|
19
|
+
type: "html";
|
|
20
20
|
css: string;
|
|
21
21
|
width?: number | undefined;
|
|
22
22
|
height?: number | undefined;
|
|
@@ -259,15 +259,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
259
259
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
260
260
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
261
261
|
}, "strip", zod.ZodTypeAny, {
|
|
262
|
-
type: "html";
|
|
263
262
|
html: string;
|
|
263
|
+
type: "html";
|
|
264
264
|
css: string;
|
|
265
265
|
width?: number | undefined;
|
|
266
266
|
height?: number | undefined;
|
|
267
267
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
268
268
|
}, {
|
|
269
|
-
type: "html";
|
|
270
269
|
html: string;
|
|
270
|
+
type: "html";
|
|
271
271
|
css: string;
|
|
272
272
|
width?: number | undefined;
|
|
273
273
|
height?: number | undefined;
|
|
@@ -329,15 +329,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
329
329
|
bottom?: number | undefined;
|
|
330
330
|
left?: number | undefined;
|
|
331
331
|
}>>;
|
|
332
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
332
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
333
|
+
from: zod.ZodNumber;
|
|
334
|
+
to: zod.ZodNumber;
|
|
333
335
|
start: zod.ZodNumber;
|
|
334
336
|
length: zod.ZodNumber;
|
|
335
337
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
336
338
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
337
|
-
}
|
|
339
|
+
}, {
|
|
338
340
|
from: zod.ZodNumber;
|
|
339
341
|
to: zod.ZodNumber;
|
|
340
|
-
}
|
|
342
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
341
343
|
length: number;
|
|
342
344
|
from: number;
|
|
343
345
|
to: number;
|
|
@@ -401,15 +403,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
401
403
|
type: zod.ZodLiteral<"audio">;
|
|
402
404
|
src: zod.ZodString;
|
|
403
405
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
404
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
406
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
407
|
+
from: zod.ZodNumber;
|
|
408
|
+
to: zod.ZodNumber;
|
|
405
409
|
start: zod.ZodNumber;
|
|
406
410
|
length: zod.ZodNumber;
|
|
407
411
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
408
412
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
409
|
-
}
|
|
413
|
+
}, {
|
|
410
414
|
from: zod.ZodNumber;
|
|
411
415
|
to: zod.ZodNumber;
|
|
412
|
-
}
|
|
416
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
413
417
|
length: number;
|
|
414
418
|
from: number;
|
|
415
419
|
to: number;
|
|
@@ -461,8 +465,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
461
465
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
462
466
|
}[] | undefined;
|
|
463
467
|
} | {
|
|
464
|
-
type: "html";
|
|
465
468
|
html: string;
|
|
469
|
+
type: "html";
|
|
466
470
|
css: string;
|
|
467
471
|
width?: number | undefined;
|
|
468
472
|
height?: number | undefined;
|
|
@@ -558,8 +562,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
558
562
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
559
563
|
}[] | undefined;
|
|
560
564
|
} | {
|
|
561
|
-
type: "html";
|
|
562
565
|
html: string;
|
|
566
|
+
type: "html";
|
|
563
567
|
css: string;
|
|
564
568
|
width?: number | undefined;
|
|
565
569
|
height?: number | undefined;
|
|
@@ -648,15 +652,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
648
652
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
649
653
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
650
654
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
651
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
655
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
656
|
+
from: zod.ZodNumber;
|
|
657
|
+
to: zod.ZodNumber;
|
|
652
658
|
start: zod.ZodNumber;
|
|
653
659
|
length: zod.ZodNumber;
|
|
654
660
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
655
661
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
656
|
-
}
|
|
662
|
+
}, {
|
|
657
663
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
658
664
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
659
|
-
}
|
|
665
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
660
666
|
length: number;
|
|
661
667
|
from: number;
|
|
662
668
|
to: number;
|
|
@@ -671,15 +677,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
671
677
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
672
678
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
673
679
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
674
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
680
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
681
|
+
from: zod.ZodNumber;
|
|
682
|
+
to: zod.ZodNumber;
|
|
675
683
|
start: zod.ZodNumber;
|
|
676
684
|
length: zod.ZodNumber;
|
|
677
685
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
678
686
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
679
|
-
}
|
|
687
|
+
}, {
|
|
680
688
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
681
689
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
682
|
-
}
|
|
690
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
683
691
|
length: number;
|
|
684
692
|
from: number;
|
|
685
693
|
to: number;
|
|
@@ -729,15 +737,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
729
737
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
730
738
|
}[] | undefined;
|
|
731
739
|
}>>>;
|
|
732
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
740
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
741
|
+
from: zod.ZodNumber;
|
|
742
|
+
to: zod.ZodNumber;
|
|
733
743
|
start: zod.ZodNumber;
|
|
734
744
|
length: zod.ZodNumber;
|
|
735
745
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
736
746
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
737
|
-
}
|
|
747
|
+
}, {
|
|
738
748
|
from: zod.ZodNumber;
|
|
739
749
|
to: zod.ZodNumber;
|
|
740
|
-
}
|
|
750
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
741
751
|
length: number;
|
|
742
752
|
from: number;
|
|
743
753
|
to: number;
|
|
@@ -752,15 +762,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
752
762
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
753
763
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
754
764
|
}>, "many">, zod.ZodNumber]>>>;
|
|
755
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
765
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
766
|
+
from: zod.ZodNumber;
|
|
767
|
+
to: zod.ZodNumber;
|
|
756
768
|
start: zod.ZodNumber;
|
|
757
769
|
length: zod.ZodNumber;
|
|
758
770
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
759
771
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
760
|
-
}
|
|
772
|
+
}, {
|
|
761
773
|
from: zod.ZodNumber;
|
|
762
774
|
to: zod.ZodNumber;
|
|
763
|
-
}
|
|
775
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
764
776
|
length: number;
|
|
765
777
|
from: number;
|
|
766
778
|
to: number;
|
|
@@ -777,15 +789,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
777
789
|
}>, "many">, zod.ZodNumber]>>>;
|
|
778
790
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
779
791
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
780
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
792
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
793
|
+
from: zod.ZodNumber;
|
|
794
|
+
to: zod.ZodNumber;
|
|
781
795
|
start: zod.ZodNumber;
|
|
782
796
|
length: zod.ZodNumber;
|
|
783
797
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
784
798
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
785
|
-
}
|
|
799
|
+
}, {
|
|
786
800
|
from: zod.ZodNumber;
|
|
787
801
|
to: zod.ZodNumber;
|
|
788
|
-
}
|
|
802
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
789
803
|
length: number;
|
|
790
804
|
from: number;
|
|
791
805
|
to: number;
|
|
@@ -869,8 +883,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
869
883
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
870
884
|
}[] | undefined;
|
|
871
885
|
} | {
|
|
872
|
-
type: "html";
|
|
873
886
|
html: string;
|
|
887
|
+
type: "html";
|
|
874
888
|
css: string;
|
|
875
889
|
width?: number | undefined;
|
|
876
890
|
height?: number | undefined;
|
|
@@ -963,7 +977,7 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
963
977
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
964
978
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
965
979
|
}[] | undefined;
|
|
966
|
-
fit?: "
|
|
980
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
967
981
|
offset?: {
|
|
968
982
|
x: number | {
|
|
969
983
|
length: number;
|
|
@@ -1023,8 +1037,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1023
1037
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1024
1038
|
}[] | undefined;
|
|
1025
1039
|
} | {
|
|
1026
|
-
type: "html";
|
|
1027
1040
|
html: string;
|
|
1041
|
+
type: "html";
|
|
1028
1042
|
css: string;
|
|
1029
1043
|
width?: number | undefined;
|
|
1030
1044
|
height?: number | undefined;
|
|
@@ -1117,7 +1131,7 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1117
1131
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1118
1132
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1119
1133
|
}[] | undefined;
|
|
1120
|
-
fit?: "
|
|
1134
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1121
1135
|
offset?: {
|
|
1122
1136
|
x?: number | {
|
|
1123
1137
|
length: number;
|
|
@@ -1179,8 +1193,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1179
1193
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1180
1194
|
}[] | undefined;
|
|
1181
1195
|
} | {
|
|
1182
|
-
type: "html";
|
|
1183
1196
|
html: string;
|
|
1197
|
+
type: "html";
|
|
1184
1198
|
css: string;
|
|
1185
1199
|
width?: number | undefined;
|
|
1186
1200
|
height?: number | undefined;
|
|
@@ -1273,7 +1287,7 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1273
1287
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1274
1288
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1275
1289
|
}[] | undefined;
|
|
1276
|
-
fit?: "
|
|
1290
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1277
1291
|
offset?: {
|
|
1278
1292
|
x: number | {
|
|
1279
1293
|
length: number;
|
|
@@ -1335,8 +1349,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1335
1349
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1336
1350
|
}[] | undefined;
|
|
1337
1351
|
} | {
|
|
1338
|
-
type: "html";
|
|
1339
1352
|
html: string;
|
|
1353
|
+
type: "html";
|
|
1340
1354
|
css: string;
|
|
1341
1355
|
width?: number | undefined;
|
|
1342
1356
|
height?: number | undefined;
|
|
@@ -1429,7 +1443,7 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1429
1443
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1430
1444
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1431
1445
|
}[] | undefined;
|
|
1432
|
-
fit?: "
|
|
1446
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1433
1447
|
offset?: {
|
|
1434
1448
|
x?: number | {
|
|
1435
1449
|
length: number;
|
|
@@ -16,15 +16,17 @@ export declare const VideoAssetCropSchema: zod.ZodObject<{
|
|
|
16
16
|
bottom?: number | undefined;
|
|
17
17
|
left?: number | undefined;
|
|
18
18
|
}>;
|
|
19
|
-
export declare const VideoAssetVolumeSchema: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
19
|
+
export declare const VideoAssetVolumeSchema: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
20
|
+
from: zod.ZodNumber;
|
|
21
|
+
to: zod.ZodNumber;
|
|
20
22
|
start: zod.ZodNumber;
|
|
21
23
|
length: zod.ZodNumber;
|
|
22
24
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
23
25
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
24
|
-
}
|
|
26
|
+
}, {
|
|
25
27
|
from: zod.ZodNumber;
|
|
26
28
|
to: zod.ZodNumber;
|
|
27
|
-
}
|
|
29
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
28
30
|
length: number;
|
|
29
31
|
from: number;
|
|
30
32
|
to: number;
|
|
@@ -59,15 +61,17 @@ export declare const VideoAssetSchema: zod.ZodObject<{
|
|
|
59
61
|
bottom?: number | undefined;
|
|
60
62
|
left?: number | undefined;
|
|
61
63
|
}>>;
|
|
62
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
64
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
65
|
+
from: zod.ZodNumber;
|
|
66
|
+
to: zod.ZodNumber;
|
|
63
67
|
start: zod.ZodNumber;
|
|
64
68
|
length: zod.ZodNumber;
|
|
65
69
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
66
70
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
67
|
-
}
|
|
71
|
+
}, {
|
|
68
72
|
from: zod.ZodNumber;
|
|
69
73
|
to: zod.ZodNumber;
|
|
70
|
-
}
|
|
74
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
71
75
|
length: number;
|
|
72
76
|
from: number;
|
|
73
77
|
to: number;
|