ugcinc 2.15.0 → 2.16.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 +5 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -571,6 +571,11 @@ export interface NodeControlConfig {
571
571
  category: string;
572
572
  inputs: NodePort[];
573
573
  outputs: NodePort[];
574
+ /**
575
+ * If true, this node supports generating multiple unique outputs per run
576
+ * when outputMode is 'per-input'. Used for source nodes like image, audio, text.
577
+ */
578
+ supportsPerInputMode?: boolean;
574
579
  }
575
580
  export type NodeTypeEnum = 'image' | 'video' | 'audio' | 'text' | 'image-editor' | 'video-editor' | 'llm' | 'output';
576
581
  export interface OutputSchemaProperty {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.15.0",
3
+ "version": "2.16.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",