ugcinc 4.1.3 → 4.1.4

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.
@@ -263,12 +263,8 @@ export declare const nodeDefinitions: {
263
263
  width: number;
264
264
  height: number;
265
265
  fps: number;
266
- dimensionPreset: string;
267
- channels: {
268
- id: string;
269
- name: string;
270
- segments: never[];
271
- }[];
266
+ dimensionPreset: import("../..").DimensionPresetKey;
267
+ channels: import("../..").VideoEditorChannel[];
272
268
  };
273
269
  outputMode: "per-input";
274
270
  selectionMode: null;
@@ -1,14 +1,11 @@
1
+ import type { VideoEditorChannel, DimensionPresetKey } from '../../render/types';
1
2
  declare const definition: import("./types").NodeDefinition<"generator", {
2
3
  videoEditor: {
3
4
  width: number;
4
5
  height: number;
5
6
  fps: number;
6
- dimensionPreset: string;
7
- channels: {
8
- id: string;
9
- name: string;
10
- segments: never[];
11
- }[];
7
+ dimensionPreset: DimensionPresetKey;
8
+ channels: VideoEditorChannel[];
12
9
  };
13
10
  outputMode: "per-input";
14
11
  selectionMode: null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "4.1.3",
3
+ "version": "4.1.4",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,6 +41,7 @@
41
41
  "license": "MIT",
42
42
  "dependencies": {
43
43
  "@remotion/player": "^4.0.0",
44
+ "ugcinc": "^4.1.3",
44
45
  "zod": "^3.23.0"
45
46
  },
46
47
  "peerDependencies": {