@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.
Files changed (58) hide show
  1. package/dist/shotstack-studio.es.js +4912 -4754
  2. package/dist/shotstack-studio.umd.js +7 -7
  3. package/dist/src/components/canvas/index.d.ts +14 -0
  4. package/dist/{core/entities → src/components/canvas}/players/audio-player.d.ts +4 -4
  5. package/dist/{core/entities → src/components/canvas}/players/html-player.d.ts +4 -4
  6. package/dist/{core/entities → src/components/canvas}/players/image-player.d.ts +4 -4
  7. package/dist/{core/entities → src/components/canvas}/players/luma-player.d.ts +4 -4
  8. package/dist/{core/entities/base → src/components/canvas/players}/player.d.ts +5 -4
  9. package/dist/{core/entities → src/components/canvas}/players/shape-player.d.ts +4 -4
  10. package/dist/{core/entities → src/components/canvas}/players/text-player.d.ts +1 -1
  11. package/dist/{core/entities → src/components/canvas}/players/video-player.d.ts +4 -4
  12. package/dist/{core → src/components/canvas}/shotstack-canvas.d.ts +2 -2
  13. package/dist/{core/entities → src/components/canvas}/system/inspector.d.ts +1 -1
  14. package/dist/{core/entities → src/components/canvas}/text/text-editor.d.ts +1 -1
  15. package/dist/src/core/commands/add-clip-command.d.ts +14 -0
  16. package/dist/src/core/commands/add-track-command.d.ts +8 -0
  17. package/dist/src/core/commands/delete-clip-command.d.ts +10 -0
  18. package/dist/src/core/commands/delete-track-command.d.ts +9 -0
  19. package/dist/src/core/commands/set-updated-clip-command.d.ts +17 -0
  20. package/dist/src/core/commands/types.d.ts +25 -0
  21. package/dist/src/core/commands/update-text-content-command.d.ts +16 -0
  22. package/dist/{core/entities/system → src/core}/edit.d.ts +13 -7
  23. package/dist/{core → src/core}/export/video-exporter.d.ts +2 -2
  24. package/dist/{core → src/core}/inputs/controls.d.ts +1 -1
  25. package/dist/{core → src/core}/schemas/asset.d.ts +42 -38
  26. package/dist/{core → src/core}/schemas/audio-asset.d.ts +18 -14
  27. package/dist/{core → src/core}/schemas/clip.d.ts +113 -99
  28. package/dist/{core → src/core}/schemas/edit.d.ts +372 -344
  29. package/dist/{core → src/core}/schemas/track.d.ts +141 -127
  30. package/dist/{core → src/core}/schemas/video-asset.d.ts +18 -14
  31. package/dist/src/index.d.ts +4 -0
  32. package/dist/vite.config.d.ts +2 -0
  33. package/package.json +1 -1
  34. package/readme.md +10 -0
  35. package/dist/core/entities/index.d.ts +0 -14
  36. package/dist/index.d.ts +0 -4
  37. package/dist/{core/entities → src/components/canvas}/text/text-cursor.d.ts +0 -0
  38. package/dist/{core/entities → src/components/canvas}/text/text-input-handler.d.ts +0 -0
  39. package/dist/{core → src/core}/animations/curve-interpolator.d.ts +0 -0
  40. package/dist/{core → src/core}/animations/effect-preset-builder.d.ts +0 -0
  41. package/dist/{core → src/core}/animations/keyframe-builder.d.ts +0 -0
  42. package/dist/{core → src/core}/animations/transition-preset-builder.d.ts +0 -0
  43. package/dist/{core → src/core}/events/asset-load-tracker.d.ts +0 -0
  44. package/dist/{core → src/core}/events/event-emitter.d.ts +0 -0
  45. package/dist/{core → src/core}/inputs/pointer.d.ts +0 -0
  46. package/dist/{core → src/core}/layouts/geometry.d.ts +0 -0
  47. package/dist/{core → src/core}/layouts/position-builder.d.ts +0 -0
  48. package/dist/{core → src/core}/loaders/asset-loader.d.ts +0 -0
  49. package/dist/{core → src/core}/loaders/audio-load-parser.d.ts +0 -0
  50. package/dist/{core → src/core}/loaders/font-load-parser.d.ts +0 -0
  51. package/dist/{core → src/core}/schemas/html-asset.d.ts +2 -2
  52. package/dist/{core → src/core}/schemas/image-asset.d.ts +2 -2
  53. package/dist/{core → src/core}/schemas/keyframe.d.ts +2 -2
  54. package/dist/{core → src/core}/schemas/luma-asset.d.ts +2 -2
  55. /package/dist/{core → src/core}/schemas/shape-asset.d.ts +0 -0
  56. /package/dist/{core → src/core}/schemas/text-asset.d.ts +0 -0
  57. /package/dist/{core/entities/base → src/core/shared}/entity.d.ts +0 -0
  58. /package/dist/{main.d.ts → src/main.d.ts} +0 -0
@@ -263,15 +263,15 @@ export declare const ClipSchema: zod.ZodObject<{
263
263
  height: zod.ZodOptional<zod.ZodNumber>;
264
264
  position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
265
265
  }, "strip", zod.ZodTypeAny, {
266
- html: string;
267
266
  type: "html";
267
+ html: string;
268
268
  css: string;
269
269
  width?: number | undefined;
270
270
  height?: number | undefined;
271
271
  position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
272
272
  }, {
273
- html: string;
274
273
  type: "html";
274
+ html: string;
275
275
  css: string;
276
276
  width?: number | undefined;
277
277
  height?: number | undefined;
@@ -296,8 +296,8 @@ export declare const ClipSchema: zod.ZodObject<{
296
296
  left?: number | undefined;
297
297
  }>>;
298
298
  }, "strip", zod.ZodTypeAny, {
299
- src: string;
300
299
  type: "image";
300
+ src: string;
301
301
  crop?: {
302
302
  top?: number | undefined;
303
303
  right?: number | undefined;
@@ -305,8 +305,8 @@ export declare const ClipSchema: zod.ZodObject<{
305
305
  left?: number | undefined;
306
306
  } | undefined;
307
307
  }, {
308
- src: string;
309
308
  type: "image";
309
+ src: string;
310
310
  crop?: {
311
311
  top?: number | undefined;
312
312
  right?: number | undefined;
@@ -333,38 +333,40 @@ export declare const ClipSchema: zod.ZodObject<{
333
333
  bottom?: number | undefined;
334
334
  left?: number | undefined;
335
335
  }>>;
336
- volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
336
+ volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
337
+ from: zod.ZodNumber;
338
+ to: zod.ZodNumber;
337
339
  start: zod.ZodNumber;
338
340
  length: zod.ZodNumber;
339
341
  interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
340
342
  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"]>>;
341
- } & {
343
+ }, {
342
344
  from: zod.ZodNumber;
343
345
  to: zod.ZodNumber;
344
- }, "strip", zod.ZodTypeAny, {
345
- length: number;
346
+ }>, "strip", zod.ZodTypeAny, {
346
347
  from: number;
347
348
  to: number;
348
349
  start: number;
350
+ length: number;
349
351
  interpolation?: "linear" | "bezier" | "constant" | undefined;
350
352
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
351
353
  }, {
352
- length: number;
353
354
  from: number;
354
355
  to: number;
355
356
  start: number;
357
+ length: number;
356
358
  interpolation?: "linear" | "bezier" | "constant" | undefined;
357
359
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
358
360
  }>, "many">, zod.ZodNumber]>>;
359
361
  }, "strip", zod.ZodTypeAny, {
360
- src: string;
361
362
  type: "video";
363
+ src: string;
362
364
  trim?: number | undefined;
363
365
  volume?: number | {
364
- length: number;
365
366
  from: number;
366
367
  to: number;
367
368
  start: number;
369
+ length: number;
368
370
  interpolation?: "linear" | "bezier" | "constant" | undefined;
369
371
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
370
372
  }[] | undefined;
@@ -375,14 +377,14 @@ export declare const ClipSchema: zod.ZodObject<{
375
377
  left?: number | undefined;
376
378
  } | undefined;
377
379
  }, {
378
- src: string;
379
380
  type: "video";
381
+ src: string;
380
382
  trim?: number | undefined;
381
383
  volume?: number | {
382
- length: number;
383
384
  from: number;
384
385
  to: number;
385
386
  start: number;
387
+ length: number;
386
388
  interpolation?: "linear" | "bezier" | "constant" | undefined;
387
389
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
388
390
  }[] | undefined;
@@ -396,84 +398,86 @@ export declare const ClipSchema: zod.ZodObject<{
396
398
  type: zod.ZodLiteral<"luma">;
397
399
  src: zod.ZodString;
398
400
  }, "strip", zod.ZodTypeAny, {
399
- src: string;
400
401
  type: "luma";
401
- }, {
402
402
  src: string;
403
+ }, {
403
404
  type: "luma";
405
+ src: string;
404
406
  }>, zod.ZodObject<{
405
407
  type: zod.ZodLiteral<"audio">;
406
408
  src: zod.ZodString;
407
409
  trim: zod.ZodOptional<zod.ZodNumber>;
408
- volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
410
+ volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
411
+ from: zod.ZodNumber;
412
+ to: zod.ZodNumber;
409
413
  start: zod.ZodNumber;
410
414
  length: zod.ZodNumber;
411
415
  interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
412
416
  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"]>>;
413
- } & {
417
+ }, {
414
418
  from: zod.ZodNumber;
415
419
  to: zod.ZodNumber;
416
- }, "strip", zod.ZodTypeAny, {
417
- length: number;
420
+ }>, "strip", zod.ZodTypeAny, {
418
421
  from: number;
419
422
  to: number;
420
423
  start: number;
424
+ length: number;
421
425
  interpolation?: "linear" | "bezier" | "constant" | undefined;
422
426
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
423
427
  }, {
424
- length: number;
425
428
  from: number;
426
429
  to: number;
427
430
  start: number;
431
+ length: number;
428
432
  interpolation?: "linear" | "bezier" | "constant" | undefined;
429
433
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
430
434
  }>, "many">, zod.ZodNumber]>>;
431
435
  }, "strip", zod.ZodTypeAny, {
432
- src: string;
433
436
  type: "audio";
437
+ src: string;
434
438
  trim?: number | undefined;
435
439
  volume?: number | {
436
- length: number;
437
440
  from: number;
438
441
  to: number;
439
442
  start: number;
443
+ length: number;
440
444
  interpolation?: "linear" | "bezier" | "constant" | undefined;
441
445
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
442
446
  }[] | undefined;
443
447
  }, {
444
- src: string;
445
448
  type: "audio";
449
+ src: string;
446
450
  trim?: number | undefined;
447
451
  volume?: number | {
448
- length: number;
449
452
  from: number;
450
453
  to: number;
451
454
  start: number;
455
+ length: number;
452
456
  interpolation?: "linear" | "bezier" | "constant" | undefined;
453
457
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
454
458
  }[] | undefined;
455
459
  }>]>, {
456
- src: string;
457
460
  type: "audio";
461
+ src: string;
458
462
  trim?: number | undefined;
459
463
  volume?: number | {
460
- length: number;
461
464
  from: number;
462
465
  to: number;
463
466
  start: number;
467
+ length: number;
464
468
  interpolation?: "linear" | "bezier" | "constant" | undefined;
465
469
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
466
470
  }[] | undefined;
467
471
  } | {
468
- html: string;
469
472
  type: "html";
473
+ html: string;
470
474
  css: string;
471
475
  width?: number | undefined;
472
476
  height?: number | undefined;
473
477
  position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
474
478
  } | {
475
- src: string;
476
479
  type: "image";
480
+ src: string;
477
481
  crop?: {
478
482
  top?: number | undefined;
479
483
  right?: number | undefined;
@@ -481,8 +485,8 @@ export declare const ClipSchema: zod.ZodObject<{
481
485
  left?: number | undefined;
482
486
  } | undefined;
483
487
  } | {
484
- src: string;
485
488
  type: "luma";
489
+ src: string;
486
490
  } | {
487
491
  type: "shape";
488
492
  shape: "rectangle" | "circle" | "line";
@@ -532,14 +536,14 @@ export declare const ClipSchema: zod.ZodObject<{
532
536
  opacity: number;
533
537
  } | undefined;
534
538
  } | {
535
- src: string;
536
539
  type: "video";
540
+ src: string;
537
541
  trim?: number | undefined;
538
542
  volume?: number | {
539
- length: number;
540
543
  from: number;
541
544
  to: number;
542
545
  start: number;
546
+ length: number;
543
547
  interpolation?: "linear" | "bezier" | "constant" | undefined;
544
548
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
545
549
  }[] | undefined;
@@ -550,27 +554,27 @@ export declare const ClipSchema: zod.ZodObject<{
550
554
  left?: number | undefined;
551
555
  } | undefined;
552
556
  }, {
553
- src: string;
554
557
  type: "audio";
558
+ src: string;
555
559
  trim?: number | undefined;
556
560
  volume?: number | {
557
- length: number;
558
561
  from: number;
559
562
  to: number;
560
563
  start: number;
564
+ length: number;
561
565
  interpolation?: "linear" | "bezier" | "constant" | undefined;
562
566
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
563
567
  }[] | undefined;
564
568
  } | {
565
- html: string;
566
569
  type: "html";
570
+ html: string;
567
571
  css: string;
568
572
  width?: number | undefined;
569
573
  height?: number | undefined;
570
574
  position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
571
575
  } | {
572
- src: string;
573
576
  type: "image";
577
+ src: string;
574
578
  crop?: {
575
579
  top?: number | undefined;
576
580
  right?: number | undefined;
@@ -578,8 +582,8 @@ export declare const ClipSchema: zod.ZodObject<{
578
582
  left?: number | undefined;
579
583
  } | undefined;
580
584
  } | {
581
- src: string;
582
585
  type: "luma";
586
+ src: string;
583
587
  } | {
584
588
  type: "shape";
585
589
  shape: "rectangle" | "circle" | "line";
@@ -629,14 +633,14 @@ export declare const ClipSchema: zod.ZodObject<{
629
633
  opacity: number;
630
634
  } | undefined;
631
635
  } | {
632
- src: string;
633
636
  type: "video";
637
+ src: string;
634
638
  trim?: number | undefined;
635
639
  volume?: number | {
636
- length: number;
637
640
  from: number;
638
641
  to: number;
639
642
  start: number;
643
+ length: number;
640
644
  interpolation?: "linear" | "bezier" | "constant" | undefined;
641
645
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
642
646
  }[] | undefined;
@@ -652,47 +656,51 @@ export declare const ClipSchema: zod.ZodObject<{
652
656
  position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
653
657
  fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
654
658
  offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
655
- x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
659
+ x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
660
+ from: zod.ZodNumber;
661
+ to: zod.ZodNumber;
656
662
  start: zod.ZodNumber;
657
663
  length: zod.ZodNumber;
658
664
  interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
659
665
  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"]>>;
660
- } & {
666
+ }, {
661
667
  from: zod.ZodDefault<zod.ZodNumber>;
662
668
  to: zod.ZodDefault<zod.ZodNumber>;
663
- }, "strip", zod.ZodTypeAny, {
664
- length: number;
669
+ }>, "strip", zod.ZodTypeAny, {
665
670
  from: number;
666
671
  to: number;
667
672
  start: number;
673
+ length: number;
668
674
  interpolation?: "linear" | "bezier" | "constant" | undefined;
669
675
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
670
676
  }, {
671
- length: number;
672
677
  start: number;
678
+ length: number;
673
679
  from?: number | undefined;
674
680
  to?: number | undefined;
675
681
  interpolation?: "linear" | "bezier" | "constant" | undefined;
676
682
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
677
683
  }>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
678
- y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
684
+ y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
685
+ from: zod.ZodNumber;
686
+ to: zod.ZodNumber;
679
687
  start: zod.ZodNumber;
680
688
  length: zod.ZodNumber;
681
689
  interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
682
690
  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"]>>;
683
- } & {
691
+ }, {
684
692
  from: zod.ZodDefault<zod.ZodNumber>;
685
693
  to: zod.ZodDefault<zod.ZodNumber>;
686
- }, "strip", zod.ZodTypeAny, {
687
- length: number;
694
+ }>, "strip", zod.ZodTypeAny, {
688
695
  from: number;
689
696
  to: number;
690
697
  start: number;
698
+ length: number;
691
699
  interpolation?: "linear" | "bezier" | "constant" | undefined;
692
700
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
693
701
  }, {
694
- length: number;
695
702
  start: number;
703
+ length: number;
696
704
  from?: number | undefined;
697
705
  to?: number | undefined;
698
706
  interpolation?: "linear" | "bezier" | "constant" | undefined;
@@ -700,125 +708,131 @@ export declare const ClipSchema: zod.ZodObject<{
700
708
  }>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
701
709
  }, "strip", zod.ZodTypeAny, {
702
710
  x: number | {
703
- length: number;
704
711
  from: number;
705
712
  to: number;
706
713
  start: number;
714
+ length: number;
707
715
  interpolation?: "linear" | "bezier" | "constant" | undefined;
708
716
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
709
717
  }[];
710
718
  y: number | {
711
- length: number;
712
719
  from: number;
713
720
  to: number;
714
721
  start: number;
722
+ length: number;
715
723
  interpolation?: "linear" | "bezier" | "constant" | undefined;
716
724
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
717
725
  }[];
718
726
  }, {
719
727
  x?: number | {
720
- length: number;
721
728
  start: number;
729
+ length: number;
722
730
  from?: number | undefined;
723
731
  to?: number | undefined;
724
732
  interpolation?: "linear" | "bezier" | "constant" | undefined;
725
733
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
726
734
  }[] | undefined;
727
735
  y?: number | {
728
- length: number;
729
736
  start: number;
737
+ length: number;
730
738
  from?: number | undefined;
731
739
  to?: number | undefined;
732
740
  interpolation?: "linear" | "bezier" | "constant" | undefined;
733
741
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
734
742
  }[] | undefined;
735
743
  }>>>;
736
- opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
744
+ opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
745
+ from: zod.ZodNumber;
746
+ to: zod.ZodNumber;
737
747
  start: zod.ZodNumber;
738
748
  length: zod.ZodNumber;
739
749
  interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
740
750
  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"]>>;
741
- } & {
751
+ }, {
742
752
  from: zod.ZodNumber;
743
753
  to: zod.ZodNumber;
744
- }, "strip", zod.ZodTypeAny, {
745
- length: number;
754
+ }>, "strip", zod.ZodTypeAny, {
746
755
  from: number;
747
756
  to: number;
748
757
  start: number;
758
+ length: number;
749
759
  interpolation?: "linear" | "bezier" | "constant" | undefined;
750
760
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
751
761
  }, {
752
- length: number;
753
762
  from: number;
754
763
  to: number;
755
764
  start: number;
765
+ length: number;
756
766
  interpolation?: "linear" | "bezier" | "constant" | undefined;
757
767
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
758
768
  }>, "many">, zod.ZodNumber]>>>;
759
- scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
769
+ scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
770
+ from: zod.ZodNumber;
771
+ to: zod.ZodNumber;
760
772
  start: zod.ZodNumber;
761
773
  length: zod.ZodNumber;
762
774
  interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
763
775
  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"]>>;
764
- } & {
776
+ }, {
765
777
  from: zod.ZodNumber;
766
778
  to: zod.ZodNumber;
767
- }, "strip", zod.ZodTypeAny, {
768
- length: number;
779
+ }>, "strip", zod.ZodTypeAny, {
769
780
  from: number;
770
781
  to: number;
771
782
  start: number;
783
+ length: number;
772
784
  interpolation?: "linear" | "bezier" | "constant" | undefined;
773
785
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
774
786
  }, {
775
- length: number;
776
787
  from: number;
777
788
  to: number;
778
789
  start: number;
790
+ length: number;
779
791
  interpolation?: "linear" | "bezier" | "constant" | undefined;
780
792
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
781
793
  }>, "many">, zod.ZodNumber]>>>;
782
794
  transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
783
795
  rotate: zod.ZodDefault<zod.ZodObject<{
784
- angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
796
+ angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<zod.objectUtil.extendShape<{
797
+ from: zod.ZodNumber;
798
+ to: zod.ZodNumber;
785
799
  start: zod.ZodNumber;
786
800
  length: zod.ZodNumber;
787
801
  interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
788
802
  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"]>>;
789
- } & {
803
+ }, {
790
804
  from: zod.ZodNumber;
791
805
  to: zod.ZodNumber;
792
- }, "strip", zod.ZodTypeAny, {
793
- length: number;
806
+ }>, "strip", zod.ZodTypeAny, {
794
807
  from: number;
795
808
  to: number;
796
809
  start: number;
810
+ length: number;
797
811
  interpolation?: "linear" | "bezier" | "constant" | undefined;
798
812
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
799
813
  }, {
800
- length: number;
801
814
  from: number;
802
815
  to: number;
803
816
  start: number;
817
+ length: number;
804
818
  interpolation?: "linear" | "bezier" | "constant" | undefined;
805
819
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
806
820
  }>, "many">, zod.ZodNumber]>;
807
821
  }, "strip", zod.ZodTypeAny, {
808
822
  angle: number | {
809
- length: number;
810
823
  from: number;
811
824
  to: number;
812
825
  start: number;
826
+ length: number;
813
827
  interpolation?: "linear" | "bezier" | "constant" | undefined;
814
828
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
815
829
  }[];
816
830
  }, {
817
831
  angle: number | {
818
- length: number;
819
832
  from: number;
820
833
  to: number;
821
834
  start: number;
835
+ length: number;
822
836
  interpolation?: "linear" | "bezier" | "constant" | undefined;
823
837
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
824
838
  }[];
@@ -826,10 +840,10 @@ export declare const ClipSchema: zod.ZodObject<{
826
840
  }, "strip", zod.ZodTypeAny, {
827
841
  rotate: {
828
842
  angle: number | {
829
- length: number;
830
843
  from: number;
831
844
  to: number;
832
845
  start: number;
846
+ length: number;
833
847
  interpolation?: "linear" | "bezier" | "constant" | undefined;
834
848
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
835
849
  }[];
@@ -837,10 +851,10 @@ export declare const ClipSchema: zod.ZodObject<{
837
851
  }, {
838
852
  rotate?: {
839
853
  angle: number | {
840
- length: number;
841
854
  from: number;
842
855
  to: number;
843
856
  start: number;
857
+ length: number;
844
858
  interpolation?: "linear" | "bezier" | "constant" | undefined;
845
859
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
846
860
  }[];
@@ -858,30 +872,30 @@ export declare const ClipSchema: zod.ZodObject<{
858
872
  out?: string | undefined;
859
873
  }>>;
860
874
  }, "strip", zod.ZodTypeAny, {
861
- length: number;
862
875
  start: number;
876
+ length: number;
863
877
  asset: {
864
- src: string;
865
878
  type: "audio";
879
+ src: string;
866
880
  trim?: number | undefined;
867
881
  volume?: number | {
868
- length: number;
869
882
  from: number;
870
883
  to: number;
871
884
  start: number;
885
+ length: number;
872
886
  interpolation?: "linear" | "bezier" | "constant" | undefined;
873
887
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
874
888
  }[] | undefined;
875
889
  } | {
876
- html: string;
877
890
  type: "html";
891
+ html: string;
878
892
  css: string;
879
893
  width?: number | undefined;
880
894
  height?: number | undefined;
881
895
  position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
882
896
  } | {
883
- src: string;
884
897
  type: "image";
898
+ src: string;
885
899
  crop?: {
886
900
  top?: number | undefined;
887
901
  right?: number | undefined;
@@ -889,8 +903,8 @@ export declare const ClipSchema: zod.ZodObject<{
889
903
  left?: number | undefined;
890
904
  } | undefined;
891
905
  } | {
892
- src: string;
893
906
  type: "luma";
907
+ src: string;
894
908
  } | {
895
909
  type: "shape";
896
910
  shape: "rectangle" | "circle" | "line";
@@ -940,14 +954,14 @@ export declare const ClipSchema: zod.ZodObject<{
940
954
  opacity: number;
941
955
  } | undefined;
942
956
  } | {
943
- src: string;
944
957
  type: "video";
958
+ src: string;
945
959
  trim?: number | undefined;
946
960
  volume?: number | {
947
- length: number;
948
961
  from: number;
949
962
  to: number;
950
963
  start: number;
964
+ length: number;
951
965
  interpolation?: "linear" | "bezier" | "constant" | undefined;
952
966
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
953
967
  }[] | undefined;
@@ -960,47 +974,47 @@ export declare const ClipSchema: zod.ZodObject<{
960
974
  };
961
975
  position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
962
976
  opacity?: number | {
963
- length: number;
964
977
  from: number;
965
978
  to: number;
966
979
  start: number;
980
+ length: number;
967
981
  interpolation?: "linear" | "bezier" | "constant" | undefined;
968
982
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
969
983
  }[] | undefined;
970
- fit?: "none" | "crop" | "cover" | "contain" | undefined;
984
+ fit?: "crop" | "cover" | "contain" | "none" | undefined;
971
985
  offset?: {
972
986
  x: number | {
973
- length: number;
974
987
  from: number;
975
988
  to: number;
976
989
  start: number;
990
+ length: number;
977
991
  interpolation?: "linear" | "bezier" | "constant" | undefined;
978
992
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
979
993
  }[];
980
994
  y: number | {
981
- length: number;
982
995
  from: number;
983
996
  to: number;
984
997
  start: number;
998
+ length: number;
985
999
  interpolation?: "linear" | "bezier" | "constant" | undefined;
986
1000
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
987
1001
  }[];
988
1002
  } | undefined;
989
1003
  scale?: number | {
990
- length: number;
991
1004
  from: number;
992
1005
  to: number;
993
1006
  start: number;
1007
+ length: number;
994
1008
  interpolation?: "linear" | "bezier" | "constant" | undefined;
995
1009
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
996
1010
  }[] | undefined;
997
1011
  transform?: {
998
1012
  rotate: {
999
1013
  angle: number | {
1000
- length: number;
1001
1014
  from: number;
1002
1015
  to: number;
1003
1016
  start: number;
1017
+ length: number;
1004
1018
  interpolation?: "linear" | "bezier" | "constant" | undefined;
1005
1019
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
1006
1020
  }[];
@@ -1012,30 +1026,30 @@ export declare const ClipSchema: zod.ZodObject<{
1012
1026
  out?: string | undefined;
1013
1027
  } | undefined;
1014
1028
  }, {
1015
- length: number;
1016
1029
  start: number;
1030
+ length: number;
1017
1031
  asset: {
1018
- src: string;
1019
1032
  type: "audio";
1033
+ src: string;
1020
1034
  trim?: number | undefined;
1021
1035
  volume?: number | {
1022
- length: number;
1023
1036
  from: number;
1024
1037
  to: number;
1025
1038
  start: number;
1039
+ length: number;
1026
1040
  interpolation?: "linear" | "bezier" | "constant" | undefined;
1027
1041
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
1028
1042
  }[] | undefined;
1029
1043
  } | {
1030
- html: string;
1031
1044
  type: "html";
1045
+ html: string;
1032
1046
  css: string;
1033
1047
  width?: number | undefined;
1034
1048
  height?: number | undefined;
1035
1049
  position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
1036
1050
  } | {
1037
- src: string;
1038
1051
  type: "image";
1052
+ src: string;
1039
1053
  crop?: {
1040
1054
  top?: number | undefined;
1041
1055
  right?: number | undefined;
@@ -1043,8 +1057,8 @@ export declare const ClipSchema: zod.ZodObject<{
1043
1057
  left?: number | undefined;
1044
1058
  } | undefined;
1045
1059
  } | {
1046
- src: string;
1047
1060
  type: "luma";
1061
+ src: string;
1048
1062
  } | {
1049
1063
  type: "shape";
1050
1064
  shape: "rectangle" | "circle" | "line";
@@ -1094,14 +1108,14 @@ export declare const ClipSchema: zod.ZodObject<{
1094
1108
  opacity: number;
1095
1109
  } | undefined;
1096
1110
  } | {
1097
- src: string;
1098
1111
  type: "video";
1112
+ src: string;
1099
1113
  trim?: number | undefined;
1100
1114
  volume?: number | {
1101
- length: number;
1102
1115
  from: number;
1103
1116
  to: number;
1104
1117
  start: number;
1118
+ length: number;
1105
1119
  interpolation?: "linear" | "bezier" | "constant" | undefined;
1106
1120
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
1107
1121
  }[] | undefined;
@@ -1114,26 +1128,26 @@ export declare const ClipSchema: zod.ZodObject<{
1114
1128
  };
1115
1129
  position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
1116
1130
  opacity?: number | {
1117
- length: number;
1118
1131
  from: number;
1119
1132
  to: number;
1120
1133
  start: number;
1134
+ length: number;
1121
1135
  interpolation?: "linear" | "bezier" | "constant" | undefined;
1122
1136
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
1123
1137
  }[] | undefined;
1124
- fit?: "none" | "crop" | "cover" | "contain" | undefined;
1138
+ fit?: "crop" | "cover" | "contain" | "none" | undefined;
1125
1139
  offset?: {
1126
1140
  x?: number | {
1127
- length: number;
1128
1141
  start: number;
1142
+ length: number;
1129
1143
  from?: number | undefined;
1130
1144
  to?: number | undefined;
1131
1145
  interpolation?: "linear" | "bezier" | "constant" | undefined;
1132
1146
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
1133
1147
  }[] | undefined;
1134
1148
  y?: number | {
1135
- length: number;
1136
1149
  start: number;
1150
+ length: number;
1137
1151
  from?: number | undefined;
1138
1152
  to?: number | undefined;
1139
1153
  interpolation?: "linear" | "bezier" | "constant" | undefined;
@@ -1141,20 +1155,20 @@ export declare const ClipSchema: zod.ZodObject<{
1141
1155
  }[] | undefined;
1142
1156
  } | undefined;
1143
1157
  scale?: number | {
1144
- length: number;
1145
1158
  from: number;
1146
1159
  to: number;
1147
1160
  start: number;
1161
+ length: number;
1148
1162
  interpolation?: "linear" | "bezier" | "constant" | undefined;
1149
1163
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
1150
1164
  }[] | undefined;
1151
1165
  transform?: {
1152
1166
  rotate?: {
1153
1167
  angle: number | {
1154
- length: number;
1155
1168
  from: number;
1156
1169
  to: number;
1157
1170
  start: number;
1171
+ length: number;
1158
1172
  interpolation?: "linear" | "bezier" | "constant" | undefined;
1159
1173
  easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
1160
1174
  }[];