@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
|
@@ -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
|
-
html: string;
|
|
281
280
|
type: "html";
|
|
281
|
+
html: string;
|
|
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
|
-
html: string;
|
|
288
287
|
type: "html";
|
|
288
|
+
html: string;
|
|
289
289
|
css: string;
|
|
290
290
|
width?: number | undefined;
|
|
291
291
|
height?: number | undefined;
|
|
@@ -310,8 +310,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
310
310
|
left?: number | undefined;
|
|
311
311
|
}>>;
|
|
312
312
|
}, "strip", zod.ZodTypeAny, {
|
|
313
|
-
src: string;
|
|
314
313
|
type: "image";
|
|
314
|
+
src: string;
|
|
315
315
|
crop?: {
|
|
316
316
|
top?: number | undefined;
|
|
317
317
|
right?: number | undefined;
|
|
@@ -319,8 +319,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
319
319
|
left?: number | undefined;
|
|
320
320
|
} | undefined;
|
|
321
321
|
}, {
|
|
322
|
-
src: string;
|
|
323
322
|
type: "image";
|
|
323
|
+
src: string;
|
|
324
324
|
crop?: {
|
|
325
325
|
top?: number | undefined;
|
|
326
326
|
right?: number | undefined;
|
|
@@ -358,29 +358,29 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
358
358
|
from: zod.ZodNumber;
|
|
359
359
|
to: zod.ZodNumber;
|
|
360
360
|
}>, "strip", zod.ZodTypeAny, {
|
|
361
|
-
length: number;
|
|
362
361
|
from: number;
|
|
363
362
|
to: number;
|
|
364
363
|
start: number;
|
|
364
|
+
length: number;
|
|
365
365
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
366
366
|
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;
|
|
367
367
|
}, {
|
|
368
|
-
length: number;
|
|
369
368
|
from: number;
|
|
370
369
|
to: number;
|
|
371
370
|
start: number;
|
|
371
|
+
length: number;
|
|
372
372
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
373
373
|
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;
|
|
374
374
|
}>, "many">, zod.ZodNumber]>>;
|
|
375
375
|
}, "strip", zod.ZodTypeAny, {
|
|
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;
|
|
@@ -391,14 +391,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
391
391
|
left?: number | undefined;
|
|
392
392
|
} | undefined;
|
|
393
393
|
}, {
|
|
394
|
-
src: string;
|
|
395
394
|
type: "video";
|
|
395
|
+
src: string;
|
|
396
396
|
trim?: number | undefined;
|
|
397
397
|
volume?: number | {
|
|
398
|
-
length: number;
|
|
399
398
|
from: number;
|
|
400
399
|
to: number;
|
|
401
400
|
start: number;
|
|
401
|
+
length: number;
|
|
402
402
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
403
403
|
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;
|
|
404
404
|
}[] | undefined;
|
|
@@ -412,11 +412,11 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
412
412
|
type: zod.ZodLiteral<"luma">;
|
|
413
413
|
src: zod.ZodString;
|
|
414
414
|
}, "strip", zod.ZodTypeAny, {
|
|
415
|
-
src: string;
|
|
416
415
|
type: "luma";
|
|
417
|
-
}, {
|
|
418
416
|
src: string;
|
|
417
|
+
}, {
|
|
419
418
|
type: "luma";
|
|
419
|
+
src: string;
|
|
420
420
|
}>, zod.ZodObject<{
|
|
421
421
|
type: zod.ZodLiteral<"audio">;
|
|
422
422
|
src: zod.ZodString;
|
|
@@ -432,66 +432,66 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
432
432
|
from: zod.ZodNumber;
|
|
433
433
|
to: zod.ZodNumber;
|
|
434
434
|
}>, "strip", zod.ZodTypeAny, {
|
|
435
|
-
length: number;
|
|
436
435
|
from: number;
|
|
437
436
|
to: number;
|
|
438
437
|
start: number;
|
|
438
|
+
length: number;
|
|
439
439
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
440
440
|
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;
|
|
441
441
|
}, {
|
|
442
|
-
length: number;
|
|
443
442
|
from: number;
|
|
444
443
|
to: number;
|
|
445
444
|
start: number;
|
|
445
|
+
length: number;
|
|
446
446
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
447
447
|
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;
|
|
448
448
|
}>, "many">, zod.ZodNumber]>>;
|
|
449
449
|
}, "strip", zod.ZodTypeAny, {
|
|
450
|
-
src: string;
|
|
451
450
|
type: "audio";
|
|
451
|
+
src: string;
|
|
452
452
|
trim?: number | undefined;
|
|
453
453
|
volume?: number | {
|
|
454
|
-
length: number;
|
|
455
454
|
from: number;
|
|
456
455
|
to: number;
|
|
457
456
|
start: number;
|
|
457
|
+
length: number;
|
|
458
458
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
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
|
-
src: string;
|
|
463
462
|
type: "audio";
|
|
463
|
+
src: string;
|
|
464
464
|
trim?: number | undefined;
|
|
465
465
|
volume?: number | {
|
|
466
|
-
length: number;
|
|
467
466
|
from: number;
|
|
468
467
|
to: number;
|
|
469
468
|
start: number;
|
|
469
|
+
length: number;
|
|
470
470
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
471
471
|
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;
|
|
472
472
|
}[] | undefined;
|
|
473
473
|
}>]>, {
|
|
474
|
-
src: string;
|
|
475
474
|
type: "audio";
|
|
475
|
+
src: string;
|
|
476
476
|
trim?: number | undefined;
|
|
477
477
|
volume?: number | {
|
|
478
|
-
length: number;
|
|
479
478
|
from: number;
|
|
480
479
|
to: number;
|
|
481
480
|
start: number;
|
|
481
|
+
length: number;
|
|
482
482
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
483
483
|
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;
|
|
484
484
|
}[] | undefined;
|
|
485
485
|
} | {
|
|
486
|
-
html: string;
|
|
487
486
|
type: "html";
|
|
487
|
+
html: string;
|
|
488
488
|
css: string;
|
|
489
489
|
width?: number | undefined;
|
|
490
490
|
height?: number | undefined;
|
|
491
491
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
492
492
|
} | {
|
|
493
|
-
src: string;
|
|
494
493
|
type: "image";
|
|
494
|
+
src: string;
|
|
495
495
|
crop?: {
|
|
496
496
|
top?: number | undefined;
|
|
497
497
|
right?: number | undefined;
|
|
@@ -499,8 +499,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
499
499
|
left?: number | undefined;
|
|
500
500
|
} | undefined;
|
|
501
501
|
} | {
|
|
502
|
-
src: string;
|
|
503
502
|
type: "luma";
|
|
503
|
+
src: string;
|
|
504
504
|
} | {
|
|
505
505
|
type: "shape";
|
|
506
506
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -550,14 +550,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
550
550
|
opacity: number;
|
|
551
551
|
} | undefined;
|
|
552
552
|
} | {
|
|
553
|
-
src: string;
|
|
554
553
|
type: "video";
|
|
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;
|
|
@@ -568,27 +568,27 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
568
568
|
left?: number | undefined;
|
|
569
569
|
} | undefined;
|
|
570
570
|
}, {
|
|
571
|
-
src: string;
|
|
572
571
|
type: "audio";
|
|
572
|
+
src: string;
|
|
573
573
|
trim?: number | undefined;
|
|
574
574
|
volume?: number | {
|
|
575
|
-
length: number;
|
|
576
575
|
from: number;
|
|
577
576
|
to: number;
|
|
578
577
|
start: number;
|
|
578
|
+
length: number;
|
|
579
579
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
580
580
|
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;
|
|
581
581
|
}[] | undefined;
|
|
582
582
|
} | {
|
|
583
|
-
html: string;
|
|
584
583
|
type: "html";
|
|
584
|
+
html: string;
|
|
585
585
|
css: string;
|
|
586
586
|
width?: number | undefined;
|
|
587
587
|
height?: number | undefined;
|
|
588
588
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
589
589
|
} | {
|
|
590
|
-
src: string;
|
|
591
590
|
type: "image";
|
|
591
|
+
src: string;
|
|
592
592
|
crop?: {
|
|
593
593
|
top?: number | undefined;
|
|
594
594
|
right?: number | undefined;
|
|
@@ -596,8 +596,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
596
596
|
left?: number | undefined;
|
|
597
597
|
} | undefined;
|
|
598
598
|
} | {
|
|
599
|
-
src: string;
|
|
600
599
|
type: "luma";
|
|
600
|
+
src: string;
|
|
601
601
|
} | {
|
|
602
602
|
type: "shape";
|
|
603
603
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -647,14 +647,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
647
647
|
opacity: number;
|
|
648
648
|
} | undefined;
|
|
649
649
|
} | {
|
|
650
|
-
src: string;
|
|
651
650
|
type: "video";
|
|
651
|
+
src: string;
|
|
652
652
|
trim?: number | undefined;
|
|
653
653
|
volume?: number | {
|
|
654
|
-
length: number;
|
|
655
654
|
from: number;
|
|
656
655
|
to: number;
|
|
657
656
|
start: number;
|
|
657
|
+
length: number;
|
|
658
658
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
659
659
|
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;
|
|
660
660
|
}[] | undefined;
|
|
@@ -681,15 +681,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
681
681
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
682
682
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
683
683
|
}>, "strip", zod.ZodTypeAny, {
|
|
684
|
-
length: number;
|
|
685
684
|
from: number;
|
|
686
685
|
to: number;
|
|
687
686
|
start: number;
|
|
687
|
+
length: number;
|
|
688
688
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
689
689
|
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;
|
|
690
690
|
}, {
|
|
691
|
-
length: number;
|
|
692
691
|
start: number;
|
|
692
|
+
length: number;
|
|
693
693
|
from?: number | undefined;
|
|
694
694
|
to?: number | undefined;
|
|
695
695
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -706,15 +706,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
706
706
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
707
707
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
708
708
|
}>, "strip", zod.ZodTypeAny, {
|
|
709
|
-
length: number;
|
|
710
709
|
from: number;
|
|
711
710
|
to: number;
|
|
712
711
|
start: number;
|
|
712
|
+
length: number;
|
|
713
713
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
714
714
|
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;
|
|
715
715
|
}, {
|
|
716
|
-
length: number;
|
|
717
716
|
start: number;
|
|
717
|
+
length: number;
|
|
718
718
|
from?: number | undefined;
|
|
719
719
|
to?: number | undefined;
|
|
720
720
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -722,33 +722,33 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
722
722
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
723
723
|
}, "strip", zod.ZodTypeAny, {
|
|
724
724
|
x: number | {
|
|
725
|
-
length: number;
|
|
726
725
|
from: number;
|
|
727
726
|
to: number;
|
|
728
727
|
start: number;
|
|
728
|
+
length: number;
|
|
729
729
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
730
730
|
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;
|
|
731
731
|
}[];
|
|
732
732
|
y: number | {
|
|
733
|
-
length: number;
|
|
734
733
|
from: number;
|
|
735
734
|
to: number;
|
|
736
735
|
start: number;
|
|
736
|
+
length: number;
|
|
737
737
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
738
738
|
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;
|
|
739
739
|
}[];
|
|
740
740
|
}, {
|
|
741
741
|
x?: number | {
|
|
742
|
-
length: number;
|
|
743
742
|
start: number;
|
|
743
|
+
length: number;
|
|
744
744
|
from?: number | undefined;
|
|
745
745
|
to?: number | undefined;
|
|
746
746
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
747
747
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
748
748
|
}[] | undefined;
|
|
749
749
|
y?: number | {
|
|
750
|
-
length: number;
|
|
751
750
|
start: number;
|
|
751
|
+
length: number;
|
|
752
752
|
from?: number | undefined;
|
|
753
753
|
to?: number | undefined;
|
|
754
754
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -766,17 +766,17 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
766
766
|
from: zod.ZodNumber;
|
|
767
767
|
to: zod.ZodNumber;
|
|
768
768
|
}>, "strip", zod.ZodTypeAny, {
|
|
769
|
-
length: number;
|
|
770
769
|
from: number;
|
|
771
770
|
to: number;
|
|
772
771
|
start: number;
|
|
772
|
+
length: number;
|
|
773
773
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
774
774
|
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;
|
|
775
775
|
}, {
|
|
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
|
}>, "many">, zod.ZodNumber]>>>;
|
|
@@ -791,17 +791,17 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
791
791
|
from: zod.ZodNumber;
|
|
792
792
|
to: zod.ZodNumber;
|
|
793
793
|
}>, "strip", zod.ZodTypeAny, {
|
|
794
|
-
length: number;
|
|
795
794
|
from: number;
|
|
796
795
|
to: number;
|
|
797
796
|
start: number;
|
|
797
|
+
length: number;
|
|
798
798
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
799
799
|
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;
|
|
800
800
|
}, {
|
|
801
|
-
length: number;
|
|
802
801
|
from: number;
|
|
803
802
|
to: number;
|
|
804
803
|
start: number;
|
|
804
|
+
length: number;
|
|
805
805
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
806
806
|
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;
|
|
807
807
|
}>, "many">, zod.ZodNumber]>>>;
|
|
@@ -818,35 +818,35 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
818
818
|
from: zod.ZodNumber;
|
|
819
819
|
to: zod.ZodNumber;
|
|
820
820
|
}>, "strip", zod.ZodTypeAny, {
|
|
821
|
-
length: number;
|
|
822
821
|
from: number;
|
|
823
822
|
to: number;
|
|
824
823
|
start: number;
|
|
824
|
+
length: number;
|
|
825
825
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
826
826
|
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;
|
|
827
827
|
}, {
|
|
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
|
}>, "many">, zod.ZodNumber]>;
|
|
835
835
|
}, "strip", zod.ZodTypeAny, {
|
|
836
836
|
angle: number | {
|
|
837
|
-
length: number;
|
|
838
837
|
from: number;
|
|
839
838
|
to: number;
|
|
840
839
|
start: number;
|
|
840
|
+
length: number;
|
|
841
841
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
842
842
|
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;
|
|
843
843
|
}[];
|
|
844
844
|
}, {
|
|
845
845
|
angle: number | {
|
|
846
|
-
length: number;
|
|
847
846
|
from: number;
|
|
848
847
|
to: number;
|
|
849
848
|
start: number;
|
|
849
|
+
length: number;
|
|
850
850
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
851
851
|
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;
|
|
852
852
|
}[];
|
|
@@ -854,10 +854,10 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
854
854
|
}, "strip", zod.ZodTypeAny, {
|
|
855
855
|
rotate: {
|
|
856
856
|
angle: number | {
|
|
857
|
-
length: number;
|
|
858
857
|
from: number;
|
|
859
858
|
to: number;
|
|
860
859
|
start: number;
|
|
860
|
+
length: number;
|
|
861
861
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
862
862
|
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;
|
|
863
863
|
}[];
|
|
@@ -865,10 +865,10 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
865
865
|
}, {
|
|
866
866
|
rotate?: {
|
|
867
867
|
angle: number | {
|
|
868
|
-
length: number;
|
|
869
868
|
from: number;
|
|
870
869
|
to: number;
|
|
871
870
|
start: number;
|
|
871
|
+
length: number;
|
|
872
872
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
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
|
}[];
|
|
@@ -886,30 +886,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
886
886
|
out?: string | undefined;
|
|
887
887
|
}>>;
|
|
888
888
|
}, "strip", zod.ZodTypeAny, {
|
|
889
|
-
length: number;
|
|
890
889
|
start: number;
|
|
890
|
+
length: number;
|
|
891
891
|
asset: {
|
|
892
|
-
src: string;
|
|
893
892
|
type: "audio";
|
|
893
|
+
src: string;
|
|
894
894
|
trim?: number | undefined;
|
|
895
895
|
volume?: number | {
|
|
896
|
-
length: number;
|
|
897
896
|
from: number;
|
|
898
897
|
to: number;
|
|
899
898
|
start: number;
|
|
899
|
+
length: number;
|
|
900
900
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
901
901
|
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;
|
|
902
902
|
}[] | undefined;
|
|
903
903
|
} | {
|
|
904
|
-
html: string;
|
|
905
904
|
type: "html";
|
|
905
|
+
html: string;
|
|
906
906
|
css: string;
|
|
907
907
|
width?: number | undefined;
|
|
908
908
|
height?: number | undefined;
|
|
909
909
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
910
910
|
} | {
|
|
911
|
-
src: string;
|
|
912
911
|
type: "image";
|
|
912
|
+
src: string;
|
|
913
913
|
crop?: {
|
|
914
914
|
top?: number | undefined;
|
|
915
915
|
right?: number | undefined;
|
|
@@ -917,8 +917,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
917
917
|
left?: number | undefined;
|
|
918
918
|
} | undefined;
|
|
919
919
|
} | {
|
|
920
|
-
src: string;
|
|
921
920
|
type: "luma";
|
|
921
|
+
src: string;
|
|
922
922
|
} | {
|
|
923
923
|
type: "shape";
|
|
924
924
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -968,14 +968,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
968
968
|
opacity: number;
|
|
969
969
|
} | undefined;
|
|
970
970
|
} | {
|
|
971
|
-
src: string;
|
|
972
971
|
type: "video";
|
|
972
|
+
src: string;
|
|
973
973
|
trim?: number | undefined;
|
|
974
974
|
volume?: number | {
|
|
975
|
-
length: number;
|
|
976
975
|
from: number;
|
|
977
976
|
to: number;
|
|
978
977
|
start: number;
|
|
978
|
+
length: number;
|
|
979
979
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
980
980
|
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;
|
|
981
981
|
}[] | undefined;
|
|
@@ -988,47 +988,47 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
988
988
|
};
|
|
989
989
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
990
990
|
opacity?: 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
|
}[] | undefined;
|
|
998
|
-
fit?: "
|
|
998
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
999
999
|
offset?: {
|
|
1000
1000
|
x: number | {
|
|
1001
|
-
length: number;
|
|
1002
1001
|
from: number;
|
|
1003
1002
|
to: number;
|
|
1004
1003
|
start: number;
|
|
1004
|
+
length: number;
|
|
1005
1005
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1006
1006
|
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;
|
|
1007
1007
|
}[];
|
|
1008
1008
|
y: number | {
|
|
1009
|
-
length: number;
|
|
1010
1009
|
from: number;
|
|
1011
1010
|
to: number;
|
|
1012
1011
|
start: number;
|
|
1012
|
+
length: number;
|
|
1013
1013
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1014
1014
|
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;
|
|
1015
1015
|
}[];
|
|
1016
1016
|
} | undefined;
|
|
1017
1017
|
scale?: number | {
|
|
1018
|
-
length: number;
|
|
1019
1018
|
from: number;
|
|
1020
1019
|
to: number;
|
|
1021
1020
|
start: number;
|
|
1021
|
+
length: number;
|
|
1022
1022
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1023
1023
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1024
1024
|
}[] | undefined;
|
|
1025
1025
|
transform?: {
|
|
1026
1026
|
rotate: {
|
|
1027
1027
|
angle: number | {
|
|
1028
|
-
length: number;
|
|
1029
1028
|
from: number;
|
|
1030
1029
|
to: number;
|
|
1031
1030
|
start: number;
|
|
1031
|
+
length: number;
|
|
1032
1032
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1033
1033
|
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;
|
|
1034
1034
|
}[];
|
|
@@ -1040,30 +1040,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1040
1040
|
out?: string | undefined;
|
|
1041
1041
|
} | undefined;
|
|
1042
1042
|
}, {
|
|
1043
|
-
length: number;
|
|
1044
1043
|
start: number;
|
|
1044
|
+
length: number;
|
|
1045
1045
|
asset: {
|
|
1046
|
-
src: string;
|
|
1047
1046
|
type: "audio";
|
|
1047
|
+
src: string;
|
|
1048
1048
|
trim?: number | undefined;
|
|
1049
1049
|
volume?: number | {
|
|
1050
|
-
length: number;
|
|
1051
1050
|
from: number;
|
|
1052
1051
|
to: number;
|
|
1053
1052
|
start: number;
|
|
1053
|
+
length: number;
|
|
1054
1054
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1055
1055
|
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;
|
|
1056
1056
|
}[] | undefined;
|
|
1057
1057
|
} | {
|
|
1058
|
-
html: string;
|
|
1059
1058
|
type: "html";
|
|
1059
|
+
html: string;
|
|
1060
1060
|
css: string;
|
|
1061
1061
|
width?: number | undefined;
|
|
1062
1062
|
height?: number | undefined;
|
|
1063
1063
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1064
1064
|
} | {
|
|
1065
|
-
src: string;
|
|
1066
1065
|
type: "image";
|
|
1066
|
+
src: string;
|
|
1067
1067
|
crop?: {
|
|
1068
1068
|
top?: number | undefined;
|
|
1069
1069
|
right?: number | undefined;
|
|
@@ -1071,8 +1071,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1071
1071
|
left?: number | undefined;
|
|
1072
1072
|
} | undefined;
|
|
1073
1073
|
} | {
|
|
1074
|
-
src: string;
|
|
1075
1074
|
type: "luma";
|
|
1075
|
+
src: string;
|
|
1076
1076
|
} | {
|
|
1077
1077
|
type: "shape";
|
|
1078
1078
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1122,14 +1122,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1122
1122
|
opacity: number;
|
|
1123
1123
|
} | undefined;
|
|
1124
1124
|
} | {
|
|
1125
|
-
src: string;
|
|
1126
1125
|
type: "video";
|
|
1126
|
+
src: string;
|
|
1127
1127
|
trim?: number | undefined;
|
|
1128
1128
|
volume?: number | {
|
|
1129
|
-
length: number;
|
|
1130
1129
|
from: number;
|
|
1131
1130
|
to: number;
|
|
1132
1131
|
start: number;
|
|
1132
|
+
length: number;
|
|
1133
1133
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1134
1134
|
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;
|
|
1135
1135
|
}[] | undefined;
|
|
@@ -1142,26 +1142,26 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1142
1142
|
};
|
|
1143
1143
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1144
1144
|
opacity?: number | {
|
|
1145
|
-
length: number;
|
|
1146
1145
|
from: number;
|
|
1147
1146
|
to: number;
|
|
1148
1147
|
start: number;
|
|
1148
|
+
length: number;
|
|
1149
1149
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1150
1150
|
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;
|
|
1151
1151
|
}[] | undefined;
|
|
1152
|
-
fit?: "
|
|
1152
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1153
1153
|
offset?: {
|
|
1154
1154
|
x?: number | {
|
|
1155
|
-
length: number;
|
|
1156
1155
|
start: number;
|
|
1156
|
+
length: number;
|
|
1157
1157
|
from?: number | undefined;
|
|
1158
1158
|
to?: number | undefined;
|
|
1159
1159
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1160
1160
|
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;
|
|
1161
1161
|
}[] | undefined;
|
|
1162
1162
|
y?: number | {
|
|
1163
|
-
length: number;
|
|
1164
1163
|
start: number;
|
|
1164
|
+
length: number;
|
|
1165
1165
|
from?: number | undefined;
|
|
1166
1166
|
to?: number | undefined;
|
|
1167
1167
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1169,20 +1169,20 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1169
1169
|
}[] | undefined;
|
|
1170
1170
|
} | undefined;
|
|
1171
1171
|
scale?: number | {
|
|
1172
|
-
length: number;
|
|
1173
1172
|
from: number;
|
|
1174
1173
|
to: number;
|
|
1175
1174
|
start: number;
|
|
1175
|
+
length: number;
|
|
1176
1176
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1177
1177
|
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;
|
|
1178
1178
|
}[] | undefined;
|
|
1179
1179
|
transform?: {
|
|
1180
1180
|
rotate?: {
|
|
1181
1181
|
angle: number | {
|
|
1182
|
-
length: number;
|
|
1183
1182
|
from: number;
|
|
1184
1183
|
to: number;
|
|
1185
1184
|
start: number;
|
|
1185
|
+
length: number;
|
|
1186
1186
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1187
1187
|
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;
|
|
1188
1188
|
}[];
|
|
@@ -1196,30 +1196,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1196
1196
|
}>, "many">;
|
|
1197
1197
|
}, "strip", zod.ZodTypeAny, {
|
|
1198
1198
|
clips: {
|
|
1199
|
-
length: number;
|
|
1200
1199
|
start: number;
|
|
1200
|
+
length: number;
|
|
1201
1201
|
asset: {
|
|
1202
|
-
src: string;
|
|
1203
1202
|
type: "audio";
|
|
1203
|
+
src: string;
|
|
1204
1204
|
trim?: number | undefined;
|
|
1205
1205
|
volume?: number | {
|
|
1206
|
-
length: number;
|
|
1207
1206
|
from: number;
|
|
1208
1207
|
to: number;
|
|
1209
1208
|
start: number;
|
|
1209
|
+
length: number;
|
|
1210
1210
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1211
1211
|
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;
|
|
1212
1212
|
}[] | undefined;
|
|
1213
1213
|
} | {
|
|
1214
|
-
html: string;
|
|
1215
1214
|
type: "html";
|
|
1215
|
+
html: string;
|
|
1216
1216
|
css: string;
|
|
1217
1217
|
width?: number | undefined;
|
|
1218
1218
|
height?: number | undefined;
|
|
1219
1219
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1220
1220
|
} | {
|
|
1221
|
-
src: string;
|
|
1222
1221
|
type: "image";
|
|
1222
|
+
src: string;
|
|
1223
1223
|
crop?: {
|
|
1224
1224
|
top?: number | undefined;
|
|
1225
1225
|
right?: number | undefined;
|
|
@@ -1227,8 +1227,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1227
1227
|
left?: number | undefined;
|
|
1228
1228
|
} | undefined;
|
|
1229
1229
|
} | {
|
|
1230
|
-
src: string;
|
|
1231
1230
|
type: "luma";
|
|
1231
|
+
src: string;
|
|
1232
1232
|
} | {
|
|
1233
1233
|
type: "shape";
|
|
1234
1234
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1278,14 +1278,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1278
1278
|
opacity: number;
|
|
1279
1279
|
} | undefined;
|
|
1280
1280
|
} | {
|
|
1281
|
-
src: string;
|
|
1282
1281
|
type: "video";
|
|
1282
|
+
src: string;
|
|
1283
1283
|
trim?: number | undefined;
|
|
1284
1284
|
volume?: number | {
|
|
1285
|
-
length: number;
|
|
1286
1285
|
from: number;
|
|
1287
1286
|
to: number;
|
|
1288
1287
|
start: number;
|
|
1288
|
+
length: number;
|
|
1289
1289
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1290
1290
|
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;
|
|
1291
1291
|
}[] | undefined;
|
|
@@ -1298,47 +1298,47 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1298
1298
|
};
|
|
1299
1299
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1300
1300
|
opacity?: 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
|
}[] | undefined;
|
|
1308
|
-
fit?: "
|
|
1308
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1309
1309
|
offset?: {
|
|
1310
1310
|
x: number | {
|
|
1311
|
-
length: number;
|
|
1312
1311
|
from: number;
|
|
1313
1312
|
to: number;
|
|
1314
1313
|
start: number;
|
|
1314
|
+
length: number;
|
|
1315
1315
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1316
1316
|
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;
|
|
1317
1317
|
}[];
|
|
1318
1318
|
y: number | {
|
|
1319
|
-
length: number;
|
|
1320
1319
|
from: number;
|
|
1321
1320
|
to: number;
|
|
1322
1321
|
start: number;
|
|
1322
|
+
length: number;
|
|
1323
1323
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1324
1324
|
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;
|
|
1325
1325
|
}[];
|
|
1326
1326
|
} | undefined;
|
|
1327
1327
|
scale?: number | {
|
|
1328
|
-
length: number;
|
|
1329
1328
|
from: number;
|
|
1330
1329
|
to: number;
|
|
1331
1330
|
start: number;
|
|
1331
|
+
length: number;
|
|
1332
1332
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1333
1333
|
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;
|
|
1334
1334
|
}[] | undefined;
|
|
1335
1335
|
transform?: {
|
|
1336
1336
|
rotate: {
|
|
1337
1337
|
angle: number | {
|
|
1338
|
-
length: number;
|
|
1339
1338
|
from: number;
|
|
1340
1339
|
to: number;
|
|
1341
1340
|
start: number;
|
|
1341
|
+
length: number;
|
|
1342
1342
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1343
1343
|
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;
|
|
1344
1344
|
}[];
|
|
@@ -1352,30 +1352,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1352
1352
|
}[];
|
|
1353
1353
|
}, {
|
|
1354
1354
|
clips: {
|
|
1355
|
-
length: number;
|
|
1356
1355
|
start: number;
|
|
1356
|
+
length: number;
|
|
1357
1357
|
asset: {
|
|
1358
|
-
src: string;
|
|
1359
1358
|
type: "audio";
|
|
1359
|
+
src: string;
|
|
1360
1360
|
trim?: number | undefined;
|
|
1361
1361
|
volume?: number | {
|
|
1362
|
-
length: number;
|
|
1363
1362
|
from: number;
|
|
1364
1363
|
to: number;
|
|
1365
1364
|
start: number;
|
|
1365
|
+
length: number;
|
|
1366
1366
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1367
1367
|
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;
|
|
1368
1368
|
}[] | undefined;
|
|
1369
1369
|
} | {
|
|
1370
|
-
html: string;
|
|
1371
1370
|
type: "html";
|
|
1371
|
+
html: string;
|
|
1372
1372
|
css: string;
|
|
1373
1373
|
width?: number | undefined;
|
|
1374
1374
|
height?: number | undefined;
|
|
1375
1375
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1376
1376
|
} | {
|
|
1377
|
-
src: string;
|
|
1378
1377
|
type: "image";
|
|
1378
|
+
src: string;
|
|
1379
1379
|
crop?: {
|
|
1380
1380
|
top?: number | undefined;
|
|
1381
1381
|
right?: number | undefined;
|
|
@@ -1383,8 +1383,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1383
1383
|
left?: number | undefined;
|
|
1384
1384
|
} | undefined;
|
|
1385
1385
|
} | {
|
|
1386
|
-
src: string;
|
|
1387
1386
|
type: "luma";
|
|
1387
|
+
src: string;
|
|
1388
1388
|
} | {
|
|
1389
1389
|
type: "shape";
|
|
1390
1390
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1434,14 +1434,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1434
1434
|
opacity: number;
|
|
1435
1435
|
} | undefined;
|
|
1436
1436
|
} | {
|
|
1437
|
-
src: string;
|
|
1438
1437
|
type: "video";
|
|
1438
|
+
src: string;
|
|
1439
1439
|
trim?: number | undefined;
|
|
1440
1440
|
volume?: number | {
|
|
1441
|
-
length: number;
|
|
1442
1441
|
from: number;
|
|
1443
1442
|
to: number;
|
|
1444
1443
|
start: number;
|
|
1444
|
+
length: number;
|
|
1445
1445
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1446
1446
|
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;
|
|
1447
1447
|
}[] | undefined;
|
|
@@ -1454,26 +1454,26 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1454
1454
|
};
|
|
1455
1455
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1456
1456
|
opacity?: number | {
|
|
1457
|
-
length: number;
|
|
1458
1457
|
from: number;
|
|
1459
1458
|
to: number;
|
|
1460
1459
|
start: number;
|
|
1460
|
+
length: number;
|
|
1461
1461
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1462
1462
|
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;
|
|
1463
1463
|
}[] | undefined;
|
|
1464
|
-
fit?: "
|
|
1464
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1465
1465
|
offset?: {
|
|
1466
1466
|
x?: number | {
|
|
1467
|
-
length: number;
|
|
1468
1467
|
start: number;
|
|
1468
|
+
length: number;
|
|
1469
1469
|
from?: number | undefined;
|
|
1470
1470
|
to?: number | undefined;
|
|
1471
1471
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1472
1472
|
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;
|
|
1473
1473
|
}[] | undefined;
|
|
1474
1474
|
y?: number | {
|
|
1475
|
-
length: number;
|
|
1476
1475
|
start: number;
|
|
1476
|
+
length: number;
|
|
1477
1477
|
from?: number | undefined;
|
|
1478
1478
|
to?: number | undefined;
|
|
1479
1479
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1481,20 +1481,20 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1481
1481
|
}[] | undefined;
|
|
1482
1482
|
} | undefined;
|
|
1483
1483
|
scale?: number | {
|
|
1484
|
-
length: number;
|
|
1485
1484
|
from: number;
|
|
1486
1485
|
to: number;
|
|
1487
1486
|
start: number;
|
|
1487
|
+
length: number;
|
|
1488
1488
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1489
1489
|
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;
|
|
1490
1490
|
}[] | undefined;
|
|
1491
1491
|
transform?: {
|
|
1492
1492
|
rotate?: {
|
|
1493
1493
|
angle: number | {
|
|
1494
|
-
length: number;
|
|
1495
1494
|
from: number;
|
|
1496
1495
|
to: number;
|
|
1497
1496
|
start: number;
|
|
1497
|
+
length: number;
|
|
1498
1498
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1499
1499
|
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;
|
|
1500
1500
|
}[];
|
|
@@ -1510,30 +1510,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1510
1510
|
}, "strip", zod.ZodTypeAny, {
|
|
1511
1511
|
tracks: {
|
|
1512
1512
|
clips: {
|
|
1513
|
-
length: number;
|
|
1514
1513
|
start: number;
|
|
1514
|
+
length: number;
|
|
1515
1515
|
asset: {
|
|
1516
|
-
src: string;
|
|
1517
1516
|
type: "audio";
|
|
1517
|
+
src: string;
|
|
1518
1518
|
trim?: number | undefined;
|
|
1519
1519
|
volume?: number | {
|
|
1520
|
-
length: number;
|
|
1521
1520
|
from: number;
|
|
1522
1521
|
to: number;
|
|
1523
1522
|
start: number;
|
|
1523
|
+
length: number;
|
|
1524
1524
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1525
1525
|
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;
|
|
1526
1526
|
}[] | undefined;
|
|
1527
1527
|
} | {
|
|
1528
|
-
html: string;
|
|
1529
1528
|
type: "html";
|
|
1529
|
+
html: string;
|
|
1530
1530
|
css: string;
|
|
1531
1531
|
width?: number | undefined;
|
|
1532
1532
|
height?: number | undefined;
|
|
1533
1533
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1534
1534
|
} | {
|
|
1535
|
-
src: string;
|
|
1536
1535
|
type: "image";
|
|
1536
|
+
src: string;
|
|
1537
1537
|
crop?: {
|
|
1538
1538
|
top?: number | undefined;
|
|
1539
1539
|
right?: number | undefined;
|
|
@@ -1541,8 +1541,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1541
1541
|
left?: number | undefined;
|
|
1542
1542
|
} | undefined;
|
|
1543
1543
|
} | {
|
|
1544
|
-
src: string;
|
|
1545
1544
|
type: "luma";
|
|
1545
|
+
src: string;
|
|
1546
1546
|
} | {
|
|
1547
1547
|
type: "shape";
|
|
1548
1548
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1592,14 +1592,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1592
1592
|
opacity: number;
|
|
1593
1593
|
} | undefined;
|
|
1594
1594
|
} | {
|
|
1595
|
-
src: string;
|
|
1596
1595
|
type: "video";
|
|
1596
|
+
src: string;
|
|
1597
1597
|
trim?: number | undefined;
|
|
1598
1598
|
volume?: number | {
|
|
1599
|
-
length: number;
|
|
1600
1599
|
from: number;
|
|
1601
1600
|
to: number;
|
|
1602
1601
|
start: number;
|
|
1602
|
+
length: number;
|
|
1603
1603
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1604
1604
|
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;
|
|
1605
1605
|
}[] | undefined;
|
|
@@ -1612,47 +1612,47 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1612
1612
|
};
|
|
1613
1613
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1614
1614
|
opacity?: number | {
|
|
1615
|
-
length: number;
|
|
1616
1615
|
from: number;
|
|
1617
1616
|
to: number;
|
|
1618
1617
|
start: number;
|
|
1618
|
+
length: number;
|
|
1619
1619
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1620
1620
|
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;
|
|
1621
1621
|
}[] | undefined;
|
|
1622
|
-
fit?: "
|
|
1622
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1623
1623
|
offset?: {
|
|
1624
1624
|
x: number | {
|
|
1625
|
-
length: number;
|
|
1626
1625
|
from: number;
|
|
1627
1626
|
to: number;
|
|
1628
1627
|
start: number;
|
|
1628
|
+
length: number;
|
|
1629
1629
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1630
1630
|
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;
|
|
1631
1631
|
}[];
|
|
1632
1632
|
y: number | {
|
|
1633
|
-
length: number;
|
|
1634
1633
|
from: number;
|
|
1635
1634
|
to: number;
|
|
1636
1635
|
start: number;
|
|
1636
|
+
length: number;
|
|
1637
1637
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1638
1638
|
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;
|
|
1639
1639
|
}[];
|
|
1640
1640
|
} | undefined;
|
|
1641
1641
|
scale?: number | {
|
|
1642
|
-
length: number;
|
|
1643
1642
|
from: number;
|
|
1644
1643
|
to: number;
|
|
1645
1644
|
start: number;
|
|
1645
|
+
length: number;
|
|
1646
1646
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1647
1647
|
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;
|
|
1648
1648
|
}[] | undefined;
|
|
1649
1649
|
transform?: {
|
|
1650
1650
|
rotate: {
|
|
1651
1651
|
angle: number | {
|
|
1652
|
-
length: number;
|
|
1653
1652
|
from: number;
|
|
1654
1653
|
to: number;
|
|
1655
1654
|
start: number;
|
|
1655
|
+
length: number;
|
|
1656
1656
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1657
1657
|
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;
|
|
1658
1658
|
}[];
|
|
@@ -1672,30 +1672,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1672
1672
|
}, {
|
|
1673
1673
|
tracks: {
|
|
1674
1674
|
clips: {
|
|
1675
|
-
length: number;
|
|
1676
1675
|
start: number;
|
|
1676
|
+
length: number;
|
|
1677
1677
|
asset: {
|
|
1678
|
-
src: string;
|
|
1679
1678
|
type: "audio";
|
|
1679
|
+
src: string;
|
|
1680
1680
|
trim?: number | undefined;
|
|
1681
1681
|
volume?: number | {
|
|
1682
|
-
length: number;
|
|
1683
1682
|
from: number;
|
|
1684
1683
|
to: number;
|
|
1685
1684
|
start: number;
|
|
1685
|
+
length: number;
|
|
1686
1686
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1687
1687
|
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;
|
|
1688
1688
|
}[] | undefined;
|
|
1689
1689
|
} | {
|
|
1690
|
-
html: string;
|
|
1691
1690
|
type: "html";
|
|
1691
|
+
html: string;
|
|
1692
1692
|
css: string;
|
|
1693
1693
|
width?: number | undefined;
|
|
1694
1694
|
height?: number | undefined;
|
|
1695
1695
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1696
1696
|
} | {
|
|
1697
|
-
src: string;
|
|
1698
1697
|
type: "image";
|
|
1698
|
+
src: string;
|
|
1699
1699
|
crop?: {
|
|
1700
1700
|
top?: number | undefined;
|
|
1701
1701
|
right?: number | undefined;
|
|
@@ -1703,8 +1703,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1703
1703
|
left?: number | undefined;
|
|
1704
1704
|
} | undefined;
|
|
1705
1705
|
} | {
|
|
1706
|
-
src: string;
|
|
1707
1706
|
type: "luma";
|
|
1707
|
+
src: string;
|
|
1708
1708
|
} | {
|
|
1709
1709
|
type: "shape";
|
|
1710
1710
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1754,14 +1754,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1754
1754
|
opacity: number;
|
|
1755
1755
|
} | undefined;
|
|
1756
1756
|
} | {
|
|
1757
|
-
src: string;
|
|
1758
1757
|
type: "video";
|
|
1758
|
+
src: string;
|
|
1759
1759
|
trim?: number | undefined;
|
|
1760
1760
|
volume?: number | {
|
|
1761
|
-
length: number;
|
|
1762
1761
|
from: number;
|
|
1763
1762
|
to: number;
|
|
1764
1763
|
start: number;
|
|
1764
|
+
length: number;
|
|
1765
1765
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1766
1766
|
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;
|
|
1767
1767
|
}[] | undefined;
|
|
@@ -1774,26 +1774,26 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1774
1774
|
};
|
|
1775
1775
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1776
1776
|
opacity?: number | {
|
|
1777
|
-
length: number;
|
|
1778
1777
|
from: number;
|
|
1779
1778
|
to: number;
|
|
1780
1779
|
start: number;
|
|
1780
|
+
length: number;
|
|
1781
1781
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1782
1782
|
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;
|
|
1783
1783
|
}[] | undefined;
|
|
1784
|
-
fit?: "
|
|
1784
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1785
1785
|
offset?: {
|
|
1786
1786
|
x?: number | {
|
|
1787
|
-
length: number;
|
|
1788
1787
|
start: number;
|
|
1788
|
+
length: number;
|
|
1789
1789
|
from?: number | undefined;
|
|
1790
1790
|
to?: number | undefined;
|
|
1791
1791
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1792
1792
|
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;
|
|
1793
1793
|
}[] | undefined;
|
|
1794
1794
|
y?: number | {
|
|
1795
|
-
length: number;
|
|
1796
1795
|
start: number;
|
|
1796
|
+
length: number;
|
|
1797
1797
|
from?: number | undefined;
|
|
1798
1798
|
to?: number | undefined;
|
|
1799
1799
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1801,20 +1801,20 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1801
1801
|
}[] | undefined;
|
|
1802
1802
|
} | undefined;
|
|
1803
1803
|
scale?: number | {
|
|
1804
|
-
length: number;
|
|
1805
1804
|
from: number;
|
|
1806
1805
|
to: number;
|
|
1807
1806
|
start: number;
|
|
1807
|
+
length: number;
|
|
1808
1808
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1809
1809
|
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;
|
|
1810
1810
|
}[] | undefined;
|
|
1811
1811
|
transform?: {
|
|
1812
1812
|
rotate?: {
|
|
1813
1813
|
angle: number | {
|
|
1814
|
-
length: number;
|
|
1815
1814
|
from: number;
|
|
1816
1815
|
to: number;
|
|
1817
1816
|
start: number;
|
|
1817
|
+
length: number;
|
|
1818
1818
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1819
1819
|
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;
|
|
1820
1820
|
}[];
|
|
@@ -1846,18 +1846,18 @@ export declare const OutputSchema: zod.ZodObject<{
|
|
|
1846
1846
|
fps: zod.ZodOptional<zod.ZodNumber>;
|
|
1847
1847
|
format: zod.ZodString;
|
|
1848
1848
|
}, "strip", zod.ZodTypeAny, {
|
|
1849
|
-
format: string;
|
|
1850
1849
|
size: {
|
|
1851
1850
|
width: number;
|
|
1852
1851
|
height: number;
|
|
1853
1852
|
};
|
|
1853
|
+
format: string;
|
|
1854
1854
|
fps?: number | undefined;
|
|
1855
1855
|
}, {
|
|
1856
|
-
format: string;
|
|
1857
1856
|
size: {
|
|
1858
1857
|
width: number;
|
|
1859
1858
|
height: number;
|
|
1860
1859
|
};
|
|
1860
|
+
format: string;
|
|
1861
1861
|
fps?: number | undefined;
|
|
1862
1862
|
}>;
|
|
1863
1863
|
export declare const EditSchema: zod.ZodObject<{
|
|
@@ -2130,15 +2130,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2130
2130
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
2131
2131
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
2132
2132
|
}, "strip", zod.ZodTypeAny, {
|
|
2133
|
-
html: string;
|
|
2134
2133
|
type: "html";
|
|
2134
|
+
html: string;
|
|
2135
2135
|
css: string;
|
|
2136
2136
|
width?: number | undefined;
|
|
2137
2137
|
height?: number | undefined;
|
|
2138
2138
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2139
2139
|
}, {
|
|
2140
|
-
html: string;
|
|
2141
2140
|
type: "html";
|
|
2141
|
+
html: string;
|
|
2142
2142
|
css: string;
|
|
2143
2143
|
width?: number | undefined;
|
|
2144
2144
|
height?: number | undefined;
|
|
@@ -2163,8 +2163,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2163
2163
|
left?: number | undefined;
|
|
2164
2164
|
}>>;
|
|
2165
2165
|
}, "strip", zod.ZodTypeAny, {
|
|
2166
|
-
src: string;
|
|
2167
2166
|
type: "image";
|
|
2167
|
+
src: string;
|
|
2168
2168
|
crop?: {
|
|
2169
2169
|
top?: number | undefined;
|
|
2170
2170
|
right?: number | undefined;
|
|
@@ -2172,8 +2172,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2172
2172
|
left?: number | undefined;
|
|
2173
2173
|
} | undefined;
|
|
2174
2174
|
}, {
|
|
2175
|
-
src: string;
|
|
2176
2175
|
type: "image";
|
|
2176
|
+
src: string;
|
|
2177
2177
|
crop?: {
|
|
2178
2178
|
top?: number | undefined;
|
|
2179
2179
|
right?: number | undefined;
|
|
@@ -2211,29 +2211,29 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2211
2211
|
from: zod.ZodNumber;
|
|
2212
2212
|
to: zod.ZodNumber;
|
|
2213
2213
|
}>, "strip", zod.ZodTypeAny, {
|
|
2214
|
-
length: number;
|
|
2215
2214
|
from: number;
|
|
2216
2215
|
to: number;
|
|
2217
2216
|
start: number;
|
|
2217
|
+
length: number;
|
|
2218
2218
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2219
2219
|
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;
|
|
2220
2220
|
}, {
|
|
2221
|
-
length: number;
|
|
2222
2221
|
from: number;
|
|
2223
2222
|
to: number;
|
|
2224
2223
|
start: number;
|
|
2224
|
+
length: number;
|
|
2225
2225
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2226
2226
|
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;
|
|
2227
2227
|
}>, "many">, zod.ZodNumber]>>;
|
|
2228
2228
|
}, "strip", zod.ZodTypeAny, {
|
|
2229
|
-
src: string;
|
|
2230
2229
|
type: "video";
|
|
2230
|
+
src: string;
|
|
2231
2231
|
trim?: number | undefined;
|
|
2232
2232
|
volume?: number | {
|
|
2233
|
-
length: number;
|
|
2234
2233
|
from: number;
|
|
2235
2234
|
to: number;
|
|
2236
2235
|
start: number;
|
|
2236
|
+
length: number;
|
|
2237
2237
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2238
2238
|
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;
|
|
2239
2239
|
}[] | undefined;
|
|
@@ -2244,14 +2244,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2244
2244
|
left?: number | undefined;
|
|
2245
2245
|
} | undefined;
|
|
2246
2246
|
}, {
|
|
2247
|
-
src: string;
|
|
2248
2247
|
type: "video";
|
|
2248
|
+
src: string;
|
|
2249
2249
|
trim?: number | undefined;
|
|
2250
2250
|
volume?: number | {
|
|
2251
|
-
length: number;
|
|
2252
2251
|
from: number;
|
|
2253
2252
|
to: number;
|
|
2254
2253
|
start: number;
|
|
2254
|
+
length: number;
|
|
2255
2255
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2256
2256
|
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;
|
|
2257
2257
|
}[] | undefined;
|
|
@@ -2265,11 +2265,11 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2265
2265
|
type: zod.ZodLiteral<"luma">;
|
|
2266
2266
|
src: zod.ZodString;
|
|
2267
2267
|
}, "strip", zod.ZodTypeAny, {
|
|
2268
|
-
src: string;
|
|
2269
2268
|
type: "luma";
|
|
2270
|
-
}, {
|
|
2271
2269
|
src: string;
|
|
2270
|
+
}, {
|
|
2272
2271
|
type: "luma";
|
|
2272
|
+
src: string;
|
|
2273
2273
|
}>, zod.ZodObject<{
|
|
2274
2274
|
type: zod.ZodLiteral<"audio">;
|
|
2275
2275
|
src: zod.ZodString;
|
|
@@ -2285,66 +2285,66 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2285
2285
|
from: zod.ZodNumber;
|
|
2286
2286
|
to: zod.ZodNumber;
|
|
2287
2287
|
}>, "strip", zod.ZodTypeAny, {
|
|
2288
|
-
length: number;
|
|
2289
2288
|
from: number;
|
|
2290
2289
|
to: number;
|
|
2291
2290
|
start: number;
|
|
2291
|
+
length: number;
|
|
2292
2292
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2293
2293
|
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;
|
|
2294
2294
|
}, {
|
|
2295
|
-
length: number;
|
|
2296
2295
|
from: number;
|
|
2297
2296
|
to: number;
|
|
2298
2297
|
start: number;
|
|
2298
|
+
length: number;
|
|
2299
2299
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2300
2300
|
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;
|
|
2301
2301
|
}>, "many">, zod.ZodNumber]>>;
|
|
2302
2302
|
}, "strip", zod.ZodTypeAny, {
|
|
2303
|
-
src: string;
|
|
2304
2303
|
type: "audio";
|
|
2304
|
+
src: string;
|
|
2305
2305
|
trim?: number | undefined;
|
|
2306
2306
|
volume?: number | {
|
|
2307
|
-
length: number;
|
|
2308
2307
|
from: number;
|
|
2309
2308
|
to: number;
|
|
2310
2309
|
start: number;
|
|
2310
|
+
length: number;
|
|
2311
2311
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2312
2312
|
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;
|
|
2313
2313
|
}[] | undefined;
|
|
2314
2314
|
}, {
|
|
2315
|
-
src: string;
|
|
2316
2315
|
type: "audio";
|
|
2316
|
+
src: string;
|
|
2317
2317
|
trim?: number | undefined;
|
|
2318
2318
|
volume?: number | {
|
|
2319
|
-
length: number;
|
|
2320
2319
|
from: number;
|
|
2321
2320
|
to: number;
|
|
2322
2321
|
start: number;
|
|
2322
|
+
length: number;
|
|
2323
2323
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2324
2324
|
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;
|
|
2325
2325
|
}[] | undefined;
|
|
2326
2326
|
}>]>, {
|
|
2327
|
-
src: string;
|
|
2328
2327
|
type: "audio";
|
|
2328
|
+
src: string;
|
|
2329
2329
|
trim?: number | undefined;
|
|
2330
2330
|
volume?: number | {
|
|
2331
|
-
length: number;
|
|
2332
2331
|
from: number;
|
|
2333
2332
|
to: number;
|
|
2334
2333
|
start: number;
|
|
2334
|
+
length: number;
|
|
2335
2335
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2336
2336
|
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;
|
|
2337
2337
|
}[] | undefined;
|
|
2338
2338
|
} | {
|
|
2339
|
-
html: string;
|
|
2340
2339
|
type: "html";
|
|
2340
|
+
html: string;
|
|
2341
2341
|
css: string;
|
|
2342
2342
|
width?: number | undefined;
|
|
2343
2343
|
height?: number | undefined;
|
|
2344
2344
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2345
2345
|
} | {
|
|
2346
|
-
src: string;
|
|
2347
2346
|
type: "image";
|
|
2347
|
+
src: string;
|
|
2348
2348
|
crop?: {
|
|
2349
2349
|
top?: number | undefined;
|
|
2350
2350
|
right?: number | undefined;
|
|
@@ -2352,8 +2352,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2352
2352
|
left?: number | undefined;
|
|
2353
2353
|
} | undefined;
|
|
2354
2354
|
} | {
|
|
2355
|
-
src: string;
|
|
2356
2355
|
type: "luma";
|
|
2356
|
+
src: string;
|
|
2357
2357
|
} | {
|
|
2358
2358
|
type: "shape";
|
|
2359
2359
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -2403,14 +2403,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2403
2403
|
opacity: number;
|
|
2404
2404
|
} | undefined;
|
|
2405
2405
|
} | {
|
|
2406
|
-
src: string;
|
|
2407
2406
|
type: "video";
|
|
2407
|
+
src: string;
|
|
2408
2408
|
trim?: number | undefined;
|
|
2409
2409
|
volume?: number | {
|
|
2410
|
-
length: number;
|
|
2411
2410
|
from: number;
|
|
2412
2411
|
to: number;
|
|
2413
2412
|
start: number;
|
|
2413
|
+
length: number;
|
|
2414
2414
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
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;
|
|
@@ -2421,27 +2421,27 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2421
2421
|
left?: number | undefined;
|
|
2422
2422
|
} | undefined;
|
|
2423
2423
|
}, {
|
|
2424
|
-
src: string;
|
|
2425
2424
|
type: "audio";
|
|
2425
|
+
src: string;
|
|
2426
2426
|
trim?: number | undefined;
|
|
2427
2427
|
volume?: number | {
|
|
2428
|
-
length: number;
|
|
2429
2428
|
from: number;
|
|
2430
2429
|
to: number;
|
|
2431
2430
|
start: number;
|
|
2431
|
+
length: number;
|
|
2432
2432
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2433
2433
|
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;
|
|
2434
2434
|
}[] | undefined;
|
|
2435
2435
|
} | {
|
|
2436
|
-
html: string;
|
|
2437
2436
|
type: "html";
|
|
2437
|
+
html: string;
|
|
2438
2438
|
css: string;
|
|
2439
2439
|
width?: number | undefined;
|
|
2440
2440
|
height?: number | undefined;
|
|
2441
2441
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2442
2442
|
} | {
|
|
2443
|
-
src: string;
|
|
2444
2443
|
type: "image";
|
|
2444
|
+
src: string;
|
|
2445
2445
|
crop?: {
|
|
2446
2446
|
top?: number | undefined;
|
|
2447
2447
|
right?: number | undefined;
|
|
@@ -2449,8 +2449,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2449
2449
|
left?: number | undefined;
|
|
2450
2450
|
} | undefined;
|
|
2451
2451
|
} | {
|
|
2452
|
-
src: string;
|
|
2453
2452
|
type: "luma";
|
|
2453
|
+
src: string;
|
|
2454
2454
|
} | {
|
|
2455
2455
|
type: "shape";
|
|
2456
2456
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -2500,14 +2500,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2500
2500
|
opacity: number;
|
|
2501
2501
|
} | undefined;
|
|
2502
2502
|
} | {
|
|
2503
|
-
src: string;
|
|
2504
2503
|
type: "video";
|
|
2504
|
+
src: string;
|
|
2505
2505
|
trim?: number | undefined;
|
|
2506
2506
|
volume?: number | {
|
|
2507
|
-
length: number;
|
|
2508
2507
|
from: number;
|
|
2509
2508
|
to: number;
|
|
2510
2509
|
start: number;
|
|
2510
|
+
length: number;
|
|
2511
2511
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2512
2512
|
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;
|
|
2513
2513
|
}[] | undefined;
|
|
@@ -2534,15 +2534,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2534
2534
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
2535
2535
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
2536
2536
|
}>, "strip", zod.ZodTypeAny, {
|
|
2537
|
-
length: number;
|
|
2538
2537
|
from: number;
|
|
2539
2538
|
to: number;
|
|
2540
2539
|
start: number;
|
|
2540
|
+
length: number;
|
|
2541
2541
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2542
2542
|
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;
|
|
2543
2543
|
}, {
|
|
2544
|
-
length: number;
|
|
2545
2544
|
start: number;
|
|
2545
|
+
length: number;
|
|
2546
2546
|
from?: number | undefined;
|
|
2547
2547
|
to?: number | undefined;
|
|
2548
2548
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -2559,15 +2559,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2559
2559
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
2560
2560
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
2561
2561
|
}>, "strip", zod.ZodTypeAny, {
|
|
2562
|
-
length: number;
|
|
2563
2562
|
from: number;
|
|
2564
2563
|
to: number;
|
|
2565
2564
|
start: number;
|
|
2565
|
+
length: number;
|
|
2566
2566
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2567
2567
|
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;
|
|
2568
2568
|
}, {
|
|
2569
|
-
length: number;
|
|
2570
2569
|
start: number;
|
|
2570
|
+
length: number;
|
|
2571
2571
|
from?: number | undefined;
|
|
2572
2572
|
to?: number | undefined;
|
|
2573
2573
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -2575,33 +2575,33 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2575
2575
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
2576
2576
|
}, "strip", zod.ZodTypeAny, {
|
|
2577
2577
|
x: number | {
|
|
2578
|
-
length: number;
|
|
2579
2578
|
from: number;
|
|
2580
2579
|
to: number;
|
|
2581
2580
|
start: number;
|
|
2581
|
+
length: number;
|
|
2582
2582
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2583
2583
|
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;
|
|
2584
2584
|
}[];
|
|
2585
2585
|
y: number | {
|
|
2586
|
-
length: number;
|
|
2587
2586
|
from: number;
|
|
2588
2587
|
to: number;
|
|
2589
2588
|
start: number;
|
|
2589
|
+
length: number;
|
|
2590
2590
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2591
2591
|
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;
|
|
2592
2592
|
}[];
|
|
2593
2593
|
}, {
|
|
2594
2594
|
x?: number | {
|
|
2595
|
-
length: number;
|
|
2596
2595
|
start: number;
|
|
2596
|
+
length: number;
|
|
2597
2597
|
from?: number | undefined;
|
|
2598
2598
|
to?: number | undefined;
|
|
2599
2599
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2600
2600
|
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;
|
|
2601
2601
|
}[] | undefined;
|
|
2602
2602
|
y?: number | {
|
|
2603
|
-
length: number;
|
|
2604
2603
|
start: number;
|
|
2604
|
+
length: number;
|
|
2605
2605
|
from?: number | undefined;
|
|
2606
2606
|
to?: number | undefined;
|
|
2607
2607
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -2619,17 +2619,17 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2619
2619
|
from: zod.ZodNumber;
|
|
2620
2620
|
to: zod.ZodNumber;
|
|
2621
2621
|
}>, "strip", zod.ZodTypeAny, {
|
|
2622
|
-
length: number;
|
|
2623
2622
|
from: number;
|
|
2624
2623
|
to: number;
|
|
2625
2624
|
start: number;
|
|
2625
|
+
length: number;
|
|
2626
2626
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2627
2627
|
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;
|
|
2628
2628
|
}, {
|
|
2629
|
-
length: number;
|
|
2630
2629
|
from: number;
|
|
2631
2630
|
to: number;
|
|
2632
2631
|
start: number;
|
|
2632
|
+
length: number;
|
|
2633
2633
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2634
2634
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
2635
2635
|
}>, "many">, zod.ZodNumber]>>>;
|
|
@@ -2644,17 +2644,17 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2644
2644
|
from: zod.ZodNumber;
|
|
2645
2645
|
to: zod.ZodNumber;
|
|
2646
2646
|
}>, "strip", zod.ZodTypeAny, {
|
|
2647
|
-
length: number;
|
|
2648
2647
|
from: number;
|
|
2649
2648
|
to: number;
|
|
2650
2649
|
start: number;
|
|
2650
|
+
length: number;
|
|
2651
2651
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2652
2652
|
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;
|
|
2653
2653
|
}, {
|
|
2654
|
-
length: number;
|
|
2655
2654
|
from: number;
|
|
2656
2655
|
to: number;
|
|
2657
2656
|
start: number;
|
|
2657
|
+
length: number;
|
|
2658
2658
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2659
2659
|
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;
|
|
2660
2660
|
}>, "many">, zod.ZodNumber]>>>;
|
|
@@ -2671,35 +2671,35 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2671
2671
|
from: zod.ZodNumber;
|
|
2672
2672
|
to: zod.ZodNumber;
|
|
2673
2673
|
}>, "strip", zod.ZodTypeAny, {
|
|
2674
|
-
length: number;
|
|
2675
2674
|
from: number;
|
|
2676
2675
|
to: number;
|
|
2677
2676
|
start: number;
|
|
2677
|
+
length: number;
|
|
2678
2678
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2679
2679
|
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;
|
|
2680
2680
|
}, {
|
|
2681
|
-
length: number;
|
|
2682
2681
|
from: number;
|
|
2683
2682
|
to: number;
|
|
2684
2683
|
start: number;
|
|
2684
|
+
length: number;
|
|
2685
2685
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2686
2686
|
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;
|
|
2687
2687
|
}>, "many">, zod.ZodNumber]>;
|
|
2688
2688
|
}, "strip", zod.ZodTypeAny, {
|
|
2689
2689
|
angle: number | {
|
|
2690
|
-
length: number;
|
|
2691
2690
|
from: number;
|
|
2692
2691
|
to: number;
|
|
2693
2692
|
start: number;
|
|
2693
|
+
length: number;
|
|
2694
2694
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2695
2695
|
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;
|
|
2696
2696
|
}[];
|
|
2697
2697
|
}, {
|
|
2698
2698
|
angle: number | {
|
|
2699
|
-
length: number;
|
|
2700
2699
|
from: number;
|
|
2701
2700
|
to: number;
|
|
2702
2701
|
start: number;
|
|
2702
|
+
length: number;
|
|
2703
2703
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2704
2704
|
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;
|
|
2705
2705
|
}[];
|
|
@@ -2707,10 +2707,10 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2707
2707
|
}, "strip", zod.ZodTypeAny, {
|
|
2708
2708
|
rotate: {
|
|
2709
2709
|
angle: number | {
|
|
2710
|
-
length: number;
|
|
2711
2710
|
from: number;
|
|
2712
2711
|
to: number;
|
|
2713
2712
|
start: number;
|
|
2713
|
+
length: number;
|
|
2714
2714
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2715
2715
|
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;
|
|
2716
2716
|
}[];
|
|
@@ -2718,10 +2718,10 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2718
2718
|
}, {
|
|
2719
2719
|
rotate?: {
|
|
2720
2720
|
angle: number | {
|
|
2721
|
-
length: number;
|
|
2722
2721
|
from: number;
|
|
2723
2722
|
to: number;
|
|
2724
2723
|
start: number;
|
|
2724
|
+
length: number;
|
|
2725
2725
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
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
|
}[];
|
|
@@ -2739,30 +2739,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2739
2739
|
out?: string | undefined;
|
|
2740
2740
|
}>>;
|
|
2741
2741
|
}, "strip", zod.ZodTypeAny, {
|
|
2742
|
-
length: number;
|
|
2743
2742
|
start: number;
|
|
2743
|
+
length: number;
|
|
2744
2744
|
asset: {
|
|
2745
|
-
src: string;
|
|
2746
2745
|
type: "audio";
|
|
2746
|
+
src: string;
|
|
2747
2747
|
trim?: number | undefined;
|
|
2748
2748
|
volume?: number | {
|
|
2749
|
-
length: number;
|
|
2750
2749
|
from: number;
|
|
2751
2750
|
to: number;
|
|
2752
2751
|
start: number;
|
|
2752
|
+
length: number;
|
|
2753
2753
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2754
2754
|
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;
|
|
2755
2755
|
}[] | undefined;
|
|
2756
2756
|
} | {
|
|
2757
|
-
html: string;
|
|
2758
2757
|
type: "html";
|
|
2758
|
+
html: string;
|
|
2759
2759
|
css: string;
|
|
2760
2760
|
width?: number | undefined;
|
|
2761
2761
|
height?: number | undefined;
|
|
2762
2762
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2763
2763
|
} | {
|
|
2764
|
-
src: string;
|
|
2765
2764
|
type: "image";
|
|
2765
|
+
src: string;
|
|
2766
2766
|
crop?: {
|
|
2767
2767
|
top?: number | undefined;
|
|
2768
2768
|
right?: number | undefined;
|
|
@@ -2770,8 +2770,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2770
2770
|
left?: number | undefined;
|
|
2771
2771
|
} | undefined;
|
|
2772
2772
|
} | {
|
|
2773
|
-
src: string;
|
|
2774
2773
|
type: "luma";
|
|
2774
|
+
src: string;
|
|
2775
2775
|
} | {
|
|
2776
2776
|
type: "shape";
|
|
2777
2777
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -2821,14 +2821,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2821
2821
|
opacity: number;
|
|
2822
2822
|
} | undefined;
|
|
2823
2823
|
} | {
|
|
2824
|
-
src: string;
|
|
2825
2824
|
type: "video";
|
|
2825
|
+
src: string;
|
|
2826
2826
|
trim?: number | undefined;
|
|
2827
2827
|
volume?: number | {
|
|
2828
|
-
length: number;
|
|
2829
2828
|
from: number;
|
|
2830
2829
|
to: number;
|
|
2831
2830
|
start: number;
|
|
2831
|
+
length: number;
|
|
2832
2832
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2833
2833
|
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;
|
|
2834
2834
|
}[] | undefined;
|
|
@@ -2841,47 +2841,47 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2841
2841
|
};
|
|
2842
2842
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2843
2843
|
opacity?: number | {
|
|
2844
|
-
length: number;
|
|
2845
2844
|
from: number;
|
|
2846
2845
|
to: number;
|
|
2847
2846
|
start: number;
|
|
2847
|
+
length: number;
|
|
2848
2848
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2849
2849
|
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;
|
|
2850
2850
|
}[] | undefined;
|
|
2851
|
-
fit?: "
|
|
2851
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
2852
2852
|
offset?: {
|
|
2853
2853
|
x: number | {
|
|
2854
|
-
length: number;
|
|
2855
2854
|
from: number;
|
|
2856
2855
|
to: number;
|
|
2857
2856
|
start: number;
|
|
2857
|
+
length: number;
|
|
2858
2858
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2859
2859
|
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;
|
|
2860
2860
|
}[];
|
|
2861
2861
|
y: number | {
|
|
2862
|
-
length: number;
|
|
2863
2862
|
from: number;
|
|
2864
2863
|
to: number;
|
|
2865
2864
|
start: number;
|
|
2865
|
+
length: number;
|
|
2866
2866
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2867
2867
|
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;
|
|
2868
2868
|
}[];
|
|
2869
2869
|
} | undefined;
|
|
2870
2870
|
scale?: number | {
|
|
2871
|
-
length: number;
|
|
2872
2871
|
from: number;
|
|
2873
2872
|
to: number;
|
|
2874
2873
|
start: number;
|
|
2874
|
+
length: number;
|
|
2875
2875
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2876
2876
|
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;
|
|
2877
2877
|
}[] | undefined;
|
|
2878
2878
|
transform?: {
|
|
2879
2879
|
rotate: {
|
|
2880
2880
|
angle: number | {
|
|
2881
|
-
length: number;
|
|
2882
2881
|
from: number;
|
|
2883
2882
|
to: number;
|
|
2884
2883
|
start: number;
|
|
2884
|
+
length: number;
|
|
2885
2885
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2886
2886
|
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;
|
|
2887
2887
|
}[];
|
|
@@ -2893,30 +2893,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2893
2893
|
out?: string | undefined;
|
|
2894
2894
|
} | undefined;
|
|
2895
2895
|
}, {
|
|
2896
|
-
length: number;
|
|
2897
2896
|
start: number;
|
|
2897
|
+
length: number;
|
|
2898
2898
|
asset: {
|
|
2899
|
-
src: string;
|
|
2900
2899
|
type: "audio";
|
|
2900
|
+
src: string;
|
|
2901
2901
|
trim?: number | undefined;
|
|
2902
2902
|
volume?: number | {
|
|
2903
|
-
length: number;
|
|
2904
2903
|
from: number;
|
|
2905
2904
|
to: number;
|
|
2906
2905
|
start: number;
|
|
2906
|
+
length: number;
|
|
2907
2907
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2908
2908
|
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;
|
|
2909
2909
|
}[] | undefined;
|
|
2910
2910
|
} | {
|
|
2911
|
-
html: string;
|
|
2912
2911
|
type: "html";
|
|
2912
|
+
html: string;
|
|
2913
2913
|
css: string;
|
|
2914
2914
|
width?: number | undefined;
|
|
2915
2915
|
height?: number | undefined;
|
|
2916
2916
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2917
2917
|
} | {
|
|
2918
|
-
src: string;
|
|
2919
2918
|
type: "image";
|
|
2919
|
+
src: string;
|
|
2920
2920
|
crop?: {
|
|
2921
2921
|
top?: number | undefined;
|
|
2922
2922
|
right?: number | undefined;
|
|
@@ -2924,8 +2924,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2924
2924
|
left?: number | undefined;
|
|
2925
2925
|
} | undefined;
|
|
2926
2926
|
} | {
|
|
2927
|
-
src: string;
|
|
2928
2927
|
type: "luma";
|
|
2928
|
+
src: string;
|
|
2929
2929
|
} | {
|
|
2930
2930
|
type: "shape";
|
|
2931
2931
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -2975,14 +2975,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2975
2975
|
opacity: number;
|
|
2976
2976
|
} | undefined;
|
|
2977
2977
|
} | {
|
|
2978
|
-
src: string;
|
|
2979
2978
|
type: "video";
|
|
2979
|
+
src: string;
|
|
2980
2980
|
trim?: number | undefined;
|
|
2981
2981
|
volume?: number | {
|
|
2982
|
-
length: number;
|
|
2983
2982
|
from: number;
|
|
2984
2983
|
to: number;
|
|
2985
2984
|
start: number;
|
|
2985
|
+
length: number;
|
|
2986
2986
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2987
2987
|
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;
|
|
2988
2988
|
}[] | undefined;
|
|
@@ -2995,26 +2995,26 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2995
2995
|
};
|
|
2996
2996
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2997
2997
|
opacity?: number | {
|
|
2998
|
-
length: number;
|
|
2999
2998
|
from: number;
|
|
3000
2999
|
to: number;
|
|
3001
3000
|
start: number;
|
|
3001
|
+
length: number;
|
|
3002
3002
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3003
3003
|
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;
|
|
3004
3004
|
}[] | undefined;
|
|
3005
|
-
fit?: "
|
|
3005
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3006
3006
|
offset?: {
|
|
3007
3007
|
x?: number | {
|
|
3008
|
-
length: number;
|
|
3009
3008
|
start: number;
|
|
3009
|
+
length: number;
|
|
3010
3010
|
from?: number | undefined;
|
|
3011
3011
|
to?: number | undefined;
|
|
3012
3012
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3013
3013
|
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;
|
|
3014
3014
|
}[] | undefined;
|
|
3015
3015
|
y?: number | {
|
|
3016
|
-
length: number;
|
|
3017
3016
|
start: number;
|
|
3017
|
+
length: number;
|
|
3018
3018
|
from?: number | undefined;
|
|
3019
3019
|
to?: number | undefined;
|
|
3020
3020
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -3022,20 +3022,20 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3022
3022
|
}[] | undefined;
|
|
3023
3023
|
} | undefined;
|
|
3024
3024
|
scale?: number | {
|
|
3025
|
-
length: number;
|
|
3026
3025
|
from: number;
|
|
3027
3026
|
to: number;
|
|
3028
3027
|
start: number;
|
|
3028
|
+
length: number;
|
|
3029
3029
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3030
3030
|
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;
|
|
3031
3031
|
}[] | undefined;
|
|
3032
3032
|
transform?: {
|
|
3033
3033
|
rotate?: {
|
|
3034
3034
|
angle: number | {
|
|
3035
|
-
length: number;
|
|
3036
3035
|
from: number;
|
|
3037
3036
|
to: number;
|
|
3038
3037
|
start: number;
|
|
3038
|
+
length: number;
|
|
3039
3039
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3040
3040
|
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;
|
|
3041
3041
|
}[];
|
|
@@ -3049,30 +3049,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3049
3049
|
}>, "many">;
|
|
3050
3050
|
}, "strip", zod.ZodTypeAny, {
|
|
3051
3051
|
clips: {
|
|
3052
|
-
length: number;
|
|
3053
3052
|
start: number;
|
|
3053
|
+
length: number;
|
|
3054
3054
|
asset: {
|
|
3055
|
-
src: string;
|
|
3056
3055
|
type: "audio";
|
|
3056
|
+
src: string;
|
|
3057
3057
|
trim?: number | undefined;
|
|
3058
3058
|
volume?: number | {
|
|
3059
|
-
length: number;
|
|
3060
3059
|
from: number;
|
|
3061
3060
|
to: number;
|
|
3062
3061
|
start: number;
|
|
3062
|
+
length: number;
|
|
3063
3063
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3064
3064
|
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;
|
|
3065
3065
|
}[] | undefined;
|
|
3066
3066
|
} | {
|
|
3067
|
-
html: string;
|
|
3068
3067
|
type: "html";
|
|
3068
|
+
html: string;
|
|
3069
3069
|
css: string;
|
|
3070
3070
|
width?: number | undefined;
|
|
3071
3071
|
height?: number | undefined;
|
|
3072
3072
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3073
3073
|
} | {
|
|
3074
|
-
src: string;
|
|
3075
3074
|
type: "image";
|
|
3075
|
+
src: string;
|
|
3076
3076
|
crop?: {
|
|
3077
3077
|
top?: number | undefined;
|
|
3078
3078
|
right?: number | undefined;
|
|
@@ -3080,8 +3080,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3080
3080
|
left?: number | undefined;
|
|
3081
3081
|
} | undefined;
|
|
3082
3082
|
} | {
|
|
3083
|
-
src: string;
|
|
3084
3083
|
type: "luma";
|
|
3084
|
+
src: string;
|
|
3085
3085
|
} | {
|
|
3086
3086
|
type: "shape";
|
|
3087
3087
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3131,14 +3131,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3131
3131
|
opacity: number;
|
|
3132
3132
|
} | undefined;
|
|
3133
3133
|
} | {
|
|
3134
|
-
src: string;
|
|
3135
3134
|
type: "video";
|
|
3135
|
+
src: string;
|
|
3136
3136
|
trim?: number | undefined;
|
|
3137
3137
|
volume?: number | {
|
|
3138
|
-
length: number;
|
|
3139
3138
|
from: number;
|
|
3140
3139
|
to: number;
|
|
3141
3140
|
start: number;
|
|
3141
|
+
length: number;
|
|
3142
3142
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3143
3143
|
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;
|
|
3144
3144
|
}[] | undefined;
|
|
@@ -3151,47 +3151,47 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3151
3151
|
};
|
|
3152
3152
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3153
3153
|
opacity?: number | {
|
|
3154
|
-
length: number;
|
|
3155
3154
|
from: number;
|
|
3156
3155
|
to: number;
|
|
3157
3156
|
start: number;
|
|
3157
|
+
length: number;
|
|
3158
3158
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3159
3159
|
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;
|
|
3160
3160
|
}[] | undefined;
|
|
3161
|
-
fit?: "
|
|
3161
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3162
3162
|
offset?: {
|
|
3163
3163
|
x: number | {
|
|
3164
|
-
length: number;
|
|
3165
3164
|
from: number;
|
|
3166
3165
|
to: number;
|
|
3167
3166
|
start: number;
|
|
3167
|
+
length: number;
|
|
3168
3168
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3169
3169
|
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;
|
|
3170
3170
|
}[];
|
|
3171
3171
|
y: number | {
|
|
3172
|
-
length: number;
|
|
3173
3172
|
from: number;
|
|
3174
3173
|
to: number;
|
|
3175
3174
|
start: number;
|
|
3175
|
+
length: number;
|
|
3176
3176
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3177
3177
|
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;
|
|
3178
3178
|
}[];
|
|
3179
3179
|
} | undefined;
|
|
3180
3180
|
scale?: number | {
|
|
3181
|
-
length: number;
|
|
3182
3181
|
from: number;
|
|
3183
3182
|
to: number;
|
|
3184
3183
|
start: number;
|
|
3184
|
+
length: number;
|
|
3185
3185
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3186
3186
|
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;
|
|
3187
3187
|
}[] | undefined;
|
|
3188
3188
|
transform?: {
|
|
3189
3189
|
rotate: {
|
|
3190
3190
|
angle: number | {
|
|
3191
|
-
length: number;
|
|
3192
3191
|
from: number;
|
|
3193
3192
|
to: number;
|
|
3194
3193
|
start: number;
|
|
3194
|
+
length: number;
|
|
3195
3195
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3196
3196
|
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;
|
|
3197
3197
|
}[];
|
|
@@ -3205,30 +3205,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3205
3205
|
}[];
|
|
3206
3206
|
}, {
|
|
3207
3207
|
clips: {
|
|
3208
|
-
length: number;
|
|
3209
3208
|
start: number;
|
|
3209
|
+
length: number;
|
|
3210
3210
|
asset: {
|
|
3211
|
-
src: string;
|
|
3212
3211
|
type: "audio";
|
|
3212
|
+
src: string;
|
|
3213
3213
|
trim?: number | undefined;
|
|
3214
3214
|
volume?: number | {
|
|
3215
|
-
length: number;
|
|
3216
3215
|
from: number;
|
|
3217
3216
|
to: number;
|
|
3218
3217
|
start: number;
|
|
3218
|
+
length: number;
|
|
3219
3219
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3220
3220
|
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;
|
|
3221
3221
|
}[] | undefined;
|
|
3222
3222
|
} | {
|
|
3223
|
-
html: string;
|
|
3224
3223
|
type: "html";
|
|
3224
|
+
html: string;
|
|
3225
3225
|
css: string;
|
|
3226
3226
|
width?: number | undefined;
|
|
3227
3227
|
height?: number | undefined;
|
|
3228
3228
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3229
3229
|
} | {
|
|
3230
|
-
src: string;
|
|
3231
3230
|
type: "image";
|
|
3231
|
+
src: string;
|
|
3232
3232
|
crop?: {
|
|
3233
3233
|
top?: number | undefined;
|
|
3234
3234
|
right?: number | undefined;
|
|
@@ -3236,8 +3236,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3236
3236
|
left?: number | undefined;
|
|
3237
3237
|
} | undefined;
|
|
3238
3238
|
} | {
|
|
3239
|
-
src: string;
|
|
3240
3239
|
type: "luma";
|
|
3240
|
+
src: string;
|
|
3241
3241
|
} | {
|
|
3242
3242
|
type: "shape";
|
|
3243
3243
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3287,14 +3287,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3287
3287
|
opacity: number;
|
|
3288
3288
|
} | undefined;
|
|
3289
3289
|
} | {
|
|
3290
|
-
src: string;
|
|
3291
3290
|
type: "video";
|
|
3291
|
+
src: string;
|
|
3292
3292
|
trim?: number | undefined;
|
|
3293
3293
|
volume?: number | {
|
|
3294
|
-
length: number;
|
|
3295
3294
|
from: number;
|
|
3296
3295
|
to: number;
|
|
3297
3296
|
start: number;
|
|
3297
|
+
length: number;
|
|
3298
3298
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3299
3299
|
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;
|
|
3300
3300
|
}[] | undefined;
|
|
@@ -3307,26 +3307,26 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3307
3307
|
};
|
|
3308
3308
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3309
3309
|
opacity?: number | {
|
|
3310
|
-
length: number;
|
|
3311
3310
|
from: number;
|
|
3312
3311
|
to: number;
|
|
3313
3312
|
start: number;
|
|
3313
|
+
length: number;
|
|
3314
3314
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3315
3315
|
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;
|
|
3316
3316
|
}[] | undefined;
|
|
3317
|
-
fit?: "
|
|
3317
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3318
3318
|
offset?: {
|
|
3319
3319
|
x?: number | {
|
|
3320
|
-
length: number;
|
|
3321
3320
|
start: number;
|
|
3321
|
+
length: number;
|
|
3322
3322
|
from?: number | undefined;
|
|
3323
3323
|
to?: number | undefined;
|
|
3324
3324
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3325
3325
|
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;
|
|
3326
3326
|
}[] | undefined;
|
|
3327
3327
|
y?: number | {
|
|
3328
|
-
length: number;
|
|
3329
3328
|
start: number;
|
|
3329
|
+
length: number;
|
|
3330
3330
|
from?: number | undefined;
|
|
3331
3331
|
to?: number | undefined;
|
|
3332
3332
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -3334,20 +3334,20 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3334
3334
|
}[] | undefined;
|
|
3335
3335
|
} | undefined;
|
|
3336
3336
|
scale?: number | {
|
|
3337
|
-
length: number;
|
|
3338
3337
|
from: number;
|
|
3339
3338
|
to: number;
|
|
3340
3339
|
start: number;
|
|
3340
|
+
length: number;
|
|
3341
3341
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3342
3342
|
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;
|
|
3343
3343
|
}[] | undefined;
|
|
3344
3344
|
transform?: {
|
|
3345
3345
|
rotate?: {
|
|
3346
3346
|
angle: number | {
|
|
3347
|
-
length: number;
|
|
3348
3347
|
from: number;
|
|
3349
3348
|
to: number;
|
|
3350
3349
|
start: number;
|
|
3350
|
+
length: number;
|
|
3351
3351
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3352
3352
|
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;
|
|
3353
3353
|
}[];
|
|
@@ -3363,30 +3363,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3363
3363
|
}, "strip", zod.ZodTypeAny, {
|
|
3364
3364
|
tracks: {
|
|
3365
3365
|
clips: {
|
|
3366
|
-
length: number;
|
|
3367
3366
|
start: number;
|
|
3367
|
+
length: number;
|
|
3368
3368
|
asset: {
|
|
3369
|
-
src: string;
|
|
3370
3369
|
type: "audio";
|
|
3370
|
+
src: string;
|
|
3371
3371
|
trim?: number | undefined;
|
|
3372
3372
|
volume?: number | {
|
|
3373
|
-
length: number;
|
|
3374
3373
|
from: number;
|
|
3375
3374
|
to: number;
|
|
3376
3375
|
start: number;
|
|
3376
|
+
length: number;
|
|
3377
3377
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3378
3378
|
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;
|
|
3379
3379
|
}[] | undefined;
|
|
3380
3380
|
} | {
|
|
3381
|
-
html: string;
|
|
3382
3381
|
type: "html";
|
|
3382
|
+
html: string;
|
|
3383
3383
|
css: string;
|
|
3384
3384
|
width?: number | undefined;
|
|
3385
3385
|
height?: number | undefined;
|
|
3386
3386
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3387
3387
|
} | {
|
|
3388
|
-
src: string;
|
|
3389
3388
|
type: "image";
|
|
3389
|
+
src: string;
|
|
3390
3390
|
crop?: {
|
|
3391
3391
|
top?: number | undefined;
|
|
3392
3392
|
right?: number | undefined;
|
|
@@ -3394,8 +3394,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3394
3394
|
left?: number | undefined;
|
|
3395
3395
|
} | undefined;
|
|
3396
3396
|
} | {
|
|
3397
|
-
src: string;
|
|
3398
3397
|
type: "luma";
|
|
3398
|
+
src: string;
|
|
3399
3399
|
} | {
|
|
3400
3400
|
type: "shape";
|
|
3401
3401
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3445,14 +3445,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3445
3445
|
opacity: number;
|
|
3446
3446
|
} | undefined;
|
|
3447
3447
|
} | {
|
|
3448
|
-
src: string;
|
|
3449
3448
|
type: "video";
|
|
3449
|
+
src: string;
|
|
3450
3450
|
trim?: number | undefined;
|
|
3451
3451
|
volume?: number | {
|
|
3452
|
-
length: number;
|
|
3453
3452
|
from: number;
|
|
3454
3453
|
to: number;
|
|
3455
3454
|
start: number;
|
|
3455
|
+
length: number;
|
|
3456
3456
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3457
3457
|
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;
|
|
3458
3458
|
}[] | undefined;
|
|
@@ -3465,47 +3465,47 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3465
3465
|
};
|
|
3466
3466
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3467
3467
|
opacity?: number | {
|
|
3468
|
-
length: number;
|
|
3469
3468
|
from: number;
|
|
3470
3469
|
to: number;
|
|
3471
3470
|
start: number;
|
|
3471
|
+
length: number;
|
|
3472
3472
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3473
3473
|
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;
|
|
3474
3474
|
}[] | undefined;
|
|
3475
|
-
fit?: "
|
|
3475
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3476
3476
|
offset?: {
|
|
3477
3477
|
x: number | {
|
|
3478
|
-
length: number;
|
|
3479
3478
|
from: number;
|
|
3480
3479
|
to: number;
|
|
3481
3480
|
start: number;
|
|
3481
|
+
length: number;
|
|
3482
3482
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3483
3483
|
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;
|
|
3484
3484
|
}[];
|
|
3485
3485
|
y: number | {
|
|
3486
|
-
length: number;
|
|
3487
3486
|
from: number;
|
|
3488
3487
|
to: number;
|
|
3489
3488
|
start: number;
|
|
3489
|
+
length: number;
|
|
3490
3490
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3491
3491
|
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;
|
|
3492
3492
|
}[];
|
|
3493
3493
|
} | undefined;
|
|
3494
3494
|
scale?: number | {
|
|
3495
|
-
length: number;
|
|
3496
3495
|
from: number;
|
|
3497
3496
|
to: number;
|
|
3498
3497
|
start: number;
|
|
3498
|
+
length: number;
|
|
3499
3499
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3500
3500
|
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;
|
|
3501
3501
|
}[] | undefined;
|
|
3502
3502
|
transform?: {
|
|
3503
3503
|
rotate: {
|
|
3504
3504
|
angle: number | {
|
|
3505
|
-
length: number;
|
|
3506
3505
|
from: number;
|
|
3507
3506
|
to: number;
|
|
3508
3507
|
start: number;
|
|
3508
|
+
length: number;
|
|
3509
3509
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3510
3510
|
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;
|
|
3511
3511
|
}[];
|
|
@@ -3525,30 +3525,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3525
3525
|
}, {
|
|
3526
3526
|
tracks: {
|
|
3527
3527
|
clips: {
|
|
3528
|
-
length: number;
|
|
3529
3528
|
start: number;
|
|
3529
|
+
length: number;
|
|
3530
3530
|
asset: {
|
|
3531
|
-
src: string;
|
|
3532
3531
|
type: "audio";
|
|
3532
|
+
src: string;
|
|
3533
3533
|
trim?: number | undefined;
|
|
3534
3534
|
volume?: number | {
|
|
3535
|
-
length: number;
|
|
3536
3535
|
from: number;
|
|
3537
3536
|
to: number;
|
|
3538
3537
|
start: number;
|
|
3538
|
+
length: number;
|
|
3539
3539
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3540
3540
|
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;
|
|
3541
3541
|
}[] | undefined;
|
|
3542
3542
|
} | {
|
|
3543
|
-
html: string;
|
|
3544
3543
|
type: "html";
|
|
3544
|
+
html: string;
|
|
3545
3545
|
css: string;
|
|
3546
3546
|
width?: number | undefined;
|
|
3547
3547
|
height?: number | undefined;
|
|
3548
3548
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3549
3549
|
} | {
|
|
3550
|
-
src: string;
|
|
3551
3550
|
type: "image";
|
|
3551
|
+
src: string;
|
|
3552
3552
|
crop?: {
|
|
3553
3553
|
top?: number | undefined;
|
|
3554
3554
|
right?: number | undefined;
|
|
@@ -3556,8 +3556,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3556
3556
|
left?: number | undefined;
|
|
3557
3557
|
} | undefined;
|
|
3558
3558
|
} | {
|
|
3559
|
-
src: string;
|
|
3560
3559
|
type: "luma";
|
|
3560
|
+
src: string;
|
|
3561
3561
|
} | {
|
|
3562
3562
|
type: "shape";
|
|
3563
3563
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3607,14 +3607,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3607
3607
|
opacity: number;
|
|
3608
3608
|
} | undefined;
|
|
3609
3609
|
} | {
|
|
3610
|
-
src: string;
|
|
3611
3610
|
type: "video";
|
|
3611
|
+
src: string;
|
|
3612
3612
|
trim?: number | undefined;
|
|
3613
3613
|
volume?: number | {
|
|
3614
|
-
length: number;
|
|
3615
3614
|
from: number;
|
|
3616
3615
|
to: number;
|
|
3617
3616
|
start: number;
|
|
3617
|
+
length: number;
|
|
3618
3618
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3619
3619
|
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;
|
|
3620
3620
|
}[] | undefined;
|
|
@@ -3627,26 +3627,26 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3627
3627
|
};
|
|
3628
3628
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3629
3629
|
opacity?: number | {
|
|
3630
|
-
length: number;
|
|
3631
3630
|
from: number;
|
|
3632
3631
|
to: number;
|
|
3633
3632
|
start: number;
|
|
3633
|
+
length: number;
|
|
3634
3634
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3635
3635
|
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;
|
|
3636
3636
|
}[] | undefined;
|
|
3637
|
-
fit?: "
|
|
3637
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3638
3638
|
offset?: {
|
|
3639
3639
|
x?: number | {
|
|
3640
|
-
length: number;
|
|
3641
3640
|
start: number;
|
|
3641
|
+
length: number;
|
|
3642
3642
|
from?: number | undefined;
|
|
3643
3643
|
to?: number | undefined;
|
|
3644
3644
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3645
3645
|
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;
|
|
3646
3646
|
}[] | undefined;
|
|
3647
3647
|
y?: number | {
|
|
3648
|
-
length: number;
|
|
3649
3648
|
start: number;
|
|
3649
|
+
length: number;
|
|
3650
3650
|
from?: number | undefined;
|
|
3651
3651
|
to?: number | undefined;
|
|
3652
3652
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -3654,20 +3654,20 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3654
3654
|
}[] | undefined;
|
|
3655
3655
|
} | undefined;
|
|
3656
3656
|
scale?: number | {
|
|
3657
|
-
length: number;
|
|
3658
3657
|
from: number;
|
|
3659
3658
|
to: number;
|
|
3660
3659
|
start: number;
|
|
3660
|
+
length: number;
|
|
3661
3661
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3662
3662
|
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;
|
|
3663
3663
|
}[] | undefined;
|
|
3664
3664
|
transform?: {
|
|
3665
3665
|
rotate?: {
|
|
3666
3666
|
angle: number | {
|
|
3667
|
-
length: number;
|
|
3668
3667
|
from: number;
|
|
3669
3668
|
to: number;
|
|
3670
3669
|
start: number;
|
|
3670
|
+
length: number;
|
|
3671
3671
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3672
3672
|
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;
|
|
3673
3673
|
}[];
|
|
@@ -3699,56 +3699,56 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3699
3699
|
fps: zod.ZodOptional<zod.ZodNumber>;
|
|
3700
3700
|
format: zod.ZodString;
|
|
3701
3701
|
}, "strip", zod.ZodTypeAny, {
|
|
3702
|
-
format: string;
|
|
3703
3702
|
size: {
|
|
3704
3703
|
width: number;
|
|
3705
3704
|
height: number;
|
|
3706
3705
|
};
|
|
3706
|
+
format: string;
|
|
3707
3707
|
fps?: number | undefined;
|
|
3708
3708
|
}, {
|
|
3709
|
-
format: string;
|
|
3710
3709
|
size: {
|
|
3711
3710
|
width: number;
|
|
3712
3711
|
height: number;
|
|
3713
3712
|
};
|
|
3713
|
+
format: string;
|
|
3714
3714
|
fps?: number | undefined;
|
|
3715
3715
|
}>;
|
|
3716
3716
|
}, "strip", zod.ZodTypeAny, {
|
|
3717
3717
|
output: {
|
|
3718
|
-
format: string;
|
|
3719
3718
|
size: {
|
|
3720
3719
|
width: number;
|
|
3721
3720
|
height: number;
|
|
3722
3721
|
};
|
|
3722
|
+
format: string;
|
|
3723
3723
|
fps?: number | undefined;
|
|
3724
3724
|
};
|
|
3725
3725
|
timeline: {
|
|
3726
3726
|
tracks: {
|
|
3727
3727
|
clips: {
|
|
3728
|
-
length: number;
|
|
3729
3728
|
start: number;
|
|
3729
|
+
length: number;
|
|
3730
3730
|
asset: {
|
|
3731
|
-
src: string;
|
|
3732
3731
|
type: "audio";
|
|
3732
|
+
src: string;
|
|
3733
3733
|
trim?: number | undefined;
|
|
3734
3734
|
volume?: number | {
|
|
3735
|
-
length: number;
|
|
3736
3735
|
from: number;
|
|
3737
3736
|
to: number;
|
|
3738
3737
|
start: number;
|
|
3738
|
+
length: number;
|
|
3739
3739
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3740
3740
|
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;
|
|
3741
3741
|
}[] | undefined;
|
|
3742
3742
|
} | {
|
|
3743
|
-
html: string;
|
|
3744
3743
|
type: "html";
|
|
3744
|
+
html: string;
|
|
3745
3745
|
css: string;
|
|
3746
3746
|
width?: number | undefined;
|
|
3747
3747
|
height?: number | undefined;
|
|
3748
3748
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3749
3749
|
} | {
|
|
3750
|
-
src: string;
|
|
3751
3750
|
type: "image";
|
|
3751
|
+
src: string;
|
|
3752
3752
|
crop?: {
|
|
3753
3753
|
top?: number | undefined;
|
|
3754
3754
|
right?: number | undefined;
|
|
@@ -3756,8 +3756,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3756
3756
|
left?: number | undefined;
|
|
3757
3757
|
} | undefined;
|
|
3758
3758
|
} | {
|
|
3759
|
-
src: string;
|
|
3760
3759
|
type: "luma";
|
|
3760
|
+
src: string;
|
|
3761
3761
|
} | {
|
|
3762
3762
|
type: "shape";
|
|
3763
3763
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3807,14 +3807,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3807
3807
|
opacity: number;
|
|
3808
3808
|
} | undefined;
|
|
3809
3809
|
} | {
|
|
3810
|
-
src: string;
|
|
3811
3810
|
type: "video";
|
|
3811
|
+
src: string;
|
|
3812
3812
|
trim?: number | undefined;
|
|
3813
3813
|
volume?: number | {
|
|
3814
|
-
length: number;
|
|
3815
3814
|
from: number;
|
|
3816
3815
|
to: number;
|
|
3817
3816
|
start: number;
|
|
3817
|
+
length: number;
|
|
3818
3818
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3819
3819
|
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;
|
|
3820
3820
|
}[] | undefined;
|
|
@@ -3827,47 +3827,47 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3827
3827
|
};
|
|
3828
3828
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3829
3829
|
opacity?: number | {
|
|
3830
|
-
length: number;
|
|
3831
3830
|
from: number;
|
|
3832
3831
|
to: number;
|
|
3833
3832
|
start: number;
|
|
3833
|
+
length: number;
|
|
3834
3834
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3835
3835
|
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;
|
|
3836
3836
|
}[] | undefined;
|
|
3837
|
-
fit?: "
|
|
3837
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3838
3838
|
offset?: {
|
|
3839
3839
|
x: number | {
|
|
3840
|
-
length: number;
|
|
3841
3840
|
from: number;
|
|
3842
3841
|
to: number;
|
|
3843
3842
|
start: number;
|
|
3843
|
+
length: number;
|
|
3844
3844
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3845
3845
|
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;
|
|
3846
3846
|
}[];
|
|
3847
3847
|
y: number | {
|
|
3848
|
-
length: number;
|
|
3849
3848
|
from: number;
|
|
3850
3849
|
to: number;
|
|
3851
3850
|
start: number;
|
|
3851
|
+
length: number;
|
|
3852
3852
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3853
3853
|
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;
|
|
3854
3854
|
}[];
|
|
3855
3855
|
} | undefined;
|
|
3856
3856
|
scale?: number | {
|
|
3857
|
-
length: number;
|
|
3858
3857
|
from: number;
|
|
3859
3858
|
to: number;
|
|
3860
3859
|
start: number;
|
|
3860
|
+
length: number;
|
|
3861
3861
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3862
3862
|
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;
|
|
3863
3863
|
}[] | undefined;
|
|
3864
3864
|
transform?: {
|
|
3865
3865
|
rotate: {
|
|
3866
3866
|
angle: number | {
|
|
3867
|
-
length: number;
|
|
3868
3867
|
from: number;
|
|
3869
3868
|
to: number;
|
|
3870
3869
|
start: number;
|
|
3870
|
+
length: number;
|
|
3871
3871
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3872
3872
|
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;
|
|
3873
3873
|
}[];
|
|
@@ -3887,40 +3887,40 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3887
3887
|
};
|
|
3888
3888
|
}, {
|
|
3889
3889
|
output: {
|
|
3890
|
-
format: string;
|
|
3891
3890
|
size: {
|
|
3892
3891
|
width: number;
|
|
3893
3892
|
height: number;
|
|
3894
3893
|
};
|
|
3894
|
+
format: string;
|
|
3895
3895
|
fps?: number | undefined;
|
|
3896
3896
|
};
|
|
3897
3897
|
timeline: {
|
|
3898
3898
|
tracks: {
|
|
3899
3899
|
clips: {
|
|
3900
|
-
length: number;
|
|
3901
3900
|
start: number;
|
|
3901
|
+
length: number;
|
|
3902
3902
|
asset: {
|
|
3903
|
-
src: string;
|
|
3904
3903
|
type: "audio";
|
|
3904
|
+
src: string;
|
|
3905
3905
|
trim?: number | undefined;
|
|
3906
3906
|
volume?: number | {
|
|
3907
|
-
length: number;
|
|
3908
3907
|
from: number;
|
|
3909
3908
|
to: number;
|
|
3910
3909
|
start: number;
|
|
3910
|
+
length: number;
|
|
3911
3911
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3912
3912
|
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;
|
|
3913
3913
|
}[] | undefined;
|
|
3914
3914
|
} | {
|
|
3915
|
-
html: string;
|
|
3916
3915
|
type: "html";
|
|
3916
|
+
html: string;
|
|
3917
3917
|
css: string;
|
|
3918
3918
|
width?: number | undefined;
|
|
3919
3919
|
height?: number | undefined;
|
|
3920
3920
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3921
3921
|
} | {
|
|
3922
|
-
src: string;
|
|
3923
3922
|
type: "image";
|
|
3923
|
+
src: string;
|
|
3924
3924
|
crop?: {
|
|
3925
3925
|
top?: number | undefined;
|
|
3926
3926
|
right?: number | undefined;
|
|
@@ -3928,8 +3928,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3928
3928
|
left?: number | undefined;
|
|
3929
3929
|
} | undefined;
|
|
3930
3930
|
} | {
|
|
3931
|
-
src: string;
|
|
3932
3931
|
type: "luma";
|
|
3932
|
+
src: string;
|
|
3933
3933
|
} | {
|
|
3934
3934
|
type: "shape";
|
|
3935
3935
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3979,14 +3979,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3979
3979
|
opacity: number;
|
|
3980
3980
|
} | undefined;
|
|
3981
3981
|
} | {
|
|
3982
|
-
src: string;
|
|
3983
3982
|
type: "video";
|
|
3983
|
+
src: string;
|
|
3984
3984
|
trim?: number | undefined;
|
|
3985
3985
|
volume?: number | {
|
|
3986
|
-
length: number;
|
|
3987
3986
|
from: number;
|
|
3988
3987
|
to: number;
|
|
3989
3988
|
start: number;
|
|
3989
|
+
length: number;
|
|
3990
3990
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3991
3991
|
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;
|
|
3992
3992
|
}[] | undefined;
|
|
@@ -3999,26 +3999,26 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3999
3999
|
};
|
|
4000
4000
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
4001
4001
|
opacity?: number | {
|
|
4002
|
-
length: number;
|
|
4003
4002
|
from: number;
|
|
4004
4003
|
to: number;
|
|
4005
4004
|
start: number;
|
|
4005
|
+
length: number;
|
|
4006
4006
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
4007
4007
|
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;
|
|
4008
4008
|
}[] | undefined;
|
|
4009
|
-
fit?: "
|
|
4009
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
4010
4010
|
offset?: {
|
|
4011
4011
|
x?: number | {
|
|
4012
|
-
length: number;
|
|
4013
4012
|
start: number;
|
|
4013
|
+
length: number;
|
|
4014
4014
|
from?: number | undefined;
|
|
4015
4015
|
to?: number | undefined;
|
|
4016
4016
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
4017
4017
|
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;
|
|
4018
4018
|
}[] | undefined;
|
|
4019
4019
|
y?: number | {
|
|
4020
|
-
length: number;
|
|
4021
4020
|
start: number;
|
|
4021
|
+
length: number;
|
|
4022
4022
|
from?: number | undefined;
|
|
4023
4023
|
to?: number | undefined;
|
|
4024
4024
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -4026,20 +4026,20 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4026
4026
|
}[] | undefined;
|
|
4027
4027
|
} | undefined;
|
|
4028
4028
|
scale?: number | {
|
|
4029
|
-
length: number;
|
|
4030
4029
|
from: number;
|
|
4031
4030
|
to: number;
|
|
4032
4031
|
start: number;
|
|
4032
|
+
length: number;
|
|
4033
4033
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
4034
4034
|
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;
|
|
4035
4035
|
}[] | undefined;
|
|
4036
4036
|
transform?: {
|
|
4037
4037
|
rotate?: {
|
|
4038
4038
|
angle: number | {
|
|
4039
|
-
length: number;
|
|
4040
4039
|
from: number;
|
|
4041
4040
|
to: number;
|
|
4042
4041
|
start: number;
|
|
4042
|
+
length: number;
|
|
4043
4043
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
4044
4044
|
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;
|
|
4045
4045
|
}[];
|