@shotstack/shotstack-studio 1.2.2 → 1.3.0
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/entities/{player.d.ts → base/player.d.ts} +3 -3
- package/dist/core/entities/index.d.ts +14 -0
- package/dist/core/entities/{audio-player.d.ts → players/audio-player.d.ts} +4 -4
- package/dist/core/entities/{html-player.d.ts → players/html-player.d.ts} +4 -4
- package/dist/core/entities/{image-player.d.ts → players/image-player.d.ts} +4 -4
- package/dist/core/entities/{luma-player.d.ts → players/luma-player.d.ts} +4 -4
- package/dist/core/entities/{shape-player.d.ts → players/shape-player.d.ts} +4 -4
- package/dist/core/entities/players/text-player.d.ts +19 -0
- package/dist/core/entities/{video-player.d.ts → players/video-player.d.ts} +4 -4
- package/dist/core/entities/{edit.d.ts → system/edit.d.ts} +7 -7
- package/dist/core/entities/{inspector.d.ts → system/inspector.d.ts} +1 -1
- package/dist/core/entities/text/text-cursor.d.ts +47 -0
- package/dist/core/entities/text/text-editor.d.ts +43 -0
- package/dist/core/entities/text/text-input-handler.d.ts +54 -0
- package/dist/core/export/video-exporter.d.ts +1 -1
- package/dist/core/inputs/controls.d.ts +1 -1
- package/dist/core/schemas/asset.d.ts +6 -10
- package/dist/core/schemas/audio-asset.d.ts +6 -10
- package/dist/core/schemas/clip.d.ts +21 -35
- package/dist/core/schemas/edit.d.ts +42 -70
- package/dist/core/schemas/track.d.ts +21 -35
- package/dist/core/schemas/video-asset.d.ts +6 -10
- package/dist/core/shotstack-canvas.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/shotstack-studio.es.js +2451 -2032
- package/dist/shotstack-studio.umd.js +8 -6
- package/package.json +1 -1
- package/readme.md +7 -6
- package/dist/core/entities/text-player.d.ts +0 -18
- /package/dist/core/entities/{entity.d.ts → base/entity.d.ts} +0 -0
|
@@ -347,17 +347,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
347
347
|
bottom?: number | undefined;
|
|
348
348
|
left?: number | undefined;
|
|
349
349
|
}>>;
|
|
350
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
351
|
-
from: zod.ZodNumber;
|
|
352
|
-
to: zod.ZodNumber;
|
|
350
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
353
351
|
start: zod.ZodNumber;
|
|
354
352
|
length: zod.ZodNumber;
|
|
355
353
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
356
354
|
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"]>>;
|
|
357
|
-
}
|
|
355
|
+
} & {
|
|
358
356
|
from: zod.ZodNumber;
|
|
359
357
|
to: zod.ZodNumber;
|
|
360
|
-
}
|
|
358
|
+
}, "strip", zod.ZodTypeAny, {
|
|
361
359
|
length: number;
|
|
362
360
|
from: number;
|
|
363
361
|
to: number;
|
|
@@ -421,17 +419,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
421
419
|
type: zod.ZodLiteral<"audio">;
|
|
422
420
|
src: zod.ZodString;
|
|
423
421
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
424
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
425
|
-
from: zod.ZodNumber;
|
|
426
|
-
to: zod.ZodNumber;
|
|
422
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
427
423
|
start: zod.ZodNumber;
|
|
428
424
|
length: zod.ZodNumber;
|
|
429
425
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
430
426
|
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"]>>;
|
|
431
|
-
}
|
|
427
|
+
} & {
|
|
432
428
|
from: zod.ZodNumber;
|
|
433
429
|
to: zod.ZodNumber;
|
|
434
|
-
}
|
|
430
|
+
}, "strip", zod.ZodTypeAny, {
|
|
435
431
|
length: number;
|
|
436
432
|
from: number;
|
|
437
433
|
to: number;
|
|
@@ -670,17 +666,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
670
666
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
671
667
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
672
668
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
673
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
674
|
-
from: zod.ZodNumber;
|
|
675
|
-
to: zod.ZodNumber;
|
|
669
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
676
670
|
start: zod.ZodNumber;
|
|
677
671
|
length: zod.ZodNumber;
|
|
678
672
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
679
673
|
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"]>>;
|
|
680
|
-
}
|
|
674
|
+
} & {
|
|
681
675
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
682
676
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
683
|
-
}
|
|
677
|
+
}, "strip", zod.ZodTypeAny, {
|
|
684
678
|
length: number;
|
|
685
679
|
from: number;
|
|
686
680
|
to: number;
|
|
@@ -695,17 +689,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
695
689
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
696
690
|
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;
|
|
697
691
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
698
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
699
|
-
from: zod.ZodNumber;
|
|
700
|
-
to: zod.ZodNumber;
|
|
692
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
701
693
|
start: zod.ZodNumber;
|
|
702
694
|
length: zod.ZodNumber;
|
|
703
695
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
704
696
|
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"]>>;
|
|
705
|
-
}
|
|
697
|
+
} & {
|
|
706
698
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
707
699
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
708
|
-
}
|
|
700
|
+
}, "strip", zod.ZodTypeAny, {
|
|
709
701
|
length: number;
|
|
710
702
|
from: number;
|
|
711
703
|
to: number;
|
|
@@ -755,17 +747,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
755
747
|
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;
|
|
756
748
|
}[] | undefined;
|
|
757
749
|
}>>>;
|
|
758
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
759
|
-
from: zod.ZodNumber;
|
|
760
|
-
to: zod.ZodNumber;
|
|
750
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
761
751
|
start: zod.ZodNumber;
|
|
762
752
|
length: zod.ZodNumber;
|
|
763
753
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
764
754
|
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"]>>;
|
|
765
|
-
}
|
|
755
|
+
} & {
|
|
766
756
|
from: zod.ZodNumber;
|
|
767
757
|
to: zod.ZodNumber;
|
|
768
|
-
}
|
|
758
|
+
}, "strip", zod.ZodTypeAny, {
|
|
769
759
|
length: number;
|
|
770
760
|
from: number;
|
|
771
761
|
to: number;
|
|
@@ -780,17 +770,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
780
770
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
781
771
|
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;
|
|
782
772
|
}>, "many">, zod.ZodNumber]>>>;
|
|
783
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
784
|
-
from: zod.ZodNumber;
|
|
785
|
-
to: zod.ZodNumber;
|
|
773
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
786
774
|
start: zod.ZodNumber;
|
|
787
775
|
length: zod.ZodNumber;
|
|
788
776
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
789
777
|
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"]>>;
|
|
790
|
-
}
|
|
778
|
+
} & {
|
|
791
779
|
from: zod.ZodNumber;
|
|
792
780
|
to: zod.ZodNumber;
|
|
793
|
-
}
|
|
781
|
+
}, "strip", zod.ZodTypeAny, {
|
|
794
782
|
length: number;
|
|
795
783
|
from: number;
|
|
796
784
|
to: number;
|
|
@@ -807,17 +795,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
807
795
|
}>, "many">, zod.ZodNumber]>>>;
|
|
808
796
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
809
797
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
810
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
811
|
-
from: zod.ZodNumber;
|
|
812
|
-
to: zod.ZodNumber;
|
|
798
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
813
799
|
start: zod.ZodNumber;
|
|
814
800
|
length: zod.ZodNumber;
|
|
815
801
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
816
802
|
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"]>>;
|
|
817
|
-
}
|
|
803
|
+
} & {
|
|
818
804
|
from: zod.ZodNumber;
|
|
819
805
|
to: zod.ZodNumber;
|
|
820
|
-
}
|
|
806
|
+
}, "strip", zod.ZodTypeAny, {
|
|
821
807
|
length: number;
|
|
822
808
|
from: number;
|
|
823
809
|
to: number;
|
|
@@ -2200,17 +2186,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2200
2186
|
bottom?: number | undefined;
|
|
2201
2187
|
left?: number | undefined;
|
|
2202
2188
|
}>>;
|
|
2203
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2204
|
-
from: zod.ZodNumber;
|
|
2205
|
-
to: zod.ZodNumber;
|
|
2189
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2206
2190
|
start: zod.ZodNumber;
|
|
2207
2191
|
length: zod.ZodNumber;
|
|
2208
2192
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2209
2193
|
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"]>>;
|
|
2210
|
-
}
|
|
2194
|
+
} & {
|
|
2211
2195
|
from: zod.ZodNumber;
|
|
2212
2196
|
to: zod.ZodNumber;
|
|
2213
|
-
}
|
|
2197
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2214
2198
|
length: number;
|
|
2215
2199
|
from: number;
|
|
2216
2200
|
to: number;
|
|
@@ -2274,17 +2258,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2274
2258
|
type: zod.ZodLiteral<"audio">;
|
|
2275
2259
|
src: zod.ZodString;
|
|
2276
2260
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
2277
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2278
|
-
from: zod.ZodNumber;
|
|
2279
|
-
to: zod.ZodNumber;
|
|
2261
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2280
2262
|
start: zod.ZodNumber;
|
|
2281
2263
|
length: zod.ZodNumber;
|
|
2282
2264
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2283
2265
|
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"]>>;
|
|
2284
|
-
}
|
|
2266
|
+
} & {
|
|
2285
2267
|
from: zod.ZodNumber;
|
|
2286
2268
|
to: zod.ZodNumber;
|
|
2287
|
-
}
|
|
2269
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2288
2270
|
length: number;
|
|
2289
2271
|
from: number;
|
|
2290
2272
|
to: number;
|
|
@@ -2523,17 +2505,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2523
2505
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
2524
2506
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
2525
2507
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
2526
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2527
|
-
from: zod.ZodNumber;
|
|
2528
|
-
to: zod.ZodNumber;
|
|
2508
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2529
2509
|
start: zod.ZodNumber;
|
|
2530
2510
|
length: zod.ZodNumber;
|
|
2531
2511
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2532
2512
|
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"]>>;
|
|
2533
|
-
}
|
|
2513
|
+
} & {
|
|
2534
2514
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
2535
2515
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
2536
|
-
}
|
|
2516
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2537
2517
|
length: number;
|
|
2538
2518
|
from: number;
|
|
2539
2519
|
to: number;
|
|
@@ -2548,17 +2528,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2548
2528
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2549
2529
|
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;
|
|
2550
2530
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
2551
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2552
|
-
from: zod.ZodNumber;
|
|
2553
|
-
to: zod.ZodNumber;
|
|
2531
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2554
2532
|
start: zod.ZodNumber;
|
|
2555
2533
|
length: zod.ZodNumber;
|
|
2556
2534
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2557
2535
|
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"]>>;
|
|
2558
|
-
}
|
|
2536
|
+
} & {
|
|
2559
2537
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
2560
2538
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
2561
|
-
}
|
|
2539
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2562
2540
|
length: number;
|
|
2563
2541
|
from: number;
|
|
2564
2542
|
to: number;
|
|
@@ -2608,17 +2586,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2608
2586
|
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;
|
|
2609
2587
|
}[] | undefined;
|
|
2610
2588
|
}>>>;
|
|
2611
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2612
|
-
from: zod.ZodNumber;
|
|
2613
|
-
to: zod.ZodNumber;
|
|
2589
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2614
2590
|
start: zod.ZodNumber;
|
|
2615
2591
|
length: zod.ZodNumber;
|
|
2616
2592
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2617
2593
|
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"]>>;
|
|
2618
|
-
}
|
|
2594
|
+
} & {
|
|
2619
2595
|
from: zod.ZodNumber;
|
|
2620
2596
|
to: zod.ZodNumber;
|
|
2621
|
-
}
|
|
2597
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2622
2598
|
length: number;
|
|
2623
2599
|
from: number;
|
|
2624
2600
|
to: number;
|
|
@@ -2633,17 +2609,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2633
2609
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2634
2610
|
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;
|
|
2635
2611
|
}>, "many">, zod.ZodNumber]>>>;
|
|
2636
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2637
|
-
from: zod.ZodNumber;
|
|
2638
|
-
to: zod.ZodNumber;
|
|
2612
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2639
2613
|
start: zod.ZodNumber;
|
|
2640
2614
|
length: zod.ZodNumber;
|
|
2641
2615
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2642
2616
|
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"]>>;
|
|
2643
|
-
}
|
|
2617
|
+
} & {
|
|
2644
2618
|
from: zod.ZodNumber;
|
|
2645
2619
|
to: zod.ZodNumber;
|
|
2646
|
-
}
|
|
2620
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2647
2621
|
length: number;
|
|
2648
2622
|
from: number;
|
|
2649
2623
|
to: number;
|
|
@@ -2660,17 +2634,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2660
2634
|
}>, "many">, zod.ZodNumber]>>>;
|
|
2661
2635
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
2662
2636
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
2663
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2664
|
-
from: zod.ZodNumber;
|
|
2665
|
-
to: zod.ZodNumber;
|
|
2637
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2666
2638
|
start: zod.ZodNumber;
|
|
2667
2639
|
length: zod.ZodNumber;
|
|
2668
2640
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2669
2641
|
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"]>>;
|
|
2670
|
-
}
|
|
2642
|
+
} & {
|
|
2671
2643
|
from: zod.ZodNumber;
|
|
2672
2644
|
to: zod.ZodNumber;
|
|
2673
|
-
}
|
|
2645
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2674
2646
|
length: number;
|
|
2675
2647
|
from: number;
|
|
2676
2648
|
to: number;
|
|
@@ -329,17 +329,15 @@ 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<
|
|
333
|
-
from: zod.ZodNumber;
|
|
334
|
-
to: zod.ZodNumber;
|
|
332
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
335
333
|
start: zod.ZodNumber;
|
|
336
334
|
length: zod.ZodNumber;
|
|
337
335
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
338
336
|
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"]>>;
|
|
339
|
-
}
|
|
337
|
+
} & {
|
|
340
338
|
from: zod.ZodNumber;
|
|
341
339
|
to: zod.ZodNumber;
|
|
342
|
-
}
|
|
340
|
+
}, "strip", zod.ZodTypeAny, {
|
|
343
341
|
length: number;
|
|
344
342
|
from: number;
|
|
345
343
|
to: number;
|
|
@@ -403,17 +401,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
403
401
|
type: zod.ZodLiteral<"audio">;
|
|
404
402
|
src: zod.ZodString;
|
|
405
403
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
406
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
407
|
-
from: zod.ZodNumber;
|
|
408
|
-
to: zod.ZodNumber;
|
|
404
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
409
405
|
start: zod.ZodNumber;
|
|
410
406
|
length: zod.ZodNumber;
|
|
411
407
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
412
408
|
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"]>>;
|
|
413
|
-
}
|
|
409
|
+
} & {
|
|
414
410
|
from: zod.ZodNumber;
|
|
415
411
|
to: zod.ZodNumber;
|
|
416
|
-
}
|
|
412
|
+
}, "strip", zod.ZodTypeAny, {
|
|
417
413
|
length: number;
|
|
418
414
|
from: number;
|
|
419
415
|
to: number;
|
|
@@ -652,17 +648,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
652
648
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
653
649
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
654
650
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
655
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
656
|
-
from: zod.ZodNumber;
|
|
657
|
-
to: zod.ZodNumber;
|
|
651
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
658
652
|
start: zod.ZodNumber;
|
|
659
653
|
length: zod.ZodNumber;
|
|
660
654
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
661
655
|
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"]>>;
|
|
662
|
-
}
|
|
656
|
+
} & {
|
|
663
657
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
664
658
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
665
|
-
}
|
|
659
|
+
}, "strip", zod.ZodTypeAny, {
|
|
666
660
|
length: number;
|
|
667
661
|
from: number;
|
|
668
662
|
to: number;
|
|
@@ -677,17 +671,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
677
671
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
678
672
|
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;
|
|
679
673
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
680
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
681
|
-
from: zod.ZodNumber;
|
|
682
|
-
to: zod.ZodNumber;
|
|
674
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
683
675
|
start: zod.ZodNumber;
|
|
684
676
|
length: zod.ZodNumber;
|
|
685
677
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
686
678
|
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"]>>;
|
|
687
|
-
}
|
|
679
|
+
} & {
|
|
688
680
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
689
681
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
690
|
-
}
|
|
682
|
+
}, "strip", zod.ZodTypeAny, {
|
|
691
683
|
length: number;
|
|
692
684
|
from: number;
|
|
693
685
|
to: number;
|
|
@@ -737,17 +729,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
737
729
|
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;
|
|
738
730
|
}[] | undefined;
|
|
739
731
|
}>>>;
|
|
740
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
741
|
-
from: zod.ZodNumber;
|
|
742
|
-
to: zod.ZodNumber;
|
|
732
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
743
733
|
start: zod.ZodNumber;
|
|
744
734
|
length: zod.ZodNumber;
|
|
745
735
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
746
736
|
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"]>>;
|
|
747
|
-
}
|
|
737
|
+
} & {
|
|
748
738
|
from: zod.ZodNumber;
|
|
749
739
|
to: zod.ZodNumber;
|
|
750
|
-
}
|
|
740
|
+
}, "strip", zod.ZodTypeAny, {
|
|
751
741
|
length: number;
|
|
752
742
|
from: number;
|
|
753
743
|
to: number;
|
|
@@ -762,17 +752,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
762
752
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
763
753
|
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;
|
|
764
754
|
}>, "many">, zod.ZodNumber]>>>;
|
|
765
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
766
|
-
from: zod.ZodNumber;
|
|
767
|
-
to: zod.ZodNumber;
|
|
755
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
768
756
|
start: zod.ZodNumber;
|
|
769
757
|
length: zod.ZodNumber;
|
|
770
758
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
771
759
|
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"]>>;
|
|
772
|
-
}
|
|
760
|
+
} & {
|
|
773
761
|
from: zod.ZodNumber;
|
|
774
762
|
to: zod.ZodNumber;
|
|
775
|
-
}
|
|
763
|
+
}, "strip", zod.ZodTypeAny, {
|
|
776
764
|
length: number;
|
|
777
765
|
from: number;
|
|
778
766
|
to: number;
|
|
@@ -789,17 +777,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
789
777
|
}>, "many">, zod.ZodNumber]>>>;
|
|
790
778
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
791
779
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
792
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
793
|
-
from: zod.ZodNumber;
|
|
794
|
-
to: zod.ZodNumber;
|
|
780
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
795
781
|
start: zod.ZodNumber;
|
|
796
782
|
length: zod.ZodNumber;
|
|
797
783
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
798
784
|
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"]>>;
|
|
799
|
-
}
|
|
785
|
+
} & {
|
|
800
786
|
from: zod.ZodNumber;
|
|
801
787
|
to: zod.ZodNumber;
|
|
802
|
-
}
|
|
788
|
+
}, "strip", zod.ZodTypeAny, {
|
|
803
789
|
length: number;
|
|
804
790
|
from: number;
|
|
805
791
|
to: number;
|
|
@@ -16,17 +16,15 @@ 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<
|
|
20
|
-
from: zod.ZodNumber;
|
|
21
|
-
to: zod.ZodNumber;
|
|
19
|
+
export declare const VideoAssetVolumeSchema: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
22
20
|
start: zod.ZodNumber;
|
|
23
21
|
length: zod.ZodNumber;
|
|
24
22
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
25
23
|
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"]>>;
|
|
26
|
-
}
|
|
24
|
+
} & {
|
|
27
25
|
from: zod.ZodNumber;
|
|
28
26
|
to: zod.ZodNumber;
|
|
29
|
-
}
|
|
27
|
+
}, "strip", zod.ZodTypeAny, {
|
|
30
28
|
length: number;
|
|
31
29
|
from: number;
|
|
32
30
|
to: number;
|
|
@@ -61,17 +59,15 @@ export declare const VideoAssetSchema: zod.ZodObject<{
|
|
|
61
59
|
bottom?: number | undefined;
|
|
62
60
|
left?: number | undefined;
|
|
63
61
|
}>>;
|
|
64
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
65
|
-
from: zod.ZodNumber;
|
|
66
|
-
to: zod.ZodNumber;
|
|
62
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
67
63
|
start: zod.ZodNumber;
|
|
68
64
|
length: zod.ZodNumber;
|
|
69
65
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
70
66
|
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"]>>;
|
|
71
|
-
}
|
|
67
|
+
} & {
|
|
72
68
|
from: zod.ZodNumber;
|
|
73
69
|
to: zod.ZodNumber;
|
|
74
|
-
}
|
|
70
|
+
}, "strip", zod.ZodTypeAny, {
|
|
75
71
|
length: number;
|
|
76
72
|
from: number;
|
|
77
73
|
to: number;
|
package/dist/index.d.ts
CHANGED