ugcinc 2.73.4 → 2.74.1

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.
@@ -76,6 +76,7 @@ export declare class AutomationsClient extends BaseClient {
76
76
  run: AutomationRun;
77
77
  templateName: string;
78
78
  nodeCount: number;
79
+ completedNodeCount: number;
79
80
  }>>>;
80
81
  /**
81
82
  * Update review status for a run
@@ -152,6 +152,21 @@ function getAllNodes() {
152
152
  },
153
153
  ],
154
154
  },
155
+ {
156
+ type: "social-audio",
157
+ label: "Social Audio",
158
+ description: "Import social audio tracks",
159
+ category: "Input",
160
+ inputs: [],
161
+ outputs: [
162
+ {
163
+ id: "social_audio",
164
+ title: "social_audio",
165
+ type: "social_audio",
166
+ required: true,
167
+ },
168
+ ],
169
+ },
155
170
  {
156
171
  type: "text",
157
172
  label: "Text",
package/dist/types.d.ts CHANGED
@@ -672,7 +672,7 @@ export type StaticSegment = ImageSegment | TextSegment;
672
672
  /**
673
673
  * Automation types
674
674
  */
675
- export type MediaType = 'video' | 'image' | 'audio' | 'text';
675
+ export type MediaType = 'video' | 'image' | 'audio' | 'social_audio' | 'text';
676
676
  /**
677
677
  * Selection order configuration for media nodes
678
678
  */
@@ -712,7 +712,7 @@ export interface NodeControlConfig {
712
712
  */
713
713
  supportsPerInputMode?: boolean;
714
714
  }
715
- export type NodeTypeEnum = 'image' | 'video' | 'audio' | 'text' | 'image-editor' | 'video-editor' | 'image-generation' | 'llm' | 'output' | 'variable' | 'workflow';
715
+ export type NodeTypeEnum = 'image' | 'video' | 'audio' | 'social-audio' | 'text' | 'image-editor' | 'video-editor' | 'image-generation' | 'llm' | 'output' | 'variable' | 'workflow';
716
716
  export interface OutputSchemaProperty {
717
717
  type: 'string' | 'number' | 'boolean' | 'array' | 'object';
718
718
  items?: 'string' | 'number' | 'boolean';
@@ -818,7 +818,7 @@ export interface WorkflowNodeDefinition {
818
818
  export interface OutputInput {
819
819
  id: string;
820
820
  title: string;
821
- type: 'image' | 'video' | 'audio' | 'text';
821
+ type: 'image' | 'video' | 'audio' | 'social_audio' | 'text';
822
822
  tag?: string;
823
823
  }
824
824
  export interface OutputNodeConfig {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.73.4",
3
+ "version": "2.74.1",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",