ugcinc 3.32.6 → 3.32.7
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 +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/automations.js
CHANGED
|
@@ -278,8 +278,8 @@ function getAllNodes() {
|
|
|
278
278
|
],
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
|
-
type: "video-
|
|
282
|
-
label: "Video
|
|
281
|
+
type: "video-composer",
|
|
282
|
+
label: "Video Composer",
|
|
283
283
|
description: "Create templated videos",
|
|
284
284
|
category: "Generation",
|
|
285
285
|
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-
|
|
809
|
+
* - generator: Nodes that transform or generate content (image-composer, video-composer, image-generation, text-generation, sub-agent)
|
|
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-
|
|
836
|
+
export type NodeTypeEnum = 'social-audio' | 'text' | 'media' | 'video-import' | 'image-composer' | 'video-composer' | 'image-generation' | 'video-generation' | 'custom-model' | 'text-generation' | 'output' | 'manual-trigger' | 'recurrence' | 'sub-agent' | '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';
|