ugcinc 2.30.1 → 2.31.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 +4 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -449,6 +449,8 @@ export interface VideoSegment extends VisualSegmentProps {
449
449
  speed?: number;
450
450
  /** Audio volume percentage 0-100 (0 = muted, 100 = full) (default: 100) */
451
451
  volume?: number;
452
+ /** Corner radius in pixels for rounded corners (default: 0, no rounding) */
453
+ borderRadius?: number;
452
454
  }
453
455
  /**
454
456
  * Audio segment - background audio or music
@@ -469,6 +471,8 @@ export interface ImageSegment extends VisualSegmentProps {
469
471
  fit?: 'cover' | 'contain' | 'fill';
470
472
  /** Loop animated GIFs (default: false) */
471
473
  loop?: boolean;
474
+ /** Corner radius in pixels for rounded corners (default: 0, no rounding) */
475
+ borderRadius?: number;
472
476
  }
473
477
  /**
474
478
  * 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.30.1",
3
+ "version": "2.31.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",