ugcinc 2.87.10 → 2.87.12
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 +12 -26
- package/package.json +1 -1
package/dist/automations.js
CHANGED
|
@@ -316,84 +316,70 @@ function getAllNodes() {
|
|
|
316
316
|
inputs: [
|
|
317
317
|
{
|
|
318
318
|
id: "video",
|
|
319
|
-
title: "
|
|
319
|
+
title: "video",
|
|
320
320
|
type: "video",
|
|
321
321
|
required: true,
|
|
322
322
|
},
|
|
323
323
|
{
|
|
324
324
|
id: "account",
|
|
325
|
-
title: "
|
|
325
|
+
title: "account",
|
|
326
326
|
type: "account",
|
|
327
327
|
required: true,
|
|
328
328
|
},
|
|
329
329
|
{
|
|
330
330
|
id: "caption",
|
|
331
|
-
title: "
|
|
331
|
+
title: "caption",
|
|
332
332
|
type: "text",
|
|
333
333
|
required: false,
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
id: "socialAudio",
|
|
337
|
-
title: "
|
|
337
|
+
title: "social-audio",
|
|
338
338
|
type: "audio",
|
|
339
339
|
required: false,
|
|
340
340
|
},
|
|
341
341
|
{
|
|
342
342
|
id: "postDate",
|
|
343
|
-
title: "
|
|
343
|
+
title: "post-date",
|
|
344
344
|
type: "date",
|
|
345
345
|
required: false,
|
|
346
346
|
},
|
|
347
347
|
],
|
|
348
|
-
outputs: [
|
|
349
|
-
{
|
|
350
|
-
id: "postUrl",
|
|
351
|
-
title: "Post URL",
|
|
352
|
-
type: "text",
|
|
353
|
-
required: true,
|
|
354
|
-
},
|
|
355
|
-
],
|
|
348
|
+
outputs: [],
|
|
356
349
|
},
|
|
357
350
|
{
|
|
358
351
|
type: "post-slideshow",
|
|
359
352
|
label: "Post Slideshow",
|
|
360
353
|
description: "Post a slideshow to social media",
|
|
361
354
|
category: "Output",
|
|
362
|
-
// Dynamic inputs based on
|
|
355
|
+
// Dynamic inputs based on postSlideshowConfig.inputs
|
|
363
356
|
inputs: [
|
|
364
357
|
{
|
|
365
358
|
id: "account",
|
|
366
|
-
title: "
|
|
359
|
+
title: "account",
|
|
367
360
|
type: "account",
|
|
368
361
|
required: true,
|
|
369
362
|
},
|
|
370
363
|
{
|
|
371
364
|
id: "caption",
|
|
372
|
-
title: "
|
|
365
|
+
title: "caption",
|
|
373
366
|
type: "text",
|
|
374
367
|
required: false,
|
|
375
368
|
},
|
|
376
369
|
{
|
|
377
370
|
id: "socialAudio",
|
|
378
|
-
title: "
|
|
371
|
+
title: "social-audio",
|
|
379
372
|
type: "audio",
|
|
380
373
|
required: false,
|
|
381
374
|
},
|
|
382
375
|
{
|
|
383
376
|
id: "postDate",
|
|
384
|
-
title: "
|
|
377
|
+
title: "post-date",
|
|
385
378
|
type: "date",
|
|
386
379
|
required: false,
|
|
387
380
|
},
|
|
388
381
|
],
|
|
389
|
-
outputs: [
|
|
390
|
-
{
|
|
391
|
-
id: "postUrl",
|
|
392
|
-
title: "Post URL",
|
|
393
|
-
type: "text",
|
|
394
|
-
required: true,
|
|
395
|
-
},
|
|
396
|
-
],
|
|
382
|
+
outputs: [],
|
|
397
383
|
},
|
|
398
384
|
{
|
|
399
385
|
type: "save-to-media",
|