ugcinc 3.0.0 → 3.0.1
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 +2 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -461,7 +461,7 @@ export interface DynamicCropConfig {
|
|
|
461
461
|
}
|
|
462
462
|
export type { ImageEditorElement, ImageEditorNodeConfig, DimensionPresetKey };
|
|
463
463
|
export interface ImageEditorNodeInput extends Record<string, unknown> {
|
|
464
|
-
type: 'image-
|
|
464
|
+
type: 'image-template';
|
|
465
465
|
config: ImageEditorNodeConfig;
|
|
466
466
|
imageUrls: Record<string, string>;
|
|
467
467
|
textValues: Record<string, string>;
|
|
@@ -797,7 +797,7 @@ export interface NodePort {
|
|
|
797
797
|
* Functional category for automation nodes
|
|
798
798
|
* - trigger: Nodes that start an automation (manual-trigger, recurrence)
|
|
799
799
|
* - source: Nodes that provide input data (image, video, audio, social-audio, text, account)
|
|
800
|
-
* - generator: Nodes that transform or generate content (image-
|
|
800
|
+
* - generator: Nodes that transform or generate content (image-template, video-template, image-generation, text-generation, sub-agent)
|
|
801
801
|
* - terminal: Nodes that end an automation (output, post-video, post-slideshow, save-to-media)
|
|
802
802
|
*/
|
|
803
803
|
export type NodeCategory = 'trigger' | 'source' | 'generator' | 'terminal';
|