@shotstack/shotstack-studio 1.2.2 → 1.4.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/shotstack-studio.es.js +5110 -4533
- package/dist/shotstack-studio.umd.js +8 -6
- package/dist/src/components/canvas/index.d.ts +14 -0
- package/dist/{core/entities → src/components/canvas/players}/audio-player.d.ts +3 -3
- package/dist/{core/entities → src/components/canvas/players}/html-player.d.ts +3 -3
- package/dist/{core/entities → src/components/canvas/players}/image-player.d.ts +3 -3
- package/dist/{core/entities → src/components/canvas/players}/luma-player.d.ts +3 -3
- package/dist/{core/entities → src/components/canvas/players}/player.d.ts +5 -4
- package/dist/{core/entities → src/components/canvas/players}/shape-player.d.ts +3 -3
- package/dist/src/components/canvas/players/text-player.d.ts +19 -0
- package/dist/{core/entities → src/components/canvas/players}/video-player.d.ts +3 -3
- package/dist/{core → src/components/canvas}/shotstack-canvas.d.ts +2 -2
- package/dist/{core/entities → src/components/canvas/system}/inspector.d.ts +1 -1
- package/dist/src/components/canvas/text/text-cursor.d.ts +47 -0
- package/dist/src/components/canvas/text/text-editor.d.ts +43 -0
- package/dist/src/components/canvas/text/text-input-handler.d.ts +54 -0
- package/dist/src/core/commands/add-clip-command.d.ts +14 -0
- package/dist/src/core/commands/add-track-command.d.ts +8 -0
- package/dist/src/core/commands/delete-clip-command.d.ts +10 -0
- package/dist/src/core/commands/delete-track-command.d.ts +9 -0
- package/dist/src/core/commands/set-updated-clip-command.d.ts +17 -0
- package/dist/src/core/commands/types.d.ts +25 -0
- package/dist/src/core/commands/update-text-content-command.d.ts +16 -0
- package/dist/{core/entities → src/core}/edit.d.ts +13 -7
- package/dist/{core → src/core}/export/video-exporter.d.ts +2 -2
- package/dist/{core → src/core}/inputs/controls.d.ts +1 -1
- package/dist/{core → src/core}/schemas/clip.d.ts +78 -78
- package/dist/{core → src/core}/schemas/edit.d.ts +302 -302
- package/dist/{core → src/core}/schemas/track.d.ts +106 -106
- package/dist/src/index.d.ts +4 -0
- package/dist/vite.config.d.ts +2 -0
- package/package.json +1 -1
- package/readme.md +17 -6
- package/dist/core/entities/text-player.d.ts +0 -18
- package/dist/index.d.ts +0 -4
- package/dist/{core → src/core}/animations/curve-interpolator.d.ts +0 -0
- package/dist/{core → src/core}/animations/effect-preset-builder.d.ts +0 -0
- package/dist/{core → src/core}/animations/keyframe-builder.d.ts +0 -0
- package/dist/{core → src/core}/animations/transition-preset-builder.d.ts +0 -0
- package/dist/{core → src/core}/events/asset-load-tracker.d.ts +0 -0
- package/dist/{core → src/core}/events/event-emitter.d.ts +0 -0
- package/dist/{core → src/core}/inputs/pointer.d.ts +0 -0
- package/dist/{core → src/core}/layouts/geometry.d.ts +0 -0
- package/dist/{core → src/core}/layouts/position-builder.d.ts +0 -0
- package/dist/{core → src/core}/loaders/asset-loader.d.ts +0 -0
- package/dist/{core → src/core}/loaders/audio-load-parser.d.ts +0 -0
- package/dist/{core → src/core}/loaders/font-load-parser.d.ts +0 -0
- package/dist/{core → src/core}/schemas/asset.d.ts +32 -32
- package/dist/{core → src/core}/schemas/audio-asset.d.ts +8 -8
- package/dist/{core → src/core}/schemas/html-asset.d.ts +2 -2
- package/dist/{core → src/core}/schemas/image-asset.d.ts +2 -2
- package/dist/{core → src/core}/schemas/keyframe.d.ts +2 -2
- package/dist/{core → src/core}/schemas/luma-asset.d.ts +2 -2
- package/dist/{core → src/core}/schemas/shape-asset.d.ts +0 -0
- package/dist/{core → src/core}/schemas/text-asset.d.ts +0 -0
- package/dist/{core → src/core}/schemas/video-asset.d.ts +8 -8
- /package/dist/{core/entities → src/core/shared}/entity.d.ts +0 -0
- /package/dist/{main.d.ts → src/main.d.ts} +0 -0
|
@@ -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
|
-
html: string;
|
|
263
262
|
type: "html";
|
|
263
|
+
html: string;
|
|
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
|
-
html: string;
|
|
270
269
|
type: "html";
|
|
270
|
+
html: string;
|
|
271
271
|
css: string;
|
|
272
272
|
width?: number | undefined;
|
|
273
273
|
height?: number | undefined;
|
|
@@ -292,8 +292,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
292
292
|
left?: number | undefined;
|
|
293
293
|
}>>;
|
|
294
294
|
}, "strip", zod.ZodTypeAny, {
|
|
295
|
-
src: string;
|
|
296
295
|
type: "image";
|
|
296
|
+
src: string;
|
|
297
297
|
crop?: {
|
|
298
298
|
top?: number | undefined;
|
|
299
299
|
right?: number | undefined;
|
|
@@ -301,8 +301,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
301
301
|
left?: number | undefined;
|
|
302
302
|
} | undefined;
|
|
303
303
|
}, {
|
|
304
|
-
src: string;
|
|
305
304
|
type: "image";
|
|
305
|
+
src: string;
|
|
306
306
|
crop?: {
|
|
307
307
|
top?: number | undefined;
|
|
308
308
|
right?: number | undefined;
|
|
@@ -340,29 +340,29 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
340
340
|
from: zod.ZodNumber;
|
|
341
341
|
to: zod.ZodNumber;
|
|
342
342
|
}>, "strip", zod.ZodTypeAny, {
|
|
343
|
-
length: number;
|
|
344
343
|
from: number;
|
|
345
344
|
to: number;
|
|
346
345
|
start: number;
|
|
346
|
+
length: number;
|
|
347
347
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
348
348
|
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;
|
|
349
349
|
}, {
|
|
350
|
-
length: number;
|
|
351
350
|
from: number;
|
|
352
351
|
to: number;
|
|
353
352
|
start: number;
|
|
353
|
+
length: number;
|
|
354
354
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
355
355
|
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;
|
|
356
356
|
}>, "many">, zod.ZodNumber]>>;
|
|
357
357
|
}, "strip", zod.ZodTypeAny, {
|
|
358
|
-
src: string;
|
|
359
358
|
type: "video";
|
|
359
|
+
src: string;
|
|
360
360
|
trim?: number | undefined;
|
|
361
361
|
volume?: number | {
|
|
362
|
-
length: number;
|
|
363
362
|
from: number;
|
|
364
363
|
to: number;
|
|
365
364
|
start: number;
|
|
365
|
+
length: number;
|
|
366
366
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
367
367
|
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;
|
|
368
368
|
}[] | undefined;
|
|
@@ -373,14 +373,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
373
373
|
left?: number | undefined;
|
|
374
374
|
} | undefined;
|
|
375
375
|
}, {
|
|
376
|
-
src: string;
|
|
377
376
|
type: "video";
|
|
377
|
+
src: string;
|
|
378
378
|
trim?: number | undefined;
|
|
379
379
|
volume?: number | {
|
|
380
|
-
length: number;
|
|
381
380
|
from: number;
|
|
382
381
|
to: number;
|
|
383
382
|
start: number;
|
|
383
|
+
length: number;
|
|
384
384
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
385
385
|
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;
|
|
386
386
|
}[] | undefined;
|
|
@@ -394,11 +394,11 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
394
394
|
type: zod.ZodLiteral<"luma">;
|
|
395
395
|
src: zod.ZodString;
|
|
396
396
|
}, "strip", zod.ZodTypeAny, {
|
|
397
|
-
src: string;
|
|
398
397
|
type: "luma";
|
|
399
|
-
}, {
|
|
400
398
|
src: string;
|
|
399
|
+
}, {
|
|
401
400
|
type: "luma";
|
|
401
|
+
src: string;
|
|
402
402
|
}>, zod.ZodObject<{
|
|
403
403
|
type: zod.ZodLiteral<"audio">;
|
|
404
404
|
src: zod.ZodString;
|
|
@@ -414,66 +414,66 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
414
414
|
from: zod.ZodNumber;
|
|
415
415
|
to: zod.ZodNumber;
|
|
416
416
|
}>, "strip", zod.ZodTypeAny, {
|
|
417
|
-
length: number;
|
|
418
417
|
from: number;
|
|
419
418
|
to: number;
|
|
420
419
|
start: number;
|
|
420
|
+
length: number;
|
|
421
421
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
422
422
|
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;
|
|
423
423
|
}, {
|
|
424
|
-
length: number;
|
|
425
424
|
from: number;
|
|
426
425
|
to: number;
|
|
427
426
|
start: number;
|
|
427
|
+
length: number;
|
|
428
428
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
429
429
|
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;
|
|
430
430
|
}>, "many">, zod.ZodNumber]>>;
|
|
431
431
|
}, "strip", zod.ZodTypeAny, {
|
|
432
|
-
src: string;
|
|
433
432
|
type: "audio";
|
|
433
|
+
src: string;
|
|
434
434
|
trim?: number | undefined;
|
|
435
435
|
volume?: number | {
|
|
436
|
-
length: number;
|
|
437
436
|
from: number;
|
|
438
437
|
to: number;
|
|
439
438
|
start: number;
|
|
439
|
+
length: number;
|
|
440
440
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
441
441
|
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;
|
|
442
442
|
}[] | undefined;
|
|
443
443
|
}, {
|
|
444
|
-
src: string;
|
|
445
444
|
type: "audio";
|
|
445
|
+
src: string;
|
|
446
446
|
trim?: number | undefined;
|
|
447
447
|
volume?: number | {
|
|
448
|
-
length: number;
|
|
449
448
|
from: number;
|
|
450
449
|
to: number;
|
|
451
450
|
start: number;
|
|
451
|
+
length: number;
|
|
452
452
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
453
453
|
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;
|
|
454
454
|
}[] | undefined;
|
|
455
455
|
}>]>, {
|
|
456
|
-
src: string;
|
|
457
456
|
type: "audio";
|
|
457
|
+
src: string;
|
|
458
458
|
trim?: number | undefined;
|
|
459
459
|
volume?: number | {
|
|
460
|
-
length: number;
|
|
461
460
|
from: number;
|
|
462
461
|
to: number;
|
|
463
462
|
start: number;
|
|
463
|
+
length: number;
|
|
464
464
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
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
|
-
html: string;
|
|
469
468
|
type: "html";
|
|
469
|
+
html: string;
|
|
470
470
|
css: string;
|
|
471
471
|
width?: number | undefined;
|
|
472
472
|
height?: number | undefined;
|
|
473
473
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
474
474
|
} | {
|
|
475
|
-
src: string;
|
|
476
475
|
type: "image";
|
|
476
|
+
src: string;
|
|
477
477
|
crop?: {
|
|
478
478
|
top?: number | undefined;
|
|
479
479
|
right?: number | undefined;
|
|
@@ -481,8 +481,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
481
481
|
left?: number | undefined;
|
|
482
482
|
} | undefined;
|
|
483
483
|
} | {
|
|
484
|
-
src: string;
|
|
485
484
|
type: "luma";
|
|
485
|
+
src: string;
|
|
486
486
|
} | {
|
|
487
487
|
type: "shape";
|
|
488
488
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -532,14 +532,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
532
532
|
opacity: number;
|
|
533
533
|
} | undefined;
|
|
534
534
|
} | {
|
|
535
|
-
src: string;
|
|
536
535
|
type: "video";
|
|
536
|
+
src: string;
|
|
537
537
|
trim?: number | undefined;
|
|
538
538
|
volume?: number | {
|
|
539
|
-
length: number;
|
|
540
539
|
from: number;
|
|
541
540
|
to: number;
|
|
542
541
|
start: number;
|
|
542
|
+
length: number;
|
|
543
543
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
544
544
|
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;
|
|
545
545
|
}[] | undefined;
|
|
@@ -550,27 +550,27 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
550
550
|
left?: number | undefined;
|
|
551
551
|
} | undefined;
|
|
552
552
|
}, {
|
|
553
|
-
src: string;
|
|
554
553
|
type: "audio";
|
|
554
|
+
src: string;
|
|
555
555
|
trim?: number | undefined;
|
|
556
556
|
volume?: number | {
|
|
557
|
-
length: number;
|
|
558
557
|
from: number;
|
|
559
558
|
to: number;
|
|
560
559
|
start: number;
|
|
560
|
+
length: number;
|
|
561
561
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
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
|
-
html: string;
|
|
566
565
|
type: "html";
|
|
566
|
+
html: string;
|
|
567
567
|
css: string;
|
|
568
568
|
width?: number | undefined;
|
|
569
569
|
height?: number | undefined;
|
|
570
570
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
571
571
|
} | {
|
|
572
|
-
src: string;
|
|
573
572
|
type: "image";
|
|
573
|
+
src: string;
|
|
574
574
|
crop?: {
|
|
575
575
|
top?: number | undefined;
|
|
576
576
|
right?: number | undefined;
|
|
@@ -578,8 +578,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
578
578
|
left?: number | undefined;
|
|
579
579
|
} | undefined;
|
|
580
580
|
} | {
|
|
581
|
-
src: string;
|
|
582
581
|
type: "luma";
|
|
582
|
+
src: string;
|
|
583
583
|
} | {
|
|
584
584
|
type: "shape";
|
|
585
585
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -629,14 +629,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
629
629
|
opacity: number;
|
|
630
630
|
} | undefined;
|
|
631
631
|
} | {
|
|
632
|
-
src: string;
|
|
633
632
|
type: "video";
|
|
633
|
+
src: string;
|
|
634
634
|
trim?: number | undefined;
|
|
635
635
|
volume?: number | {
|
|
636
|
-
length: number;
|
|
637
636
|
from: number;
|
|
638
637
|
to: number;
|
|
639
638
|
start: number;
|
|
639
|
+
length: number;
|
|
640
640
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
641
641
|
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;
|
|
642
642
|
}[] | undefined;
|
|
@@ -663,15 +663,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
663
663
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
664
664
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
665
665
|
}>, "strip", zod.ZodTypeAny, {
|
|
666
|
-
length: number;
|
|
667
666
|
from: number;
|
|
668
667
|
to: number;
|
|
669
668
|
start: number;
|
|
669
|
+
length: number;
|
|
670
670
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
671
671
|
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;
|
|
672
672
|
}, {
|
|
673
|
-
length: number;
|
|
674
673
|
start: number;
|
|
674
|
+
length: number;
|
|
675
675
|
from?: number | undefined;
|
|
676
676
|
to?: number | undefined;
|
|
677
677
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -688,15 +688,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
688
688
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
689
689
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
690
690
|
}>, "strip", zod.ZodTypeAny, {
|
|
691
|
-
length: number;
|
|
692
691
|
from: number;
|
|
693
692
|
to: number;
|
|
694
693
|
start: number;
|
|
694
|
+
length: number;
|
|
695
695
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
696
696
|
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
697
|
}, {
|
|
698
|
-
length: number;
|
|
699
698
|
start: number;
|
|
699
|
+
length: number;
|
|
700
700
|
from?: number | undefined;
|
|
701
701
|
to?: number | undefined;
|
|
702
702
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -704,33 +704,33 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
704
704
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
705
705
|
}, "strip", zod.ZodTypeAny, {
|
|
706
706
|
x: number | {
|
|
707
|
-
length: number;
|
|
708
707
|
from: number;
|
|
709
708
|
to: number;
|
|
710
709
|
start: number;
|
|
710
|
+
length: number;
|
|
711
711
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
712
712
|
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;
|
|
713
713
|
}[];
|
|
714
714
|
y: number | {
|
|
715
|
-
length: number;
|
|
716
715
|
from: number;
|
|
717
716
|
to: number;
|
|
718
717
|
start: number;
|
|
718
|
+
length: number;
|
|
719
719
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
720
720
|
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;
|
|
721
721
|
}[];
|
|
722
722
|
}, {
|
|
723
723
|
x?: number | {
|
|
724
|
-
length: number;
|
|
725
724
|
start: number;
|
|
725
|
+
length: number;
|
|
726
726
|
from?: number | undefined;
|
|
727
727
|
to?: number | undefined;
|
|
728
728
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
729
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;
|
|
730
730
|
}[] | undefined;
|
|
731
731
|
y?: number | {
|
|
732
|
-
length: number;
|
|
733
732
|
start: number;
|
|
733
|
+
length: number;
|
|
734
734
|
from?: number | undefined;
|
|
735
735
|
to?: number | undefined;
|
|
736
736
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -748,17 +748,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
748
748
|
from: zod.ZodNumber;
|
|
749
749
|
to: zod.ZodNumber;
|
|
750
750
|
}>, "strip", zod.ZodTypeAny, {
|
|
751
|
-
length: number;
|
|
752
751
|
from: number;
|
|
753
752
|
to: number;
|
|
754
753
|
start: number;
|
|
754
|
+
length: number;
|
|
755
755
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
756
756
|
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;
|
|
757
757
|
}, {
|
|
758
|
-
length: number;
|
|
759
758
|
from: number;
|
|
760
759
|
to: number;
|
|
761
760
|
start: number;
|
|
761
|
+
length: number;
|
|
762
762
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
763
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;
|
|
764
764
|
}>, "many">, zod.ZodNumber]>>>;
|
|
@@ -773,17 +773,17 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
773
773
|
from: zod.ZodNumber;
|
|
774
774
|
to: zod.ZodNumber;
|
|
775
775
|
}>, "strip", zod.ZodTypeAny, {
|
|
776
|
-
length: number;
|
|
777
776
|
from: number;
|
|
778
777
|
to: number;
|
|
779
778
|
start: number;
|
|
779
|
+
length: number;
|
|
780
780
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
781
781
|
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
782
|
}, {
|
|
783
|
-
length: number;
|
|
784
783
|
from: number;
|
|
785
784
|
to: number;
|
|
786
785
|
start: number;
|
|
786
|
+
length: number;
|
|
787
787
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
788
788
|
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;
|
|
789
789
|
}>, "many">, zod.ZodNumber]>>>;
|
|
@@ -800,35 +800,35 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
800
800
|
from: zod.ZodNumber;
|
|
801
801
|
to: zod.ZodNumber;
|
|
802
802
|
}>, "strip", zod.ZodTypeAny, {
|
|
803
|
-
length: number;
|
|
804
803
|
from: number;
|
|
805
804
|
to: number;
|
|
806
805
|
start: number;
|
|
806
|
+
length: number;
|
|
807
807
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
808
808
|
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;
|
|
809
809
|
}, {
|
|
810
|
-
length: number;
|
|
811
810
|
from: number;
|
|
812
811
|
to: number;
|
|
813
812
|
start: number;
|
|
813
|
+
length: number;
|
|
814
814
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
815
815
|
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;
|
|
816
816
|
}>, "many">, zod.ZodNumber]>;
|
|
817
817
|
}, "strip", zod.ZodTypeAny, {
|
|
818
818
|
angle: number | {
|
|
819
|
-
length: number;
|
|
820
819
|
from: number;
|
|
821
820
|
to: number;
|
|
822
821
|
start: number;
|
|
822
|
+
length: number;
|
|
823
823
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
824
824
|
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;
|
|
825
825
|
}[];
|
|
826
826
|
}, {
|
|
827
827
|
angle: number | {
|
|
828
|
-
length: number;
|
|
829
828
|
from: number;
|
|
830
829
|
to: number;
|
|
831
830
|
start: number;
|
|
831
|
+
length: number;
|
|
832
832
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
833
833
|
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;
|
|
834
834
|
}[];
|
|
@@ -836,10 +836,10 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
836
836
|
}, "strip", zod.ZodTypeAny, {
|
|
837
837
|
rotate: {
|
|
838
838
|
angle: number | {
|
|
839
|
-
length: number;
|
|
840
839
|
from: number;
|
|
841
840
|
to: number;
|
|
842
841
|
start: number;
|
|
842
|
+
length: number;
|
|
843
843
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
844
844
|
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;
|
|
845
845
|
}[];
|
|
@@ -847,10 +847,10 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
847
847
|
}, {
|
|
848
848
|
rotate?: {
|
|
849
849
|
angle: number | {
|
|
850
|
-
length: number;
|
|
851
850
|
from: number;
|
|
852
851
|
to: number;
|
|
853
852
|
start: number;
|
|
853
|
+
length: number;
|
|
854
854
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
855
855
|
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;
|
|
856
856
|
}[];
|
|
@@ -868,30 +868,30 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
868
868
|
out?: string | undefined;
|
|
869
869
|
}>>;
|
|
870
870
|
}, "strip", zod.ZodTypeAny, {
|
|
871
|
-
length: number;
|
|
872
871
|
start: number;
|
|
872
|
+
length: number;
|
|
873
873
|
asset: {
|
|
874
|
-
src: string;
|
|
875
874
|
type: "audio";
|
|
875
|
+
src: string;
|
|
876
876
|
trim?: number | undefined;
|
|
877
877
|
volume?: number | {
|
|
878
|
-
length: number;
|
|
879
878
|
from: number;
|
|
880
879
|
to: number;
|
|
881
880
|
start: number;
|
|
881
|
+
length: number;
|
|
882
882
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
883
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;
|
|
884
884
|
}[] | undefined;
|
|
885
885
|
} | {
|
|
886
|
-
html: string;
|
|
887
886
|
type: "html";
|
|
887
|
+
html: string;
|
|
888
888
|
css: string;
|
|
889
889
|
width?: number | undefined;
|
|
890
890
|
height?: number | undefined;
|
|
891
891
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
892
892
|
} | {
|
|
893
|
-
src: string;
|
|
894
893
|
type: "image";
|
|
894
|
+
src: string;
|
|
895
895
|
crop?: {
|
|
896
896
|
top?: number | undefined;
|
|
897
897
|
right?: number | undefined;
|
|
@@ -899,8 +899,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
899
899
|
left?: number | undefined;
|
|
900
900
|
} | undefined;
|
|
901
901
|
} | {
|
|
902
|
-
src: string;
|
|
903
902
|
type: "luma";
|
|
903
|
+
src: string;
|
|
904
904
|
} | {
|
|
905
905
|
type: "shape";
|
|
906
906
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -950,14 +950,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
950
950
|
opacity: number;
|
|
951
951
|
} | undefined;
|
|
952
952
|
} | {
|
|
953
|
-
src: string;
|
|
954
953
|
type: "video";
|
|
954
|
+
src: string;
|
|
955
955
|
trim?: number | undefined;
|
|
956
956
|
volume?: number | {
|
|
957
|
-
length: number;
|
|
958
957
|
from: number;
|
|
959
958
|
to: number;
|
|
960
959
|
start: number;
|
|
960
|
+
length: number;
|
|
961
961
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
962
962
|
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;
|
|
963
963
|
}[] | undefined;
|
|
@@ -970,47 +970,47 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
970
970
|
};
|
|
971
971
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
972
972
|
opacity?: number | {
|
|
973
|
-
length: number;
|
|
974
973
|
from: number;
|
|
975
974
|
to: number;
|
|
976
975
|
start: number;
|
|
976
|
+
length: number;
|
|
977
977
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
978
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;
|
|
979
979
|
}[] | undefined;
|
|
980
|
-
fit?: "
|
|
980
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
981
981
|
offset?: {
|
|
982
982
|
x: number | {
|
|
983
|
-
length: number;
|
|
984
983
|
from: number;
|
|
985
984
|
to: number;
|
|
986
985
|
start: number;
|
|
986
|
+
length: number;
|
|
987
987
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
988
988
|
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;
|
|
989
989
|
}[];
|
|
990
990
|
y: number | {
|
|
991
|
-
length: number;
|
|
992
991
|
from: number;
|
|
993
992
|
to: number;
|
|
994
993
|
start: number;
|
|
994
|
+
length: number;
|
|
995
995
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
996
996
|
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;
|
|
997
997
|
}[];
|
|
998
998
|
} | undefined;
|
|
999
999
|
scale?: number | {
|
|
1000
|
-
length: number;
|
|
1001
1000
|
from: number;
|
|
1002
1001
|
to: number;
|
|
1003
1002
|
start: number;
|
|
1003
|
+
length: number;
|
|
1004
1004
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1005
1005
|
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;
|
|
1006
1006
|
}[] | undefined;
|
|
1007
1007
|
transform?: {
|
|
1008
1008
|
rotate: {
|
|
1009
1009
|
angle: number | {
|
|
1010
|
-
length: number;
|
|
1011
1010
|
from: number;
|
|
1012
1011
|
to: number;
|
|
1013
1012
|
start: number;
|
|
1013
|
+
length: number;
|
|
1014
1014
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1015
1015
|
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;
|
|
1016
1016
|
}[];
|
|
@@ -1022,30 +1022,30 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1022
1022
|
out?: string | undefined;
|
|
1023
1023
|
} | undefined;
|
|
1024
1024
|
}, {
|
|
1025
|
-
length: number;
|
|
1026
1025
|
start: number;
|
|
1026
|
+
length: number;
|
|
1027
1027
|
asset: {
|
|
1028
|
-
src: string;
|
|
1029
1028
|
type: "audio";
|
|
1029
|
+
src: string;
|
|
1030
1030
|
trim?: number | undefined;
|
|
1031
1031
|
volume?: number | {
|
|
1032
|
-
length: number;
|
|
1033
1032
|
from: number;
|
|
1034
1033
|
to: number;
|
|
1035
1034
|
start: number;
|
|
1035
|
+
length: number;
|
|
1036
1036
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1037
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;
|
|
1038
1038
|
}[] | undefined;
|
|
1039
1039
|
} | {
|
|
1040
|
-
html: string;
|
|
1041
1040
|
type: "html";
|
|
1041
|
+
html: string;
|
|
1042
1042
|
css: string;
|
|
1043
1043
|
width?: number | undefined;
|
|
1044
1044
|
height?: number | undefined;
|
|
1045
1045
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1046
1046
|
} | {
|
|
1047
|
-
src: string;
|
|
1048
1047
|
type: "image";
|
|
1048
|
+
src: string;
|
|
1049
1049
|
crop?: {
|
|
1050
1050
|
top?: number | undefined;
|
|
1051
1051
|
right?: number | undefined;
|
|
@@ -1053,8 +1053,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1053
1053
|
left?: number | undefined;
|
|
1054
1054
|
} | undefined;
|
|
1055
1055
|
} | {
|
|
1056
|
-
src: string;
|
|
1057
1056
|
type: "luma";
|
|
1057
|
+
src: string;
|
|
1058
1058
|
} | {
|
|
1059
1059
|
type: "shape";
|
|
1060
1060
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1104,14 +1104,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1104
1104
|
opacity: number;
|
|
1105
1105
|
} | undefined;
|
|
1106
1106
|
} | {
|
|
1107
|
-
src: string;
|
|
1108
1107
|
type: "video";
|
|
1108
|
+
src: string;
|
|
1109
1109
|
trim?: number | undefined;
|
|
1110
1110
|
volume?: number | {
|
|
1111
|
-
length: number;
|
|
1112
1111
|
from: number;
|
|
1113
1112
|
to: number;
|
|
1114
1113
|
start: number;
|
|
1114
|
+
length: number;
|
|
1115
1115
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1116
1116
|
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;
|
|
1117
1117
|
}[] | undefined;
|
|
@@ -1124,26 +1124,26 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1124
1124
|
};
|
|
1125
1125
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1126
1126
|
opacity?: number | {
|
|
1127
|
-
length: number;
|
|
1128
1127
|
from: number;
|
|
1129
1128
|
to: number;
|
|
1130
1129
|
start: number;
|
|
1130
|
+
length: number;
|
|
1131
1131
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1132
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;
|
|
1133
1133
|
}[] | undefined;
|
|
1134
|
-
fit?: "
|
|
1134
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1135
1135
|
offset?: {
|
|
1136
1136
|
x?: number | {
|
|
1137
|
-
length: number;
|
|
1138
1137
|
start: number;
|
|
1138
|
+
length: number;
|
|
1139
1139
|
from?: number | undefined;
|
|
1140
1140
|
to?: number | undefined;
|
|
1141
1141
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1142
1142
|
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;
|
|
1143
1143
|
}[] | undefined;
|
|
1144
1144
|
y?: number | {
|
|
1145
|
-
length: number;
|
|
1146
1145
|
start: number;
|
|
1146
|
+
length: number;
|
|
1147
1147
|
from?: number | undefined;
|
|
1148
1148
|
to?: number | undefined;
|
|
1149
1149
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1151,20 +1151,20 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1151
1151
|
}[] | undefined;
|
|
1152
1152
|
} | undefined;
|
|
1153
1153
|
scale?: number | {
|
|
1154
|
-
length: number;
|
|
1155
1154
|
from: number;
|
|
1156
1155
|
to: number;
|
|
1157
1156
|
start: number;
|
|
1157
|
+
length: number;
|
|
1158
1158
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1159
1159
|
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;
|
|
1160
1160
|
}[] | undefined;
|
|
1161
1161
|
transform?: {
|
|
1162
1162
|
rotate?: {
|
|
1163
1163
|
angle: number | {
|
|
1164
|
-
length: number;
|
|
1165
1164
|
from: number;
|
|
1166
1165
|
to: number;
|
|
1167
1166
|
start: number;
|
|
1167
|
+
length: number;
|
|
1168
1168
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1169
1169
|
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;
|
|
1170
1170
|
}[];
|
|
@@ -1178,30 +1178,30 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1178
1178
|
}>, "many">;
|
|
1179
1179
|
}, "strip", zod.ZodTypeAny, {
|
|
1180
1180
|
clips: {
|
|
1181
|
-
length: number;
|
|
1182
1181
|
start: number;
|
|
1182
|
+
length: number;
|
|
1183
1183
|
asset: {
|
|
1184
|
-
src: string;
|
|
1185
1184
|
type: "audio";
|
|
1185
|
+
src: string;
|
|
1186
1186
|
trim?: number | undefined;
|
|
1187
1187
|
volume?: number | {
|
|
1188
|
-
length: number;
|
|
1189
1188
|
from: number;
|
|
1190
1189
|
to: number;
|
|
1191
1190
|
start: number;
|
|
1191
|
+
length: number;
|
|
1192
1192
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1193
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;
|
|
1194
1194
|
}[] | undefined;
|
|
1195
1195
|
} | {
|
|
1196
|
-
html: string;
|
|
1197
1196
|
type: "html";
|
|
1197
|
+
html: string;
|
|
1198
1198
|
css: string;
|
|
1199
1199
|
width?: number | undefined;
|
|
1200
1200
|
height?: number | undefined;
|
|
1201
1201
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1202
1202
|
} | {
|
|
1203
|
-
src: string;
|
|
1204
1203
|
type: "image";
|
|
1204
|
+
src: string;
|
|
1205
1205
|
crop?: {
|
|
1206
1206
|
top?: number | undefined;
|
|
1207
1207
|
right?: number | undefined;
|
|
@@ -1209,8 +1209,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1209
1209
|
left?: number | undefined;
|
|
1210
1210
|
} | undefined;
|
|
1211
1211
|
} | {
|
|
1212
|
-
src: string;
|
|
1213
1212
|
type: "luma";
|
|
1213
|
+
src: string;
|
|
1214
1214
|
} | {
|
|
1215
1215
|
type: "shape";
|
|
1216
1216
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1260,14 +1260,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1260
1260
|
opacity: number;
|
|
1261
1261
|
} | undefined;
|
|
1262
1262
|
} | {
|
|
1263
|
-
src: string;
|
|
1264
1263
|
type: "video";
|
|
1264
|
+
src: string;
|
|
1265
1265
|
trim?: number | undefined;
|
|
1266
1266
|
volume?: number | {
|
|
1267
|
-
length: number;
|
|
1268
1267
|
from: number;
|
|
1269
1268
|
to: number;
|
|
1270
1269
|
start: number;
|
|
1270
|
+
length: number;
|
|
1271
1271
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1272
1272
|
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;
|
|
1273
1273
|
}[] | undefined;
|
|
@@ -1280,47 +1280,47 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1280
1280
|
};
|
|
1281
1281
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1282
1282
|
opacity?: number | {
|
|
1283
|
-
length: number;
|
|
1284
1283
|
from: number;
|
|
1285
1284
|
to: number;
|
|
1286
1285
|
start: number;
|
|
1286
|
+
length: number;
|
|
1287
1287
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1288
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;
|
|
1289
1289
|
}[] | undefined;
|
|
1290
|
-
fit?: "
|
|
1290
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1291
1291
|
offset?: {
|
|
1292
1292
|
x: number | {
|
|
1293
|
-
length: number;
|
|
1294
1293
|
from: number;
|
|
1295
1294
|
to: number;
|
|
1296
1295
|
start: number;
|
|
1296
|
+
length: number;
|
|
1297
1297
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1298
1298
|
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;
|
|
1299
1299
|
}[];
|
|
1300
1300
|
y: number | {
|
|
1301
|
-
length: number;
|
|
1302
1301
|
from: number;
|
|
1303
1302
|
to: number;
|
|
1304
1303
|
start: number;
|
|
1304
|
+
length: number;
|
|
1305
1305
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1306
1306
|
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;
|
|
1307
1307
|
}[];
|
|
1308
1308
|
} | undefined;
|
|
1309
1309
|
scale?: number | {
|
|
1310
|
-
length: number;
|
|
1311
1310
|
from: number;
|
|
1312
1311
|
to: number;
|
|
1313
1312
|
start: number;
|
|
1313
|
+
length: number;
|
|
1314
1314
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1315
1315
|
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;
|
|
1316
1316
|
}[] | undefined;
|
|
1317
1317
|
transform?: {
|
|
1318
1318
|
rotate: {
|
|
1319
1319
|
angle: number | {
|
|
1320
|
-
length: number;
|
|
1321
1320
|
from: number;
|
|
1322
1321
|
to: number;
|
|
1323
1322
|
start: number;
|
|
1323
|
+
length: number;
|
|
1324
1324
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1325
1325
|
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;
|
|
1326
1326
|
}[];
|
|
@@ -1334,30 +1334,30 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1334
1334
|
}[];
|
|
1335
1335
|
}, {
|
|
1336
1336
|
clips: {
|
|
1337
|
-
length: number;
|
|
1338
1337
|
start: number;
|
|
1338
|
+
length: number;
|
|
1339
1339
|
asset: {
|
|
1340
|
-
src: string;
|
|
1341
1340
|
type: "audio";
|
|
1341
|
+
src: string;
|
|
1342
1342
|
trim?: number | undefined;
|
|
1343
1343
|
volume?: number | {
|
|
1344
|
-
length: number;
|
|
1345
1344
|
from: number;
|
|
1346
1345
|
to: number;
|
|
1347
1346
|
start: number;
|
|
1347
|
+
length: number;
|
|
1348
1348
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1349
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;
|
|
1350
1350
|
}[] | undefined;
|
|
1351
1351
|
} | {
|
|
1352
|
-
html: string;
|
|
1353
1352
|
type: "html";
|
|
1353
|
+
html: string;
|
|
1354
1354
|
css: string;
|
|
1355
1355
|
width?: number | undefined;
|
|
1356
1356
|
height?: number | undefined;
|
|
1357
1357
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1358
1358
|
} | {
|
|
1359
|
-
src: string;
|
|
1360
1359
|
type: "image";
|
|
1360
|
+
src: string;
|
|
1361
1361
|
crop?: {
|
|
1362
1362
|
top?: number | undefined;
|
|
1363
1363
|
right?: number | undefined;
|
|
@@ -1365,8 +1365,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1365
1365
|
left?: number | undefined;
|
|
1366
1366
|
} | undefined;
|
|
1367
1367
|
} | {
|
|
1368
|
-
src: string;
|
|
1369
1368
|
type: "luma";
|
|
1369
|
+
src: string;
|
|
1370
1370
|
} | {
|
|
1371
1371
|
type: "shape";
|
|
1372
1372
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1416,14 +1416,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1416
1416
|
opacity: number;
|
|
1417
1417
|
} | undefined;
|
|
1418
1418
|
} | {
|
|
1419
|
-
src: string;
|
|
1420
1419
|
type: "video";
|
|
1420
|
+
src: string;
|
|
1421
1421
|
trim?: number | undefined;
|
|
1422
1422
|
volume?: number | {
|
|
1423
|
-
length: number;
|
|
1424
1423
|
from: number;
|
|
1425
1424
|
to: number;
|
|
1426
1425
|
start: number;
|
|
1426
|
+
length: number;
|
|
1427
1427
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1428
1428
|
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;
|
|
1429
1429
|
}[] | undefined;
|
|
@@ -1436,26 +1436,26 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1436
1436
|
};
|
|
1437
1437
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1438
1438
|
opacity?: number | {
|
|
1439
|
-
length: number;
|
|
1440
1439
|
from: number;
|
|
1441
1440
|
to: number;
|
|
1442
1441
|
start: number;
|
|
1442
|
+
length: number;
|
|
1443
1443
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1444
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;
|
|
1445
1445
|
}[] | undefined;
|
|
1446
|
-
fit?: "
|
|
1446
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1447
1447
|
offset?: {
|
|
1448
1448
|
x?: number | {
|
|
1449
|
-
length: number;
|
|
1450
1449
|
start: number;
|
|
1450
|
+
length: number;
|
|
1451
1451
|
from?: number | undefined;
|
|
1452
1452
|
to?: number | undefined;
|
|
1453
1453
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1454
1454
|
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;
|
|
1455
1455
|
}[] | undefined;
|
|
1456
1456
|
y?: number | {
|
|
1457
|
-
length: number;
|
|
1458
1457
|
start: number;
|
|
1458
|
+
length: number;
|
|
1459
1459
|
from?: number | undefined;
|
|
1460
1460
|
to?: number | undefined;
|
|
1461
1461
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1463,20 +1463,20 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1463
1463
|
}[] | undefined;
|
|
1464
1464
|
} | undefined;
|
|
1465
1465
|
scale?: number | {
|
|
1466
|
-
length: number;
|
|
1467
1466
|
from: number;
|
|
1468
1467
|
to: number;
|
|
1469
1468
|
start: number;
|
|
1469
|
+
length: number;
|
|
1470
1470
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1471
1471
|
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;
|
|
1472
1472
|
}[] | undefined;
|
|
1473
1473
|
transform?: {
|
|
1474
1474
|
rotate?: {
|
|
1475
1475
|
angle: number | {
|
|
1476
|
-
length: number;
|
|
1477
1476
|
from: number;
|
|
1478
1477
|
to: number;
|
|
1479
1478
|
start: number;
|
|
1479
|
+
length: number;
|
|
1480
1480
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1481
1481
|
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;
|
|
1482
1482
|
}[];
|