ugcinc 3.32.5 → 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 +4 -4
- package/dist/types.d.ts +3 -3
- package/package.json +1 -1
package/dist/automations.js
CHANGED
|
@@ -257,8 +257,8 @@ function getAllNodes() {
|
|
|
257
257
|
},
|
|
258
258
|
// === Generator nodes ===
|
|
259
259
|
{
|
|
260
|
-
type: "image-
|
|
261
|
-
label: "Image
|
|
260
|
+
type: "image-composer",
|
|
261
|
+
label: "Image Composer",
|
|
262
262
|
description: "Create templated images",
|
|
263
263
|
category: "Generation",
|
|
264
264
|
nodeCategory: "generator",
|
|
@@ -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
|
@@ -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-composer';
|
|
465
465
|
config: ImageEditorNodeConfig;
|
|
466
466
|
imageUrls: Record<string, string>;
|
|
467
467
|
textValues: Record<string, string>;
|
|
@@ -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-
|
|
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-
|
|
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';
|