ugcinc 4.1.1 → 4.1.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 (39) hide show
  1. package/dist/automations/nodes/account.d.ts +3 -2
  2. package/dist/automations/nodes/account.js +2 -1
  3. package/dist/automations/nodes/auto-caption.d.ts +6 -5
  4. package/dist/automations/nodes/auto-caption.js +2 -1
  5. package/dist/automations/nodes/auto-post.d.ts +5 -4
  6. package/dist/automations/nodes/auto-post.js +2 -1
  7. package/dist/automations/nodes/branch.d.ts +3 -2
  8. package/dist/automations/nodes/branch.js +2 -1
  9. package/dist/automations/nodes/collect.d.ts +3 -2
  10. package/dist/automations/nodes/collect.js +2 -1
  11. package/dist/automations/nodes/compose-workflow.d.ts +1 -0
  12. package/dist/automations/nodes/create-dm.d.ts +2 -1
  13. package/dist/automations/nodes/custom-model.d.ts +1 -0
  14. package/dist/automations/nodes/deduplicate.d.ts +1 -0
  15. package/dist/automations/nodes/destructure.d.ts +1 -0
  16. package/dist/automations/nodes/for-each.d.ts +1 -0
  17. package/dist/automations/nodes/generate-image.d.ts +1 -0
  18. package/dist/automations/nodes/generate-video.d.ts +1 -0
  19. package/dist/automations/nodes/if.d.ts +1 -0
  20. package/dist/automations/nodes/image-composer.d.ts +1 -0
  21. package/dist/automations/nodes/index.d.ts +6 -6
  22. package/dist/automations/nodes/llm.d.ts +1 -0
  23. package/dist/automations/nodes/manual-trigger.d.ts +1 -0
  24. package/dist/automations/nodes/media.d.ts +1 -0
  25. package/dist/automations/nodes/not.d.ts +1 -0
  26. package/dist/automations/nodes/output.d.ts +1 -0
  27. package/dist/automations/nodes/random-route.d.ts +1 -0
  28. package/dist/automations/nodes/random.d.ts +1 -0
  29. package/dist/automations/nodes/recurrence.d.ts +1 -0
  30. package/dist/automations/nodes/save-to-media.d.ts +1 -0
  31. package/dist/automations/nodes/screenshot-animation.d.ts +1 -0
  32. package/dist/automations/nodes/social-audio.d.ts +1 -0
  33. package/dist/automations/nodes/text.d.ts +1 -0
  34. package/dist/automations/nodes/transcript.d.ts +1 -0
  35. package/dist/automations/nodes/video-composer.d.ts +1 -0
  36. package/dist/automations/nodes/video-import.d.ts +1 -0
  37. package/dist/index.d.ts +32 -1
  38. package/dist/index.js +5 -1
  39. package/package.json +1 -1
@@ -1,6 +1,7 @@
1
- declare const _default: import("./types").NodeDefinition<"source", {
1
+ declare const definition: import("./types").NodeDefinition<"source", {
2
2
  accountIds: string[];
3
3
  outputMode: "per-input";
4
4
  selectionMode: "random";
5
5
  }, false>;
6
- export default _default;
6
+ export default definition;
7
+ export type AccountNodeConfig = typeof definition.defaults;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const types_1 = require("./types");
4
- exports.default = (0, types_1.defineNode)({
4
+ const definition = (0, types_1.defineNode)({
5
5
  nodeId: 'account',
6
6
  label: 'Account',
7
7
  description: 'Select accounts to post from',
@@ -26,3 +26,4 @@ exports.default = (0, types_1.defineNode)({
26
26
  ],
27
27
  }),
28
28
  });
29
+ exports.default = definition;
@@ -1,7 +1,7 @@
1
- type AutoCaptionPreset = 'hormozi' | 'minimal' | 'bold-pop' | 'clean' | 'neon';
2
- type AutoCaptionFontWeight = 'normal' | 'bold' | 'black';
3
- type AutoCaptionPosition = 'top' | 'center' | 'bottom';
4
- declare const _default: import("./types").NodeDefinition<"generator", {
1
+ export type AutoCaptionPreset = 'hormozi' | 'minimal' | 'bold-pop' | 'clean' | 'neon';
2
+ export type AutoCaptionFontWeight = 'normal' | 'bold' | 'black';
3
+ export type AutoCaptionPosition = 'top' | 'center' | 'bottom';
4
+ declare const definition: import("./types").NodeDefinition<"generator", {
5
5
  preset: AutoCaptionPreset;
6
6
  fontName: string | undefined;
7
7
  fontSize: number | undefined;
@@ -20,4 +20,5 @@ declare const _default: import("./types").NodeDefinition<"generator", {
20
20
  outputMode: "per-input";
21
21
  selectionMode: null;
22
22
  }, false>;
23
- export default _default;
23
+ export default definition;
24
+ export type AutoCaptionNodeConfig = typeof definition.defaults;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const types_1 = require("./types");
4
- exports.default = (0, types_1.defineNode)({
4
+ const definition = (0, types_1.defineNode)({
5
5
  nodeId: 'auto-caption',
6
6
  label: 'Auto Caption',
7
7
  description: 'Add TikTok-style captions to videos',
@@ -47,3 +47,4 @@ exports.default = (0, types_1.defineNode)({
47
47
  ],
48
48
  }),
49
49
  });
50
+ exports.default = definition;
@@ -1,7 +1,7 @@
1
1
  import { type InputType } from './types';
2
- type AutoPostMode = 'video' | 'slideshow';
3
- type PostSchedulingMode = 'scheduled' | 'queue';
4
- declare const _default: import("./types").NodeDefinition<"terminal", {
2
+ export type AutoPostMode = 'video' | 'slideshow';
3
+ export type PostSchedulingMode = 'scheduled' | 'queue';
4
+ declare const definition: import("./types").NodeDefinition<"terminal", {
5
5
  mode: AutoPostMode;
6
6
  inputType: InputType;
7
7
  imageInputs: Array<{
@@ -19,4 +19,5 @@ declare const _default: import("./types").NodeDefinition<"terminal", {
19
19
  outputMode: null;
20
20
  selectionMode: null;
21
21
  }, false>;
22
- export default _default;
22
+ export default definition;
23
+ export type AutoPostNodeConfig = typeof definition.defaults;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const types_1 = require("./types");
4
- exports.default = (0, types_1.defineNode)({
4
+ const definition = (0, types_1.defineNode)({
5
5
  nodeId: 'auto-post',
6
6
  label: 'Auto Post',
7
7
  description: 'Publish a video or slideshow',
@@ -50,3 +50,4 @@ exports.default = (0, types_1.defineNode)({
50
50
  return { inputs, outputs: [] };
51
51
  },
52
52
  });
53
+ exports.default = definition;
@@ -11,11 +11,12 @@ export interface PassthroughInput {
11
11
  isArray?: boolean;
12
12
  branchValues?: Record<string, BranchValueConfig>;
13
13
  }
14
- declare const _default: import("./types").NodeDefinition<"generator", {
14
+ declare const definition: import("./types").NodeDefinition<"generator", {
15
15
  branches: BranchDefinition[];
16
16
  passthroughInputs: PassthroughInput[];
17
17
  defaultBranchKey: string;
18
18
  outputMode: "per-input";
19
19
  selectionMode: null;
20
20
  }, false>;
21
- export default _default;
21
+ export default definition;
22
+ export type BranchNodeConfig = typeof definition.defaults;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const types_1 = require("./types");
4
- exports.default = (0, types_1.defineNode)({
4
+ const definition = (0, types_1.defineNode)({
5
5
  nodeId: 'branch',
6
6
  label: 'Branch',
7
7
  description: 'Route inputs based on a key match',
@@ -44,3 +44,4 @@ exports.default = (0, types_1.defineNode)({
44
44
  return { inputs, outputs };
45
45
  },
46
46
  });
47
+ exports.default = definition;
@@ -1,7 +1,8 @@
1
- declare const _default: import("./types").NodeDefinition<"generator", {
1
+ declare const definition: import("./types").NodeDefinition<"generator", {
2
2
  expectedCount: number | undefined;
3
3
  forEachTemplateId: string | undefined;
4
4
  outputMode: "single";
5
5
  selectionMode: null;
6
6
  }, false>;
7
- export default _default;
7
+ export default definition;
8
+ export type CollectNodeConfig = typeof definition.defaults;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const types_1 = require("./types");
4
- exports.default = (0, types_1.defineNode)({
4
+ const definition = (0, types_1.defineNode)({
5
5
  nodeId: 'collect',
6
6
  label: 'Collect',
7
7
  description: 'Collect outputs from a for-each loop into an array',
@@ -49,3 +49,4 @@ exports.default = (0, types_1.defineNode)({
49
49
  return { inputs, outputs };
50
50
  },
51
51
  });
52
+ exports.default = definition;
@@ -6,3 +6,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
6
6
  selectionMode: null;
7
7
  }, false>;
8
8
  export default definition;
9
+ export type ComposeWorkflowNodeConfig = typeof definition.defaults;
@@ -1,5 +1,5 @@
1
1
  import { type InputType } from './types';
2
- type DmPlatform = 'imessage' | 'instagram';
2
+ export type DmPlatform = 'imessage' | 'instagram';
3
3
  export interface CreateDmMessage {
4
4
  sender: 'user' | 'recipient';
5
5
  text: string;
@@ -33,3 +33,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
33
33
  selectionMode: null;
34
34
  }, false>;
35
35
  export default definition;
36
+ export type CreateDmNodeConfig = typeof definition.defaults;
@@ -16,3 +16,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
16
16
  selectionMode: null;
17
17
  }, false>;
18
18
  export default definition;
19
+ export type CustomModelNodeConfig = typeof definition.defaults;
@@ -5,3 +5,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
5
5
  selectionMode: null;
6
6
  }, false>;
7
7
  export default definition;
8
+ export type DeduplicateNodeConfig = typeof definition.defaults;
@@ -23,3 +23,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
23
23
  }, false>;
24
24
  export default definition;
25
25
  export type { DestructureSelection, IndexExpression };
26
+ export type DestructureNodeConfig = typeof definition.defaults;
@@ -20,3 +20,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
20
20
  }, false>;
21
21
  export default definition;
22
22
  export type { ForEachOutputProperty, ForEachInputPort };
23
+ export type ForEachNodeConfig = typeof definition.defaults;
@@ -13,3 +13,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
13
13
  export default definition;
14
14
  export { isEditModel };
15
15
  export type { ImageGenerationTextModel, ImageGenerationEditModel, ImageGenerationModel };
16
+ export type GenerateImageNodeConfig = typeof definition.defaults;
@@ -13,3 +13,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
13
13
  export default definition;
14
14
  export { isImageToVideoModel };
15
15
  export type { VideoGenerationTextToVideoModel, VideoGenerationImageToVideoModel, VideoGenerationModel };
16
+ export type GenerateVideoNodeConfig = typeof definition.defaults;
@@ -19,3 +19,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
19
19
  export default definition;
20
20
  export { IfLogicOperators };
21
21
  export type { IfLogicOperator, IfBooleanInput, IfPassthroughInput };
22
+ export type IfNodeConfig = typeof definition.defaults;
@@ -44,3 +44,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
44
44
  selectionMode: null;
45
45
  }, false>;
46
46
  export default definition;
47
+ export type ImageComposerNodeConfig = typeof definition.defaults;
@@ -11,16 +11,16 @@ export declare const nodeDefinitions: {
11
11
  selectionMode: "random";
12
12
  }, false>;
13
13
  readonly 'auto-caption': NodeDefinition<"generator", {
14
- preset: "hormozi" | "minimal" | "bold-pop" | "clean" | "neon";
14
+ preset: import("./auto-caption").AutoCaptionPreset;
15
15
  fontName: string | undefined;
16
16
  fontSize: number | undefined;
17
- fontWeight: ("normal" | "bold" | "black") | undefined;
17
+ fontWeight: import("./auto-caption").AutoCaptionFontWeight | undefined;
18
18
  fontColor: string | undefined;
19
19
  highlightColor: string | undefined;
20
20
  strokeColor: string | undefined;
21
21
  strokeWidth: number | undefined;
22
22
  backgroundColor: string | undefined;
23
- position: ("top" | "center" | "bottom") | undefined;
23
+ position: import("./auto-caption").AutoCaptionPosition | undefined;
24
24
  yOffset: number | undefined;
25
25
  maxWidth: number | undefined;
26
26
  wordsPerSubtitle: number | undefined;
@@ -30,14 +30,14 @@ export declare const nodeDefinitions: {
30
30
  selectionMode: null;
31
31
  }, false>;
32
32
  readonly 'auto-post': NodeDefinition<"terminal", {
33
- mode: "video" | "slideshow";
33
+ mode: import("./auto-post").AutoPostMode;
34
34
  inputType: import("./types").InputType;
35
35
  imageInputs: Array<{
36
36
  id: string;
37
37
  }>;
38
38
  socialAudioIsVariable: boolean;
39
39
  socialAudioSelectedIds: string[];
40
- schedulingMode: "scheduled" | "queue";
40
+ schedulingMode: import("./auto-post").PostSchedulingMode;
41
41
  minDistanceHours: number;
42
42
  maxPostsPerDay: number;
43
43
  randomWindowStart: string;
@@ -67,7 +67,7 @@ export declare const nodeDefinitions: {
67
67
  selectionMode: null;
68
68
  }, false>;
69
69
  readonly 'create-dm': NodeDefinition<"generator", {
70
- platform: "instagram" | "imessage";
70
+ platform: import("./create-dm").DmPlatform;
71
71
  platformInputType: import("./types").InputType;
72
72
  lightMode: boolean;
73
73
  lightModeInputType: import("./types").InputType;
@@ -24,3 +24,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
24
24
  export default definition;
25
25
  export { LLMProviders };
26
26
  export type { LLMProvider, LLMApiKeys };
27
+ export type LLMNodeConfig = typeof definition.defaults;
@@ -12,3 +12,4 @@ declare const definition: import("./types").NodeDefinition<"trigger", {
12
12
  selectionMode: null;
13
13
  }, false>;
14
14
  export default definition;
15
+ export type ManualTriggerNodeConfig = typeof definition.defaults;
@@ -11,3 +11,4 @@ declare const definition: import("./types").NodeDefinition<"source", {
11
11
  selectionMode: "random";
12
12
  }, false>;
13
13
  export default definition;
14
+ export type MediaNodeConfig = typeof definition.defaults;
@@ -3,3 +3,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
3
3
  selectionMode: null;
4
4
  }, false>;
5
5
  export default definition;
6
+ export type NotNodeConfig = typeof definition.defaults;
@@ -14,3 +14,4 @@ declare const definition: import("./types").NodeDefinition<"terminal", {
14
14
  selectionMode: null;
15
15
  }, false>;
16
16
  export default definition;
17
+ export type OutputNodeConfig = typeof definition.defaults;
@@ -22,3 +22,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
22
22
  selectionMode: null;
23
23
  }, false>;
24
24
  export default definition;
25
+ export type RandomRouteNodeConfig = typeof definition.defaults;
@@ -14,3 +14,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
14
14
  selectionMode: null;
15
15
  }, false>;
16
16
  export default definition;
17
+ export type RandomNodeConfig = typeof definition.defaults;
@@ -27,3 +27,4 @@ declare const definition: import("./types").NodeDefinition<"trigger", {
27
27
  selectionMode: null;
28
28
  }, false>;
29
29
  export default definition;
30
+ export type RecurrenceNodeConfig = typeof definition.defaults;
@@ -13,3 +13,4 @@ declare const definition: import("./types").NodeDefinition<"terminal", {
13
13
  selectionMode: null;
14
14
  }, false>;
15
15
  export default definition;
16
+ export type SaveToMediaNodeConfig = typeof definition.defaults;
@@ -4,3 +4,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
4
4
  selectionMode: null;
5
5
  }, false>;
6
6
  export default definition;
7
+ export type ScreenshotAnimationNodeConfig = typeof definition.defaults;
@@ -5,3 +5,4 @@ declare const definition: import("./types").NodeDefinition<"source", {
5
5
  outputMode: "per-input";
6
6
  }, false>;
7
7
  export default definition;
8
+ export type SocialAudioNodeConfig = typeof definition.defaults;
@@ -4,3 +4,4 @@ declare const definition: import("./types").NodeDefinition<"source", {
4
4
  outputMode: "per-input";
5
5
  }, false>;
6
6
  export default definition;
7
+ export type TextNodeConfig = typeof definition.defaults;
@@ -3,3 +3,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
3
3
  selectionMode: null;
4
4
  }, false>;
5
5
  export default definition;
6
+ export type TranscriptNodeConfig = typeof definition.defaults;
@@ -14,3 +14,4 @@ declare const definition: import("./types").NodeDefinition<"generator", {
14
14
  selectionMode: null;
15
15
  }, false>;
16
16
  export default definition;
17
+ export type VideoComposerNodeConfig = typeof definition.defaults;
@@ -7,3 +7,4 @@ declare const definition: import("./types").NodeDefinition<"source", {
7
7
  selectionMode: "random";
8
8
  }, false>;
9
9
  export default definition;
10
+ export type VideoImportNodeConfig = typeof definition.defaults;
package/dist/index.d.ts CHANGED
@@ -29,7 +29,38 @@ export type { UserMedia, MediaUse, SocialAudio, Media, GetMediaParams, GetSocial
29
29
  export type { CommentStatus, Comment, CreateCommentParams, CreateCommentResponse, GetCommentsParams, } from './comments';
30
30
  export type { RenderJobResponse, RenderJobStatus, SubmitImageRenderJobParams, SubmitVideoRenderJobParams, SubmitScreenshotAnimationRenderJobParams, SubmitInstagramDmRenderJobParams, SubmitIMessageDmRenderJobParams, IgDmMessage, ImDmMessage, RenderVideoEditorConfig, } from './render';
31
31
  export type { VideoEditorNodeConfig, VideoEditorChannel, VideoEditorSegment, VideoEditorVideoSegment, VideoEditorAudioSegment, VideoEditorImageSegment, VideoEditorTextSegment, VideoEditorImageSequenceSegment, VideoEditorVideoSequenceSegment, TimeValue, TimeMode, SegmentTimelinePosition, DeduplicationInput, ImageEditorElement, DimensionPresetKey, } from './render/types';
32
- export type { ImageEditorNodeConfig } from './automations/nodes/image-composer';
32
+ export type { ImageEditorNodeConfig, ImageComposerNodeConfig } from './automations/nodes/image-composer';
33
+ export type { AccountNodeConfig } from './automations/nodes/account';
34
+ export type { AutoCaptionNodeConfig, AutoCaptionPreset, AutoCaptionFontWeight, AutoCaptionPosition, } from './automations/nodes/auto-caption';
35
+ export type { AutoPostNodeConfig, AutoPostMode, PostSchedulingMode, } from './automations/nodes/auto-post';
36
+ export type { BranchNodeConfig, BranchDefinition, PassthroughInput, } from './automations/nodes/branch';
37
+ export type { CollectNodeConfig } from './automations/nodes/collect';
38
+ export type { ComposeWorkflowNodeConfig } from './automations/nodes/compose-workflow';
39
+ export type { CreateDmNodeConfig, CreateDmMessage, DmPlatform, } from './automations/nodes/create-dm';
40
+ export type { CustomModelNodeConfig, CustomModelOutputType, CustomModelInputParam, } from './automations/nodes/custom-model';
41
+ export type { DeduplicateNodeConfig } from './automations/nodes/deduplicate';
42
+ export type { DestructureNodeConfig, DestructureSelection, IndexExpression, } from './automations/nodes/destructure';
43
+ export type { ForEachNodeConfig, ForEachOutputProperty, ForEachInputPort, } from './automations/nodes/for-each';
44
+ export type { GenerateImageNodeConfig, ImageGenerationTextModel, ImageGenerationEditModel, ImageGenerationModel, } from './automations/nodes/generate-image';
45
+ export type { GenerateVideoNodeConfig, VideoGenerationTextToVideoModel, VideoGenerationImageToVideoModel, VideoGenerationModel, } from './automations/nodes/generate-video';
46
+ export type { IfNodeConfig, IfLogicOperator, IfBooleanInput, IfPassthroughInput, } from './automations/nodes/if';
47
+ export { IfLogicOperators } from './automations/nodes/if';
48
+ export type { LLMNodeConfig, LLMProvider, LLMApiKeys, } from './automations/nodes/llm';
49
+ export { LLMProviders } from './automations/nodes/llm';
50
+ export type { ManualTriggerNodeConfig } from './automations/nodes/manual-trigger';
51
+ export type { MediaNodeConfig } from './automations/nodes/media';
52
+ export type { NotNodeConfig } from './automations/nodes/not';
53
+ export type { OutputNodeConfig, OutputInput } from './automations/nodes/output';
54
+ export type { RandomNodeConfig, RandomInputPort } from './automations/nodes/random';
55
+ export type { RandomRouteNodeConfig, RandomRouteBranch, RandomRouteObjectField, RandomRoutePassthroughInput, } from './automations/nodes/random-route';
56
+ export type { RecurrenceNodeConfig, DayOfWeek, RecurrenceMediaOutput, RecurrenceMediaConfig, } from './automations/nodes/recurrence';
57
+ export type { SaveToMediaNodeConfig, SaveToMediaInput } from './automations/nodes/save-to-media';
58
+ export type { ScreenshotAnimationNodeConfig } from './automations/nodes/screenshot-animation';
59
+ export type { SocialAudioNodeConfig } from './automations/nodes/social-audio';
60
+ export type { TextNodeConfig } from './automations/nodes/text';
61
+ export type { TranscriptNodeConfig } from './automations/nodes/transcript';
62
+ export type { VideoComposerNodeConfig } from './automations/nodes/video-composer';
63
+ export type { VideoImportNodeConfig, VideoImportPlatform, VideoImportQuality, } from './automations/nodes/video-import';
33
64
  export type { MediaType, BasePortType, EnumOption, NodeOutputValues, NodePort, ResolvedPort, ResolvedPorts, ComputedNode, OutputSchemaProperty, WorkflowNodeDefinition, CanvasState, WorkflowDefinition, TemplateNode, AutomationTemplate, AutomationRun, ExecutorNode, ExecutionEdge, AccountData, FlowControlOutput, ExecutorContext, NodeExecutor, AsyncNodeExecutor, ExecutorAsyncJobStatus, ValidationErrorType, ValidationError, ExportedNode, ExportedConnection, ExportedTemplate, AutomationExport, ExportedExecutor, ExportedEdge, ExportedRun, AutomationRunExport, } from './automations/types';
34
65
  export type { NodeDefinition, NodeType, UserCreatableNodeType, NodeConfig, WorkflowConfig, InternalNodeType, } from './automations/nodes';
35
66
  export type { SelectionMode, ExhaustionBehavior, SelectionConfig, SelectionState, OutputMode, NodeCategory, TriggerIterationMode, IterationExhaustionBehavior, CollectionSelectionMode, TriggerCollectionConfig, ObjectSchemaField, MediaItemType, MediaNodeSelectionType, ResolvedPreview, } from './automations/nodes/types';
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Official TypeScript/JavaScript client for the UGC Inc API
6
6
  */
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
- exports.PortIdSchema = exports.normalizeToPortId = exports.portIdToTitle = exports.isValidPortId = exports.portId = exports.isImageToVideoModel = exports.isEditModel = exports.formatPortType = exports.isAsyncExecutor = exports.internalNodeTypes = exports.nodeDefinitions = exports.resolveNodePreview = exports.hasMissingTerminalError = exports.hasMissingTriggerError = exports.getPortErrorsForNode = exports.getErrorNodeIds = exports.validateWorkflow = exports.checkCrossContextViolation = exports.getForEachContext = exports.cleanupStaleConnections = exports.removeNodeConnections = exports.removeConnection = exports.addConnection = exports.deriveConnections = exports.getOutputSchema = exports.getNodeByType = exports.getAllNodes = exports.computePortsForNode = exports.areTypesCompatible = exports.CommentsClient = exports.MediaClient = exports.AutomationsClient = exports.RenderClient = exports.OrganizationClient = exports.StatsClient = exports.PostsClient = exports.TasksClient = exports.AccountsClient = exports.UGCClient = void 0;
8
+ exports.LLMProviders = exports.IfLogicOperators = exports.PortIdSchema = exports.normalizeToPortId = exports.portIdToTitle = exports.isValidPortId = exports.portId = exports.isImageToVideoModel = exports.isEditModel = exports.formatPortType = exports.isAsyncExecutor = exports.internalNodeTypes = exports.nodeDefinitions = exports.resolveNodePreview = exports.hasMissingTerminalError = exports.hasMissingTriggerError = exports.getPortErrorsForNode = exports.getErrorNodeIds = exports.validateWorkflow = exports.checkCrossContextViolation = exports.getForEachContext = exports.cleanupStaleConnections = exports.removeNodeConnections = exports.removeConnection = exports.addConnection = exports.deriveConnections = exports.getOutputSchema = exports.getNodeByType = exports.getAllNodes = exports.computePortsForNode = exports.areTypesCompatible = exports.CommentsClient = exports.MediaClient = exports.AutomationsClient = exports.RenderClient = exports.OrganizationClient = exports.StatsClient = exports.PostsClient = exports.TasksClient = exports.AccountsClient = exports.UGCClient = void 0;
9
9
  // =============================================================================
10
10
  // Client Exports
11
11
  // =============================================================================
@@ -76,3 +76,7 @@ Object.defineProperty(exports, "isValidPortId", { enumerable: true, get: functio
76
76
  Object.defineProperty(exports, "portIdToTitle", { enumerable: true, get: function () { return port_id_1.portIdToTitle; } });
77
77
  Object.defineProperty(exports, "normalizeToPortId", { enumerable: true, get: function () { return port_id_1.normalizeToPortId; } });
78
78
  Object.defineProperty(exports, "PortIdSchema", { enumerable: true, get: function () { return port_id_1.PortIdSchema; } });
79
+ var if_1 = require("./automations/nodes/if");
80
+ Object.defineProperty(exports, "IfLogicOperators", { enumerable: true, get: function () { return if_1.IfLogicOperators; } });
81
+ var llm_1 = require("./automations/nodes/llm");
82
+ Object.defineProperty(exports, "LLMProviders", { enumerable: true, get: function () { return llm_1.LLMProviders; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "4.1.1",
3
+ "version": "4.1.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",