ugcinc 3.2.0 → 3.2.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.
@@ -262,6 +262,27 @@ function getAllNodes() {
262
262
  },
263
263
  ],
264
264
  },
265
+ {
266
+ type: "deduplicate",
267
+ label: "Deduplicate",
268
+ description: "Make videos unique",
269
+ category: "Generation",
270
+ nodeCategory: "generator",
271
+ inputs: [
272
+ {
273
+ id: "video",
274
+ type: "video",
275
+ required: true,
276
+ },
277
+ ],
278
+ outputs: [
279
+ {
280
+ id: "output",
281
+ type: "video",
282
+ required: true,
283
+ },
284
+ ],
285
+ },
265
286
  {
266
287
  type: "sub-agent",
267
288
  label: "Sub-Agent",
@@ -453,28 +474,6 @@ function getAllNodes() {
453
474
  ],
454
475
  outputs: [],
455
476
  },
456
- // === Processing nodes ===
457
- {
458
- type: "deduplicate",
459
- label: "Deduplicate",
460
- description: "Make videos unique",
461
- category: "Processing",
462
- nodeCategory: "generator",
463
- inputs: [
464
- {
465
- id: "video",
466
- type: "video",
467
- required: true,
468
- },
469
- ],
470
- outputs: [
471
- {
472
- id: "output",
473
- type: "video",
474
- required: true,
475
- },
476
- ],
477
- },
478
477
  ];
479
478
  }
480
479
  /**
package/dist/types.d.ts CHANGED
@@ -944,7 +944,6 @@ export interface OutputNodeConfig {
944
944
  */
945
945
  export interface ManualTriggerOutput {
946
946
  id: string;
947
- title: string;
948
947
  type: 'image' | 'video' | 'audio' | 'text' | 'social_audio' | 'account';
949
948
  /** Whether this variable is optional (default: false = required) */
950
949
  optional?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.2.0",
3
+ "version": "3.2.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",