@shotstack/shotstack-studio 1.2.0 → 1.2.1
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 +9 -2
- package/dist/core/schemas/asset.d.ts +4 -4
- package/dist/core/schemas/clip.d.ts +8 -8
- package/dist/core/schemas/edit.d.ts +45 -45
- package/dist/core/schemas/html-asset.d.ts +2 -2
- package/dist/core/schemas/track.d.ts +12 -12
- package/dist/shotstack-studio.es.js +561 -500
- package/dist/shotstack-studio.umd.js +3 -3
- package/package.json +1 -1
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import * as pixi from "pixi.js";
|
|
2
2
|
import { AssetLoadTracker } from "../events/asset-load-tracker";
|
|
3
3
|
export declare class AssetLoader {
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
private static readonly VIDEO_EXTENSIONS;
|
|
5
|
+
private static readonly VIDEO_MIME;
|
|
6
|
+
readonly loadTracker: AssetLoadTracker;
|
|
6
7
|
load<TResolvedAsset>(identifier: string, loadOptions: pixi.UnresolvedAsset): Promise<TResolvedAsset | null>;
|
|
7
8
|
getProgress(): number;
|
|
9
|
+
private extractUrl;
|
|
10
|
+
private hasVideoExtension;
|
|
11
|
+
private getContentType;
|
|
12
|
+
private canPlayVideo;
|
|
13
|
+
private isPlayableVideo;
|
|
14
|
+
private loadVideoTexture;
|
|
8
15
|
private updateAssetLoadMetadata;
|
|
9
16
|
}
|
|
@@ -257,15 +257,15 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
257
257
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
258
258
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
259
259
|
}, "strip", zod.ZodTypeAny, {
|
|
260
|
-
type: "html";
|
|
261
260
|
html: string;
|
|
261
|
+
type: "html";
|
|
262
262
|
css: string;
|
|
263
263
|
width?: number | undefined;
|
|
264
264
|
height?: number | undefined;
|
|
265
265
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
266
266
|
}, {
|
|
267
|
-
type: "html";
|
|
268
267
|
html: string;
|
|
268
|
+
type: "html";
|
|
269
269
|
css: string;
|
|
270
270
|
width?: number | undefined;
|
|
271
271
|
height?: number | undefined;
|
|
@@ -459,8 +459,8 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
459
459
|
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;
|
|
460
460
|
}[] | undefined;
|
|
461
461
|
} | {
|
|
462
|
-
type: "html";
|
|
463
462
|
html: string;
|
|
463
|
+
type: "html";
|
|
464
464
|
css: string;
|
|
465
465
|
width?: number | undefined;
|
|
466
466
|
height?: number | undefined;
|
|
@@ -556,8 +556,8 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
556
556
|
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;
|
|
557
557
|
}[] | undefined;
|
|
558
558
|
} | {
|
|
559
|
-
type: "html";
|
|
560
559
|
html: string;
|
|
560
|
+
type: "html";
|
|
561
561
|
css: string;
|
|
562
562
|
width?: number | undefined;
|
|
563
563
|
height?: number | undefined;
|
|
@@ -263,15 +263,15 @@ export declare const ClipSchema: zod.ZodObject<{
|
|
|
263
263
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
264
264
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
265
265
|
}, "strip", zod.ZodTypeAny, {
|
|
266
|
-
type: "html";
|
|
267
266
|
html: string;
|
|
267
|
+
type: "html";
|
|
268
268
|
css: string;
|
|
269
269
|
width?: number | undefined;
|
|
270
270
|
height?: number | undefined;
|
|
271
271
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
272
272
|
}, {
|
|
273
|
-
type: "html";
|
|
274
273
|
html: string;
|
|
274
|
+
type: "html";
|
|
275
275
|
css: string;
|
|
276
276
|
width?: number | undefined;
|
|
277
277
|
height?: number | undefined;
|
|
@@ -465,8 +465,8 @@ export declare const ClipSchema: zod.ZodObject<{
|
|
|
465
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;
|
|
466
466
|
}[] | undefined;
|
|
467
467
|
} | {
|
|
468
|
-
type: "html";
|
|
469
468
|
html: string;
|
|
469
|
+
type: "html";
|
|
470
470
|
css: string;
|
|
471
471
|
width?: number | undefined;
|
|
472
472
|
height?: number | undefined;
|
|
@@ -562,8 +562,8 @@ export declare const ClipSchema: zod.ZodObject<{
|
|
|
562
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;
|
|
563
563
|
}[] | undefined;
|
|
564
564
|
} | {
|
|
565
|
-
type: "html";
|
|
566
565
|
html: string;
|
|
566
|
+
type: "html";
|
|
567
567
|
css: string;
|
|
568
568
|
width?: number | undefined;
|
|
569
569
|
height?: number | undefined;
|
|
@@ -873,8 +873,8 @@ export declare const ClipSchema: zod.ZodObject<{
|
|
|
873
873
|
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;
|
|
874
874
|
}[] | undefined;
|
|
875
875
|
} | {
|
|
876
|
-
type: "html";
|
|
877
876
|
html: string;
|
|
877
|
+
type: "html";
|
|
878
878
|
css: string;
|
|
879
879
|
width?: number | undefined;
|
|
880
880
|
height?: number | undefined;
|
|
@@ -967,7 +967,7 @@ export declare const ClipSchema: zod.ZodObject<{
|
|
|
967
967
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
968
968
|
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;
|
|
969
969
|
}[] | undefined;
|
|
970
|
-
fit?: "
|
|
970
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
971
971
|
offset?: {
|
|
972
972
|
x: number | {
|
|
973
973
|
length: number;
|
|
@@ -1027,8 +1027,8 @@ export declare const ClipSchema: zod.ZodObject<{
|
|
|
1027
1027
|
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;
|
|
1028
1028
|
}[] | undefined;
|
|
1029
1029
|
} | {
|
|
1030
|
-
type: "html";
|
|
1031
1030
|
html: string;
|
|
1031
|
+
type: "html";
|
|
1032
1032
|
css: string;
|
|
1033
1033
|
width?: number | undefined;
|
|
1034
1034
|
height?: number | undefined;
|
|
@@ -1121,7 +1121,7 @@ export declare const ClipSchema: zod.ZodObject<{
|
|
|
1121
1121
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1122
1122
|
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;
|
|
1123
1123
|
}[] | undefined;
|
|
1124
|
-
fit?: "
|
|
1124
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1125
1125
|
offset?: {
|
|
1126
1126
|
x?: number | {
|
|
1127
1127
|
length: number;
|
|
@@ -277,15 +277,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
277
277
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
278
278
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
279
279
|
}, "strip", zod.ZodTypeAny, {
|
|
280
|
-
type: "html";
|
|
281
280
|
html: string;
|
|
281
|
+
type: "html";
|
|
282
282
|
css: string;
|
|
283
283
|
width?: number | undefined;
|
|
284
284
|
height?: number | undefined;
|
|
285
285
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
286
286
|
}, {
|
|
287
|
-
type: "html";
|
|
288
287
|
html: string;
|
|
288
|
+
type: "html";
|
|
289
289
|
css: string;
|
|
290
290
|
width?: number | undefined;
|
|
291
291
|
height?: number | undefined;
|
|
@@ -479,8 +479,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
479
479
|
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;
|
|
480
480
|
}[] | undefined;
|
|
481
481
|
} | {
|
|
482
|
-
type: "html";
|
|
483
482
|
html: string;
|
|
483
|
+
type: "html";
|
|
484
484
|
css: string;
|
|
485
485
|
width?: number | undefined;
|
|
486
486
|
height?: number | undefined;
|
|
@@ -576,8 +576,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
576
576
|
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;
|
|
577
577
|
}[] | undefined;
|
|
578
578
|
} | {
|
|
579
|
-
type: "html";
|
|
580
579
|
html: string;
|
|
580
|
+
type: "html";
|
|
581
581
|
css: string;
|
|
582
582
|
width?: number | undefined;
|
|
583
583
|
height?: number | undefined;
|
|
@@ -887,8 +887,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
887
887
|
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;
|
|
888
888
|
}[] | undefined;
|
|
889
889
|
} | {
|
|
890
|
-
type: "html";
|
|
891
890
|
html: string;
|
|
891
|
+
type: "html";
|
|
892
892
|
css: string;
|
|
893
893
|
width?: number | undefined;
|
|
894
894
|
height?: number | undefined;
|
|
@@ -981,7 +981,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
981
981
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
982
982
|
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;
|
|
983
983
|
}[] | undefined;
|
|
984
|
-
fit?: "
|
|
984
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
985
985
|
offset?: {
|
|
986
986
|
x: number | {
|
|
987
987
|
length: number;
|
|
@@ -1041,8 +1041,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1041
1041
|
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;
|
|
1042
1042
|
}[] | undefined;
|
|
1043
1043
|
} | {
|
|
1044
|
-
type: "html";
|
|
1045
1044
|
html: string;
|
|
1045
|
+
type: "html";
|
|
1046
1046
|
css: string;
|
|
1047
1047
|
width?: number | undefined;
|
|
1048
1048
|
height?: number | undefined;
|
|
@@ -1135,7 +1135,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1135
1135
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1136
1136
|
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;
|
|
1137
1137
|
}[] | undefined;
|
|
1138
|
-
fit?: "
|
|
1138
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1139
1139
|
offset?: {
|
|
1140
1140
|
x?: number | {
|
|
1141
1141
|
length: number;
|
|
@@ -1197,8 +1197,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1197
1197
|
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;
|
|
1198
1198
|
}[] | undefined;
|
|
1199
1199
|
} | {
|
|
1200
|
-
type: "html";
|
|
1201
1200
|
html: string;
|
|
1201
|
+
type: "html";
|
|
1202
1202
|
css: string;
|
|
1203
1203
|
width?: number | undefined;
|
|
1204
1204
|
height?: number | undefined;
|
|
@@ -1291,7 +1291,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1291
1291
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1292
1292
|
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;
|
|
1293
1293
|
}[] | undefined;
|
|
1294
|
-
fit?: "
|
|
1294
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1295
1295
|
offset?: {
|
|
1296
1296
|
x: number | {
|
|
1297
1297
|
length: number;
|
|
@@ -1353,8 +1353,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1353
1353
|
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;
|
|
1354
1354
|
}[] | undefined;
|
|
1355
1355
|
} | {
|
|
1356
|
-
type: "html";
|
|
1357
1356
|
html: string;
|
|
1357
|
+
type: "html";
|
|
1358
1358
|
css: string;
|
|
1359
1359
|
width?: number | undefined;
|
|
1360
1360
|
height?: number | undefined;
|
|
@@ -1447,7 +1447,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1447
1447
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1448
1448
|
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;
|
|
1449
1449
|
}[] | undefined;
|
|
1450
|
-
fit?: "
|
|
1450
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1451
1451
|
offset?: {
|
|
1452
1452
|
x?: number | {
|
|
1453
1453
|
length: number;
|
|
@@ -1511,8 +1511,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1511
1511
|
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;
|
|
1512
1512
|
}[] | undefined;
|
|
1513
1513
|
} | {
|
|
1514
|
-
type: "html";
|
|
1515
1514
|
html: string;
|
|
1515
|
+
type: "html";
|
|
1516
1516
|
css: string;
|
|
1517
1517
|
width?: number | undefined;
|
|
1518
1518
|
height?: number | undefined;
|
|
@@ -1605,7 +1605,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1605
1605
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1606
1606
|
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;
|
|
1607
1607
|
}[] | undefined;
|
|
1608
|
-
fit?: "
|
|
1608
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1609
1609
|
offset?: {
|
|
1610
1610
|
x: number | {
|
|
1611
1611
|
length: number;
|
|
@@ -1673,8 +1673,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1673
1673
|
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;
|
|
1674
1674
|
}[] | undefined;
|
|
1675
1675
|
} | {
|
|
1676
|
-
type: "html";
|
|
1677
1676
|
html: string;
|
|
1677
|
+
type: "html";
|
|
1678
1678
|
css: string;
|
|
1679
1679
|
width?: number | undefined;
|
|
1680
1680
|
height?: number | undefined;
|
|
@@ -1767,7 +1767,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1767
1767
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1768
1768
|
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;
|
|
1769
1769
|
}[] | undefined;
|
|
1770
|
-
fit?: "
|
|
1770
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1771
1771
|
offset?: {
|
|
1772
1772
|
x?: number | {
|
|
1773
1773
|
length: number;
|
|
@@ -2116,15 +2116,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2116
2116
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
2117
2117
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
2118
2118
|
}, "strip", zod.ZodTypeAny, {
|
|
2119
|
-
type: "html";
|
|
2120
2119
|
html: string;
|
|
2120
|
+
type: "html";
|
|
2121
2121
|
css: string;
|
|
2122
2122
|
width?: number | undefined;
|
|
2123
2123
|
height?: number | undefined;
|
|
2124
2124
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2125
2125
|
}, {
|
|
2126
|
-
type: "html";
|
|
2127
2126
|
html: string;
|
|
2127
|
+
type: "html";
|
|
2128
2128
|
css: string;
|
|
2129
2129
|
width?: number | undefined;
|
|
2130
2130
|
height?: number | undefined;
|
|
@@ -2318,8 +2318,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2318
2318
|
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;
|
|
2319
2319
|
}[] | undefined;
|
|
2320
2320
|
} | {
|
|
2321
|
-
type: "html";
|
|
2322
2321
|
html: string;
|
|
2322
|
+
type: "html";
|
|
2323
2323
|
css: string;
|
|
2324
2324
|
width?: number | undefined;
|
|
2325
2325
|
height?: number | undefined;
|
|
@@ -2415,8 +2415,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2415
2415
|
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;
|
|
2416
2416
|
}[] | undefined;
|
|
2417
2417
|
} | {
|
|
2418
|
-
type: "html";
|
|
2419
2418
|
html: string;
|
|
2419
|
+
type: "html";
|
|
2420
2420
|
css: string;
|
|
2421
2421
|
width?: number | undefined;
|
|
2422
2422
|
height?: number | undefined;
|
|
@@ -2726,8 +2726,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2726
2726
|
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;
|
|
2727
2727
|
}[] | undefined;
|
|
2728
2728
|
} | {
|
|
2729
|
-
type: "html";
|
|
2730
2729
|
html: string;
|
|
2730
|
+
type: "html";
|
|
2731
2731
|
css: string;
|
|
2732
2732
|
width?: number | undefined;
|
|
2733
2733
|
height?: number | undefined;
|
|
@@ -2820,7 +2820,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2820
2820
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2821
2821
|
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;
|
|
2822
2822
|
}[] | undefined;
|
|
2823
|
-
fit?: "
|
|
2823
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
2824
2824
|
offset?: {
|
|
2825
2825
|
x: number | {
|
|
2826
2826
|
length: number;
|
|
@@ -2880,8 +2880,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2880
2880
|
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;
|
|
2881
2881
|
}[] | undefined;
|
|
2882
2882
|
} | {
|
|
2883
|
-
type: "html";
|
|
2884
2883
|
html: string;
|
|
2884
|
+
type: "html";
|
|
2885
2885
|
css: string;
|
|
2886
2886
|
width?: number | undefined;
|
|
2887
2887
|
height?: number | undefined;
|
|
@@ -2974,7 +2974,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2974
2974
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2975
2975
|
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;
|
|
2976
2976
|
}[] | undefined;
|
|
2977
|
-
fit?: "
|
|
2977
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
2978
2978
|
offset?: {
|
|
2979
2979
|
x?: number | {
|
|
2980
2980
|
length: number;
|
|
@@ -3036,8 +3036,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3036
3036
|
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;
|
|
3037
3037
|
}[] | undefined;
|
|
3038
3038
|
} | {
|
|
3039
|
-
type: "html";
|
|
3040
3039
|
html: string;
|
|
3040
|
+
type: "html";
|
|
3041
3041
|
css: string;
|
|
3042
3042
|
width?: number | undefined;
|
|
3043
3043
|
height?: number | undefined;
|
|
@@ -3130,7 +3130,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3130
3130
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3131
3131
|
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;
|
|
3132
3132
|
}[] | undefined;
|
|
3133
|
-
fit?: "
|
|
3133
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3134
3134
|
offset?: {
|
|
3135
3135
|
x: number | {
|
|
3136
3136
|
length: number;
|
|
@@ -3192,8 +3192,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3192
3192
|
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;
|
|
3193
3193
|
}[] | undefined;
|
|
3194
3194
|
} | {
|
|
3195
|
-
type: "html";
|
|
3196
3195
|
html: string;
|
|
3196
|
+
type: "html";
|
|
3197
3197
|
css: string;
|
|
3198
3198
|
width?: number | undefined;
|
|
3199
3199
|
height?: number | undefined;
|
|
@@ -3286,7 +3286,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3286
3286
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3287
3287
|
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;
|
|
3288
3288
|
}[] | undefined;
|
|
3289
|
-
fit?: "
|
|
3289
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3290
3290
|
offset?: {
|
|
3291
3291
|
x?: number | {
|
|
3292
3292
|
length: number;
|
|
@@ -3350,8 +3350,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3350
3350
|
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;
|
|
3351
3351
|
}[] | undefined;
|
|
3352
3352
|
} | {
|
|
3353
|
-
type: "html";
|
|
3354
3353
|
html: string;
|
|
3354
|
+
type: "html";
|
|
3355
3355
|
css: string;
|
|
3356
3356
|
width?: number | undefined;
|
|
3357
3357
|
height?: number | undefined;
|
|
@@ -3444,7 +3444,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3444
3444
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3445
3445
|
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;
|
|
3446
3446
|
}[] | undefined;
|
|
3447
|
-
fit?: "
|
|
3447
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3448
3448
|
offset?: {
|
|
3449
3449
|
x: number | {
|
|
3450
3450
|
length: number;
|
|
@@ -3512,8 +3512,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3512
3512
|
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;
|
|
3513
3513
|
}[] | undefined;
|
|
3514
3514
|
} | {
|
|
3515
|
-
type: "html";
|
|
3516
3515
|
html: string;
|
|
3516
|
+
type: "html";
|
|
3517
3517
|
css: string;
|
|
3518
3518
|
width?: number | undefined;
|
|
3519
3519
|
height?: number | undefined;
|
|
@@ -3606,7 +3606,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3606
3606
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3607
3607
|
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;
|
|
3608
3608
|
}[] | undefined;
|
|
3609
|
-
fit?: "
|
|
3609
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3610
3610
|
offset?: {
|
|
3611
3611
|
x?: number | {
|
|
3612
3612
|
length: number;
|
|
@@ -3686,6 +3686,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3686
3686
|
fps?: number | undefined;
|
|
3687
3687
|
}>;
|
|
3688
3688
|
}, "strip", zod.ZodTypeAny, {
|
|
3689
|
+
output: {
|
|
3690
|
+
format: string;
|
|
3691
|
+
size: {
|
|
3692
|
+
width: number;
|
|
3693
|
+
height: number;
|
|
3694
|
+
};
|
|
3695
|
+
fps?: number | undefined;
|
|
3696
|
+
};
|
|
3689
3697
|
timeline: {
|
|
3690
3698
|
tracks: {
|
|
3691
3699
|
clips: {
|
|
@@ -3704,8 +3712,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3704
3712
|
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;
|
|
3705
3713
|
}[] | undefined;
|
|
3706
3714
|
} | {
|
|
3707
|
-
type: "html";
|
|
3708
3715
|
html: string;
|
|
3716
|
+
type: "html";
|
|
3709
3717
|
css: string;
|
|
3710
3718
|
width?: number | undefined;
|
|
3711
3719
|
height?: number | undefined;
|
|
@@ -3798,7 +3806,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3798
3806
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3799
3807
|
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;
|
|
3800
3808
|
}[] | undefined;
|
|
3801
|
-
fit?: "
|
|
3809
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3802
3810
|
offset?: {
|
|
3803
3811
|
x: number | {
|
|
3804
3812
|
length: number;
|
|
@@ -3849,6 +3857,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3849
3857
|
src: string;
|
|
3850
3858
|
}[] | undefined;
|
|
3851
3859
|
};
|
|
3860
|
+
}, {
|
|
3852
3861
|
output: {
|
|
3853
3862
|
format: string;
|
|
3854
3863
|
size: {
|
|
@@ -3857,7 +3866,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3857
3866
|
};
|
|
3858
3867
|
fps?: number | undefined;
|
|
3859
3868
|
};
|
|
3860
|
-
}, {
|
|
3861
3869
|
timeline: {
|
|
3862
3870
|
tracks: {
|
|
3863
3871
|
clips: {
|
|
@@ -3876,8 +3884,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3876
3884
|
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;
|
|
3877
3885
|
}[] | undefined;
|
|
3878
3886
|
} | {
|
|
3879
|
-
type: "html";
|
|
3880
3887
|
html: string;
|
|
3888
|
+
type: "html";
|
|
3881
3889
|
css: string;
|
|
3882
3890
|
width?: number | undefined;
|
|
3883
3891
|
height?: number | undefined;
|
|
@@ -3970,7 +3978,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3970
3978
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3971
3979
|
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;
|
|
3972
3980
|
}[] | undefined;
|
|
3973
|
-
fit?: "
|
|
3981
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3974
3982
|
offset?: {
|
|
3975
3983
|
x?: number | {
|
|
3976
3984
|
length: number;
|
|
@@ -4021,13 +4029,5 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4021
4029
|
src: string;
|
|
4022
4030
|
}[] | undefined;
|
|
4023
4031
|
};
|
|
4024
|
-
output: {
|
|
4025
|
-
format: string;
|
|
4026
|
-
size: {
|
|
4027
|
-
width: number;
|
|
4028
|
-
height: number;
|
|
4029
|
-
};
|
|
4030
|
-
fps?: number | undefined;
|
|
4031
|
-
};
|
|
4032
4032
|
}>;
|
|
4033
4033
|
export type Track = zod.infer<typeof TrackSchema>;
|
|
@@ -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;
|