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.
- package/dist/types.d.ts +5 -0
- 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 {
|