ugcinc 2.87.5 → 2.87.7
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 +1 -1
- 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
|
@@ -893,7 +893,7 @@ export interface WorkflowNodeDefinition {
|
|
|
893
893
|
maxTokens?: number;
|
|
894
894
|
useWebSearch?: boolean;
|
|
895
895
|
useStructuredOutput?: boolean;
|
|
896
|
-
variableType?: 'image' | 'video' | 'audio' | 'text' | 'dropdown';
|
|
896
|
+
variableType?: 'image' | 'video' | 'audio' | 'text' | 'dropdown' | 'date';
|
|
897
897
|
defaultValue?: string;
|
|
898
898
|
dropdownOptions?: Array<{
|
|
899
899
|
label: string;
|