ugcinc 2.87.6 → 2.87.8
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 +16 -15
- package/dist/types.d.ts +0 -7
- package/package.json +1 -1
package/dist/automations.js
CHANGED
|
@@ -253,21 +253,6 @@ function getAllNodes() {
|
|
|
253
253
|
// Dynamic outputs: based on outputFields config
|
|
254
254
|
outputs: [],
|
|
255
255
|
},
|
|
256
|
-
{
|
|
257
|
-
type: "output",
|
|
258
|
-
label: "Output",
|
|
259
|
-
description: "Final output of the automation",
|
|
260
|
-
category: "Output",
|
|
261
|
-
inputs: [
|
|
262
|
-
{
|
|
263
|
-
id: "result",
|
|
264
|
-
title: "Result",
|
|
265
|
-
type: ["image", "video", "audio", "text"],
|
|
266
|
-
required: true,
|
|
267
|
-
},
|
|
268
|
-
],
|
|
269
|
-
outputs: [],
|
|
270
|
-
},
|
|
271
256
|
{
|
|
272
257
|
type: "variable",
|
|
273
258
|
label: "Variable",
|
|
@@ -307,6 +292,22 @@ function getAllNodes() {
|
|
|
307
292
|
},
|
|
308
293
|
],
|
|
309
294
|
},
|
|
295
|
+
// === Output nodes (terminal nodes) ===
|
|
296
|
+
{
|
|
297
|
+
type: "output",
|
|
298
|
+
label: "Output",
|
|
299
|
+
description: "Final output of the automation",
|
|
300
|
+
category: "Output",
|
|
301
|
+
inputs: [
|
|
302
|
+
{
|
|
303
|
+
id: "result",
|
|
304
|
+
title: "Result",
|
|
305
|
+
type: ["image", "video", "audio", "text"],
|
|
306
|
+
required: true,
|
|
307
|
+
},
|
|
308
|
+
],
|
|
309
|
+
outputs: [],
|
|
310
|
+
},
|
|
310
311
|
{
|
|
311
312
|
type: "post-video",
|
|
312
313
|
label: "Post Video",
|
package/dist/types.d.ts
CHANGED
|
@@ -914,16 +914,9 @@ export interface OutputInput {
|
|
|
914
914
|
id: string;
|
|
915
915
|
title: string;
|
|
916
916
|
type: 'image' | 'video' | 'audio' | 'social_audio' | 'text';
|
|
917
|
-
tag?: string;
|
|
918
917
|
}
|
|
919
918
|
export interface OutputNodeConfig {
|
|
920
919
|
inputs: OutputInput[];
|
|
921
|
-
saveToMedia: boolean;
|
|
922
|
-
globalTag?: string;
|
|
923
|
-
makeUnique: boolean;
|
|
924
|
-
createPost?: boolean;
|
|
925
|
-
requireReview?: boolean;
|
|
926
|
-
mainPreviewInputId?: string;
|
|
927
920
|
}
|
|
928
921
|
/**
|
|
929
922
|
* Account node configuration - source node for selecting accounts to post from
|