ugcinc 3.32.8 → 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.
@@ -346,8 +346,8 @@ function getAllNodes() {
346
346
  },
347
347
  // === AI nodes ===
348
348
  {
349
- type: "image-generation",
350
- label: "Image Generation",
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-generation",
372
- label: "Video Generation",
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-generation, text-generation, compose-workflow)
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-generation' | 'video-generation' | 'custom-model' | 'text-generation' | 'output' | 'manual-trigger' | 'recurrence' | 'compose-workflow' | 'account' | 'auto-post' | 'save-to-media' | 'deduplicate' | 'for-each' | 'transcript' | 'auto-caption' | 'screenshot-animation';
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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.32.8",
3
+ "version": "3.32.9",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",