ugcinc 3.32.7 → 3.32.9
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/automations.js +7 -7
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/automations.js
CHANGED
|
@@ -335,9 +335,9 @@ function getAllNodes() {
|
|
|
335
335
|
],
|
|
336
336
|
},
|
|
337
337
|
{
|
|
338
|
-
type: "
|
|
339
|
-
label: "
|
|
340
|
-
description: "Embed other
|
|
338
|
+
type: "compose-workflow",
|
|
339
|
+
label: "Compose Workflow",
|
|
340
|
+
description: "Embed other workflows",
|
|
341
341
|
category: "Generation",
|
|
342
342
|
nodeCategory: "generator",
|
|
343
343
|
// Inputs and outputs are dynamic based on the embedded workflow
|
|
@@ -346,8 +346,8 @@ function getAllNodes() {
|
|
|
346
346
|
},
|
|
347
347
|
// === AI nodes ===
|
|
348
348
|
{
|
|
349
|
-
type: "image
|
|
350
|
-
label: "Image
|
|
349
|
+
type: "generate-image",
|
|
350
|
+
label: "Generate Image",
|
|
351
351
|
description: "Generate images with AI",
|
|
352
352
|
category: "AI Generation",
|
|
353
353
|
nodeCategory: "generator",
|
|
@@ -368,8 +368,8 @@ function getAllNodes() {
|
|
|
368
368
|
],
|
|
369
369
|
},
|
|
370
370
|
{
|
|
371
|
-
type: "video
|
|
372
|
-
label: "Video
|
|
371
|
+
type: "generate-video",
|
|
372
|
+
label: "Generate Video",
|
|
373
373
|
description: "Generate videos with AI",
|
|
374
374
|
category: "AI Generation",
|
|
375
375
|
nodeCategory: "generator",
|
package/dist/types.d.ts
CHANGED
|
@@ -806,7 +806,7 @@ export interface NodePort {
|
|
|
806
806
|
* Functional category for automation nodes
|
|
807
807
|
* - trigger: Nodes that start an automation (manual-trigger, recurrence)
|
|
808
808
|
* - source: Nodes that provide input data (image, video, audio, social-audio, text, account)
|
|
809
|
-
* - generator: Nodes that transform or generate content (image-composer, video-composer, image
|
|
809
|
+
* - generator: Nodes that transform or generate content (image-composer, video-composer, generate-image, text-generation, compose-workflow)
|
|
810
810
|
* - terminal: Nodes that end an automation (output, auto-post, save-to-media)
|
|
811
811
|
*/
|
|
812
812
|
export type NodeCategory = 'trigger' | 'source' | 'generator' | 'terminal';
|
|
@@ -833,7 +833,7 @@ export interface NodeControlConfig {
|
|
|
833
833
|
*/
|
|
834
834
|
isInitializer?: boolean;
|
|
835
835
|
}
|
|
836
|
-
export type NodeTypeEnum = 'social-audio' | 'text' | 'media' | 'video-import' | 'image-composer' | 'video-composer' | 'image
|
|
836
|
+
export type NodeTypeEnum = 'social-audio' | 'text' | 'media' | 'video-import' | 'image-composer' | 'video-composer' | 'generate-image' | 'generate-video' | 'custom-model' | 'text-generation' | 'output' | 'manual-trigger' | 'recurrence' | 'compose-workflow' | 'account' | 'auto-post' | 'save-to-media' | 'deduplicate' | 'for-each' | 'transcript' | 'auto-caption' | 'screenshot-animation';
|
|
837
837
|
export interface OutputSchemaProperty {
|
|
838
838
|
type: 'string' | 'number' | 'boolean' | 'array' | 'object';
|
|
839
839
|
items?: 'string' | 'number' | 'boolean';
|