ugcinc 3.10.2 → 3.11.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 +0 -46
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/automations.js
CHANGED
|
@@ -225,52 +225,6 @@ function getAllNodes() {
|
|
|
225
225
|
},
|
|
226
226
|
],
|
|
227
227
|
},
|
|
228
|
-
// Hidden legacy source nodes (replaced by media node)
|
|
229
|
-
{
|
|
230
|
-
type: "image",
|
|
231
|
-
label: "Image",
|
|
232
|
-
description: "Import image files",
|
|
233
|
-
category: "Sources",
|
|
234
|
-
nodeCategory: "source",
|
|
235
|
-
inputs: [],
|
|
236
|
-
outputs: [
|
|
237
|
-
{
|
|
238
|
-
id: "image",
|
|
239
|
-
type: "image",
|
|
240
|
-
required: true,
|
|
241
|
-
},
|
|
242
|
-
],
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
type: "video",
|
|
246
|
-
label: "Video",
|
|
247
|
-
description: "Import video files",
|
|
248
|
-
category: "Sources",
|
|
249
|
-
nodeCategory: "source",
|
|
250
|
-
inputs: [],
|
|
251
|
-
outputs: [
|
|
252
|
-
{
|
|
253
|
-
id: "video",
|
|
254
|
-
type: "video",
|
|
255
|
-
required: true,
|
|
256
|
-
},
|
|
257
|
-
],
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
type: "audio",
|
|
261
|
-
label: "Audio",
|
|
262
|
-
description: "Import audio files",
|
|
263
|
-
category: "Sources",
|
|
264
|
-
nodeCategory: "source",
|
|
265
|
-
inputs: [],
|
|
266
|
-
outputs: [
|
|
267
|
-
{
|
|
268
|
-
id: "audio",
|
|
269
|
-
type: "audio",
|
|
270
|
-
required: true,
|
|
271
|
-
},
|
|
272
|
-
],
|
|
273
|
-
},
|
|
274
228
|
// === Generator nodes ===
|
|
275
229
|
{
|
|
276
230
|
type: "image-template",
|
package/dist/types.d.ts
CHANGED
|
@@ -824,7 +824,7 @@ export interface NodeControlConfig {
|
|
|
824
824
|
*/
|
|
825
825
|
isInitializer?: boolean;
|
|
826
826
|
}
|
|
827
|
-
export type NodeTypeEnum = '
|
|
827
|
+
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' | 'post-video' | 'post-slideshow' | 'save-to-media' | 'deduplicate' | 'for-each' | 'transcript' | 'auto-caption';
|
|
828
828
|
export interface OutputSchemaProperty {
|
|
829
829
|
type: 'string' | 'number' | 'boolean' | 'array' | 'object';
|
|
830
830
|
items?: 'string' | 'number' | 'boolean';
|