ugcinc 3.4.0 → 3.6.0
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 +7 -1
- package/dist/types.d.ts +1 -6
- package/package.json +1 -1
package/dist/automations.js
CHANGED
|
@@ -179,7 +179,13 @@ function getAllNodes() {
|
|
|
179
179
|
description: "Import videos from YouTube, TikTok, Instagram & more",
|
|
180
180
|
category: "Sources",
|
|
181
181
|
nodeCategory: "source",
|
|
182
|
-
inputs: [
|
|
182
|
+
inputs: [
|
|
183
|
+
{
|
|
184
|
+
id: "url",
|
|
185
|
+
type: "text",
|
|
186
|
+
required: true,
|
|
187
|
+
},
|
|
188
|
+
],
|
|
183
189
|
outputs: [
|
|
184
190
|
{
|
|
185
191
|
id: "video",
|
package/dist/types.d.ts
CHANGED
|
@@ -1154,18 +1154,13 @@ export type VideoImportPlatform = 'youtube' | 'tiktok' | 'instagram' | 'twitter'
|
|
|
1154
1154
|
export type VideoImportQuality = '360' | '480' | '720' | '1080' | '1440' | '2160';
|
|
1155
1155
|
/**
|
|
1156
1156
|
* Video Import node configuration - imports videos from social media platforms
|
|
1157
|
+
* Note: URL is received via input port, not stored in config
|
|
1157
1158
|
*/
|
|
1158
1159
|
export interface VideoImportNodeConfig {
|
|
1159
1160
|
/** Platform to import from */
|
|
1160
1161
|
platform: VideoImportPlatform;
|
|
1161
|
-
/** URL options (like textOptions in text node) */
|
|
1162
|
-
urlOptions: string[];
|
|
1163
1162
|
/** Video quality preference */
|
|
1164
1163
|
videoQuality?: VideoImportQuality;
|
|
1165
|
-
/** Selection mode for multiple URLs */
|
|
1166
|
-
selectionConfig?: {
|
|
1167
|
-
mode: 'random' | 'sequential';
|
|
1168
|
-
};
|
|
1169
1164
|
}
|
|
1170
1165
|
/**
|
|
1171
1166
|
* Video Generation Model IDs
|