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.
- package/dist/automations.d.ts +1 -0
- package/dist/automations.js +15 -0
- package/dist/types.d.ts +3 -3
- package/package.json +1 -1
package/dist/automations.d.ts
CHANGED
package/dist/automations.js
CHANGED
|
@@ -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 {
|