@shotstack/shotstack-studio 1.3.0 → 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 +4912 -4754
- package/dist/shotstack-studio.umd.js +7 -7
- package/dist/src/components/canvas/index.d.ts +14 -0
- package/dist/{core/entities → src/components/canvas}/players/audio-player.d.ts +4 -4
- package/dist/{core/entities → src/components/canvas}/players/html-player.d.ts +4 -4
- package/dist/{core/entities → src/components/canvas}/players/image-player.d.ts +4 -4
- package/dist/{core/entities → src/components/canvas}/players/luma-player.d.ts +4 -4
- package/dist/{core/entities/base → src/components/canvas/players}/player.d.ts +5 -4
- package/dist/{core/entities → src/components/canvas}/players/shape-player.d.ts +4 -4
- package/dist/{core/entities → src/components/canvas}/players/text-player.d.ts +1 -1
- package/dist/{core/entities → src/components/canvas}/players/video-player.d.ts +4 -4
- 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/{core/entities → src/components/canvas}/text/text-editor.d.ts +1 -1
- 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/system → 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/asset.d.ts +42 -38
- package/dist/{core → src/core}/schemas/audio-asset.d.ts +18 -14
- package/dist/{core → src/core}/schemas/clip.d.ts +113 -99
- package/dist/{core → src/core}/schemas/edit.d.ts +372 -344
- package/dist/{core → src/core}/schemas/track.d.ts +141 -127
- package/dist/{core → src/core}/schemas/video-asset.d.ts +18 -14
- package/dist/src/index.d.ts +4 -0
- package/dist/vite.config.d.ts +2 -0
- package/package.json +1 -1
- package/readme.md +10 -0
- package/dist/core/entities/index.d.ts +0 -14
- package/dist/index.d.ts +0 -4
- package/dist/{core/entities → src/components/canvas}/text/text-cursor.d.ts +0 -0
- package/dist/{core/entities → src/components/canvas}/text/text-input-handler.d.ts +0 -0
- 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/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/entities/base → 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;
|
|
@@ -347,38 +347,40 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
347
347
|
bottom?: number | undefined;
|
|
348
348
|
left?: number | undefined;
|
|
349
349
|
}>>;
|
|
350
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
350
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
351
|
+
from: zod.ZodNumber;
|
|
352
|
+
to: zod.ZodNumber;
|
|
351
353
|
start: zod.ZodNumber;
|
|
352
354
|
length: zod.ZodNumber;
|
|
353
355
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
354
356
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
355
|
-
}
|
|
357
|
+
}, {
|
|
356
358
|
from: zod.ZodNumber;
|
|
357
359
|
to: zod.ZodNumber;
|
|
358
|
-
}
|
|
359
|
-
length: number;
|
|
360
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
360
361
|
from: number;
|
|
361
362
|
to: number;
|
|
362
363
|
start: number;
|
|
364
|
+
length: number;
|
|
363
365
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
364
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;
|
|
365
367
|
}, {
|
|
366
|
-
length: number;
|
|
367
368
|
from: number;
|
|
368
369
|
to: number;
|
|
369
370
|
start: number;
|
|
371
|
+
length: number;
|
|
370
372
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
371
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;
|
|
372
374
|
}>, "many">, zod.ZodNumber]>>;
|
|
373
375
|
}, "strip", zod.ZodTypeAny, {
|
|
374
|
-
src: string;
|
|
375
376
|
type: "video";
|
|
377
|
+
src: string;
|
|
376
378
|
trim?: number | undefined;
|
|
377
379
|
volume?: number | {
|
|
378
|
-
length: number;
|
|
379
380
|
from: number;
|
|
380
381
|
to: number;
|
|
381
382
|
start: number;
|
|
383
|
+
length: number;
|
|
382
384
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
383
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;
|
|
384
386
|
}[] | undefined;
|
|
@@ -389,14 +391,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
389
391
|
left?: number | undefined;
|
|
390
392
|
} | undefined;
|
|
391
393
|
}, {
|
|
392
|
-
src: string;
|
|
393
394
|
type: "video";
|
|
395
|
+
src: string;
|
|
394
396
|
trim?: number | undefined;
|
|
395
397
|
volume?: number | {
|
|
396
|
-
length: number;
|
|
397
398
|
from: number;
|
|
398
399
|
to: number;
|
|
399
400
|
start: number;
|
|
401
|
+
length: number;
|
|
400
402
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
401
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;
|
|
402
404
|
}[] | undefined;
|
|
@@ -410,84 +412,86 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
410
412
|
type: zod.ZodLiteral<"luma">;
|
|
411
413
|
src: zod.ZodString;
|
|
412
414
|
}, "strip", zod.ZodTypeAny, {
|
|
413
|
-
src: string;
|
|
414
415
|
type: "luma";
|
|
415
|
-
}, {
|
|
416
416
|
src: string;
|
|
417
|
+
}, {
|
|
417
418
|
type: "luma";
|
|
419
|
+
src: string;
|
|
418
420
|
}>, zod.ZodObject<{
|
|
419
421
|
type: zod.ZodLiteral<"audio">;
|
|
420
422
|
src: zod.ZodString;
|
|
421
423
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
422
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
424
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
425
|
+
from: zod.ZodNumber;
|
|
426
|
+
to: zod.ZodNumber;
|
|
423
427
|
start: zod.ZodNumber;
|
|
424
428
|
length: zod.ZodNumber;
|
|
425
429
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
426
430
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
427
|
-
}
|
|
431
|
+
}, {
|
|
428
432
|
from: zod.ZodNumber;
|
|
429
433
|
to: zod.ZodNumber;
|
|
430
|
-
}
|
|
431
|
-
length: number;
|
|
434
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
432
435
|
from: number;
|
|
433
436
|
to: number;
|
|
434
437
|
start: number;
|
|
438
|
+
length: number;
|
|
435
439
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
436
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;
|
|
437
441
|
}, {
|
|
438
|
-
length: number;
|
|
439
442
|
from: number;
|
|
440
443
|
to: number;
|
|
441
444
|
start: number;
|
|
445
|
+
length: number;
|
|
442
446
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
443
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;
|
|
444
448
|
}>, "many">, zod.ZodNumber]>>;
|
|
445
449
|
}, "strip", zod.ZodTypeAny, {
|
|
446
|
-
src: string;
|
|
447
450
|
type: "audio";
|
|
451
|
+
src: string;
|
|
448
452
|
trim?: number | undefined;
|
|
449
453
|
volume?: number | {
|
|
450
|
-
length: number;
|
|
451
454
|
from: number;
|
|
452
455
|
to: number;
|
|
453
456
|
start: number;
|
|
457
|
+
length: number;
|
|
454
458
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
455
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;
|
|
456
460
|
}[] | undefined;
|
|
457
461
|
}, {
|
|
458
|
-
src: string;
|
|
459
462
|
type: "audio";
|
|
463
|
+
src: string;
|
|
460
464
|
trim?: number | undefined;
|
|
461
465
|
volume?: number | {
|
|
462
|
-
length: number;
|
|
463
466
|
from: number;
|
|
464
467
|
to: number;
|
|
465
468
|
start: number;
|
|
469
|
+
length: number;
|
|
466
470
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
467
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;
|
|
468
472
|
}[] | undefined;
|
|
469
473
|
}>]>, {
|
|
470
|
-
src: string;
|
|
471
474
|
type: "audio";
|
|
475
|
+
src: string;
|
|
472
476
|
trim?: number | undefined;
|
|
473
477
|
volume?: number | {
|
|
474
|
-
length: number;
|
|
475
478
|
from: number;
|
|
476
479
|
to: number;
|
|
477
480
|
start: number;
|
|
481
|
+
length: number;
|
|
478
482
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
479
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;
|
|
480
484
|
}[] | undefined;
|
|
481
485
|
} | {
|
|
482
|
-
html: string;
|
|
483
486
|
type: "html";
|
|
487
|
+
html: string;
|
|
484
488
|
css: string;
|
|
485
489
|
width?: number | undefined;
|
|
486
490
|
height?: number | undefined;
|
|
487
491
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
488
492
|
} | {
|
|
489
|
-
src: string;
|
|
490
493
|
type: "image";
|
|
494
|
+
src: string;
|
|
491
495
|
crop?: {
|
|
492
496
|
top?: number | undefined;
|
|
493
497
|
right?: number | undefined;
|
|
@@ -495,8 +499,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
495
499
|
left?: number | undefined;
|
|
496
500
|
} | undefined;
|
|
497
501
|
} | {
|
|
498
|
-
src: string;
|
|
499
502
|
type: "luma";
|
|
503
|
+
src: string;
|
|
500
504
|
} | {
|
|
501
505
|
type: "shape";
|
|
502
506
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -546,14 +550,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
546
550
|
opacity: number;
|
|
547
551
|
} | undefined;
|
|
548
552
|
} | {
|
|
549
|
-
src: string;
|
|
550
553
|
type: "video";
|
|
554
|
+
src: string;
|
|
551
555
|
trim?: number | undefined;
|
|
552
556
|
volume?: number | {
|
|
553
|
-
length: number;
|
|
554
557
|
from: number;
|
|
555
558
|
to: number;
|
|
556
559
|
start: number;
|
|
560
|
+
length: number;
|
|
557
561
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
558
562
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
559
563
|
}[] | undefined;
|
|
@@ -564,27 +568,27 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
564
568
|
left?: number | undefined;
|
|
565
569
|
} | undefined;
|
|
566
570
|
}, {
|
|
567
|
-
src: string;
|
|
568
571
|
type: "audio";
|
|
572
|
+
src: string;
|
|
569
573
|
trim?: number | undefined;
|
|
570
574
|
volume?: number | {
|
|
571
|
-
length: number;
|
|
572
575
|
from: number;
|
|
573
576
|
to: number;
|
|
574
577
|
start: number;
|
|
578
|
+
length: number;
|
|
575
579
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
576
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;
|
|
577
581
|
}[] | undefined;
|
|
578
582
|
} | {
|
|
579
|
-
html: string;
|
|
580
583
|
type: "html";
|
|
584
|
+
html: string;
|
|
581
585
|
css: string;
|
|
582
586
|
width?: number | undefined;
|
|
583
587
|
height?: number | undefined;
|
|
584
588
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
585
589
|
} | {
|
|
586
|
-
src: string;
|
|
587
590
|
type: "image";
|
|
591
|
+
src: string;
|
|
588
592
|
crop?: {
|
|
589
593
|
top?: number | undefined;
|
|
590
594
|
right?: number | undefined;
|
|
@@ -592,8 +596,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
592
596
|
left?: number | undefined;
|
|
593
597
|
} | undefined;
|
|
594
598
|
} | {
|
|
595
|
-
src: string;
|
|
596
599
|
type: "luma";
|
|
600
|
+
src: string;
|
|
597
601
|
} | {
|
|
598
602
|
type: "shape";
|
|
599
603
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -643,14 +647,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
643
647
|
opacity: number;
|
|
644
648
|
} | undefined;
|
|
645
649
|
} | {
|
|
646
|
-
src: string;
|
|
647
650
|
type: "video";
|
|
651
|
+
src: string;
|
|
648
652
|
trim?: number | undefined;
|
|
649
653
|
volume?: number | {
|
|
650
|
-
length: number;
|
|
651
654
|
from: number;
|
|
652
655
|
to: number;
|
|
653
656
|
start: number;
|
|
657
|
+
length: number;
|
|
654
658
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
655
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;
|
|
656
660
|
}[] | undefined;
|
|
@@ -666,47 +670,51 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
666
670
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
667
671
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
668
672
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
669
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
673
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
674
|
+
from: zod.ZodNumber;
|
|
675
|
+
to: zod.ZodNumber;
|
|
670
676
|
start: zod.ZodNumber;
|
|
671
677
|
length: zod.ZodNumber;
|
|
672
678
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
673
679
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
674
|
-
}
|
|
680
|
+
}, {
|
|
675
681
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
676
682
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
677
|
-
}
|
|
678
|
-
length: number;
|
|
683
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
679
684
|
from: number;
|
|
680
685
|
to: number;
|
|
681
686
|
start: number;
|
|
687
|
+
length: number;
|
|
682
688
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
683
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;
|
|
684
690
|
}, {
|
|
685
|
-
length: number;
|
|
686
691
|
start: number;
|
|
692
|
+
length: number;
|
|
687
693
|
from?: number | undefined;
|
|
688
694
|
to?: number | undefined;
|
|
689
695
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
690
696
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
691
697
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
692
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
698
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
699
|
+
from: zod.ZodNumber;
|
|
700
|
+
to: zod.ZodNumber;
|
|
693
701
|
start: zod.ZodNumber;
|
|
694
702
|
length: zod.ZodNumber;
|
|
695
703
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
696
704
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
697
|
-
}
|
|
705
|
+
}, {
|
|
698
706
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
699
707
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
700
|
-
}
|
|
701
|
-
length: number;
|
|
708
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
702
709
|
from: number;
|
|
703
710
|
to: number;
|
|
704
711
|
start: number;
|
|
712
|
+
length: number;
|
|
705
713
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
706
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;
|
|
707
715
|
}, {
|
|
708
|
-
length: number;
|
|
709
716
|
start: number;
|
|
717
|
+
length: number;
|
|
710
718
|
from?: number | undefined;
|
|
711
719
|
to?: number | undefined;
|
|
712
720
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -714,125 +722,131 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
714
722
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
715
723
|
}, "strip", zod.ZodTypeAny, {
|
|
716
724
|
x: number | {
|
|
717
|
-
length: number;
|
|
718
725
|
from: number;
|
|
719
726
|
to: number;
|
|
720
727
|
start: number;
|
|
728
|
+
length: number;
|
|
721
729
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
722
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;
|
|
723
731
|
}[];
|
|
724
732
|
y: number | {
|
|
725
|
-
length: number;
|
|
726
733
|
from: number;
|
|
727
734
|
to: number;
|
|
728
735
|
start: number;
|
|
736
|
+
length: number;
|
|
729
737
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
730
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;
|
|
731
739
|
}[];
|
|
732
740
|
}, {
|
|
733
741
|
x?: number | {
|
|
734
|
-
length: number;
|
|
735
742
|
start: number;
|
|
743
|
+
length: number;
|
|
736
744
|
from?: number | undefined;
|
|
737
745
|
to?: number | undefined;
|
|
738
746
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
739
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;
|
|
740
748
|
}[] | undefined;
|
|
741
749
|
y?: number | {
|
|
742
|
-
length: number;
|
|
743
750
|
start: number;
|
|
751
|
+
length: number;
|
|
744
752
|
from?: number | undefined;
|
|
745
753
|
to?: number | undefined;
|
|
746
754
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
747
755
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "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
756
|
}[] | undefined;
|
|
749
757
|
}>>>;
|
|
750
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
758
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
759
|
+
from: zod.ZodNumber;
|
|
760
|
+
to: zod.ZodNumber;
|
|
751
761
|
start: zod.ZodNumber;
|
|
752
762
|
length: zod.ZodNumber;
|
|
753
763
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
754
764
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
755
|
-
}
|
|
765
|
+
}, {
|
|
756
766
|
from: zod.ZodNumber;
|
|
757
767
|
to: zod.ZodNumber;
|
|
758
|
-
}
|
|
759
|
-
length: number;
|
|
768
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
760
769
|
from: number;
|
|
761
770
|
to: number;
|
|
762
771
|
start: number;
|
|
772
|
+
length: number;
|
|
763
773
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
764
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;
|
|
765
775
|
}, {
|
|
766
|
-
length: number;
|
|
767
776
|
from: number;
|
|
768
777
|
to: number;
|
|
769
778
|
start: number;
|
|
779
|
+
length: number;
|
|
770
780
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
771
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;
|
|
772
782
|
}>, "many">, zod.ZodNumber]>>>;
|
|
773
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
783
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
784
|
+
from: zod.ZodNumber;
|
|
785
|
+
to: zod.ZodNumber;
|
|
774
786
|
start: zod.ZodNumber;
|
|
775
787
|
length: zod.ZodNumber;
|
|
776
788
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
777
789
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
778
|
-
}
|
|
790
|
+
}, {
|
|
779
791
|
from: zod.ZodNumber;
|
|
780
792
|
to: zod.ZodNumber;
|
|
781
|
-
}
|
|
782
|
-
length: number;
|
|
793
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
783
794
|
from: number;
|
|
784
795
|
to: number;
|
|
785
796
|
start: number;
|
|
797
|
+
length: number;
|
|
786
798
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
787
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;
|
|
788
800
|
}, {
|
|
789
|
-
length: number;
|
|
790
801
|
from: number;
|
|
791
802
|
to: number;
|
|
792
803
|
start: number;
|
|
804
|
+
length: number;
|
|
793
805
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
794
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;
|
|
795
807
|
}>, "many">, zod.ZodNumber]>>>;
|
|
796
808
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
797
809
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
798
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
810
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
811
|
+
from: zod.ZodNumber;
|
|
812
|
+
to: zod.ZodNumber;
|
|
799
813
|
start: zod.ZodNumber;
|
|
800
814
|
length: zod.ZodNumber;
|
|
801
815
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
802
816
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
803
|
-
}
|
|
817
|
+
}, {
|
|
804
818
|
from: zod.ZodNumber;
|
|
805
819
|
to: zod.ZodNumber;
|
|
806
|
-
}
|
|
807
|
-
length: number;
|
|
820
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
808
821
|
from: number;
|
|
809
822
|
to: number;
|
|
810
823
|
start: number;
|
|
824
|
+
length: number;
|
|
811
825
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
812
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;
|
|
813
827
|
}, {
|
|
814
|
-
length: number;
|
|
815
828
|
from: number;
|
|
816
829
|
to: number;
|
|
817
830
|
start: number;
|
|
831
|
+
length: number;
|
|
818
832
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
819
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;
|
|
820
834
|
}>, "many">, zod.ZodNumber]>;
|
|
821
835
|
}, "strip", zod.ZodTypeAny, {
|
|
822
836
|
angle: number | {
|
|
823
|
-
length: number;
|
|
824
837
|
from: number;
|
|
825
838
|
to: number;
|
|
826
839
|
start: number;
|
|
840
|
+
length: number;
|
|
827
841
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
828
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;
|
|
829
843
|
}[];
|
|
830
844
|
}, {
|
|
831
845
|
angle: number | {
|
|
832
|
-
length: number;
|
|
833
846
|
from: number;
|
|
834
847
|
to: number;
|
|
835
848
|
start: number;
|
|
849
|
+
length: number;
|
|
836
850
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
837
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;
|
|
838
852
|
}[];
|
|
@@ -840,10 +854,10 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
840
854
|
}, "strip", zod.ZodTypeAny, {
|
|
841
855
|
rotate: {
|
|
842
856
|
angle: number | {
|
|
843
|
-
length: number;
|
|
844
857
|
from: number;
|
|
845
858
|
to: number;
|
|
846
859
|
start: number;
|
|
860
|
+
length: number;
|
|
847
861
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
848
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;
|
|
849
863
|
}[];
|
|
@@ -851,10 +865,10 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
851
865
|
}, {
|
|
852
866
|
rotate?: {
|
|
853
867
|
angle: number | {
|
|
854
|
-
length: number;
|
|
855
868
|
from: number;
|
|
856
869
|
to: number;
|
|
857
870
|
start: number;
|
|
871
|
+
length: number;
|
|
858
872
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
859
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;
|
|
860
874
|
}[];
|
|
@@ -872,30 +886,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
872
886
|
out?: string | undefined;
|
|
873
887
|
}>>;
|
|
874
888
|
}, "strip", zod.ZodTypeAny, {
|
|
875
|
-
length: number;
|
|
876
889
|
start: number;
|
|
890
|
+
length: number;
|
|
877
891
|
asset: {
|
|
878
|
-
src: string;
|
|
879
892
|
type: "audio";
|
|
893
|
+
src: string;
|
|
880
894
|
trim?: number | undefined;
|
|
881
895
|
volume?: number | {
|
|
882
|
-
length: number;
|
|
883
896
|
from: number;
|
|
884
897
|
to: number;
|
|
885
898
|
start: number;
|
|
899
|
+
length: number;
|
|
886
900
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
887
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;
|
|
888
902
|
}[] | undefined;
|
|
889
903
|
} | {
|
|
890
|
-
html: string;
|
|
891
904
|
type: "html";
|
|
905
|
+
html: string;
|
|
892
906
|
css: string;
|
|
893
907
|
width?: number | undefined;
|
|
894
908
|
height?: number | undefined;
|
|
895
909
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
896
910
|
} | {
|
|
897
|
-
src: string;
|
|
898
911
|
type: "image";
|
|
912
|
+
src: string;
|
|
899
913
|
crop?: {
|
|
900
914
|
top?: number | undefined;
|
|
901
915
|
right?: number | undefined;
|
|
@@ -903,8 +917,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
903
917
|
left?: number | undefined;
|
|
904
918
|
} | undefined;
|
|
905
919
|
} | {
|
|
906
|
-
src: string;
|
|
907
920
|
type: "luma";
|
|
921
|
+
src: string;
|
|
908
922
|
} | {
|
|
909
923
|
type: "shape";
|
|
910
924
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -954,14 +968,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
954
968
|
opacity: number;
|
|
955
969
|
} | undefined;
|
|
956
970
|
} | {
|
|
957
|
-
src: string;
|
|
958
971
|
type: "video";
|
|
972
|
+
src: string;
|
|
959
973
|
trim?: number | undefined;
|
|
960
974
|
volume?: number | {
|
|
961
|
-
length: number;
|
|
962
975
|
from: number;
|
|
963
976
|
to: number;
|
|
964
977
|
start: number;
|
|
978
|
+
length: number;
|
|
965
979
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
966
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;
|
|
967
981
|
}[] | undefined;
|
|
@@ -974,47 +988,47 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
974
988
|
};
|
|
975
989
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
976
990
|
opacity?: number | {
|
|
977
|
-
length: number;
|
|
978
991
|
from: number;
|
|
979
992
|
to: number;
|
|
980
993
|
start: number;
|
|
994
|
+
length: number;
|
|
981
995
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
982
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;
|
|
983
997
|
}[] | undefined;
|
|
984
|
-
fit?: "
|
|
998
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
985
999
|
offset?: {
|
|
986
1000
|
x: number | {
|
|
987
|
-
length: number;
|
|
988
1001
|
from: number;
|
|
989
1002
|
to: number;
|
|
990
1003
|
start: number;
|
|
1004
|
+
length: number;
|
|
991
1005
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
992
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;
|
|
993
1007
|
}[];
|
|
994
1008
|
y: number | {
|
|
995
|
-
length: number;
|
|
996
1009
|
from: number;
|
|
997
1010
|
to: number;
|
|
998
1011
|
start: number;
|
|
1012
|
+
length: number;
|
|
999
1013
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1000
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;
|
|
1001
1015
|
}[];
|
|
1002
1016
|
} | undefined;
|
|
1003
1017
|
scale?: number | {
|
|
1004
|
-
length: number;
|
|
1005
1018
|
from: number;
|
|
1006
1019
|
to: number;
|
|
1007
1020
|
start: number;
|
|
1021
|
+
length: number;
|
|
1008
1022
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1009
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;
|
|
1010
1024
|
}[] | undefined;
|
|
1011
1025
|
transform?: {
|
|
1012
1026
|
rotate: {
|
|
1013
1027
|
angle: number | {
|
|
1014
|
-
length: number;
|
|
1015
1028
|
from: number;
|
|
1016
1029
|
to: number;
|
|
1017
1030
|
start: number;
|
|
1031
|
+
length: number;
|
|
1018
1032
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1019
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;
|
|
1020
1034
|
}[];
|
|
@@ -1026,30 +1040,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1026
1040
|
out?: string | undefined;
|
|
1027
1041
|
} | undefined;
|
|
1028
1042
|
}, {
|
|
1029
|
-
length: number;
|
|
1030
1043
|
start: number;
|
|
1044
|
+
length: number;
|
|
1031
1045
|
asset: {
|
|
1032
|
-
src: string;
|
|
1033
1046
|
type: "audio";
|
|
1047
|
+
src: string;
|
|
1034
1048
|
trim?: number | undefined;
|
|
1035
1049
|
volume?: number | {
|
|
1036
|
-
length: number;
|
|
1037
1050
|
from: number;
|
|
1038
1051
|
to: number;
|
|
1039
1052
|
start: number;
|
|
1053
|
+
length: number;
|
|
1040
1054
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1041
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;
|
|
1042
1056
|
}[] | undefined;
|
|
1043
1057
|
} | {
|
|
1044
|
-
html: string;
|
|
1045
1058
|
type: "html";
|
|
1059
|
+
html: string;
|
|
1046
1060
|
css: string;
|
|
1047
1061
|
width?: number | undefined;
|
|
1048
1062
|
height?: number | undefined;
|
|
1049
1063
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1050
1064
|
} | {
|
|
1051
|
-
src: string;
|
|
1052
1065
|
type: "image";
|
|
1066
|
+
src: string;
|
|
1053
1067
|
crop?: {
|
|
1054
1068
|
top?: number | undefined;
|
|
1055
1069
|
right?: number | undefined;
|
|
@@ -1057,8 +1071,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1057
1071
|
left?: number | undefined;
|
|
1058
1072
|
} | undefined;
|
|
1059
1073
|
} | {
|
|
1060
|
-
src: string;
|
|
1061
1074
|
type: "luma";
|
|
1075
|
+
src: string;
|
|
1062
1076
|
} | {
|
|
1063
1077
|
type: "shape";
|
|
1064
1078
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1108,14 +1122,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1108
1122
|
opacity: number;
|
|
1109
1123
|
} | undefined;
|
|
1110
1124
|
} | {
|
|
1111
|
-
src: string;
|
|
1112
1125
|
type: "video";
|
|
1126
|
+
src: string;
|
|
1113
1127
|
trim?: number | undefined;
|
|
1114
1128
|
volume?: number | {
|
|
1115
|
-
length: number;
|
|
1116
1129
|
from: number;
|
|
1117
1130
|
to: number;
|
|
1118
1131
|
start: number;
|
|
1132
|
+
length: number;
|
|
1119
1133
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1120
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;
|
|
1121
1135
|
}[] | undefined;
|
|
@@ -1128,26 +1142,26 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1128
1142
|
};
|
|
1129
1143
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1130
1144
|
opacity?: number | {
|
|
1131
|
-
length: number;
|
|
1132
1145
|
from: number;
|
|
1133
1146
|
to: number;
|
|
1134
1147
|
start: number;
|
|
1148
|
+
length: number;
|
|
1135
1149
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1136
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;
|
|
1137
1151
|
}[] | undefined;
|
|
1138
|
-
fit?: "
|
|
1152
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1139
1153
|
offset?: {
|
|
1140
1154
|
x?: number | {
|
|
1141
|
-
length: number;
|
|
1142
1155
|
start: number;
|
|
1156
|
+
length: number;
|
|
1143
1157
|
from?: number | undefined;
|
|
1144
1158
|
to?: number | undefined;
|
|
1145
1159
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1146
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;
|
|
1147
1161
|
}[] | undefined;
|
|
1148
1162
|
y?: number | {
|
|
1149
|
-
length: number;
|
|
1150
1163
|
start: number;
|
|
1164
|
+
length: number;
|
|
1151
1165
|
from?: number | undefined;
|
|
1152
1166
|
to?: number | undefined;
|
|
1153
1167
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1155,20 +1169,20 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1155
1169
|
}[] | undefined;
|
|
1156
1170
|
} | undefined;
|
|
1157
1171
|
scale?: number | {
|
|
1158
|
-
length: number;
|
|
1159
1172
|
from: number;
|
|
1160
1173
|
to: number;
|
|
1161
1174
|
start: number;
|
|
1175
|
+
length: number;
|
|
1162
1176
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1163
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;
|
|
1164
1178
|
}[] | undefined;
|
|
1165
1179
|
transform?: {
|
|
1166
1180
|
rotate?: {
|
|
1167
1181
|
angle: number | {
|
|
1168
|
-
length: number;
|
|
1169
1182
|
from: number;
|
|
1170
1183
|
to: number;
|
|
1171
1184
|
start: number;
|
|
1185
|
+
length: number;
|
|
1172
1186
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1173
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;
|
|
1174
1188
|
}[];
|
|
@@ -1182,30 +1196,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1182
1196
|
}>, "many">;
|
|
1183
1197
|
}, "strip", zod.ZodTypeAny, {
|
|
1184
1198
|
clips: {
|
|
1185
|
-
length: number;
|
|
1186
1199
|
start: number;
|
|
1200
|
+
length: number;
|
|
1187
1201
|
asset: {
|
|
1188
|
-
src: string;
|
|
1189
1202
|
type: "audio";
|
|
1203
|
+
src: string;
|
|
1190
1204
|
trim?: number | undefined;
|
|
1191
1205
|
volume?: number | {
|
|
1192
|
-
length: number;
|
|
1193
1206
|
from: number;
|
|
1194
1207
|
to: number;
|
|
1195
1208
|
start: number;
|
|
1209
|
+
length: number;
|
|
1196
1210
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1197
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;
|
|
1198
1212
|
}[] | undefined;
|
|
1199
1213
|
} | {
|
|
1200
|
-
html: string;
|
|
1201
1214
|
type: "html";
|
|
1215
|
+
html: string;
|
|
1202
1216
|
css: string;
|
|
1203
1217
|
width?: number | undefined;
|
|
1204
1218
|
height?: number | undefined;
|
|
1205
1219
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1206
1220
|
} | {
|
|
1207
|
-
src: string;
|
|
1208
1221
|
type: "image";
|
|
1222
|
+
src: string;
|
|
1209
1223
|
crop?: {
|
|
1210
1224
|
top?: number | undefined;
|
|
1211
1225
|
right?: number | undefined;
|
|
@@ -1213,8 +1227,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1213
1227
|
left?: number | undefined;
|
|
1214
1228
|
} | undefined;
|
|
1215
1229
|
} | {
|
|
1216
|
-
src: string;
|
|
1217
1230
|
type: "luma";
|
|
1231
|
+
src: string;
|
|
1218
1232
|
} | {
|
|
1219
1233
|
type: "shape";
|
|
1220
1234
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1264,14 +1278,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1264
1278
|
opacity: number;
|
|
1265
1279
|
} | undefined;
|
|
1266
1280
|
} | {
|
|
1267
|
-
src: string;
|
|
1268
1281
|
type: "video";
|
|
1282
|
+
src: string;
|
|
1269
1283
|
trim?: number | undefined;
|
|
1270
1284
|
volume?: number | {
|
|
1271
|
-
length: number;
|
|
1272
1285
|
from: number;
|
|
1273
1286
|
to: number;
|
|
1274
1287
|
start: number;
|
|
1288
|
+
length: number;
|
|
1275
1289
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1276
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;
|
|
1277
1291
|
}[] | undefined;
|
|
@@ -1284,47 +1298,47 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1284
1298
|
};
|
|
1285
1299
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1286
1300
|
opacity?: number | {
|
|
1287
|
-
length: number;
|
|
1288
1301
|
from: number;
|
|
1289
1302
|
to: number;
|
|
1290
1303
|
start: number;
|
|
1304
|
+
length: number;
|
|
1291
1305
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1292
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;
|
|
1293
1307
|
}[] | undefined;
|
|
1294
|
-
fit?: "
|
|
1308
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1295
1309
|
offset?: {
|
|
1296
1310
|
x: number | {
|
|
1297
|
-
length: number;
|
|
1298
1311
|
from: number;
|
|
1299
1312
|
to: number;
|
|
1300
1313
|
start: number;
|
|
1314
|
+
length: number;
|
|
1301
1315
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1302
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;
|
|
1303
1317
|
}[];
|
|
1304
1318
|
y: number | {
|
|
1305
|
-
length: number;
|
|
1306
1319
|
from: number;
|
|
1307
1320
|
to: number;
|
|
1308
1321
|
start: number;
|
|
1322
|
+
length: number;
|
|
1309
1323
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1310
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;
|
|
1311
1325
|
}[];
|
|
1312
1326
|
} | undefined;
|
|
1313
1327
|
scale?: number | {
|
|
1314
|
-
length: number;
|
|
1315
1328
|
from: number;
|
|
1316
1329
|
to: number;
|
|
1317
1330
|
start: number;
|
|
1331
|
+
length: number;
|
|
1318
1332
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1319
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;
|
|
1320
1334
|
}[] | undefined;
|
|
1321
1335
|
transform?: {
|
|
1322
1336
|
rotate: {
|
|
1323
1337
|
angle: number | {
|
|
1324
|
-
length: number;
|
|
1325
1338
|
from: number;
|
|
1326
1339
|
to: number;
|
|
1327
1340
|
start: number;
|
|
1341
|
+
length: number;
|
|
1328
1342
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1329
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;
|
|
1330
1344
|
}[];
|
|
@@ -1338,30 +1352,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1338
1352
|
}[];
|
|
1339
1353
|
}, {
|
|
1340
1354
|
clips: {
|
|
1341
|
-
length: number;
|
|
1342
1355
|
start: number;
|
|
1356
|
+
length: number;
|
|
1343
1357
|
asset: {
|
|
1344
|
-
src: string;
|
|
1345
1358
|
type: "audio";
|
|
1359
|
+
src: string;
|
|
1346
1360
|
trim?: number | undefined;
|
|
1347
1361
|
volume?: number | {
|
|
1348
|
-
length: number;
|
|
1349
1362
|
from: number;
|
|
1350
1363
|
to: number;
|
|
1351
1364
|
start: number;
|
|
1365
|
+
length: number;
|
|
1352
1366
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1353
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;
|
|
1354
1368
|
}[] | undefined;
|
|
1355
1369
|
} | {
|
|
1356
|
-
html: string;
|
|
1357
1370
|
type: "html";
|
|
1371
|
+
html: string;
|
|
1358
1372
|
css: string;
|
|
1359
1373
|
width?: number | undefined;
|
|
1360
1374
|
height?: number | undefined;
|
|
1361
1375
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1362
1376
|
} | {
|
|
1363
|
-
src: string;
|
|
1364
1377
|
type: "image";
|
|
1378
|
+
src: string;
|
|
1365
1379
|
crop?: {
|
|
1366
1380
|
top?: number | undefined;
|
|
1367
1381
|
right?: number | undefined;
|
|
@@ -1369,8 +1383,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1369
1383
|
left?: number | undefined;
|
|
1370
1384
|
} | undefined;
|
|
1371
1385
|
} | {
|
|
1372
|
-
src: string;
|
|
1373
1386
|
type: "luma";
|
|
1387
|
+
src: string;
|
|
1374
1388
|
} | {
|
|
1375
1389
|
type: "shape";
|
|
1376
1390
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1420,14 +1434,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1420
1434
|
opacity: number;
|
|
1421
1435
|
} | undefined;
|
|
1422
1436
|
} | {
|
|
1423
|
-
src: string;
|
|
1424
1437
|
type: "video";
|
|
1438
|
+
src: string;
|
|
1425
1439
|
trim?: number | undefined;
|
|
1426
1440
|
volume?: number | {
|
|
1427
|
-
length: number;
|
|
1428
1441
|
from: number;
|
|
1429
1442
|
to: number;
|
|
1430
1443
|
start: number;
|
|
1444
|
+
length: number;
|
|
1431
1445
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1432
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;
|
|
1433
1447
|
}[] | undefined;
|
|
@@ -1440,26 +1454,26 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1440
1454
|
};
|
|
1441
1455
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1442
1456
|
opacity?: number | {
|
|
1443
|
-
length: number;
|
|
1444
1457
|
from: number;
|
|
1445
1458
|
to: number;
|
|
1446
1459
|
start: number;
|
|
1460
|
+
length: number;
|
|
1447
1461
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1448
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;
|
|
1449
1463
|
}[] | undefined;
|
|
1450
|
-
fit?: "
|
|
1464
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1451
1465
|
offset?: {
|
|
1452
1466
|
x?: number | {
|
|
1453
|
-
length: number;
|
|
1454
1467
|
start: number;
|
|
1468
|
+
length: number;
|
|
1455
1469
|
from?: number | undefined;
|
|
1456
1470
|
to?: number | undefined;
|
|
1457
1471
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1458
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;
|
|
1459
1473
|
}[] | undefined;
|
|
1460
1474
|
y?: number | {
|
|
1461
|
-
length: number;
|
|
1462
1475
|
start: number;
|
|
1476
|
+
length: number;
|
|
1463
1477
|
from?: number | undefined;
|
|
1464
1478
|
to?: number | undefined;
|
|
1465
1479
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1467,20 +1481,20 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1467
1481
|
}[] | undefined;
|
|
1468
1482
|
} | undefined;
|
|
1469
1483
|
scale?: number | {
|
|
1470
|
-
length: number;
|
|
1471
1484
|
from: number;
|
|
1472
1485
|
to: number;
|
|
1473
1486
|
start: number;
|
|
1487
|
+
length: number;
|
|
1474
1488
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1475
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;
|
|
1476
1490
|
}[] | undefined;
|
|
1477
1491
|
transform?: {
|
|
1478
1492
|
rotate?: {
|
|
1479
1493
|
angle: number | {
|
|
1480
|
-
length: number;
|
|
1481
1494
|
from: number;
|
|
1482
1495
|
to: number;
|
|
1483
1496
|
start: number;
|
|
1497
|
+
length: number;
|
|
1484
1498
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1485
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;
|
|
1486
1500
|
}[];
|
|
@@ -1496,30 +1510,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1496
1510
|
}, "strip", zod.ZodTypeAny, {
|
|
1497
1511
|
tracks: {
|
|
1498
1512
|
clips: {
|
|
1499
|
-
length: number;
|
|
1500
1513
|
start: number;
|
|
1514
|
+
length: number;
|
|
1501
1515
|
asset: {
|
|
1502
|
-
src: string;
|
|
1503
1516
|
type: "audio";
|
|
1517
|
+
src: string;
|
|
1504
1518
|
trim?: number | undefined;
|
|
1505
1519
|
volume?: number | {
|
|
1506
|
-
length: number;
|
|
1507
1520
|
from: number;
|
|
1508
1521
|
to: number;
|
|
1509
1522
|
start: number;
|
|
1523
|
+
length: number;
|
|
1510
1524
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1511
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;
|
|
1512
1526
|
}[] | undefined;
|
|
1513
1527
|
} | {
|
|
1514
|
-
html: string;
|
|
1515
1528
|
type: "html";
|
|
1529
|
+
html: string;
|
|
1516
1530
|
css: string;
|
|
1517
1531
|
width?: number | undefined;
|
|
1518
1532
|
height?: number | undefined;
|
|
1519
1533
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1520
1534
|
} | {
|
|
1521
|
-
src: string;
|
|
1522
1535
|
type: "image";
|
|
1536
|
+
src: string;
|
|
1523
1537
|
crop?: {
|
|
1524
1538
|
top?: number | undefined;
|
|
1525
1539
|
right?: number | undefined;
|
|
@@ -1527,8 +1541,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1527
1541
|
left?: number | undefined;
|
|
1528
1542
|
} | undefined;
|
|
1529
1543
|
} | {
|
|
1530
|
-
src: string;
|
|
1531
1544
|
type: "luma";
|
|
1545
|
+
src: string;
|
|
1532
1546
|
} | {
|
|
1533
1547
|
type: "shape";
|
|
1534
1548
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1578,14 +1592,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1578
1592
|
opacity: number;
|
|
1579
1593
|
} | undefined;
|
|
1580
1594
|
} | {
|
|
1581
|
-
src: string;
|
|
1582
1595
|
type: "video";
|
|
1596
|
+
src: string;
|
|
1583
1597
|
trim?: number | undefined;
|
|
1584
1598
|
volume?: number | {
|
|
1585
|
-
length: number;
|
|
1586
1599
|
from: number;
|
|
1587
1600
|
to: number;
|
|
1588
1601
|
start: number;
|
|
1602
|
+
length: number;
|
|
1589
1603
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1590
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;
|
|
1591
1605
|
}[] | undefined;
|
|
@@ -1598,47 +1612,47 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1598
1612
|
};
|
|
1599
1613
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1600
1614
|
opacity?: number | {
|
|
1601
|
-
length: number;
|
|
1602
1615
|
from: number;
|
|
1603
1616
|
to: number;
|
|
1604
1617
|
start: number;
|
|
1618
|
+
length: number;
|
|
1605
1619
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1606
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;
|
|
1607
1621
|
}[] | undefined;
|
|
1608
|
-
fit?: "
|
|
1622
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1609
1623
|
offset?: {
|
|
1610
1624
|
x: number | {
|
|
1611
|
-
length: number;
|
|
1612
1625
|
from: number;
|
|
1613
1626
|
to: number;
|
|
1614
1627
|
start: number;
|
|
1628
|
+
length: number;
|
|
1615
1629
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1616
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;
|
|
1617
1631
|
}[];
|
|
1618
1632
|
y: number | {
|
|
1619
|
-
length: number;
|
|
1620
1633
|
from: number;
|
|
1621
1634
|
to: number;
|
|
1622
1635
|
start: number;
|
|
1636
|
+
length: number;
|
|
1623
1637
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1624
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;
|
|
1625
1639
|
}[];
|
|
1626
1640
|
} | undefined;
|
|
1627
1641
|
scale?: number | {
|
|
1628
|
-
length: number;
|
|
1629
1642
|
from: number;
|
|
1630
1643
|
to: number;
|
|
1631
1644
|
start: number;
|
|
1645
|
+
length: number;
|
|
1632
1646
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1633
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;
|
|
1634
1648
|
}[] | undefined;
|
|
1635
1649
|
transform?: {
|
|
1636
1650
|
rotate: {
|
|
1637
1651
|
angle: number | {
|
|
1638
|
-
length: number;
|
|
1639
1652
|
from: number;
|
|
1640
1653
|
to: number;
|
|
1641
1654
|
start: number;
|
|
1655
|
+
length: number;
|
|
1642
1656
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1643
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;
|
|
1644
1658
|
}[];
|
|
@@ -1658,30 +1672,30 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1658
1672
|
}, {
|
|
1659
1673
|
tracks: {
|
|
1660
1674
|
clips: {
|
|
1661
|
-
length: number;
|
|
1662
1675
|
start: number;
|
|
1676
|
+
length: number;
|
|
1663
1677
|
asset: {
|
|
1664
|
-
src: string;
|
|
1665
1678
|
type: "audio";
|
|
1679
|
+
src: string;
|
|
1666
1680
|
trim?: number | undefined;
|
|
1667
1681
|
volume?: number | {
|
|
1668
|
-
length: number;
|
|
1669
1682
|
from: number;
|
|
1670
1683
|
to: number;
|
|
1671
1684
|
start: number;
|
|
1685
|
+
length: number;
|
|
1672
1686
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1673
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;
|
|
1674
1688
|
}[] | undefined;
|
|
1675
1689
|
} | {
|
|
1676
|
-
html: string;
|
|
1677
1690
|
type: "html";
|
|
1691
|
+
html: string;
|
|
1678
1692
|
css: string;
|
|
1679
1693
|
width?: number | undefined;
|
|
1680
1694
|
height?: number | undefined;
|
|
1681
1695
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1682
1696
|
} | {
|
|
1683
|
-
src: string;
|
|
1684
1697
|
type: "image";
|
|
1698
|
+
src: string;
|
|
1685
1699
|
crop?: {
|
|
1686
1700
|
top?: number | undefined;
|
|
1687
1701
|
right?: number | undefined;
|
|
@@ -1689,8 +1703,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1689
1703
|
left?: number | undefined;
|
|
1690
1704
|
} | undefined;
|
|
1691
1705
|
} | {
|
|
1692
|
-
src: string;
|
|
1693
1706
|
type: "luma";
|
|
1707
|
+
src: string;
|
|
1694
1708
|
} | {
|
|
1695
1709
|
type: "shape";
|
|
1696
1710
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1740,14 +1754,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1740
1754
|
opacity: number;
|
|
1741
1755
|
} | undefined;
|
|
1742
1756
|
} | {
|
|
1743
|
-
src: string;
|
|
1744
1757
|
type: "video";
|
|
1758
|
+
src: string;
|
|
1745
1759
|
trim?: number | undefined;
|
|
1746
1760
|
volume?: number | {
|
|
1747
|
-
length: number;
|
|
1748
1761
|
from: number;
|
|
1749
1762
|
to: number;
|
|
1750
1763
|
start: number;
|
|
1764
|
+
length: number;
|
|
1751
1765
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1752
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;
|
|
1753
1767
|
}[] | undefined;
|
|
@@ -1760,26 +1774,26 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1760
1774
|
};
|
|
1761
1775
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1762
1776
|
opacity?: number | {
|
|
1763
|
-
length: number;
|
|
1764
1777
|
from: number;
|
|
1765
1778
|
to: number;
|
|
1766
1779
|
start: number;
|
|
1780
|
+
length: number;
|
|
1767
1781
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1768
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;
|
|
1769
1783
|
}[] | undefined;
|
|
1770
|
-
fit?: "
|
|
1784
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1771
1785
|
offset?: {
|
|
1772
1786
|
x?: number | {
|
|
1773
|
-
length: number;
|
|
1774
1787
|
start: number;
|
|
1788
|
+
length: number;
|
|
1775
1789
|
from?: number | undefined;
|
|
1776
1790
|
to?: number | undefined;
|
|
1777
1791
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1778
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;
|
|
1779
1793
|
}[] | undefined;
|
|
1780
1794
|
y?: number | {
|
|
1781
|
-
length: number;
|
|
1782
1795
|
start: number;
|
|
1796
|
+
length: number;
|
|
1783
1797
|
from?: number | undefined;
|
|
1784
1798
|
to?: number | undefined;
|
|
1785
1799
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1787,20 +1801,20 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1787
1801
|
}[] | undefined;
|
|
1788
1802
|
} | undefined;
|
|
1789
1803
|
scale?: number | {
|
|
1790
|
-
length: number;
|
|
1791
1804
|
from: number;
|
|
1792
1805
|
to: number;
|
|
1793
1806
|
start: number;
|
|
1807
|
+
length: number;
|
|
1794
1808
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1795
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;
|
|
1796
1810
|
}[] | undefined;
|
|
1797
1811
|
transform?: {
|
|
1798
1812
|
rotate?: {
|
|
1799
1813
|
angle: number | {
|
|
1800
|
-
length: number;
|
|
1801
1814
|
from: number;
|
|
1802
1815
|
to: number;
|
|
1803
1816
|
start: number;
|
|
1817
|
+
length: number;
|
|
1804
1818
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1805
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;
|
|
1806
1820
|
}[];
|
|
@@ -1832,18 +1846,18 @@ export declare const OutputSchema: zod.ZodObject<{
|
|
|
1832
1846
|
fps: zod.ZodOptional<zod.ZodNumber>;
|
|
1833
1847
|
format: zod.ZodString;
|
|
1834
1848
|
}, "strip", zod.ZodTypeAny, {
|
|
1835
|
-
format: string;
|
|
1836
1849
|
size: {
|
|
1837
1850
|
width: number;
|
|
1838
1851
|
height: number;
|
|
1839
1852
|
};
|
|
1853
|
+
format: string;
|
|
1840
1854
|
fps?: number | undefined;
|
|
1841
1855
|
}, {
|
|
1842
|
-
format: string;
|
|
1843
1856
|
size: {
|
|
1844
1857
|
width: number;
|
|
1845
1858
|
height: number;
|
|
1846
1859
|
};
|
|
1860
|
+
format: string;
|
|
1847
1861
|
fps?: number | undefined;
|
|
1848
1862
|
}>;
|
|
1849
1863
|
export declare const EditSchema: zod.ZodObject<{
|
|
@@ -2116,15 +2130,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2116
2130
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
2117
2131
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
2118
2132
|
}, "strip", zod.ZodTypeAny, {
|
|
2119
|
-
html: string;
|
|
2120
2133
|
type: "html";
|
|
2134
|
+
html: string;
|
|
2121
2135
|
css: string;
|
|
2122
2136
|
width?: number | undefined;
|
|
2123
2137
|
height?: number | undefined;
|
|
2124
2138
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2125
2139
|
}, {
|
|
2126
|
-
html: string;
|
|
2127
2140
|
type: "html";
|
|
2141
|
+
html: string;
|
|
2128
2142
|
css: string;
|
|
2129
2143
|
width?: number | undefined;
|
|
2130
2144
|
height?: number | undefined;
|
|
@@ -2149,8 +2163,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2149
2163
|
left?: number | undefined;
|
|
2150
2164
|
}>>;
|
|
2151
2165
|
}, "strip", zod.ZodTypeAny, {
|
|
2152
|
-
src: string;
|
|
2153
2166
|
type: "image";
|
|
2167
|
+
src: string;
|
|
2154
2168
|
crop?: {
|
|
2155
2169
|
top?: number | undefined;
|
|
2156
2170
|
right?: number | undefined;
|
|
@@ -2158,8 +2172,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2158
2172
|
left?: number | undefined;
|
|
2159
2173
|
} | undefined;
|
|
2160
2174
|
}, {
|
|
2161
|
-
src: string;
|
|
2162
2175
|
type: "image";
|
|
2176
|
+
src: string;
|
|
2163
2177
|
crop?: {
|
|
2164
2178
|
top?: number | undefined;
|
|
2165
2179
|
right?: number | undefined;
|
|
@@ -2186,38 +2200,40 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2186
2200
|
bottom?: number | undefined;
|
|
2187
2201
|
left?: number | undefined;
|
|
2188
2202
|
}>>;
|
|
2189
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2203
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
2204
|
+
from: zod.ZodNumber;
|
|
2205
|
+
to: zod.ZodNumber;
|
|
2190
2206
|
start: zod.ZodNumber;
|
|
2191
2207
|
length: zod.ZodNumber;
|
|
2192
2208
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2193
2209
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
2194
|
-
}
|
|
2210
|
+
}, {
|
|
2195
2211
|
from: zod.ZodNumber;
|
|
2196
2212
|
to: zod.ZodNumber;
|
|
2197
|
-
}
|
|
2198
|
-
length: number;
|
|
2213
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
2199
2214
|
from: number;
|
|
2200
2215
|
to: number;
|
|
2201
2216
|
start: number;
|
|
2217
|
+
length: number;
|
|
2202
2218
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2203
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;
|
|
2204
2220
|
}, {
|
|
2205
|
-
length: number;
|
|
2206
2221
|
from: number;
|
|
2207
2222
|
to: number;
|
|
2208
2223
|
start: number;
|
|
2224
|
+
length: number;
|
|
2209
2225
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2210
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;
|
|
2211
2227
|
}>, "many">, zod.ZodNumber]>>;
|
|
2212
2228
|
}, "strip", zod.ZodTypeAny, {
|
|
2213
|
-
src: string;
|
|
2214
2229
|
type: "video";
|
|
2230
|
+
src: string;
|
|
2215
2231
|
trim?: number | undefined;
|
|
2216
2232
|
volume?: number | {
|
|
2217
|
-
length: number;
|
|
2218
2233
|
from: number;
|
|
2219
2234
|
to: number;
|
|
2220
2235
|
start: number;
|
|
2236
|
+
length: number;
|
|
2221
2237
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2222
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;
|
|
2223
2239
|
}[] | undefined;
|
|
@@ -2228,14 +2244,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2228
2244
|
left?: number | undefined;
|
|
2229
2245
|
} | undefined;
|
|
2230
2246
|
}, {
|
|
2231
|
-
src: string;
|
|
2232
2247
|
type: "video";
|
|
2248
|
+
src: string;
|
|
2233
2249
|
trim?: number | undefined;
|
|
2234
2250
|
volume?: number | {
|
|
2235
|
-
length: number;
|
|
2236
2251
|
from: number;
|
|
2237
2252
|
to: number;
|
|
2238
2253
|
start: number;
|
|
2254
|
+
length: number;
|
|
2239
2255
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2240
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;
|
|
2241
2257
|
}[] | undefined;
|
|
@@ -2249,84 +2265,86 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2249
2265
|
type: zod.ZodLiteral<"luma">;
|
|
2250
2266
|
src: zod.ZodString;
|
|
2251
2267
|
}, "strip", zod.ZodTypeAny, {
|
|
2252
|
-
src: string;
|
|
2253
2268
|
type: "luma";
|
|
2254
|
-
}, {
|
|
2255
2269
|
src: string;
|
|
2270
|
+
}, {
|
|
2256
2271
|
type: "luma";
|
|
2272
|
+
src: string;
|
|
2257
2273
|
}>, zod.ZodObject<{
|
|
2258
2274
|
type: zod.ZodLiteral<"audio">;
|
|
2259
2275
|
src: zod.ZodString;
|
|
2260
2276
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
2261
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2277
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
2278
|
+
from: zod.ZodNumber;
|
|
2279
|
+
to: zod.ZodNumber;
|
|
2262
2280
|
start: zod.ZodNumber;
|
|
2263
2281
|
length: zod.ZodNumber;
|
|
2264
2282
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2265
2283
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
2266
|
-
}
|
|
2284
|
+
}, {
|
|
2267
2285
|
from: zod.ZodNumber;
|
|
2268
2286
|
to: zod.ZodNumber;
|
|
2269
|
-
}
|
|
2270
|
-
length: number;
|
|
2287
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
2271
2288
|
from: number;
|
|
2272
2289
|
to: number;
|
|
2273
2290
|
start: number;
|
|
2291
|
+
length: number;
|
|
2274
2292
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2275
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;
|
|
2276
2294
|
}, {
|
|
2277
|
-
length: number;
|
|
2278
2295
|
from: number;
|
|
2279
2296
|
to: number;
|
|
2280
2297
|
start: number;
|
|
2298
|
+
length: number;
|
|
2281
2299
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2282
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;
|
|
2283
2301
|
}>, "many">, zod.ZodNumber]>>;
|
|
2284
2302
|
}, "strip", zod.ZodTypeAny, {
|
|
2285
|
-
src: string;
|
|
2286
2303
|
type: "audio";
|
|
2304
|
+
src: string;
|
|
2287
2305
|
trim?: number | undefined;
|
|
2288
2306
|
volume?: number | {
|
|
2289
|
-
length: number;
|
|
2290
2307
|
from: number;
|
|
2291
2308
|
to: number;
|
|
2292
2309
|
start: number;
|
|
2310
|
+
length: number;
|
|
2293
2311
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2294
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;
|
|
2295
2313
|
}[] | undefined;
|
|
2296
2314
|
}, {
|
|
2297
|
-
src: string;
|
|
2298
2315
|
type: "audio";
|
|
2316
|
+
src: string;
|
|
2299
2317
|
trim?: number | undefined;
|
|
2300
2318
|
volume?: number | {
|
|
2301
|
-
length: number;
|
|
2302
2319
|
from: number;
|
|
2303
2320
|
to: number;
|
|
2304
2321
|
start: number;
|
|
2322
|
+
length: number;
|
|
2305
2323
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2306
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;
|
|
2307
2325
|
}[] | undefined;
|
|
2308
2326
|
}>]>, {
|
|
2309
|
-
src: string;
|
|
2310
2327
|
type: "audio";
|
|
2328
|
+
src: string;
|
|
2311
2329
|
trim?: number | undefined;
|
|
2312
2330
|
volume?: number | {
|
|
2313
|
-
length: number;
|
|
2314
2331
|
from: number;
|
|
2315
2332
|
to: number;
|
|
2316
2333
|
start: number;
|
|
2334
|
+
length: number;
|
|
2317
2335
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2318
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;
|
|
2319
2337
|
}[] | undefined;
|
|
2320
2338
|
} | {
|
|
2321
|
-
html: string;
|
|
2322
2339
|
type: "html";
|
|
2340
|
+
html: string;
|
|
2323
2341
|
css: string;
|
|
2324
2342
|
width?: number | undefined;
|
|
2325
2343
|
height?: number | undefined;
|
|
2326
2344
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2327
2345
|
} | {
|
|
2328
|
-
src: string;
|
|
2329
2346
|
type: "image";
|
|
2347
|
+
src: string;
|
|
2330
2348
|
crop?: {
|
|
2331
2349
|
top?: number | undefined;
|
|
2332
2350
|
right?: number | undefined;
|
|
@@ -2334,8 +2352,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2334
2352
|
left?: number | undefined;
|
|
2335
2353
|
} | undefined;
|
|
2336
2354
|
} | {
|
|
2337
|
-
src: string;
|
|
2338
2355
|
type: "luma";
|
|
2356
|
+
src: string;
|
|
2339
2357
|
} | {
|
|
2340
2358
|
type: "shape";
|
|
2341
2359
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -2385,14 +2403,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2385
2403
|
opacity: number;
|
|
2386
2404
|
} | undefined;
|
|
2387
2405
|
} | {
|
|
2388
|
-
src: string;
|
|
2389
2406
|
type: "video";
|
|
2407
|
+
src: string;
|
|
2390
2408
|
trim?: number | undefined;
|
|
2391
2409
|
volume?: number | {
|
|
2392
|
-
length: number;
|
|
2393
2410
|
from: number;
|
|
2394
2411
|
to: number;
|
|
2395
2412
|
start: number;
|
|
2413
|
+
length: number;
|
|
2396
2414
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2397
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;
|
|
2398
2416
|
}[] | undefined;
|
|
@@ -2403,27 +2421,27 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2403
2421
|
left?: number | undefined;
|
|
2404
2422
|
} | undefined;
|
|
2405
2423
|
}, {
|
|
2406
|
-
src: string;
|
|
2407
2424
|
type: "audio";
|
|
2425
|
+
src: string;
|
|
2408
2426
|
trim?: number | undefined;
|
|
2409
2427
|
volume?: number | {
|
|
2410
|
-
length: number;
|
|
2411
2428
|
from: number;
|
|
2412
2429
|
to: number;
|
|
2413
2430
|
start: number;
|
|
2431
|
+
length: number;
|
|
2414
2432
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2415
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;
|
|
2416
2434
|
}[] | undefined;
|
|
2417
2435
|
} | {
|
|
2418
|
-
html: string;
|
|
2419
2436
|
type: "html";
|
|
2437
|
+
html: string;
|
|
2420
2438
|
css: string;
|
|
2421
2439
|
width?: number | undefined;
|
|
2422
2440
|
height?: number | undefined;
|
|
2423
2441
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2424
2442
|
} | {
|
|
2425
|
-
src: string;
|
|
2426
2443
|
type: "image";
|
|
2444
|
+
src: string;
|
|
2427
2445
|
crop?: {
|
|
2428
2446
|
top?: number | undefined;
|
|
2429
2447
|
right?: number | undefined;
|
|
@@ -2431,8 +2449,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2431
2449
|
left?: number | undefined;
|
|
2432
2450
|
} | undefined;
|
|
2433
2451
|
} | {
|
|
2434
|
-
src: string;
|
|
2435
2452
|
type: "luma";
|
|
2453
|
+
src: string;
|
|
2436
2454
|
} | {
|
|
2437
2455
|
type: "shape";
|
|
2438
2456
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -2482,14 +2500,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2482
2500
|
opacity: number;
|
|
2483
2501
|
} | undefined;
|
|
2484
2502
|
} | {
|
|
2485
|
-
src: string;
|
|
2486
2503
|
type: "video";
|
|
2504
|
+
src: string;
|
|
2487
2505
|
trim?: number | undefined;
|
|
2488
2506
|
volume?: number | {
|
|
2489
|
-
length: number;
|
|
2490
2507
|
from: number;
|
|
2491
2508
|
to: number;
|
|
2492
2509
|
start: number;
|
|
2510
|
+
length: number;
|
|
2493
2511
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2494
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;
|
|
2495
2513
|
}[] | undefined;
|
|
@@ -2505,47 +2523,51 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2505
2523
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
2506
2524
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
2507
2525
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
2508
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2526
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
2527
|
+
from: zod.ZodNumber;
|
|
2528
|
+
to: zod.ZodNumber;
|
|
2509
2529
|
start: zod.ZodNumber;
|
|
2510
2530
|
length: zod.ZodNumber;
|
|
2511
2531
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2512
2532
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
2513
|
-
}
|
|
2533
|
+
}, {
|
|
2514
2534
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
2515
2535
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
2516
|
-
}
|
|
2517
|
-
length: number;
|
|
2536
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
2518
2537
|
from: number;
|
|
2519
2538
|
to: number;
|
|
2520
2539
|
start: number;
|
|
2540
|
+
length: number;
|
|
2521
2541
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2522
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;
|
|
2523
2543
|
}, {
|
|
2524
|
-
length: number;
|
|
2525
2544
|
start: number;
|
|
2545
|
+
length: number;
|
|
2526
2546
|
from?: number | undefined;
|
|
2527
2547
|
to?: number | undefined;
|
|
2528
2548
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2529
2549
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
2530
2550
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
2531
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2551
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
2552
|
+
from: zod.ZodNumber;
|
|
2553
|
+
to: zod.ZodNumber;
|
|
2532
2554
|
start: zod.ZodNumber;
|
|
2533
2555
|
length: zod.ZodNumber;
|
|
2534
2556
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2535
2557
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
2536
|
-
}
|
|
2558
|
+
}, {
|
|
2537
2559
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
2538
2560
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
2539
|
-
}
|
|
2540
|
-
length: number;
|
|
2561
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
2541
2562
|
from: number;
|
|
2542
2563
|
to: number;
|
|
2543
2564
|
start: number;
|
|
2565
|
+
length: number;
|
|
2544
2566
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2545
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;
|
|
2546
2568
|
}, {
|
|
2547
|
-
length: number;
|
|
2548
2569
|
start: number;
|
|
2570
|
+
length: number;
|
|
2549
2571
|
from?: number | undefined;
|
|
2550
2572
|
to?: number | undefined;
|
|
2551
2573
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -2553,125 +2575,131 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2553
2575
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
2554
2576
|
}, "strip", zod.ZodTypeAny, {
|
|
2555
2577
|
x: number | {
|
|
2556
|
-
length: number;
|
|
2557
2578
|
from: number;
|
|
2558
2579
|
to: number;
|
|
2559
2580
|
start: number;
|
|
2581
|
+
length: number;
|
|
2560
2582
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2561
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;
|
|
2562
2584
|
}[];
|
|
2563
2585
|
y: number | {
|
|
2564
|
-
length: number;
|
|
2565
2586
|
from: number;
|
|
2566
2587
|
to: number;
|
|
2567
2588
|
start: number;
|
|
2589
|
+
length: number;
|
|
2568
2590
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2569
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;
|
|
2570
2592
|
}[];
|
|
2571
2593
|
}, {
|
|
2572
2594
|
x?: number | {
|
|
2573
|
-
length: number;
|
|
2574
2595
|
start: number;
|
|
2596
|
+
length: number;
|
|
2575
2597
|
from?: number | undefined;
|
|
2576
2598
|
to?: number | undefined;
|
|
2577
2599
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2578
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;
|
|
2579
2601
|
}[] | undefined;
|
|
2580
2602
|
y?: number | {
|
|
2581
|
-
length: number;
|
|
2582
2603
|
start: number;
|
|
2604
|
+
length: number;
|
|
2583
2605
|
from?: number | undefined;
|
|
2584
2606
|
to?: number | undefined;
|
|
2585
2607
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2586
2608
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
2587
2609
|
}[] | undefined;
|
|
2588
2610
|
}>>>;
|
|
2589
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2611
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
2612
|
+
from: zod.ZodNumber;
|
|
2613
|
+
to: zod.ZodNumber;
|
|
2590
2614
|
start: zod.ZodNumber;
|
|
2591
2615
|
length: zod.ZodNumber;
|
|
2592
2616
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2593
2617
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
2594
|
-
}
|
|
2618
|
+
}, {
|
|
2595
2619
|
from: zod.ZodNumber;
|
|
2596
2620
|
to: zod.ZodNumber;
|
|
2597
|
-
}
|
|
2598
|
-
length: number;
|
|
2621
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
2599
2622
|
from: number;
|
|
2600
2623
|
to: number;
|
|
2601
2624
|
start: number;
|
|
2625
|
+
length: number;
|
|
2602
2626
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2603
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;
|
|
2604
2628
|
}, {
|
|
2605
|
-
length: number;
|
|
2606
2629
|
from: number;
|
|
2607
2630
|
to: number;
|
|
2608
2631
|
start: number;
|
|
2632
|
+
length: number;
|
|
2609
2633
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2610
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;
|
|
2611
2635
|
}>, "many">, zod.ZodNumber]>>>;
|
|
2612
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2636
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
2637
|
+
from: zod.ZodNumber;
|
|
2638
|
+
to: zod.ZodNumber;
|
|
2613
2639
|
start: zod.ZodNumber;
|
|
2614
2640
|
length: zod.ZodNumber;
|
|
2615
2641
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2616
2642
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
2617
|
-
}
|
|
2643
|
+
}, {
|
|
2618
2644
|
from: zod.ZodNumber;
|
|
2619
2645
|
to: zod.ZodNumber;
|
|
2620
|
-
}
|
|
2621
|
-
length: number;
|
|
2646
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
2622
2647
|
from: number;
|
|
2623
2648
|
to: number;
|
|
2624
2649
|
start: number;
|
|
2650
|
+
length: number;
|
|
2625
2651
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2626
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;
|
|
2627
2653
|
}, {
|
|
2628
|
-
length: number;
|
|
2629
2654
|
from: number;
|
|
2630
2655
|
to: number;
|
|
2631
2656
|
start: number;
|
|
2657
|
+
length: number;
|
|
2632
2658
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2633
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;
|
|
2634
2660
|
}>, "many">, zod.ZodNumber]>>>;
|
|
2635
2661
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
2636
2662
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
2637
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2663
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
2664
|
+
from: zod.ZodNumber;
|
|
2665
|
+
to: zod.ZodNumber;
|
|
2638
2666
|
start: zod.ZodNumber;
|
|
2639
2667
|
length: zod.ZodNumber;
|
|
2640
2668
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2641
2669
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
2642
|
-
}
|
|
2670
|
+
}, {
|
|
2643
2671
|
from: zod.ZodNumber;
|
|
2644
2672
|
to: zod.ZodNumber;
|
|
2645
|
-
}
|
|
2646
|
-
length: number;
|
|
2673
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
2647
2674
|
from: number;
|
|
2648
2675
|
to: number;
|
|
2649
2676
|
start: number;
|
|
2677
|
+
length: number;
|
|
2650
2678
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2651
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;
|
|
2652
2680
|
}, {
|
|
2653
|
-
length: number;
|
|
2654
2681
|
from: number;
|
|
2655
2682
|
to: number;
|
|
2656
2683
|
start: number;
|
|
2684
|
+
length: number;
|
|
2657
2685
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2658
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;
|
|
2659
2687
|
}>, "many">, zod.ZodNumber]>;
|
|
2660
2688
|
}, "strip", zod.ZodTypeAny, {
|
|
2661
2689
|
angle: number | {
|
|
2662
|
-
length: number;
|
|
2663
2690
|
from: number;
|
|
2664
2691
|
to: number;
|
|
2665
2692
|
start: number;
|
|
2693
|
+
length: number;
|
|
2666
2694
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2667
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;
|
|
2668
2696
|
}[];
|
|
2669
2697
|
}, {
|
|
2670
2698
|
angle: number | {
|
|
2671
|
-
length: number;
|
|
2672
2699
|
from: number;
|
|
2673
2700
|
to: number;
|
|
2674
2701
|
start: number;
|
|
2702
|
+
length: number;
|
|
2675
2703
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2676
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;
|
|
2677
2705
|
}[];
|
|
@@ -2679,10 +2707,10 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2679
2707
|
}, "strip", zod.ZodTypeAny, {
|
|
2680
2708
|
rotate: {
|
|
2681
2709
|
angle: number | {
|
|
2682
|
-
length: number;
|
|
2683
2710
|
from: number;
|
|
2684
2711
|
to: number;
|
|
2685
2712
|
start: number;
|
|
2713
|
+
length: number;
|
|
2686
2714
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2687
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;
|
|
2688
2716
|
}[];
|
|
@@ -2690,10 +2718,10 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2690
2718
|
}, {
|
|
2691
2719
|
rotate?: {
|
|
2692
2720
|
angle: number | {
|
|
2693
|
-
length: number;
|
|
2694
2721
|
from: number;
|
|
2695
2722
|
to: number;
|
|
2696
2723
|
start: number;
|
|
2724
|
+
length: number;
|
|
2697
2725
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2698
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;
|
|
2699
2727
|
}[];
|
|
@@ -2711,30 +2739,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2711
2739
|
out?: string | undefined;
|
|
2712
2740
|
}>>;
|
|
2713
2741
|
}, "strip", zod.ZodTypeAny, {
|
|
2714
|
-
length: number;
|
|
2715
2742
|
start: number;
|
|
2743
|
+
length: number;
|
|
2716
2744
|
asset: {
|
|
2717
|
-
src: string;
|
|
2718
2745
|
type: "audio";
|
|
2746
|
+
src: string;
|
|
2719
2747
|
trim?: number | undefined;
|
|
2720
2748
|
volume?: number | {
|
|
2721
|
-
length: number;
|
|
2722
2749
|
from: number;
|
|
2723
2750
|
to: number;
|
|
2724
2751
|
start: number;
|
|
2752
|
+
length: number;
|
|
2725
2753
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2726
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;
|
|
2727
2755
|
}[] | undefined;
|
|
2728
2756
|
} | {
|
|
2729
|
-
html: string;
|
|
2730
2757
|
type: "html";
|
|
2758
|
+
html: string;
|
|
2731
2759
|
css: string;
|
|
2732
2760
|
width?: number | undefined;
|
|
2733
2761
|
height?: number | undefined;
|
|
2734
2762
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2735
2763
|
} | {
|
|
2736
|
-
src: string;
|
|
2737
2764
|
type: "image";
|
|
2765
|
+
src: string;
|
|
2738
2766
|
crop?: {
|
|
2739
2767
|
top?: number | undefined;
|
|
2740
2768
|
right?: number | undefined;
|
|
@@ -2742,8 +2770,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2742
2770
|
left?: number | undefined;
|
|
2743
2771
|
} | undefined;
|
|
2744
2772
|
} | {
|
|
2745
|
-
src: string;
|
|
2746
2773
|
type: "luma";
|
|
2774
|
+
src: string;
|
|
2747
2775
|
} | {
|
|
2748
2776
|
type: "shape";
|
|
2749
2777
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -2793,14 +2821,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2793
2821
|
opacity: number;
|
|
2794
2822
|
} | undefined;
|
|
2795
2823
|
} | {
|
|
2796
|
-
src: string;
|
|
2797
2824
|
type: "video";
|
|
2825
|
+
src: string;
|
|
2798
2826
|
trim?: number | undefined;
|
|
2799
2827
|
volume?: number | {
|
|
2800
|
-
length: number;
|
|
2801
2828
|
from: number;
|
|
2802
2829
|
to: number;
|
|
2803
2830
|
start: number;
|
|
2831
|
+
length: number;
|
|
2804
2832
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2805
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;
|
|
2806
2834
|
}[] | undefined;
|
|
@@ -2813,47 +2841,47 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2813
2841
|
};
|
|
2814
2842
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2815
2843
|
opacity?: number | {
|
|
2816
|
-
length: number;
|
|
2817
2844
|
from: number;
|
|
2818
2845
|
to: number;
|
|
2819
2846
|
start: number;
|
|
2847
|
+
length: number;
|
|
2820
2848
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2821
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;
|
|
2822
2850
|
}[] | undefined;
|
|
2823
|
-
fit?: "
|
|
2851
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
2824
2852
|
offset?: {
|
|
2825
2853
|
x: number | {
|
|
2826
|
-
length: number;
|
|
2827
2854
|
from: number;
|
|
2828
2855
|
to: number;
|
|
2829
2856
|
start: number;
|
|
2857
|
+
length: number;
|
|
2830
2858
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2831
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;
|
|
2832
2860
|
}[];
|
|
2833
2861
|
y: number | {
|
|
2834
|
-
length: number;
|
|
2835
2862
|
from: number;
|
|
2836
2863
|
to: number;
|
|
2837
2864
|
start: number;
|
|
2865
|
+
length: number;
|
|
2838
2866
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2839
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;
|
|
2840
2868
|
}[];
|
|
2841
2869
|
} | undefined;
|
|
2842
2870
|
scale?: number | {
|
|
2843
|
-
length: number;
|
|
2844
2871
|
from: number;
|
|
2845
2872
|
to: number;
|
|
2846
2873
|
start: number;
|
|
2874
|
+
length: number;
|
|
2847
2875
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2848
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;
|
|
2849
2877
|
}[] | undefined;
|
|
2850
2878
|
transform?: {
|
|
2851
2879
|
rotate: {
|
|
2852
2880
|
angle: number | {
|
|
2853
|
-
length: number;
|
|
2854
2881
|
from: number;
|
|
2855
2882
|
to: number;
|
|
2856
2883
|
start: number;
|
|
2884
|
+
length: number;
|
|
2857
2885
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2858
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;
|
|
2859
2887
|
}[];
|
|
@@ -2865,30 +2893,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2865
2893
|
out?: string | undefined;
|
|
2866
2894
|
} | undefined;
|
|
2867
2895
|
}, {
|
|
2868
|
-
length: number;
|
|
2869
2896
|
start: number;
|
|
2897
|
+
length: number;
|
|
2870
2898
|
asset: {
|
|
2871
|
-
src: string;
|
|
2872
2899
|
type: "audio";
|
|
2900
|
+
src: string;
|
|
2873
2901
|
trim?: number | undefined;
|
|
2874
2902
|
volume?: number | {
|
|
2875
|
-
length: number;
|
|
2876
2903
|
from: number;
|
|
2877
2904
|
to: number;
|
|
2878
2905
|
start: number;
|
|
2906
|
+
length: number;
|
|
2879
2907
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2880
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;
|
|
2881
2909
|
}[] | undefined;
|
|
2882
2910
|
} | {
|
|
2883
|
-
html: string;
|
|
2884
2911
|
type: "html";
|
|
2912
|
+
html: string;
|
|
2885
2913
|
css: string;
|
|
2886
2914
|
width?: number | undefined;
|
|
2887
2915
|
height?: number | undefined;
|
|
2888
2916
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2889
2917
|
} | {
|
|
2890
|
-
src: string;
|
|
2891
2918
|
type: "image";
|
|
2919
|
+
src: string;
|
|
2892
2920
|
crop?: {
|
|
2893
2921
|
top?: number | undefined;
|
|
2894
2922
|
right?: number | undefined;
|
|
@@ -2896,8 +2924,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2896
2924
|
left?: number | undefined;
|
|
2897
2925
|
} | undefined;
|
|
2898
2926
|
} | {
|
|
2899
|
-
src: string;
|
|
2900
2927
|
type: "luma";
|
|
2928
|
+
src: string;
|
|
2901
2929
|
} | {
|
|
2902
2930
|
type: "shape";
|
|
2903
2931
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -2947,14 +2975,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2947
2975
|
opacity: number;
|
|
2948
2976
|
} | undefined;
|
|
2949
2977
|
} | {
|
|
2950
|
-
src: string;
|
|
2951
2978
|
type: "video";
|
|
2979
|
+
src: string;
|
|
2952
2980
|
trim?: number | undefined;
|
|
2953
2981
|
volume?: number | {
|
|
2954
|
-
length: number;
|
|
2955
2982
|
from: number;
|
|
2956
2983
|
to: number;
|
|
2957
2984
|
start: number;
|
|
2985
|
+
length: number;
|
|
2958
2986
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2959
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;
|
|
2960
2988
|
}[] | undefined;
|
|
@@ -2967,26 +2995,26 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2967
2995
|
};
|
|
2968
2996
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2969
2997
|
opacity?: number | {
|
|
2970
|
-
length: number;
|
|
2971
2998
|
from: number;
|
|
2972
2999
|
to: number;
|
|
2973
3000
|
start: number;
|
|
3001
|
+
length: number;
|
|
2974
3002
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2975
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;
|
|
2976
3004
|
}[] | undefined;
|
|
2977
|
-
fit?: "
|
|
3005
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
2978
3006
|
offset?: {
|
|
2979
3007
|
x?: number | {
|
|
2980
|
-
length: number;
|
|
2981
3008
|
start: number;
|
|
3009
|
+
length: number;
|
|
2982
3010
|
from?: number | undefined;
|
|
2983
3011
|
to?: number | undefined;
|
|
2984
3012
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2985
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;
|
|
2986
3014
|
}[] | undefined;
|
|
2987
3015
|
y?: number | {
|
|
2988
|
-
length: number;
|
|
2989
3016
|
start: number;
|
|
3017
|
+
length: number;
|
|
2990
3018
|
from?: number | undefined;
|
|
2991
3019
|
to?: number | undefined;
|
|
2992
3020
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -2994,20 +3022,20 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2994
3022
|
}[] | undefined;
|
|
2995
3023
|
} | undefined;
|
|
2996
3024
|
scale?: number | {
|
|
2997
|
-
length: number;
|
|
2998
3025
|
from: number;
|
|
2999
3026
|
to: number;
|
|
3000
3027
|
start: number;
|
|
3028
|
+
length: number;
|
|
3001
3029
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3002
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;
|
|
3003
3031
|
}[] | undefined;
|
|
3004
3032
|
transform?: {
|
|
3005
3033
|
rotate?: {
|
|
3006
3034
|
angle: number | {
|
|
3007
|
-
length: number;
|
|
3008
3035
|
from: number;
|
|
3009
3036
|
to: number;
|
|
3010
3037
|
start: number;
|
|
3038
|
+
length: number;
|
|
3011
3039
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3012
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;
|
|
3013
3041
|
}[];
|
|
@@ -3021,30 +3049,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3021
3049
|
}>, "many">;
|
|
3022
3050
|
}, "strip", zod.ZodTypeAny, {
|
|
3023
3051
|
clips: {
|
|
3024
|
-
length: number;
|
|
3025
3052
|
start: number;
|
|
3053
|
+
length: number;
|
|
3026
3054
|
asset: {
|
|
3027
|
-
src: string;
|
|
3028
3055
|
type: "audio";
|
|
3056
|
+
src: string;
|
|
3029
3057
|
trim?: number | undefined;
|
|
3030
3058
|
volume?: number | {
|
|
3031
|
-
length: number;
|
|
3032
3059
|
from: number;
|
|
3033
3060
|
to: number;
|
|
3034
3061
|
start: number;
|
|
3062
|
+
length: number;
|
|
3035
3063
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3036
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;
|
|
3037
3065
|
}[] | undefined;
|
|
3038
3066
|
} | {
|
|
3039
|
-
html: string;
|
|
3040
3067
|
type: "html";
|
|
3068
|
+
html: string;
|
|
3041
3069
|
css: string;
|
|
3042
3070
|
width?: number | undefined;
|
|
3043
3071
|
height?: number | undefined;
|
|
3044
3072
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3045
3073
|
} | {
|
|
3046
|
-
src: string;
|
|
3047
3074
|
type: "image";
|
|
3075
|
+
src: string;
|
|
3048
3076
|
crop?: {
|
|
3049
3077
|
top?: number | undefined;
|
|
3050
3078
|
right?: number | undefined;
|
|
@@ -3052,8 +3080,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3052
3080
|
left?: number | undefined;
|
|
3053
3081
|
} | undefined;
|
|
3054
3082
|
} | {
|
|
3055
|
-
src: string;
|
|
3056
3083
|
type: "luma";
|
|
3084
|
+
src: string;
|
|
3057
3085
|
} | {
|
|
3058
3086
|
type: "shape";
|
|
3059
3087
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3103,14 +3131,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3103
3131
|
opacity: number;
|
|
3104
3132
|
} | undefined;
|
|
3105
3133
|
} | {
|
|
3106
|
-
src: string;
|
|
3107
3134
|
type: "video";
|
|
3135
|
+
src: string;
|
|
3108
3136
|
trim?: number | undefined;
|
|
3109
3137
|
volume?: number | {
|
|
3110
|
-
length: number;
|
|
3111
3138
|
from: number;
|
|
3112
3139
|
to: number;
|
|
3113
3140
|
start: number;
|
|
3141
|
+
length: number;
|
|
3114
3142
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3115
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;
|
|
3116
3144
|
}[] | undefined;
|
|
@@ -3123,47 +3151,47 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3123
3151
|
};
|
|
3124
3152
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3125
3153
|
opacity?: number | {
|
|
3126
|
-
length: number;
|
|
3127
3154
|
from: number;
|
|
3128
3155
|
to: number;
|
|
3129
3156
|
start: number;
|
|
3157
|
+
length: number;
|
|
3130
3158
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3131
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;
|
|
3132
3160
|
}[] | undefined;
|
|
3133
|
-
fit?: "
|
|
3161
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3134
3162
|
offset?: {
|
|
3135
3163
|
x: number | {
|
|
3136
|
-
length: number;
|
|
3137
3164
|
from: number;
|
|
3138
3165
|
to: number;
|
|
3139
3166
|
start: number;
|
|
3167
|
+
length: number;
|
|
3140
3168
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3141
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;
|
|
3142
3170
|
}[];
|
|
3143
3171
|
y: number | {
|
|
3144
|
-
length: number;
|
|
3145
3172
|
from: number;
|
|
3146
3173
|
to: number;
|
|
3147
3174
|
start: number;
|
|
3175
|
+
length: number;
|
|
3148
3176
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3149
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;
|
|
3150
3178
|
}[];
|
|
3151
3179
|
} | undefined;
|
|
3152
3180
|
scale?: number | {
|
|
3153
|
-
length: number;
|
|
3154
3181
|
from: number;
|
|
3155
3182
|
to: number;
|
|
3156
3183
|
start: number;
|
|
3184
|
+
length: number;
|
|
3157
3185
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3158
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;
|
|
3159
3187
|
}[] | undefined;
|
|
3160
3188
|
transform?: {
|
|
3161
3189
|
rotate: {
|
|
3162
3190
|
angle: number | {
|
|
3163
|
-
length: number;
|
|
3164
3191
|
from: number;
|
|
3165
3192
|
to: number;
|
|
3166
3193
|
start: number;
|
|
3194
|
+
length: number;
|
|
3167
3195
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3168
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;
|
|
3169
3197
|
}[];
|
|
@@ -3177,30 +3205,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3177
3205
|
}[];
|
|
3178
3206
|
}, {
|
|
3179
3207
|
clips: {
|
|
3180
|
-
length: number;
|
|
3181
3208
|
start: number;
|
|
3209
|
+
length: number;
|
|
3182
3210
|
asset: {
|
|
3183
|
-
src: string;
|
|
3184
3211
|
type: "audio";
|
|
3212
|
+
src: string;
|
|
3185
3213
|
trim?: number | undefined;
|
|
3186
3214
|
volume?: number | {
|
|
3187
|
-
length: number;
|
|
3188
3215
|
from: number;
|
|
3189
3216
|
to: number;
|
|
3190
3217
|
start: number;
|
|
3218
|
+
length: number;
|
|
3191
3219
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3192
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;
|
|
3193
3221
|
}[] | undefined;
|
|
3194
3222
|
} | {
|
|
3195
|
-
html: string;
|
|
3196
3223
|
type: "html";
|
|
3224
|
+
html: string;
|
|
3197
3225
|
css: string;
|
|
3198
3226
|
width?: number | undefined;
|
|
3199
3227
|
height?: number | undefined;
|
|
3200
3228
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3201
3229
|
} | {
|
|
3202
|
-
src: string;
|
|
3203
3230
|
type: "image";
|
|
3231
|
+
src: string;
|
|
3204
3232
|
crop?: {
|
|
3205
3233
|
top?: number | undefined;
|
|
3206
3234
|
right?: number | undefined;
|
|
@@ -3208,8 +3236,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3208
3236
|
left?: number | undefined;
|
|
3209
3237
|
} | undefined;
|
|
3210
3238
|
} | {
|
|
3211
|
-
src: string;
|
|
3212
3239
|
type: "luma";
|
|
3240
|
+
src: string;
|
|
3213
3241
|
} | {
|
|
3214
3242
|
type: "shape";
|
|
3215
3243
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3259,14 +3287,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3259
3287
|
opacity: number;
|
|
3260
3288
|
} | undefined;
|
|
3261
3289
|
} | {
|
|
3262
|
-
src: string;
|
|
3263
3290
|
type: "video";
|
|
3291
|
+
src: string;
|
|
3264
3292
|
trim?: number | undefined;
|
|
3265
3293
|
volume?: number | {
|
|
3266
|
-
length: number;
|
|
3267
3294
|
from: number;
|
|
3268
3295
|
to: number;
|
|
3269
3296
|
start: number;
|
|
3297
|
+
length: number;
|
|
3270
3298
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3271
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;
|
|
3272
3300
|
}[] | undefined;
|
|
@@ -3279,26 +3307,26 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3279
3307
|
};
|
|
3280
3308
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3281
3309
|
opacity?: number | {
|
|
3282
|
-
length: number;
|
|
3283
3310
|
from: number;
|
|
3284
3311
|
to: number;
|
|
3285
3312
|
start: number;
|
|
3313
|
+
length: number;
|
|
3286
3314
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3287
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;
|
|
3288
3316
|
}[] | undefined;
|
|
3289
|
-
fit?: "
|
|
3317
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3290
3318
|
offset?: {
|
|
3291
3319
|
x?: number | {
|
|
3292
|
-
length: number;
|
|
3293
3320
|
start: number;
|
|
3321
|
+
length: number;
|
|
3294
3322
|
from?: number | undefined;
|
|
3295
3323
|
to?: number | undefined;
|
|
3296
3324
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3297
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;
|
|
3298
3326
|
}[] | undefined;
|
|
3299
3327
|
y?: number | {
|
|
3300
|
-
length: number;
|
|
3301
3328
|
start: number;
|
|
3329
|
+
length: number;
|
|
3302
3330
|
from?: number | undefined;
|
|
3303
3331
|
to?: number | undefined;
|
|
3304
3332
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -3306,20 +3334,20 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3306
3334
|
}[] | undefined;
|
|
3307
3335
|
} | undefined;
|
|
3308
3336
|
scale?: number | {
|
|
3309
|
-
length: number;
|
|
3310
3337
|
from: number;
|
|
3311
3338
|
to: number;
|
|
3312
3339
|
start: number;
|
|
3340
|
+
length: number;
|
|
3313
3341
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3314
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;
|
|
3315
3343
|
}[] | undefined;
|
|
3316
3344
|
transform?: {
|
|
3317
3345
|
rotate?: {
|
|
3318
3346
|
angle: number | {
|
|
3319
|
-
length: number;
|
|
3320
3347
|
from: number;
|
|
3321
3348
|
to: number;
|
|
3322
3349
|
start: number;
|
|
3350
|
+
length: number;
|
|
3323
3351
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3324
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;
|
|
3325
3353
|
}[];
|
|
@@ -3335,30 +3363,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3335
3363
|
}, "strip", zod.ZodTypeAny, {
|
|
3336
3364
|
tracks: {
|
|
3337
3365
|
clips: {
|
|
3338
|
-
length: number;
|
|
3339
3366
|
start: number;
|
|
3367
|
+
length: number;
|
|
3340
3368
|
asset: {
|
|
3341
|
-
src: string;
|
|
3342
3369
|
type: "audio";
|
|
3370
|
+
src: string;
|
|
3343
3371
|
trim?: number | undefined;
|
|
3344
3372
|
volume?: number | {
|
|
3345
|
-
length: number;
|
|
3346
3373
|
from: number;
|
|
3347
3374
|
to: number;
|
|
3348
3375
|
start: number;
|
|
3376
|
+
length: number;
|
|
3349
3377
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3350
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;
|
|
3351
3379
|
}[] | undefined;
|
|
3352
3380
|
} | {
|
|
3353
|
-
html: string;
|
|
3354
3381
|
type: "html";
|
|
3382
|
+
html: string;
|
|
3355
3383
|
css: string;
|
|
3356
3384
|
width?: number | undefined;
|
|
3357
3385
|
height?: number | undefined;
|
|
3358
3386
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3359
3387
|
} | {
|
|
3360
|
-
src: string;
|
|
3361
3388
|
type: "image";
|
|
3389
|
+
src: string;
|
|
3362
3390
|
crop?: {
|
|
3363
3391
|
top?: number | undefined;
|
|
3364
3392
|
right?: number | undefined;
|
|
@@ -3366,8 +3394,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3366
3394
|
left?: number | undefined;
|
|
3367
3395
|
} | undefined;
|
|
3368
3396
|
} | {
|
|
3369
|
-
src: string;
|
|
3370
3397
|
type: "luma";
|
|
3398
|
+
src: string;
|
|
3371
3399
|
} | {
|
|
3372
3400
|
type: "shape";
|
|
3373
3401
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3417,14 +3445,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3417
3445
|
opacity: number;
|
|
3418
3446
|
} | undefined;
|
|
3419
3447
|
} | {
|
|
3420
|
-
src: string;
|
|
3421
3448
|
type: "video";
|
|
3449
|
+
src: string;
|
|
3422
3450
|
trim?: number | undefined;
|
|
3423
3451
|
volume?: number | {
|
|
3424
|
-
length: number;
|
|
3425
3452
|
from: number;
|
|
3426
3453
|
to: number;
|
|
3427
3454
|
start: number;
|
|
3455
|
+
length: number;
|
|
3428
3456
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3429
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;
|
|
3430
3458
|
}[] | undefined;
|
|
@@ -3437,47 +3465,47 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3437
3465
|
};
|
|
3438
3466
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3439
3467
|
opacity?: number | {
|
|
3440
|
-
length: number;
|
|
3441
3468
|
from: number;
|
|
3442
3469
|
to: number;
|
|
3443
3470
|
start: number;
|
|
3471
|
+
length: number;
|
|
3444
3472
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3445
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;
|
|
3446
3474
|
}[] | undefined;
|
|
3447
|
-
fit?: "
|
|
3475
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3448
3476
|
offset?: {
|
|
3449
3477
|
x: number | {
|
|
3450
|
-
length: number;
|
|
3451
3478
|
from: number;
|
|
3452
3479
|
to: number;
|
|
3453
3480
|
start: number;
|
|
3481
|
+
length: number;
|
|
3454
3482
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3455
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;
|
|
3456
3484
|
}[];
|
|
3457
3485
|
y: number | {
|
|
3458
|
-
length: number;
|
|
3459
3486
|
from: number;
|
|
3460
3487
|
to: number;
|
|
3461
3488
|
start: number;
|
|
3489
|
+
length: number;
|
|
3462
3490
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3463
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;
|
|
3464
3492
|
}[];
|
|
3465
3493
|
} | undefined;
|
|
3466
3494
|
scale?: number | {
|
|
3467
|
-
length: number;
|
|
3468
3495
|
from: number;
|
|
3469
3496
|
to: number;
|
|
3470
3497
|
start: number;
|
|
3498
|
+
length: number;
|
|
3471
3499
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3472
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;
|
|
3473
3501
|
}[] | undefined;
|
|
3474
3502
|
transform?: {
|
|
3475
3503
|
rotate: {
|
|
3476
3504
|
angle: number | {
|
|
3477
|
-
length: number;
|
|
3478
3505
|
from: number;
|
|
3479
3506
|
to: number;
|
|
3480
3507
|
start: number;
|
|
3508
|
+
length: number;
|
|
3481
3509
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3482
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;
|
|
3483
3511
|
}[];
|
|
@@ -3497,30 +3525,30 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3497
3525
|
}, {
|
|
3498
3526
|
tracks: {
|
|
3499
3527
|
clips: {
|
|
3500
|
-
length: number;
|
|
3501
3528
|
start: number;
|
|
3529
|
+
length: number;
|
|
3502
3530
|
asset: {
|
|
3503
|
-
src: string;
|
|
3504
3531
|
type: "audio";
|
|
3532
|
+
src: string;
|
|
3505
3533
|
trim?: number | undefined;
|
|
3506
3534
|
volume?: number | {
|
|
3507
|
-
length: number;
|
|
3508
3535
|
from: number;
|
|
3509
3536
|
to: number;
|
|
3510
3537
|
start: number;
|
|
3538
|
+
length: number;
|
|
3511
3539
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3512
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;
|
|
3513
3541
|
}[] | undefined;
|
|
3514
3542
|
} | {
|
|
3515
|
-
html: string;
|
|
3516
3543
|
type: "html";
|
|
3544
|
+
html: string;
|
|
3517
3545
|
css: string;
|
|
3518
3546
|
width?: number | undefined;
|
|
3519
3547
|
height?: number | undefined;
|
|
3520
3548
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3521
3549
|
} | {
|
|
3522
|
-
src: string;
|
|
3523
3550
|
type: "image";
|
|
3551
|
+
src: string;
|
|
3524
3552
|
crop?: {
|
|
3525
3553
|
top?: number | undefined;
|
|
3526
3554
|
right?: number | undefined;
|
|
@@ -3528,8 +3556,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3528
3556
|
left?: number | undefined;
|
|
3529
3557
|
} | undefined;
|
|
3530
3558
|
} | {
|
|
3531
|
-
src: string;
|
|
3532
3559
|
type: "luma";
|
|
3560
|
+
src: string;
|
|
3533
3561
|
} | {
|
|
3534
3562
|
type: "shape";
|
|
3535
3563
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3579,14 +3607,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3579
3607
|
opacity: number;
|
|
3580
3608
|
} | undefined;
|
|
3581
3609
|
} | {
|
|
3582
|
-
src: string;
|
|
3583
3610
|
type: "video";
|
|
3611
|
+
src: string;
|
|
3584
3612
|
trim?: number | undefined;
|
|
3585
3613
|
volume?: number | {
|
|
3586
|
-
length: number;
|
|
3587
3614
|
from: number;
|
|
3588
3615
|
to: number;
|
|
3589
3616
|
start: number;
|
|
3617
|
+
length: number;
|
|
3590
3618
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3591
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;
|
|
3592
3620
|
}[] | undefined;
|
|
@@ -3599,26 +3627,26 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3599
3627
|
};
|
|
3600
3628
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3601
3629
|
opacity?: number | {
|
|
3602
|
-
length: number;
|
|
3603
3630
|
from: number;
|
|
3604
3631
|
to: number;
|
|
3605
3632
|
start: number;
|
|
3633
|
+
length: number;
|
|
3606
3634
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3607
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;
|
|
3608
3636
|
}[] | undefined;
|
|
3609
|
-
fit?: "
|
|
3637
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3610
3638
|
offset?: {
|
|
3611
3639
|
x?: number | {
|
|
3612
|
-
length: number;
|
|
3613
3640
|
start: number;
|
|
3641
|
+
length: number;
|
|
3614
3642
|
from?: number | undefined;
|
|
3615
3643
|
to?: number | undefined;
|
|
3616
3644
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3617
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;
|
|
3618
3646
|
}[] | undefined;
|
|
3619
3647
|
y?: number | {
|
|
3620
|
-
length: number;
|
|
3621
3648
|
start: number;
|
|
3649
|
+
length: number;
|
|
3622
3650
|
from?: number | undefined;
|
|
3623
3651
|
to?: number | undefined;
|
|
3624
3652
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -3626,20 +3654,20 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3626
3654
|
}[] | undefined;
|
|
3627
3655
|
} | undefined;
|
|
3628
3656
|
scale?: number | {
|
|
3629
|
-
length: number;
|
|
3630
3657
|
from: number;
|
|
3631
3658
|
to: number;
|
|
3632
3659
|
start: number;
|
|
3660
|
+
length: number;
|
|
3633
3661
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3634
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;
|
|
3635
3663
|
}[] | undefined;
|
|
3636
3664
|
transform?: {
|
|
3637
3665
|
rotate?: {
|
|
3638
3666
|
angle: number | {
|
|
3639
|
-
length: number;
|
|
3640
3667
|
from: number;
|
|
3641
3668
|
to: number;
|
|
3642
3669
|
start: number;
|
|
3670
|
+
length: number;
|
|
3643
3671
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3644
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;
|
|
3645
3673
|
}[];
|
|
@@ -3671,56 +3699,56 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3671
3699
|
fps: zod.ZodOptional<zod.ZodNumber>;
|
|
3672
3700
|
format: zod.ZodString;
|
|
3673
3701
|
}, "strip", zod.ZodTypeAny, {
|
|
3674
|
-
format: string;
|
|
3675
3702
|
size: {
|
|
3676
3703
|
width: number;
|
|
3677
3704
|
height: number;
|
|
3678
3705
|
};
|
|
3706
|
+
format: string;
|
|
3679
3707
|
fps?: number | undefined;
|
|
3680
3708
|
}, {
|
|
3681
|
-
format: string;
|
|
3682
3709
|
size: {
|
|
3683
3710
|
width: number;
|
|
3684
3711
|
height: number;
|
|
3685
3712
|
};
|
|
3713
|
+
format: string;
|
|
3686
3714
|
fps?: number | undefined;
|
|
3687
3715
|
}>;
|
|
3688
3716
|
}, "strip", zod.ZodTypeAny, {
|
|
3689
3717
|
output: {
|
|
3690
|
-
format: string;
|
|
3691
3718
|
size: {
|
|
3692
3719
|
width: number;
|
|
3693
3720
|
height: number;
|
|
3694
3721
|
};
|
|
3722
|
+
format: string;
|
|
3695
3723
|
fps?: number | undefined;
|
|
3696
3724
|
};
|
|
3697
3725
|
timeline: {
|
|
3698
3726
|
tracks: {
|
|
3699
3727
|
clips: {
|
|
3700
|
-
length: number;
|
|
3701
3728
|
start: number;
|
|
3729
|
+
length: number;
|
|
3702
3730
|
asset: {
|
|
3703
|
-
src: string;
|
|
3704
3731
|
type: "audio";
|
|
3732
|
+
src: string;
|
|
3705
3733
|
trim?: number | undefined;
|
|
3706
3734
|
volume?: number | {
|
|
3707
|
-
length: number;
|
|
3708
3735
|
from: number;
|
|
3709
3736
|
to: number;
|
|
3710
3737
|
start: number;
|
|
3738
|
+
length: number;
|
|
3711
3739
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3712
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;
|
|
3713
3741
|
}[] | undefined;
|
|
3714
3742
|
} | {
|
|
3715
|
-
html: string;
|
|
3716
3743
|
type: "html";
|
|
3744
|
+
html: string;
|
|
3717
3745
|
css: string;
|
|
3718
3746
|
width?: number | undefined;
|
|
3719
3747
|
height?: number | undefined;
|
|
3720
3748
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3721
3749
|
} | {
|
|
3722
|
-
src: string;
|
|
3723
3750
|
type: "image";
|
|
3751
|
+
src: string;
|
|
3724
3752
|
crop?: {
|
|
3725
3753
|
top?: number | undefined;
|
|
3726
3754
|
right?: number | undefined;
|
|
@@ -3728,8 +3756,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3728
3756
|
left?: number | undefined;
|
|
3729
3757
|
} | undefined;
|
|
3730
3758
|
} | {
|
|
3731
|
-
src: string;
|
|
3732
3759
|
type: "luma";
|
|
3760
|
+
src: string;
|
|
3733
3761
|
} | {
|
|
3734
3762
|
type: "shape";
|
|
3735
3763
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3779,14 +3807,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3779
3807
|
opacity: number;
|
|
3780
3808
|
} | undefined;
|
|
3781
3809
|
} | {
|
|
3782
|
-
src: string;
|
|
3783
3810
|
type: "video";
|
|
3811
|
+
src: string;
|
|
3784
3812
|
trim?: number | undefined;
|
|
3785
3813
|
volume?: number | {
|
|
3786
|
-
length: number;
|
|
3787
3814
|
from: number;
|
|
3788
3815
|
to: number;
|
|
3789
3816
|
start: number;
|
|
3817
|
+
length: number;
|
|
3790
3818
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3791
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;
|
|
3792
3820
|
}[] | undefined;
|
|
@@ -3799,47 +3827,47 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3799
3827
|
};
|
|
3800
3828
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3801
3829
|
opacity?: number | {
|
|
3802
|
-
length: number;
|
|
3803
3830
|
from: number;
|
|
3804
3831
|
to: number;
|
|
3805
3832
|
start: number;
|
|
3833
|
+
length: number;
|
|
3806
3834
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3807
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;
|
|
3808
3836
|
}[] | undefined;
|
|
3809
|
-
fit?: "
|
|
3837
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3810
3838
|
offset?: {
|
|
3811
3839
|
x: number | {
|
|
3812
|
-
length: number;
|
|
3813
3840
|
from: number;
|
|
3814
3841
|
to: number;
|
|
3815
3842
|
start: number;
|
|
3843
|
+
length: number;
|
|
3816
3844
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3817
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;
|
|
3818
3846
|
}[];
|
|
3819
3847
|
y: number | {
|
|
3820
|
-
length: number;
|
|
3821
3848
|
from: number;
|
|
3822
3849
|
to: number;
|
|
3823
3850
|
start: number;
|
|
3851
|
+
length: number;
|
|
3824
3852
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3825
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;
|
|
3826
3854
|
}[];
|
|
3827
3855
|
} | undefined;
|
|
3828
3856
|
scale?: number | {
|
|
3829
|
-
length: number;
|
|
3830
3857
|
from: number;
|
|
3831
3858
|
to: number;
|
|
3832
3859
|
start: number;
|
|
3860
|
+
length: number;
|
|
3833
3861
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3834
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;
|
|
3835
3863
|
}[] | undefined;
|
|
3836
3864
|
transform?: {
|
|
3837
3865
|
rotate: {
|
|
3838
3866
|
angle: number | {
|
|
3839
|
-
length: number;
|
|
3840
3867
|
from: number;
|
|
3841
3868
|
to: number;
|
|
3842
3869
|
start: number;
|
|
3870
|
+
length: number;
|
|
3843
3871
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3844
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;
|
|
3845
3873
|
}[];
|
|
@@ -3859,40 +3887,40 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3859
3887
|
};
|
|
3860
3888
|
}, {
|
|
3861
3889
|
output: {
|
|
3862
|
-
format: string;
|
|
3863
3890
|
size: {
|
|
3864
3891
|
width: number;
|
|
3865
3892
|
height: number;
|
|
3866
3893
|
};
|
|
3894
|
+
format: string;
|
|
3867
3895
|
fps?: number | undefined;
|
|
3868
3896
|
};
|
|
3869
3897
|
timeline: {
|
|
3870
3898
|
tracks: {
|
|
3871
3899
|
clips: {
|
|
3872
|
-
length: number;
|
|
3873
3900
|
start: number;
|
|
3901
|
+
length: number;
|
|
3874
3902
|
asset: {
|
|
3875
|
-
src: string;
|
|
3876
3903
|
type: "audio";
|
|
3904
|
+
src: string;
|
|
3877
3905
|
trim?: number | undefined;
|
|
3878
3906
|
volume?: number | {
|
|
3879
|
-
length: number;
|
|
3880
3907
|
from: number;
|
|
3881
3908
|
to: number;
|
|
3882
3909
|
start: number;
|
|
3910
|
+
length: number;
|
|
3883
3911
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3884
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;
|
|
3885
3913
|
}[] | undefined;
|
|
3886
3914
|
} | {
|
|
3887
|
-
html: string;
|
|
3888
3915
|
type: "html";
|
|
3916
|
+
html: string;
|
|
3889
3917
|
css: string;
|
|
3890
3918
|
width?: number | undefined;
|
|
3891
3919
|
height?: number | undefined;
|
|
3892
3920
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3893
3921
|
} | {
|
|
3894
|
-
src: string;
|
|
3895
3922
|
type: "image";
|
|
3923
|
+
src: string;
|
|
3896
3924
|
crop?: {
|
|
3897
3925
|
top?: number | undefined;
|
|
3898
3926
|
right?: number | undefined;
|
|
@@ -3900,8 +3928,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3900
3928
|
left?: number | undefined;
|
|
3901
3929
|
} | undefined;
|
|
3902
3930
|
} | {
|
|
3903
|
-
src: string;
|
|
3904
3931
|
type: "luma";
|
|
3932
|
+
src: string;
|
|
3905
3933
|
} | {
|
|
3906
3934
|
type: "shape";
|
|
3907
3935
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -3951,14 +3979,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3951
3979
|
opacity: number;
|
|
3952
3980
|
} | undefined;
|
|
3953
3981
|
} | {
|
|
3954
|
-
src: string;
|
|
3955
3982
|
type: "video";
|
|
3983
|
+
src: string;
|
|
3956
3984
|
trim?: number | undefined;
|
|
3957
3985
|
volume?: number | {
|
|
3958
|
-
length: number;
|
|
3959
3986
|
from: number;
|
|
3960
3987
|
to: number;
|
|
3961
3988
|
start: number;
|
|
3989
|
+
length: number;
|
|
3962
3990
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3963
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;
|
|
3964
3992
|
}[] | undefined;
|
|
@@ -3971,26 +3999,26 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3971
3999
|
};
|
|
3972
4000
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
3973
4001
|
opacity?: number | {
|
|
3974
|
-
length: number;
|
|
3975
4002
|
from: number;
|
|
3976
4003
|
to: number;
|
|
3977
4004
|
start: number;
|
|
4005
|
+
length: number;
|
|
3978
4006
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3979
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;
|
|
3980
4008
|
}[] | undefined;
|
|
3981
|
-
fit?: "
|
|
4009
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
3982
4010
|
offset?: {
|
|
3983
4011
|
x?: number | {
|
|
3984
|
-
length: number;
|
|
3985
4012
|
start: number;
|
|
4013
|
+
length: number;
|
|
3986
4014
|
from?: number | undefined;
|
|
3987
4015
|
to?: number | undefined;
|
|
3988
4016
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3989
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;
|
|
3990
4018
|
}[] | undefined;
|
|
3991
4019
|
y?: number | {
|
|
3992
|
-
length: number;
|
|
3993
4020
|
start: number;
|
|
4021
|
+
length: number;
|
|
3994
4022
|
from?: number | undefined;
|
|
3995
4023
|
to?: number | undefined;
|
|
3996
4024
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -3998,20 +4026,20 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3998
4026
|
}[] | undefined;
|
|
3999
4027
|
} | undefined;
|
|
4000
4028
|
scale?: number | {
|
|
4001
|
-
length: number;
|
|
4002
4029
|
from: number;
|
|
4003
4030
|
to: number;
|
|
4004
4031
|
start: number;
|
|
4032
|
+
length: number;
|
|
4005
4033
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
4006
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;
|
|
4007
4035
|
}[] | undefined;
|
|
4008
4036
|
transform?: {
|
|
4009
4037
|
rotate?: {
|
|
4010
4038
|
angle: number | {
|
|
4011
|
-
length: number;
|
|
4012
4039
|
from: number;
|
|
4013
4040
|
to: number;
|
|
4014
4041
|
start: number;
|
|
4042
|
+
length: number;
|
|
4015
4043
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
4016
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;
|
|
4017
4045
|
}[];
|