@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
|
@@ -259,15 +259,15 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
259
259
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
260
260
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
261
261
|
}, "strip", zod.ZodTypeAny, {
|
|
262
|
-
html: string;
|
|
263
262
|
type: "html";
|
|
263
|
+
html: string;
|
|
264
264
|
css: string;
|
|
265
265
|
width?: number | undefined;
|
|
266
266
|
height?: number | undefined;
|
|
267
267
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
268
268
|
}, {
|
|
269
|
-
html: string;
|
|
270
269
|
type: "html";
|
|
270
|
+
html: string;
|
|
271
271
|
css: string;
|
|
272
272
|
width?: number | undefined;
|
|
273
273
|
height?: number | undefined;
|
|
@@ -292,8 +292,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
292
292
|
left?: number | undefined;
|
|
293
293
|
}>>;
|
|
294
294
|
}, "strip", zod.ZodTypeAny, {
|
|
295
|
-
src: string;
|
|
296
295
|
type: "image";
|
|
296
|
+
src: string;
|
|
297
297
|
crop?: {
|
|
298
298
|
top?: number | undefined;
|
|
299
299
|
right?: number | undefined;
|
|
@@ -301,8 +301,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
301
301
|
left?: number | undefined;
|
|
302
302
|
} | undefined;
|
|
303
303
|
}, {
|
|
304
|
-
src: string;
|
|
305
304
|
type: "image";
|
|
305
|
+
src: string;
|
|
306
306
|
crop?: {
|
|
307
307
|
top?: number | undefined;
|
|
308
308
|
right?: number | undefined;
|
|
@@ -329,38 +329,40 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
329
329
|
bottom?: number | undefined;
|
|
330
330
|
left?: number | undefined;
|
|
331
331
|
}>>;
|
|
332
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
332
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
333
|
+
from: zod.ZodNumber;
|
|
334
|
+
to: zod.ZodNumber;
|
|
333
335
|
start: zod.ZodNumber;
|
|
334
336
|
length: zod.ZodNumber;
|
|
335
337
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
336
338
|
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"]>>;
|
|
337
|
-
}
|
|
339
|
+
}, {
|
|
338
340
|
from: zod.ZodNumber;
|
|
339
341
|
to: zod.ZodNumber;
|
|
340
|
-
}
|
|
341
|
-
length: number;
|
|
342
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
342
343
|
from: number;
|
|
343
344
|
to: number;
|
|
344
345
|
start: number;
|
|
346
|
+
length: number;
|
|
345
347
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
346
348
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
347
349
|
}, {
|
|
348
|
-
length: number;
|
|
349
350
|
from: number;
|
|
350
351
|
to: number;
|
|
351
352
|
start: number;
|
|
353
|
+
length: number;
|
|
352
354
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
353
355
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
354
356
|
}>, "many">, zod.ZodNumber]>>;
|
|
355
357
|
}, "strip", zod.ZodTypeAny, {
|
|
356
|
-
src: string;
|
|
357
358
|
type: "video";
|
|
359
|
+
src: string;
|
|
358
360
|
trim?: number | undefined;
|
|
359
361
|
volume?: number | {
|
|
360
|
-
length: number;
|
|
361
362
|
from: number;
|
|
362
363
|
to: number;
|
|
363
364
|
start: number;
|
|
365
|
+
length: number;
|
|
364
366
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
365
367
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
366
368
|
}[] | undefined;
|
|
@@ -371,14 +373,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
371
373
|
left?: number | undefined;
|
|
372
374
|
} | undefined;
|
|
373
375
|
}, {
|
|
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;
|
|
@@ -392,84 +394,86 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
392
394
|
type: zod.ZodLiteral<"luma">;
|
|
393
395
|
src: zod.ZodString;
|
|
394
396
|
}, "strip", zod.ZodTypeAny, {
|
|
395
|
-
src: string;
|
|
396
397
|
type: "luma";
|
|
397
|
-
}, {
|
|
398
398
|
src: string;
|
|
399
|
+
}, {
|
|
399
400
|
type: "luma";
|
|
401
|
+
src: string;
|
|
400
402
|
}>, zod.ZodObject<{
|
|
401
403
|
type: zod.ZodLiteral<"audio">;
|
|
402
404
|
src: zod.ZodString;
|
|
403
405
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
404
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
406
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
407
|
+
from: zod.ZodNumber;
|
|
408
|
+
to: zod.ZodNumber;
|
|
405
409
|
start: zod.ZodNumber;
|
|
406
410
|
length: zod.ZodNumber;
|
|
407
411
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
408
412
|
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"]>>;
|
|
409
|
-
}
|
|
413
|
+
}, {
|
|
410
414
|
from: zod.ZodNumber;
|
|
411
415
|
to: zod.ZodNumber;
|
|
412
|
-
}
|
|
413
|
-
length: number;
|
|
416
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
414
417
|
from: number;
|
|
415
418
|
to: number;
|
|
416
419
|
start: number;
|
|
420
|
+
length: number;
|
|
417
421
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
418
422
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
419
423
|
}, {
|
|
420
|
-
length: number;
|
|
421
424
|
from: number;
|
|
422
425
|
to: number;
|
|
423
426
|
start: number;
|
|
427
|
+
length: number;
|
|
424
428
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
425
429
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
426
430
|
}>, "many">, zod.ZodNumber]>>;
|
|
427
431
|
}, "strip", zod.ZodTypeAny, {
|
|
428
|
-
src: string;
|
|
429
432
|
type: "audio";
|
|
433
|
+
src: string;
|
|
430
434
|
trim?: number | undefined;
|
|
431
435
|
volume?: number | {
|
|
432
|
-
length: number;
|
|
433
436
|
from: number;
|
|
434
437
|
to: number;
|
|
435
438
|
start: number;
|
|
439
|
+
length: number;
|
|
436
440
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
437
441
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
438
442
|
}[] | undefined;
|
|
439
443
|
}, {
|
|
440
|
-
src: string;
|
|
441
444
|
type: "audio";
|
|
445
|
+
src: string;
|
|
442
446
|
trim?: number | undefined;
|
|
443
447
|
volume?: number | {
|
|
444
|
-
length: number;
|
|
445
448
|
from: number;
|
|
446
449
|
to: number;
|
|
447
450
|
start: number;
|
|
451
|
+
length: number;
|
|
448
452
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
449
453
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
450
454
|
}[] | undefined;
|
|
451
455
|
}>]>, {
|
|
452
|
-
src: string;
|
|
453
456
|
type: "audio";
|
|
457
|
+
src: string;
|
|
454
458
|
trim?: number | undefined;
|
|
455
459
|
volume?: number | {
|
|
456
|
-
length: number;
|
|
457
460
|
from: number;
|
|
458
461
|
to: number;
|
|
459
462
|
start: number;
|
|
463
|
+
length: number;
|
|
460
464
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
461
465
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
462
466
|
}[] | undefined;
|
|
463
467
|
} | {
|
|
464
|
-
html: string;
|
|
465
468
|
type: "html";
|
|
469
|
+
html: string;
|
|
466
470
|
css: string;
|
|
467
471
|
width?: number | undefined;
|
|
468
472
|
height?: number | undefined;
|
|
469
473
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
470
474
|
} | {
|
|
471
|
-
src: string;
|
|
472
475
|
type: "image";
|
|
476
|
+
src: string;
|
|
473
477
|
crop?: {
|
|
474
478
|
top?: number | undefined;
|
|
475
479
|
right?: number | undefined;
|
|
@@ -477,8 +481,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
477
481
|
left?: number | undefined;
|
|
478
482
|
} | undefined;
|
|
479
483
|
} | {
|
|
480
|
-
src: string;
|
|
481
484
|
type: "luma";
|
|
485
|
+
src: string;
|
|
482
486
|
} | {
|
|
483
487
|
type: "shape";
|
|
484
488
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -528,14 +532,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
528
532
|
opacity: number;
|
|
529
533
|
} | undefined;
|
|
530
534
|
} | {
|
|
531
|
-
src: string;
|
|
532
535
|
type: "video";
|
|
536
|
+
src: string;
|
|
533
537
|
trim?: number | undefined;
|
|
534
538
|
volume?: number | {
|
|
535
|
-
length: number;
|
|
536
539
|
from: number;
|
|
537
540
|
to: number;
|
|
538
541
|
start: number;
|
|
542
|
+
length: number;
|
|
539
543
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
540
544
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
541
545
|
}[] | undefined;
|
|
@@ -546,27 +550,27 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
546
550
|
left?: number | undefined;
|
|
547
551
|
} | undefined;
|
|
548
552
|
}, {
|
|
549
|
-
src: string;
|
|
550
553
|
type: "audio";
|
|
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;
|
|
560
564
|
} | {
|
|
561
|
-
html: string;
|
|
562
565
|
type: "html";
|
|
566
|
+
html: string;
|
|
563
567
|
css: string;
|
|
564
568
|
width?: number | undefined;
|
|
565
569
|
height?: number | undefined;
|
|
566
570
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
567
571
|
} | {
|
|
568
|
-
src: string;
|
|
569
572
|
type: "image";
|
|
573
|
+
src: string;
|
|
570
574
|
crop?: {
|
|
571
575
|
top?: number | undefined;
|
|
572
576
|
right?: number | undefined;
|
|
@@ -574,8 +578,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
574
578
|
left?: number | undefined;
|
|
575
579
|
} | undefined;
|
|
576
580
|
} | {
|
|
577
|
-
src: string;
|
|
578
581
|
type: "luma";
|
|
582
|
+
src: string;
|
|
579
583
|
} | {
|
|
580
584
|
type: "shape";
|
|
581
585
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -625,14 +629,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
625
629
|
opacity: number;
|
|
626
630
|
} | undefined;
|
|
627
631
|
} | {
|
|
628
|
-
src: string;
|
|
629
632
|
type: "video";
|
|
633
|
+
src: string;
|
|
630
634
|
trim?: number | undefined;
|
|
631
635
|
volume?: number | {
|
|
632
|
-
length: number;
|
|
633
636
|
from: number;
|
|
634
637
|
to: number;
|
|
635
638
|
start: number;
|
|
639
|
+
length: number;
|
|
636
640
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
637
641
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
638
642
|
}[] | undefined;
|
|
@@ -648,47 +652,51 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
648
652
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
649
653
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
650
654
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
651
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
655
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
656
|
+
from: zod.ZodNumber;
|
|
657
|
+
to: zod.ZodNumber;
|
|
652
658
|
start: zod.ZodNumber;
|
|
653
659
|
length: zod.ZodNumber;
|
|
654
660
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
655
661
|
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"]>>;
|
|
656
|
-
}
|
|
662
|
+
}, {
|
|
657
663
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
658
664
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
659
|
-
}
|
|
660
|
-
length: number;
|
|
665
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
661
666
|
from: number;
|
|
662
667
|
to: number;
|
|
663
668
|
start: number;
|
|
669
|
+
length: number;
|
|
664
670
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
665
671
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
666
672
|
}, {
|
|
667
|
-
length: number;
|
|
668
673
|
start: number;
|
|
674
|
+
length: number;
|
|
669
675
|
from?: number | undefined;
|
|
670
676
|
to?: number | undefined;
|
|
671
677
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
672
678
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
673
679
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
674
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
680
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
681
|
+
from: zod.ZodNumber;
|
|
682
|
+
to: zod.ZodNumber;
|
|
675
683
|
start: zod.ZodNumber;
|
|
676
684
|
length: zod.ZodNumber;
|
|
677
685
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
678
686
|
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"]>>;
|
|
679
|
-
}
|
|
687
|
+
}, {
|
|
680
688
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
681
689
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
682
|
-
}
|
|
683
|
-
length: number;
|
|
690
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
684
691
|
from: number;
|
|
685
692
|
to: number;
|
|
686
693
|
start: number;
|
|
694
|
+
length: number;
|
|
687
695
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
688
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;
|
|
689
697
|
}, {
|
|
690
|
-
length: number;
|
|
691
698
|
start: number;
|
|
699
|
+
length: number;
|
|
692
700
|
from?: number | undefined;
|
|
693
701
|
to?: number | undefined;
|
|
694
702
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -696,125 +704,131 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
696
704
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
697
705
|
}, "strip", zod.ZodTypeAny, {
|
|
698
706
|
x: number | {
|
|
699
|
-
length: number;
|
|
700
707
|
from: number;
|
|
701
708
|
to: number;
|
|
702
709
|
start: number;
|
|
710
|
+
length: number;
|
|
703
711
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
704
712
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
705
713
|
}[];
|
|
706
714
|
y: number | {
|
|
707
|
-
length: number;
|
|
708
715
|
from: number;
|
|
709
716
|
to: number;
|
|
710
717
|
start: number;
|
|
718
|
+
length: number;
|
|
711
719
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
712
720
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
713
721
|
}[];
|
|
714
722
|
}, {
|
|
715
723
|
x?: number | {
|
|
716
|
-
length: number;
|
|
717
724
|
start: number;
|
|
725
|
+
length: number;
|
|
718
726
|
from?: number | undefined;
|
|
719
727
|
to?: number | undefined;
|
|
720
728
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
721
729
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
722
730
|
}[] | undefined;
|
|
723
731
|
y?: number | {
|
|
724
|
-
length: number;
|
|
725
732
|
start: number;
|
|
733
|
+
length: number;
|
|
726
734
|
from?: number | undefined;
|
|
727
735
|
to?: number | undefined;
|
|
728
736
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
729
737
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
730
738
|
}[] | undefined;
|
|
731
739
|
}>>>;
|
|
732
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
740
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
741
|
+
from: zod.ZodNumber;
|
|
742
|
+
to: zod.ZodNumber;
|
|
733
743
|
start: zod.ZodNumber;
|
|
734
744
|
length: zod.ZodNumber;
|
|
735
745
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
736
746
|
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"]>>;
|
|
737
|
-
}
|
|
747
|
+
}, {
|
|
738
748
|
from: zod.ZodNumber;
|
|
739
749
|
to: zod.ZodNumber;
|
|
740
|
-
}
|
|
741
|
-
length: number;
|
|
750
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
742
751
|
from: number;
|
|
743
752
|
to: number;
|
|
744
753
|
start: number;
|
|
754
|
+
length: number;
|
|
745
755
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
746
756
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
747
757
|
}, {
|
|
748
|
-
length: number;
|
|
749
758
|
from: number;
|
|
750
759
|
to: number;
|
|
751
760
|
start: number;
|
|
761
|
+
length: number;
|
|
752
762
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
753
763
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
754
764
|
}>, "many">, zod.ZodNumber]>>>;
|
|
755
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
765
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
766
|
+
from: zod.ZodNumber;
|
|
767
|
+
to: zod.ZodNumber;
|
|
756
768
|
start: zod.ZodNumber;
|
|
757
769
|
length: zod.ZodNumber;
|
|
758
770
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
759
771
|
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"]>>;
|
|
760
|
-
}
|
|
772
|
+
}, {
|
|
761
773
|
from: zod.ZodNumber;
|
|
762
774
|
to: zod.ZodNumber;
|
|
763
|
-
}
|
|
764
|
-
length: number;
|
|
775
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
765
776
|
from: number;
|
|
766
777
|
to: number;
|
|
767
778
|
start: number;
|
|
779
|
+
length: number;
|
|
768
780
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
769
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;
|
|
770
782
|
}, {
|
|
771
|
-
length: number;
|
|
772
783
|
from: number;
|
|
773
784
|
to: number;
|
|
774
785
|
start: number;
|
|
786
|
+
length: number;
|
|
775
787
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
776
788
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
777
789
|
}>, "many">, zod.ZodNumber]>>>;
|
|
778
790
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
779
791
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
780
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
792
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
|
|
793
|
+
from: zod.ZodNumber;
|
|
794
|
+
to: zod.ZodNumber;
|
|
781
795
|
start: zod.ZodNumber;
|
|
782
796
|
length: zod.ZodNumber;
|
|
783
797
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
784
798
|
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"]>>;
|
|
785
|
-
}
|
|
799
|
+
}, {
|
|
786
800
|
from: zod.ZodNumber;
|
|
787
801
|
to: zod.ZodNumber;
|
|
788
|
-
}
|
|
789
|
-
length: number;
|
|
802
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
790
803
|
from: number;
|
|
791
804
|
to: number;
|
|
792
805
|
start: number;
|
|
806
|
+
length: number;
|
|
793
807
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
794
808
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
795
809
|
}, {
|
|
796
|
-
length: number;
|
|
797
810
|
from: number;
|
|
798
811
|
to: number;
|
|
799
812
|
start: number;
|
|
813
|
+
length: number;
|
|
800
814
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
801
815
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
802
816
|
}>, "many">, zod.ZodNumber]>;
|
|
803
817
|
}, "strip", zod.ZodTypeAny, {
|
|
804
818
|
angle: number | {
|
|
805
|
-
length: number;
|
|
806
819
|
from: number;
|
|
807
820
|
to: number;
|
|
808
821
|
start: number;
|
|
822
|
+
length: number;
|
|
809
823
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
810
824
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
811
825
|
}[];
|
|
812
826
|
}, {
|
|
813
827
|
angle: number | {
|
|
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
|
}[];
|
|
@@ -822,10 +836,10 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
822
836
|
}, "strip", zod.ZodTypeAny, {
|
|
823
837
|
rotate: {
|
|
824
838
|
angle: number | {
|
|
825
|
-
length: number;
|
|
826
839
|
from: number;
|
|
827
840
|
to: number;
|
|
828
841
|
start: number;
|
|
842
|
+
length: number;
|
|
829
843
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
830
844
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
831
845
|
}[];
|
|
@@ -833,10 +847,10 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
833
847
|
}, {
|
|
834
848
|
rotate?: {
|
|
835
849
|
angle: number | {
|
|
836
|
-
length: number;
|
|
837
850
|
from: number;
|
|
838
851
|
to: number;
|
|
839
852
|
start: number;
|
|
853
|
+
length: number;
|
|
840
854
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
841
855
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
842
856
|
}[];
|
|
@@ -854,30 +868,30 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
854
868
|
out?: string | undefined;
|
|
855
869
|
}>>;
|
|
856
870
|
}, "strip", zod.ZodTypeAny, {
|
|
857
|
-
length: number;
|
|
858
871
|
start: number;
|
|
872
|
+
length: number;
|
|
859
873
|
asset: {
|
|
860
|
-
src: string;
|
|
861
874
|
type: "audio";
|
|
875
|
+
src: string;
|
|
862
876
|
trim?: number | undefined;
|
|
863
877
|
volume?: number | {
|
|
864
|
-
length: number;
|
|
865
878
|
from: number;
|
|
866
879
|
to: number;
|
|
867
880
|
start: number;
|
|
881
|
+
length: number;
|
|
868
882
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
869
883
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
870
884
|
}[] | undefined;
|
|
871
885
|
} | {
|
|
872
|
-
html: string;
|
|
873
886
|
type: "html";
|
|
887
|
+
html: string;
|
|
874
888
|
css: string;
|
|
875
889
|
width?: number | undefined;
|
|
876
890
|
height?: number | undefined;
|
|
877
891
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
878
892
|
} | {
|
|
879
|
-
src: string;
|
|
880
893
|
type: "image";
|
|
894
|
+
src: string;
|
|
881
895
|
crop?: {
|
|
882
896
|
top?: number | undefined;
|
|
883
897
|
right?: number | undefined;
|
|
@@ -885,8 +899,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
885
899
|
left?: number | undefined;
|
|
886
900
|
} | undefined;
|
|
887
901
|
} | {
|
|
888
|
-
src: string;
|
|
889
902
|
type: "luma";
|
|
903
|
+
src: string;
|
|
890
904
|
} | {
|
|
891
905
|
type: "shape";
|
|
892
906
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -936,14 +950,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
936
950
|
opacity: number;
|
|
937
951
|
} | undefined;
|
|
938
952
|
} | {
|
|
939
|
-
src: string;
|
|
940
953
|
type: "video";
|
|
954
|
+
src: string;
|
|
941
955
|
trim?: number | undefined;
|
|
942
956
|
volume?: number | {
|
|
943
|
-
length: number;
|
|
944
957
|
from: number;
|
|
945
958
|
to: number;
|
|
946
959
|
start: number;
|
|
960
|
+
length: number;
|
|
947
961
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
948
962
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
949
963
|
}[] | undefined;
|
|
@@ -956,47 +970,47 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
956
970
|
};
|
|
957
971
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
958
972
|
opacity?: number | {
|
|
959
|
-
length: number;
|
|
960
973
|
from: number;
|
|
961
974
|
to: number;
|
|
962
975
|
start: number;
|
|
976
|
+
length: number;
|
|
963
977
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
964
978
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
965
979
|
}[] | undefined;
|
|
966
|
-
fit?: "
|
|
980
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
967
981
|
offset?: {
|
|
968
982
|
x: number | {
|
|
969
|
-
length: number;
|
|
970
983
|
from: number;
|
|
971
984
|
to: number;
|
|
972
985
|
start: number;
|
|
986
|
+
length: number;
|
|
973
987
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
974
988
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
975
989
|
}[];
|
|
976
990
|
y: 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
|
}[];
|
|
984
998
|
} | undefined;
|
|
985
999
|
scale?: number | {
|
|
986
|
-
length: number;
|
|
987
1000
|
from: number;
|
|
988
1001
|
to: number;
|
|
989
1002
|
start: number;
|
|
1003
|
+
length: number;
|
|
990
1004
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
991
1005
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
992
1006
|
}[] | undefined;
|
|
993
1007
|
transform?: {
|
|
994
1008
|
rotate: {
|
|
995
1009
|
angle: number | {
|
|
996
|
-
length: number;
|
|
997
1010
|
from: number;
|
|
998
1011
|
to: number;
|
|
999
1012
|
start: number;
|
|
1013
|
+
length: number;
|
|
1000
1014
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1001
1015
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1002
1016
|
}[];
|
|
@@ -1008,30 +1022,30 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1008
1022
|
out?: string | undefined;
|
|
1009
1023
|
} | undefined;
|
|
1010
1024
|
}, {
|
|
1011
|
-
length: number;
|
|
1012
1025
|
start: number;
|
|
1026
|
+
length: number;
|
|
1013
1027
|
asset: {
|
|
1014
|
-
src: string;
|
|
1015
1028
|
type: "audio";
|
|
1029
|
+
src: string;
|
|
1016
1030
|
trim?: number | undefined;
|
|
1017
1031
|
volume?: number | {
|
|
1018
|
-
length: number;
|
|
1019
1032
|
from: number;
|
|
1020
1033
|
to: number;
|
|
1021
1034
|
start: number;
|
|
1035
|
+
length: number;
|
|
1022
1036
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1023
1037
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1024
1038
|
}[] | undefined;
|
|
1025
1039
|
} | {
|
|
1026
|
-
html: string;
|
|
1027
1040
|
type: "html";
|
|
1041
|
+
html: string;
|
|
1028
1042
|
css: string;
|
|
1029
1043
|
width?: number | undefined;
|
|
1030
1044
|
height?: number | undefined;
|
|
1031
1045
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1032
1046
|
} | {
|
|
1033
|
-
src: string;
|
|
1034
1047
|
type: "image";
|
|
1048
|
+
src: string;
|
|
1035
1049
|
crop?: {
|
|
1036
1050
|
top?: number | undefined;
|
|
1037
1051
|
right?: number | undefined;
|
|
@@ -1039,8 +1053,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1039
1053
|
left?: number | undefined;
|
|
1040
1054
|
} | undefined;
|
|
1041
1055
|
} | {
|
|
1042
|
-
src: string;
|
|
1043
1056
|
type: "luma";
|
|
1057
|
+
src: string;
|
|
1044
1058
|
} | {
|
|
1045
1059
|
type: "shape";
|
|
1046
1060
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1090,14 +1104,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1090
1104
|
opacity: number;
|
|
1091
1105
|
} | undefined;
|
|
1092
1106
|
} | {
|
|
1093
|
-
src: string;
|
|
1094
1107
|
type: "video";
|
|
1108
|
+
src: string;
|
|
1095
1109
|
trim?: number | undefined;
|
|
1096
1110
|
volume?: number | {
|
|
1097
|
-
length: number;
|
|
1098
1111
|
from: number;
|
|
1099
1112
|
to: number;
|
|
1100
1113
|
start: number;
|
|
1114
|
+
length: number;
|
|
1101
1115
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1102
1116
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1103
1117
|
}[] | undefined;
|
|
@@ -1110,26 +1124,26 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1110
1124
|
};
|
|
1111
1125
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1112
1126
|
opacity?: number | {
|
|
1113
|
-
length: number;
|
|
1114
1127
|
from: number;
|
|
1115
1128
|
to: number;
|
|
1116
1129
|
start: number;
|
|
1130
|
+
length: number;
|
|
1117
1131
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1118
1132
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1119
1133
|
}[] | undefined;
|
|
1120
|
-
fit?: "
|
|
1134
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1121
1135
|
offset?: {
|
|
1122
1136
|
x?: number | {
|
|
1123
|
-
length: number;
|
|
1124
1137
|
start: number;
|
|
1138
|
+
length: number;
|
|
1125
1139
|
from?: number | undefined;
|
|
1126
1140
|
to?: number | undefined;
|
|
1127
1141
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1128
1142
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1129
1143
|
}[] | undefined;
|
|
1130
1144
|
y?: number | {
|
|
1131
|
-
length: number;
|
|
1132
1145
|
start: number;
|
|
1146
|
+
length: number;
|
|
1133
1147
|
from?: number | undefined;
|
|
1134
1148
|
to?: number | undefined;
|
|
1135
1149
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1137,20 +1151,20 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1137
1151
|
}[] | undefined;
|
|
1138
1152
|
} | undefined;
|
|
1139
1153
|
scale?: number | {
|
|
1140
|
-
length: number;
|
|
1141
1154
|
from: number;
|
|
1142
1155
|
to: number;
|
|
1143
1156
|
start: number;
|
|
1157
|
+
length: number;
|
|
1144
1158
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1145
1159
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1146
1160
|
}[] | undefined;
|
|
1147
1161
|
transform?: {
|
|
1148
1162
|
rotate?: {
|
|
1149
1163
|
angle: number | {
|
|
1150
|
-
length: number;
|
|
1151
1164
|
from: number;
|
|
1152
1165
|
to: number;
|
|
1153
1166
|
start: number;
|
|
1167
|
+
length: number;
|
|
1154
1168
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1155
1169
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1156
1170
|
}[];
|
|
@@ -1164,30 +1178,30 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1164
1178
|
}>, "many">;
|
|
1165
1179
|
}, "strip", zod.ZodTypeAny, {
|
|
1166
1180
|
clips: {
|
|
1167
|
-
length: number;
|
|
1168
1181
|
start: number;
|
|
1182
|
+
length: number;
|
|
1169
1183
|
asset: {
|
|
1170
|
-
src: string;
|
|
1171
1184
|
type: "audio";
|
|
1185
|
+
src: string;
|
|
1172
1186
|
trim?: number | undefined;
|
|
1173
1187
|
volume?: number | {
|
|
1174
|
-
length: number;
|
|
1175
1188
|
from: number;
|
|
1176
1189
|
to: number;
|
|
1177
1190
|
start: number;
|
|
1191
|
+
length: number;
|
|
1178
1192
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1179
1193
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1180
1194
|
}[] | undefined;
|
|
1181
1195
|
} | {
|
|
1182
|
-
html: string;
|
|
1183
1196
|
type: "html";
|
|
1197
|
+
html: string;
|
|
1184
1198
|
css: string;
|
|
1185
1199
|
width?: number | undefined;
|
|
1186
1200
|
height?: number | undefined;
|
|
1187
1201
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1188
1202
|
} | {
|
|
1189
|
-
src: string;
|
|
1190
1203
|
type: "image";
|
|
1204
|
+
src: string;
|
|
1191
1205
|
crop?: {
|
|
1192
1206
|
top?: number | undefined;
|
|
1193
1207
|
right?: number | undefined;
|
|
@@ -1195,8 +1209,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1195
1209
|
left?: number | undefined;
|
|
1196
1210
|
} | undefined;
|
|
1197
1211
|
} | {
|
|
1198
|
-
src: string;
|
|
1199
1212
|
type: "luma";
|
|
1213
|
+
src: string;
|
|
1200
1214
|
} | {
|
|
1201
1215
|
type: "shape";
|
|
1202
1216
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1246,14 +1260,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1246
1260
|
opacity: number;
|
|
1247
1261
|
} | undefined;
|
|
1248
1262
|
} | {
|
|
1249
|
-
src: string;
|
|
1250
1263
|
type: "video";
|
|
1264
|
+
src: string;
|
|
1251
1265
|
trim?: number | undefined;
|
|
1252
1266
|
volume?: number | {
|
|
1253
|
-
length: number;
|
|
1254
1267
|
from: number;
|
|
1255
1268
|
to: number;
|
|
1256
1269
|
start: number;
|
|
1270
|
+
length: number;
|
|
1257
1271
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1258
1272
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1259
1273
|
}[] | undefined;
|
|
@@ -1266,47 +1280,47 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1266
1280
|
};
|
|
1267
1281
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1268
1282
|
opacity?: number | {
|
|
1269
|
-
length: number;
|
|
1270
1283
|
from: number;
|
|
1271
1284
|
to: number;
|
|
1272
1285
|
start: number;
|
|
1286
|
+
length: number;
|
|
1273
1287
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1274
1288
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1275
1289
|
}[] | undefined;
|
|
1276
|
-
fit?: "
|
|
1290
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1277
1291
|
offset?: {
|
|
1278
1292
|
x: number | {
|
|
1279
|
-
length: number;
|
|
1280
1293
|
from: number;
|
|
1281
1294
|
to: number;
|
|
1282
1295
|
start: number;
|
|
1296
|
+
length: number;
|
|
1283
1297
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1284
1298
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1285
1299
|
}[];
|
|
1286
1300
|
y: 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
|
}[];
|
|
1294
1308
|
} | undefined;
|
|
1295
1309
|
scale?: number | {
|
|
1296
|
-
length: number;
|
|
1297
1310
|
from: number;
|
|
1298
1311
|
to: number;
|
|
1299
1312
|
start: number;
|
|
1313
|
+
length: number;
|
|
1300
1314
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1301
1315
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1302
1316
|
}[] | undefined;
|
|
1303
1317
|
transform?: {
|
|
1304
1318
|
rotate: {
|
|
1305
1319
|
angle: number | {
|
|
1306
|
-
length: number;
|
|
1307
1320
|
from: number;
|
|
1308
1321
|
to: number;
|
|
1309
1322
|
start: number;
|
|
1323
|
+
length: number;
|
|
1310
1324
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1311
1325
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1312
1326
|
}[];
|
|
@@ -1320,30 +1334,30 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1320
1334
|
}[];
|
|
1321
1335
|
}, {
|
|
1322
1336
|
clips: {
|
|
1323
|
-
length: number;
|
|
1324
1337
|
start: number;
|
|
1338
|
+
length: number;
|
|
1325
1339
|
asset: {
|
|
1326
|
-
src: string;
|
|
1327
1340
|
type: "audio";
|
|
1341
|
+
src: string;
|
|
1328
1342
|
trim?: number | undefined;
|
|
1329
1343
|
volume?: number | {
|
|
1330
|
-
length: number;
|
|
1331
1344
|
from: number;
|
|
1332
1345
|
to: number;
|
|
1333
1346
|
start: number;
|
|
1347
|
+
length: number;
|
|
1334
1348
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1335
1349
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1336
1350
|
}[] | undefined;
|
|
1337
1351
|
} | {
|
|
1338
|
-
html: string;
|
|
1339
1352
|
type: "html";
|
|
1353
|
+
html: string;
|
|
1340
1354
|
css: string;
|
|
1341
1355
|
width?: number | undefined;
|
|
1342
1356
|
height?: number | undefined;
|
|
1343
1357
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1344
1358
|
} | {
|
|
1345
|
-
src: string;
|
|
1346
1359
|
type: "image";
|
|
1360
|
+
src: string;
|
|
1347
1361
|
crop?: {
|
|
1348
1362
|
top?: number | undefined;
|
|
1349
1363
|
right?: number | undefined;
|
|
@@ -1351,8 +1365,8 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1351
1365
|
left?: number | undefined;
|
|
1352
1366
|
} | undefined;
|
|
1353
1367
|
} | {
|
|
1354
|
-
src: string;
|
|
1355
1368
|
type: "luma";
|
|
1369
|
+
src: string;
|
|
1356
1370
|
} | {
|
|
1357
1371
|
type: "shape";
|
|
1358
1372
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -1402,14 +1416,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1402
1416
|
opacity: number;
|
|
1403
1417
|
} | undefined;
|
|
1404
1418
|
} | {
|
|
1405
|
-
src: string;
|
|
1406
1419
|
type: "video";
|
|
1420
|
+
src: string;
|
|
1407
1421
|
trim?: number | undefined;
|
|
1408
1422
|
volume?: number | {
|
|
1409
|
-
length: number;
|
|
1410
1423
|
from: number;
|
|
1411
1424
|
to: number;
|
|
1412
1425
|
start: number;
|
|
1426
|
+
length: number;
|
|
1413
1427
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1414
1428
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1415
1429
|
}[] | undefined;
|
|
@@ -1422,26 +1436,26 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1422
1436
|
};
|
|
1423
1437
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
1424
1438
|
opacity?: number | {
|
|
1425
|
-
length: number;
|
|
1426
1439
|
from: number;
|
|
1427
1440
|
to: number;
|
|
1428
1441
|
start: number;
|
|
1442
|
+
length: number;
|
|
1429
1443
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1430
1444
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1431
1445
|
}[] | undefined;
|
|
1432
|
-
fit?: "
|
|
1446
|
+
fit?: "crop" | "cover" | "contain" | "none" | undefined;
|
|
1433
1447
|
offset?: {
|
|
1434
1448
|
x?: number | {
|
|
1435
|
-
length: number;
|
|
1436
1449
|
start: number;
|
|
1450
|
+
length: number;
|
|
1437
1451
|
from?: number | undefined;
|
|
1438
1452
|
to?: number | undefined;
|
|
1439
1453
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1440
1454
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1441
1455
|
}[] | undefined;
|
|
1442
1456
|
y?: number | {
|
|
1443
|
-
length: number;
|
|
1444
1457
|
start: number;
|
|
1458
|
+
length: number;
|
|
1445
1459
|
from?: number | undefined;
|
|
1446
1460
|
to?: number | undefined;
|
|
1447
1461
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
@@ -1449,20 +1463,20 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
1449
1463
|
}[] | undefined;
|
|
1450
1464
|
} | undefined;
|
|
1451
1465
|
scale?: number | {
|
|
1452
|
-
length: number;
|
|
1453
1466
|
from: number;
|
|
1454
1467
|
to: number;
|
|
1455
1468
|
start: number;
|
|
1469
|
+
length: number;
|
|
1456
1470
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1457
1471
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1458
1472
|
}[] | undefined;
|
|
1459
1473
|
transform?: {
|
|
1460
1474
|
rotate?: {
|
|
1461
1475
|
angle: number | {
|
|
1462
|
-
length: number;
|
|
1463
1476
|
from: number;
|
|
1464
1477
|
to: number;
|
|
1465
1478
|
start: number;
|
|
1479
|
+
length: number;
|
|
1466
1480
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1467
1481
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
1468
1482
|
}[];
|