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.
- package/dist/automations/nodes/account.d.ts +3 -2
- package/dist/automations/nodes/account.js +2 -1
- package/dist/automations/nodes/auto-caption.d.ts +6 -5
- package/dist/automations/nodes/auto-caption.js +2 -1
- package/dist/automations/nodes/auto-post.d.ts +5 -4
- package/dist/automations/nodes/auto-post.js +2 -1
- package/dist/automations/nodes/branch.d.ts +3 -2
- package/dist/automations/nodes/branch.js +2 -1
- package/dist/automations/nodes/collect.d.ts +3 -2
- package/dist/automations/nodes/collect.js +2 -1
- package/dist/automations/nodes/compose-workflow.d.ts +1 -0
- package/dist/automations/nodes/create-dm.d.ts +2 -1
- package/dist/automations/nodes/custom-model.d.ts +1 -0
- package/dist/automations/nodes/deduplicate.d.ts +1 -0
- package/dist/automations/nodes/destructure.d.ts +1 -0
- package/dist/automations/nodes/for-each.d.ts +1 -0
- package/dist/automations/nodes/generate-image.d.ts +1 -0
- package/dist/automations/nodes/generate-video.d.ts +1 -0
- package/dist/automations/nodes/if.d.ts +1 -0
- package/dist/automations/nodes/image-composer.d.ts +1 -0
- package/dist/automations/nodes/index.d.ts +6 -6
- package/dist/automations/nodes/llm.d.ts +1 -0
- package/dist/automations/nodes/manual-trigger.d.ts +1 -0
- package/dist/automations/nodes/media.d.ts +1 -0
- package/dist/automations/nodes/not.d.ts +1 -0
- package/dist/automations/nodes/output.d.ts +1 -0
- package/dist/automations/nodes/random-route.d.ts +1 -0
- package/dist/automations/nodes/random.d.ts +1 -0
- package/dist/automations/nodes/recurrence.d.ts +1 -0
- package/dist/automations/nodes/save-to-media.d.ts +1 -0
- package/dist/automations/nodes/screenshot-animation.d.ts +1 -0
- package/dist/automations/nodes/social-audio.d.ts +1 -0
- package/dist/automations/nodes/text.d.ts +1 -0
- package/dist/automations/nodes/transcript.d.ts +1 -0
- package/dist/automations/nodes/video-composer.d.ts +1 -0
- package/dist/automations/nodes/video-import.d.ts +1 -0
- package/dist/index.d.ts +32 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
declare const
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
-
|
|
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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -11,16 +11,16 @@ export declare const nodeDefinitions: {
|
|
|
11
11
|
selectionMode: "random";
|
|
12
12
|
}, false>;
|
|
13
13
|
readonly 'auto-caption': NodeDefinition<"generator", {
|
|
14
|
-
preset: "
|
|
14
|
+
preset: import("./auto-caption").AutoCaptionPreset;
|
|
15
15
|
fontName: string | undefined;
|
|
16
16
|
fontSize: number | undefined;
|
|
17
|
-
fontWeight: ("
|
|
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: ("
|
|
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: "
|
|
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: "
|
|
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: "
|
|
70
|
+
platform: import("./create-dm").DmPlatform;
|
|
71
71
|
platformInputType: import("./types").InputType;
|
|
72
72
|
lightMode: boolean;
|
|
73
73
|
lightModeInputType: import("./types").InputType;
|
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; } });
|