ugcinc 2.99.1 → 2.99.2

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.
Files changed (2) hide show
  1. package/dist/automations.js +14 -14
  2. package/package.json +1 -1
@@ -113,7 +113,7 @@ function getAllNodes() {
113
113
  {
114
114
  type: "media",
115
115
  label: "Media",
116
- description: "Import images, videos, and audio files",
116
+ description: "Use saved media",
117
117
  category: "Sources",
118
118
  nodeCategory: "source",
119
119
  inputs: [],
@@ -122,7 +122,7 @@ function getAllNodes() {
122
122
  {
123
123
  type: "text",
124
124
  label: "Text",
125
- description: "Create text with templated variables",
125
+ description: "Use text collections",
126
126
  category: "Sources",
127
127
  nodeCategory: "source",
128
128
  inputs: [], // Dynamic inputs based on template variables
@@ -220,7 +220,7 @@ function getAllNodes() {
220
220
  {
221
221
  type: "image-editor",
222
222
  label: "Image Template",
223
- description: "Edit and transform images",
223
+ description: "Create templated images",
224
224
  category: "Generation",
225
225
  nodeCategory: "generator",
226
226
  inputs: [
@@ -243,7 +243,7 @@ function getAllNodes() {
243
243
  {
244
244
  type: "video-editor",
245
245
  label: "Video Template",
246
- description: "Edit and transform videos",
246
+ description: "Create templated videos",
247
247
  category: "Generation",
248
248
  nodeCategory: "generator",
249
249
  inputs: [], // Dynamic inputs based on segments in editor config
@@ -259,7 +259,7 @@ function getAllNodes() {
259
259
  {
260
260
  type: "workflow",
261
261
  label: "Sub-Agent",
262
- description: "Embed another workflow as a sub-agent",
262
+ description: "Embed other agents",
263
263
  category: "Generation",
264
264
  nodeCategory: "generator",
265
265
  // Inputs and outputs are dynamic based on the embedded workflow
@@ -270,8 +270,8 @@ function getAllNodes() {
270
270
  {
271
271
  type: "image-generation",
272
272
  label: "Image Generation",
273
- description: "Generate images using AI models",
274
- category: "AI",
273
+ description: "Generate images with AI",
274
+ category: "AI Generation",
275
275
  nodeCategory: "generator",
276
276
  inputs: [
277
277
  {
@@ -294,8 +294,8 @@ function getAllNodes() {
294
294
  {
295
295
  type: "llm",
296
296
  label: "Text Generation",
297
- description: "Generate text using Large Language Models",
298
- category: "AI",
297
+ description: "Generate LLM output",
298
+ category: "AI Generation",
299
299
  nodeCategory: "generator",
300
300
  // Dynamic inputs: extracted from systemPrompt {{variables}} + media refs
301
301
  inputs: [],
@@ -306,7 +306,7 @@ function getAllNodes() {
306
306
  {
307
307
  type: "manual-trigger",
308
308
  label: "Manual Trigger",
309
- description: "Define inputs required when manually running this automation",
309
+ description: "Trigger manually",
310
310
  category: "Triggers",
311
311
  nodeCategory: "trigger",
312
312
  inputs: [],
@@ -317,7 +317,7 @@ function getAllNodes() {
317
317
  {
318
318
  type: "recurrence",
319
319
  label: "Recurring",
320
- description: "Schedule recurring automation runs",
320
+ description: "Run continuously",
321
321
  category: "Triggers",
322
322
  nodeCategory: "trigger",
323
323
  inputs: [],
@@ -328,7 +328,7 @@ function getAllNodes() {
328
328
  {
329
329
  type: "post-video",
330
330
  label: "Post Video",
331
- description: "Post a video to social media",
331
+ description: "Publish a video post",
332
332
  category: "Output",
333
333
  nodeCategory: "terminal",
334
334
  inputs: [
@@ -368,7 +368,7 @@ function getAllNodes() {
368
368
  {
369
369
  type: "post-slideshow",
370
370
  label: "Post Slideshow",
371
- description: "Post a slideshow to social media",
371
+ description: "Publish a slideshow post",
372
372
  category: "Output",
373
373
  nodeCategory: "terminal",
374
374
  // Dynamic inputs based on postSlideshowConfig.inputs
@@ -413,7 +413,7 @@ function getAllNodes() {
413
413
  {
414
414
  type: "output",
415
415
  label: "Output",
416
- description: "Final output of the automation",
416
+ description: "Pass through outputs",
417
417
  category: "Output",
418
418
  nodeCategory: "terminal",
419
419
  inputs: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.99.1",
3
+ "version": "2.99.2",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",