ugcinc 3.53.0 → 3.55.0

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.
@@ -396,6 +396,25 @@ function getAllNodes() {
396
396
  },
397
397
  ],
398
398
  },
399
+ {
400
+ type: "create-dm",
401
+ label: "Create DM",
402
+ description: "Create fake DM screenshots for iMessage or Instagram",
403
+ category: "Generation",
404
+ nodeCategory: "generator",
405
+ // Dynamic inputs based on createDmConfig:
406
+ // - profilePic (image, if profilePicIsVariable)
407
+ // - messages (object, if messagesSource === 'input')
408
+ // - imageAttachment (image, if imageAttachmentIsVariable)
409
+ inputs: [],
410
+ outputs: [
411
+ {
412
+ id: "output",
413
+ type: "image",
414
+ required: true,
415
+ },
416
+ ],
417
+ },
399
418
  {
400
419
  type: "deduplicate",
401
420
  label: "Mass Repost",
package/dist/types.d.ts CHANGED
@@ -846,7 +846,7 @@ export interface NodeControlConfig {
846
846
  */
847
847
  isInitializer?: boolean;
848
848
  }
849
- export type NodeTypeEnum = 'social-audio' | 'text' | 'media' | 'video-import' | 'image-composer' | 'video-composer' | 'generate-image' | 'generate-video' | 'custom-model' | 'llm' | 'output' | 'manual-trigger' | 'recurrence' | 'compose-workflow' | 'account' | 'auto-post' | 'save-to-media' | 'deduplicate' | 'for-each' | 'random' | 'random-route' | 'if' | 'transcript' | 'auto-caption' | 'screenshot-animation';
849
+ export type NodeTypeEnum = 'social-audio' | 'text' | 'media' | 'video-import' | 'image-composer' | 'video-composer' | 'generate-image' | 'generate-video' | 'custom-model' | 'llm' | 'output' | 'manual-trigger' | 'recurrence' | 'compose-workflow' | 'account' | 'auto-post' | 'save-to-media' | 'deduplicate' | 'for-each' | 'random' | 'random-route' | 'if' | 'transcript' | 'auto-caption' | 'screenshot-animation' | 'create-dm';
850
850
  export interface OutputSchemaProperty {
851
851
  type: 'string' | 'number' | 'boolean' | 'array' | 'object';
852
852
  items?: 'string' | 'number' | 'boolean';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.53.0",
3
+ "version": "3.55.0",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",