ugcinc 3.32.4 → 3.32.6

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.
@@ -257,8 +257,8 @@ function getAllNodes() {
257
257
  },
258
258
  // === Generator nodes ===
259
259
  {
260
- type: "image-template",
261
- label: "Image Template",
260
+ type: "image-composer",
261
+ label: "Image Composer",
262
262
  description: "Create templated images",
263
263
  category: "Generation",
264
264
  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-template';
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-template, video-template, image-generation, text-generation, sub-agent)
809
+ * - generator: Nodes that transform or generate content (image-composer, video-template, 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-template' | 'video-template' | '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';
836
+ export type NodeTypeEnum = 'social-audio' | 'text' | 'media' | 'video-import' | 'image-composer' | 'video-template' | '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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.32.4",
3
+ "version": "3.32.6",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",