ugcinc 2.29.0 → 2.30.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 (2) hide show
  1. package/dist/types.d.ts +8 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -415,6 +415,10 @@ export interface VideoSegment extends VisualSegmentProps {
415
415
  speed?: number;
416
416
  /** Audio volume percentage 0-100 (0 = muted, 100 = full) (default: 100) */
417
417
  volume?: number;
418
+ /** Enable fade-in from black (default: false) */
419
+ fadeIn?: boolean;
420
+ /** Fade-in duration in milliseconds (default: 500) */
421
+ fadeInDuration?: number;
418
422
  }
419
423
  /**
420
424
  * Audio segment - background audio or music
@@ -435,6 +439,10 @@ export interface ImageSegment extends VisualSegmentProps {
435
439
  fit?: 'cover' | 'contain' | 'fill';
436
440
  /** Loop animated GIFs (default: false) */
437
441
  loop?: boolean;
442
+ /** Enable fade-in from black (default: false) */
443
+ fadeIn?: boolean;
444
+ /** Fade-in duration in milliseconds (default: 500) */
445
+ fadeInDuration?: number;
438
446
  }
439
447
  /**
440
448
  * Text segment - rich text overlays with full typography control
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.29.0",
3
+ "version": "2.30.0",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",