@genfeedai/types 0.1.1 → 0.2.1

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/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # @genfeedai/types
2
+
3
+ Type definitions for the Genfeed workflow engine.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @genfeedai/types
9
+ # or
10
+ bun add @genfeedai/types
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```typescript
16
+ import type { WorkflowFile, WorkflowNode, WorkflowEdge } from '@genfeedai/types';
17
+ import type { NodeType, HandleType } from '@genfeedai/types';
18
+ ```
19
+
20
+ ### Subpath Exports
21
+
22
+ ```typescript
23
+ // Node type definitions
24
+ import type { ImageNodeData, VideoNodeData } from '@genfeedai/types/nodes';
25
+
26
+ // Workflow file schema
27
+ import type { WorkflowFile } from '@genfeedai/types/workflow';
28
+
29
+ // ComfyUI integration types
30
+ import type { ComfyUIWorkflow } from '@genfeedai/types/comfyui';
31
+
32
+ // Replicate model schemas
33
+ import type { ReplicateModel } from '@genfeedai/types/replicate';
34
+ ```
35
+
36
+ ## Key Exports
37
+
38
+ - **Workflow types**: `WorkflowFile`, `WorkflowNode`, `WorkflowEdge`, `NodeGroup`
39
+ - **Node types**: Data interfaces for all 36 node types (image, video, audio, text)
40
+ - **Enums**: `NodeCategory`, `HandleType`, `EdgeStyle`
41
+ - **ComfyUI types**: ComfyUI workflow and prompt schemas
42
+ - **Replicate types**: Replicate model input/output schemas
43
+
44
+ ## License
45
+
46
+ AGPL-3.0
@@ -94,13 +94,13 @@ var NodeStatusEnum = /* @__PURE__ */ ((NodeStatusEnum2) => {
94
94
  })(NodeStatusEnum || {});
95
95
 
96
96
  // src/enums.ts
97
- var TemplateCategory = /* @__PURE__ */ ((TemplateCategory2) => {
98
- TemplateCategory2["IMAGE"] = "image";
99
- TemplateCategory2["VIDEO"] = "video";
100
- TemplateCategory2["AUDIO"] = "audio";
101
- TemplateCategory2["FULL_PIPELINE"] = "full-pipeline";
102
- return TemplateCategory2;
103
- })(TemplateCategory || {});
97
+ var WorkflowTemplateCategory = /* @__PURE__ */ ((WorkflowTemplateCategory2) => {
98
+ WorkflowTemplateCategory2["IMAGE"] = "image";
99
+ WorkflowTemplateCategory2["VIDEO"] = "video";
100
+ WorkflowTemplateCategory2["AUDIO"] = "audio";
101
+ WorkflowTemplateCategory2["FULL_PIPELINE"] = "full-pipeline";
102
+ return WorkflowTemplateCategory2;
103
+ })(WorkflowTemplateCategory || {});
104
104
  var ReframeNodeType = /* @__PURE__ */ ((ReframeNodeType2) => {
105
105
  ReframeNodeType2["REFRAME"] = "reframe";
106
106
  ReframeNodeType2["LUMA_REFRAME_IMAGE"] = "lumaReframeImage";
@@ -129,6 +129,7 @@ var ProcessingNodeType = /* @__PURE__ */ ((ProcessingNodeType2) => {
129
129
  ProcessingNodeType2["LIP_SYNC"] = "lipSync";
130
130
  ProcessingNodeType2["TEXT_TO_SPEECH"] = "textToSpeech";
131
131
  ProcessingNodeType2["VOICE_CHANGE"] = "voiceChange";
132
+ ProcessingNodeType2["TRANSCRIBE"] = "transcribe";
132
133
  ProcessingNodeType2["SUBTITLE"] = "subtitle";
133
134
  ProcessingNodeType2["VIDEO_STITCH"] = "videoStitch";
134
135
  ProcessingNodeType2["WORKFLOW_REF"] = "workflowRef";
@@ -820,6 +821,6 @@ exports.NodeTypeEnum = NodeTypeEnum;
820
821
  exports.ProcessingNodeType = ProcessingNodeType;
821
822
  exports.ProviderTypeEnum = ProviderTypeEnum;
822
823
  exports.ReframeNodeType = ReframeNodeType;
823
- exports.TemplateCategory = TemplateCategory;
824
824
  exports.UpscaleNodeType = UpscaleNodeType;
825
+ exports.WorkflowTemplateCategory = WorkflowTemplateCategory;
825
826
  exports.getNodesByCategory = getNodesByCategory;
@@ -92,13 +92,13 @@ var NodeStatusEnum = /* @__PURE__ */ ((NodeStatusEnum2) => {
92
92
  })(NodeStatusEnum || {});
93
93
 
94
94
  // src/enums.ts
95
- var TemplateCategory = /* @__PURE__ */ ((TemplateCategory2) => {
96
- TemplateCategory2["IMAGE"] = "image";
97
- TemplateCategory2["VIDEO"] = "video";
98
- TemplateCategory2["AUDIO"] = "audio";
99
- TemplateCategory2["FULL_PIPELINE"] = "full-pipeline";
100
- return TemplateCategory2;
101
- })(TemplateCategory || {});
95
+ var WorkflowTemplateCategory = /* @__PURE__ */ ((WorkflowTemplateCategory2) => {
96
+ WorkflowTemplateCategory2["IMAGE"] = "image";
97
+ WorkflowTemplateCategory2["VIDEO"] = "video";
98
+ WorkflowTemplateCategory2["AUDIO"] = "audio";
99
+ WorkflowTemplateCategory2["FULL_PIPELINE"] = "full-pipeline";
100
+ return WorkflowTemplateCategory2;
101
+ })(WorkflowTemplateCategory || {});
102
102
  var ReframeNodeType = /* @__PURE__ */ ((ReframeNodeType2) => {
103
103
  ReframeNodeType2["REFRAME"] = "reframe";
104
104
  ReframeNodeType2["LUMA_REFRAME_IMAGE"] = "lumaReframeImage";
@@ -127,6 +127,7 @@ var ProcessingNodeType = /* @__PURE__ */ ((ProcessingNodeType2) => {
127
127
  ProcessingNodeType2["LIP_SYNC"] = "lipSync";
128
128
  ProcessingNodeType2["TEXT_TO_SPEECH"] = "textToSpeech";
129
129
  ProcessingNodeType2["VOICE_CHANGE"] = "voiceChange";
130
+ ProcessingNodeType2["TRANSCRIBE"] = "transcribe";
130
131
  ProcessingNodeType2["SUBTITLE"] = "subtitle";
131
132
  ProcessingNodeType2["VIDEO_STITCH"] = "videoStitch";
132
133
  ProcessingNodeType2["WORKFLOW_REF"] = "workflowRef";
@@ -805,4 +806,4 @@ function getNodesByCategory() {
805
806
  return categories;
806
807
  }
807
808
 
808
- export { CONNECTION_RULES, HandleTypeEnum, KlingQuality, ModelCapabilityEnum, ModelUseCaseEnum, NODE_DEFINITIONS, NODE_ORDER, NodeCategoryEnum, NodeStatusEnum, NodeTypeEnum, ProcessingNodeType, ProviderTypeEnum, ReframeNodeType, TemplateCategory, UpscaleNodeType, getNodesByCategory };
809
+ export { CONNECTION_RULES, HandleTypeEnum, KlingQuality, ModelCapabilityEnum, ModelUseCaseEnum, NODE_DEFINITIONS, NODE_ORDER, NodeCategoryEnum, NodeStatusEnum, NodeTypeEnum, ProcessingNodeType, ProviderTypeEnum, ReframeNodeType, UpscaleNodeType, WorkflowTemplateCategory, getNodesByCategory };
package/dist/index.d.mts CHANGED
@@ -1,9 +1,35 @@
1
1
  export { ComfyUIHistoryEntry, ComfyUIHistoryResponse, ComfyUINode, ComfyUINodeOutput, ComfyUIOutputFile, ComfyUIPrompt, ComfyUIPromptStatus, ComfyUIQueuePromptResponse, ComfyUITemplateInput, ComfyUIWorkflowTemplate } from './comfyui.mjs';
2
- export { ab as AnimationNodeData, as as AnnotationNodeData, ar as AnnotationShapeData, s as AspectRatio, ad as AudioCodec, A as AudioInputNodeData, o as AvailableVariable, B as BaseNodeData, C as CONNECTION_RULES, a4 as CameraMovement, a6 as CharacterOrientation, aa as CubicBezier, az as DownloadNodeData, a9 as EasingPreset, ai as FrameSelectionMode, ap as GridOutputFormat, G as GridPosition, b as HandleDefinition, a as HandleType, H as HandleTypeEnum, ax as ImageCompareNodeData, E as ImageGenNodeData, aq as ImageGridSplitNodeData, I as ImageInputNodeData, q as ImageModel, K as KlingQuality, a5 as KlingQualityMode, Q as LLMNodeData, X as LipSyncMode, W as LipSyncModel, Y as LipSyncNodeData, L as LumaAspectRatio, w as LumaReframeModel, e as ModelCapability, M as ModelCapabilityEnum, g as ModelUseCase, f as ModelUseCaseEnum, a3 as MotionControlMode, a8 as MotionControlNodeData, k as NodeCategory, j as NodeCategoryEnum, m as NodeStatus, l as NodeStatusEnum, i as NodeType, N as NodeTypeEnum, O as OutputFormat, aw as OutputGalleryNodeData, ay as OutputInputType, aA as OutputNodeData, ae as OutputQuality, P as ProcessingNodeType, p as PromptConstructorNodeData, n as PromptNodeData, h as ProviderModel, d as ProviderType, c as ProviderTypeEnum, ak as ReframeInputType, al as ReframeNodeData, R as ReframeNodeType, ag as ResizeNodeData, t as Resolution, S as SelectedModel, av as SubtitleNodeData, au as SubtitlePosition, at as SubtitleStyle, _ as TTSProvider, $ as TTSVoice, T as TemplateCategory, J as TextModel, a0 as TextToSpeechNodeData, x as TopazEnhanceModel, y as TopazUpscaleFactor, D as TopazVideoFPS, z as TopazVideoResolution, a7 as TrajectoryPoint, a1 as TranscribeLanguage, a2 as TranscribeNodeData, ac as TransitionType, am as UpscaleInputType, an as UpscaleModel, ao as UpscaleNodeData, U as UpscaleNodeType, v as VideoDuration, aj as VideoFrameExtractNodeData, F as VideoGenNodeData, V as VideoInputNodeData, r as VideoModel, u as VideoResolution, af as VideoStitchNodeData, ah as VideoTrimNodeData, Z as VoiceChangeNodeData, aK as WorkflowEdge, aJ as WorkflowEdgeData, aB as WorkflowInputNodeData, aF as WorkflowInterface, aD as WorkflowInterfaceInput, aE as WorkflowInterfaceOutput, aI as WorkflowNode, aH as WorkflowNodeData, aC as WorkflowOutputNodeData, aG as WorkflowRefNodeData } from './union-CtYAY8Mv.mjs';
3
- export { C as CostEstimate, a as EdgeStyle, E as EdgeStyleEnum, e as ExecutionResult, G as GroupColor, N as NodeGroup, b as TemplateEdge, T as TemplateNode, V as ValidationError, d as ValidationResult, f as WorkflowCostEstimate, W as WorkflowFile, c as WorkflowTemplate } from './workflow-CGpVuRPg.mjs';
2
+ export { A as AnimationNodeData, b as AnnotationNodeData, c as AnnotationShapeData, d as AspectRatio, e as AudioCodec, f as AudioInputNodeData, g as AvailableVariable, B as BaseNodeData, C as CONNECTION_RULES, h as CameraMovement, i as CharacterOrientation, j as CubicBezier, D as DownloadNodeData, E as EasingPreset, F as FrameSelectionMode, G as GridOutputFormat, k as GridPosition, H as HandleDefinition, l as HandleType, m as HandleTypeEnum, I as ImageCompareNodeData, n as ImageGenNodeData, o as ImageGridSplitNodeData, p as ImageInputNodeData, q as ImageModel, K as KlingQuality, r as KlingQualityMode, L as LLMNodeData, s as LipSyncMode, t as LipSyncModel, u as LipSyncNodeData, v as LumaAspectRatio, w as LumaReframeModel, M as ModelCapability, x as ModelCapabilityEnum, y as ModelUseCase, z as ModelUseCaseEnum, J as MotionControlMode, O as MotionControlNodeData, P as NodeCategory, Q as NodeCategoryEnum, R as NodeStatus, S as NodeStatusEnum, N as NodeType, T as NodeTypeEnum, U as OutputFormat, V as OutputGalleryNodeData, X as OutputInputType, Y as OutputNodeData, Z as OutputQuality, _ as ProcessingNodeType, $ as PromptConstructorNodeData, a0 as PromptNodeData, a1 as ProviderModel, a2 as ProviderType, a3 as ProviderTypeEnum, a4 as ReframeInputType, a5 as ReframeNodeData, a6 as ReframeNodeType, a7 as ResizeNodeData, a8 as Resolution, a9 as SelectedModel, aa as SubtitleNodeData, ab as SubtitlePosition, ac as SubtitleStyle, ad as TTSProvider, ae as TTSVoice, af as TextModel, ag as TextToSpeechNodeData, ah as TopazEnhanceModel, ai as TopazUpscaleFactor, aj as TopazVideoFPS, ak as TopazVideoResolution, al as TrajectoryPoint, am as TranscribeLanguage, an as TranscribeNodeData, ao as TransitionType, ap as UpscaleInputType, aq as UpscaleModel, ar as UpscaleNodeData, as as UpscaleNodeType, at as VideoDuration, au as VideoFrameExtractNodeData, av as VideoGenNodeData, aw as VideoInputNodeData, ax as VideoModel, ay as VideoResolution, az as VideoStitchNodeData, aA as VideoTrimNodeData, aB as VoiceChangeNodeData, a as WorkflowEdge, aC as WorkflowEdgeData, aD as WorkflowInputNodeData, aE as WorkflowInterface, aF as WorkflowInterfaceInput, aG as WorkflowInterfaceOutput, W as WorkflowNode, aH as WorkflowNodeData, aI as WorkflowOutputNodeData, aJ as WorkflowRefNodeData, aK as WorkflowTemplateCategory } from './union-BVaWc1Cx.mjs';
3
+ export { E as EdgeStyle, a as EdgeStyleEnum, b as ExecutionResult, G as GroupColor, N as NodeGroup, T as TemplateEdge, c as TemplateNode, V as ValidationError, d as ValidationResult, W as WorkflowFile, e as WorkflowTemplate } from './workflow-BbAp7VSK.mjs';
4
4
  export { NODE_DEFINITIONS, NODE_ORDER, NodeDefinition, getNodesByCategory } from './nodes.mjs';
5
5
  import '@xyflow/react';
6
6
 
7
+ /** Per-node cost estimate (used in UI cost calculators and API cost services) */
8
+ interface NodeCostEstimate {
9
+ nodeId: string;
10
+ nodeType: string;
11
+ nodeLabel: string;
12
+ model: string;
13
+ unitPrice: number;
14
+ quantity: number;
15
+ subtotal: number;
16
+ unit?: string;
17
+ details?: string;
18
+ duration?: number;
19
+ withAudio?: boolean;
20
+ }
21
+ /** Aggregated cost breakdown for a workflow */
22
+ interface CostBreakdown {
23
+ total: number;
24
+ items: NodeCostEstimate[];
25
+ }
26
+ /** Post-execution cost summary (estimated vs actual) */
27
+ interface CostSummary {
28
+ estimated: number;
29
+ actual: number;
30
+ variance: number;
31
+ }
32
+
7
33
  type ActionCategory = 'crud' | 'ai' | 'data' | 'validation';
8
34
  type CrudAction = 'add' | 'duplicate' | 'delete' | 'reorder';
9
35
  type AIAction = 'enhance' | 'generate' | 'suggest';
@@ -265,4 +291,4 @@ type LightingPreset = (typeof LIGHTING_PRESETS)[number];
265
291
  type ScenePreset = (typeof SCENE_PRESETS)[number];
266
292
  declare const CATEGORY_LABELS: Record<PromptCategory, string>;
267
293
 
268
- export { type AIAction, type ActionCategory, type ActionConfig, type ActionMenuProps, type ActionToolbarProps, type ActionUIPattern, CAMERA_PRESETS, CATEGORY_LABELS, type CameraPreset, type CrudAction, type DataAction, type DimensionsGroupProps, type DimensionsValue, type DynamicListProps, type FieldWidth, type ICreatePrompt, type IPrompt, type IQueryPrompts, type IStyleSettings, type InputGroupActionType, type InputGroupFieldProps, type InputGroupHeaderProps, type InputGroupProps, type InputGroupRowProps, type InputGroupVariant, type KeyValueListProps, type KeyValuePair, LIGHTING_PRESETS, type LightingPreset, MOOD_PRESETS, type MenuAlign, type MenuSide, type MoodPreset, PROMPT_CATEGORIES, type PromptCategory, type RowHelpers, SCENE_PRESETS, STYLE_PRESETS, type ScenePreset, type StylePreset, type ToolbarOrientation, type ToolbarSize, type ToolbarVisibility, type ValidationAction };
294
+ export { type AIAction, type ActionCategory, type ActionConfig, type ActionMenuProps, type ActionToolbarProps, type ActionUIPattern, CAMERA_PRESETS, CATEGORY_LABELS, type CameraPreset, type CostBreakdown, type CostSummary, type CrudAction, type DataAction, type DimensionsGroupProps, type DimensionsValue, type DynamicListProps, type FieldWidth, type ICreatePrompt, type IPrompt, type IQueryPrompts, type IStyleSettings, type InputGroupActionType, type InputGroupFieldProps, type InputGroupHeaderProps, type InputGroupProps, type InputGroupRowProps, type InputGroupVariant, type KeyValueListProps, type KeyValuePair, LIGHTING_PRESETS, type LightingPreset, MOOD_PRESETS, type MenuAlign, type MenuSide, type MoodPreset, type NodeCostEstimate, PROMPT_CATEGORIES, type PromptCategory, type RowHelpers, SCENE_PRESETS, STYLE_PRESETS, type ScenePreset, type StylePreset, type ToolbarOrientation, type ToolbarSize, type ToolbarVisibility, type ValidationAction };
package/dist/index.d.ts CHANGED
@@ -1,9 +1,35 @@
1
1
  export { ComfyUIHistoryEntry, ComfyUIHistoryResponse, ComfyUINode, ComfyUINodeOutput, ComfyUIOutputFile, ComfyUIPrompt, ComfyUIPromptStatus, ComfyUIQueuePromptResponse, ComfyUITemplateInput, ComfyUIWorkflowTemplate } from './comfyui.js';
2
- export { ab as AnimationNodeData, as as AnnotationNodeData, ar as AnnotationShapeData, s as AspectRatio, ad as AudioCodec, A as AudioInputNodeData, o as AvailableVariable, B as BaseNodeData, C as CONNECTION_RULES, a4 as CameraMovement, a6 as CharacterOrientation, aa as CubicBezier, az as DownloadNodeData, a9 as EasingPreset, ai as FrameSelectionMode, ap as GridOutputFormat, G as GridPosition, b as HandleDefinition, a as HandleType, H as HandleTypeEnum, ax as ImageCompareNodeData, E as ImageGenNodeData, aq as ImageGridSplitNodeData, I as ImageInputNodeData, q as ImageModel, K as KlingQuality, a5 as KlingQualityMode, Q as LLMNodeData, X as LipSyncMode, W as LipSyncModel, Y as LipSyncNodeData, L as LumaAspectRatio, w as LumaReframeModel, e as ModelCapability, M as ModelCapabilityEnum, g as ModelUseCase, f as ModelUseCaseEnum, a3 as MotionControlMode, a8 as MotionControlNodeData, k as NodeCategory, j as NodeCategoryEnum, m as NodeStatus, l as NodeStatusEnum, i as NodeType, N as NodeTypeEnum, O as OutputFormat, aw as OutputGalleryNodeData, ay as OutputInputType, aA as OutputNodeData, ae as OutputQuality, P as ProcessingNodeType, p as PromptConstructorNodeData, n as PromptNodeData, h as ProviderModel, d as ProviderType, c as ProviderTypeEnum, ak as ReframeInputType, al as ReframeNodeData, R as ReframeNodeType, ag as ResizeNodeData, t as Resolution, S as SelectedModel, av as SubtitleNodeData, au as SubtitlePosition, at as SubtitleStyle, _ as TTSProvider, $ as TTSVoice, T as TemplateCategory, J as TextModel, a0 as TextToSpeechNodeData, x as TopazEnhanceModel, y as TopazUpscaleFactor, D as TopazVideoFPS, z as TopazVideoResolution, a7 as TrajectoryPoint, a1 as TranscribeLanguage, a2 as TranscribeNodeData, ac as TransitionType, am as UpscaleInputType, an as UpscaleModel, ao as UpscaleNodeData, U as UpscaleNodeType, v as VideoDuration, aj as VideoFrameExtractNodeData, F as VideoGenNodeData, V as VideoInputNodeData, r as VideoModel, u as VideoResolution, af as VideoStitchNodeData, ah as VideoTrimNodeData, Z as VoiceChangeNodeData, aK as WorkflowEdge, aJ as WorkflowEdgeData, aB as WorkflowInputNodeData, aF as WorkflowInterface, aD as WorkflowInterfaceInput, aE as WorkflowInterfaceOutput, aI as WorkflowNode, aH as WorkflowNodeData, aC as WorkflowOutputNodeData, aG as WorkflowRefNodeData } from './union-CtYAY8Mv.js';
3
- export { C as CostEstimate, a as EdgeStyle, E as EdgeStyleEnum, e as ExecutionResult, G as GroupColor, N as NodeGroup, b as TemplateEdge, T as TemplateNode, V as ValidationError, d as ValidationResult, f as WorkflowCostEstimate, W as WorkflowFile, c as WorkflowTemplate } from './workflow-Di5vTrXa.js';
2
+ export { A as AnimationNodeData, b as AnnotationNodeData, c as AnnotationShapeData, d as AspectRatio, e as AudioCodec, f as AudioInputNodeData, g as AvailableVariable, B as BaseNodeData, C as CONNECTION_RULES, h as CameraMovement, i as CharacterOrientation, j as CubicBezier, D as DownloadNodeData, E as EasingPreset, F as FrameSelectionMode, G as GridOutputFormat, k as GridPosition, H as HandleDefinition, l as HandleType, m as HandleTypeEnum, I as ImageCompareNodeData, n as ImageGenNodeData, o as ImageGridSplitNodeData, p as ImageInputNodeData, q as ImageModel, K as KlingQuality, r as KlingQualityMode, L as LLMNodeData, s as LipSyncMode, t as LipSyncModel, u as LipSyncNodeData, v as LumaAspectRatio, w as LumaReframeModel, M as ModelCapability, x as ModelCapabilityEnum, y as ModelUseCase, z as ModelUseCaseEnum, J as MotionControlMode, O as MotionControlNodeData, P as NodeCategory, Q as NodeCategoryEnum, R as NodeStatus, S as NodeStatusEnum, N as NodeType, T as NodeTypeEnum, U as OutputFormat, V as OutputGalleryNodeData, X as OutputInputType, Y as OutputNodeData, Z as OutputQuality, _ as ProcessingNodeType, $ as PromptConstructorNodeData, a0 as PromptNodeData, a1 as ProviderModel, a2 as ProviderType, a3 as ProviderTypeEnum, a4 as ReframeInputType, a5 as ReframeNodeData, a6 as ReframeNodeType, a7 as ResizeNodeData, a8 as Resolution, a9 as SelectedModel, aa as SubtitleNodeData, ab as SubtitlePosition, ac as SubtitleStyle, ad as TTSProvider, ae as TTSVoice, af as TextModel, ag as TextToSpeechNodeData, ah as TopazEnhanceModel, ai as TopazUpscaleFactor, aj as TopazVideoFPS, ak as TopazVideoResolution, al as TrajectoryPoint, am as TranscribeLanguage, an as TranscribeNodeData, ao as TransitionType, ap as UpscaleInputType, aq as UpscaleModel, ar as UpscaleNodeData, as as UpscaleNodeType, at as VideoDuration, au as VideoFrameExtractNodeData, av as VideoGenNodeData, aw as VideoInputNodeData, ax as VideoModel, ay as VideoResolution, az as VideoStitchNodeData, aA as VideoTrimNodeData, aB as VoiceChangeNodeData, a as WorkflowEdge, aC as WorkflowEdgeData, aD as WorkflowInputNodeData, aE as WorkflowInterface, aF as WorkflowInterfaceInput, aG as WorkflowInterfaceOutput, W as WorkflowNode, aH as WorkflowNodeData, aI as WorkflowOutputNodeData, aJ as WorkflowRefNodeData, aK as WorkflowTemplateCategory } from './union-BVaWc1Cx.js';
3
+ export { E as EdgeStyle, a as EdgeStyleEnum, b as ExecutionResult, G as GroupColor, N as NodeGroup, T as TemplateEdge, c as TemplateNode, V as ValidationError, d as ValidationResult, W as WorkflowFile, e as WorkflowTemplate } from './workflow-B_Q38s-U.js';
4
4
  export { NODE_DEFINITIONS, NODE_ORDER, NodeDefinition, getNodesByCategory } from './nodes.js';
5
5
  import '@xyflow/react';
6
6
 
7
+ /** Per-node cost estimate (used in UI cost calculators and API cost services) */
8
+ interface NodeCostEstimate {
9
+ nodeId: string;
10
+ nodeType: string;
11
+ nodeLabel: string;
12
+ model: string;
13
+ unitPrice: number;
14
+ quantity: number;
15
+ subtotal: number;
16
+ unit?: string;
17
+ details?: string;
18
+ duration?: number;
19
+ withAudio?: boolean;
20
+ }
21
+ /** Aggregated cost breakdown for a workflow */
22
+ interface CostBreakdown {
23
+ total: number;
24
+ items: NodeCostEstimate[];
25
+ }
26
+ /** Post-execution cost summary (estimated vs actual) */
27
+ interface CostSummary {
28
+ estimated: number;
29
+ actual: number;
30
+ variance: number;
31
+ }
32
+
7
33
  type ActionCategory = 'crud' | 'ai' | 'data' | 'validation';
8
34
  type CrudAction = 'add' | 'duplicate' | 'delete' | 'reorder';
9
35
  type AIAction = 'enhance' | 'generate' | 'suggest';
@@ -265,4 +291,4 @@ type LightingPreset = (typeof LIGHTING_PRESETS)[number];
265
291
  type ScenePreset = (typeof SCENE_PRESETS)[number];
266
292
  declare const CATEGORY_LABELS: Record<PromptCategory, string>;
267
293
 
268
- export { type AIAction, type ActionCategory, type ActionConfig, type ActionMenuProps, type ActionToolbarProps, type ActionUIPattern, CAMERA_PRESETS, CATEGORY_LABELS, type CameraPreset, type CrudAction, type DataAction, type DimensionsGroupProps, type DimensionsValue, type DynamicListProps, type FieldWidth, type ICreatePrompt, type IPrompt, type IQueryPrompts, type IStyleSettings, type InputGroupActionType, type InputGroupFieldProps, type InputGroupHeaderProps, type InputGroupProps, type InputGroupRowProps, type InputGroupVariant, type KeyValueListProps, type KeyValuePair, LIGHTING_PRESETS, type LightingPreset, MOOD_PRESETS, type MenuAlign, type MenuSide, type MoodPreset, PROMPT_CATEGORIES, type PromptCategory, type RowHelpers, SCENE_PRESETS, STYLE_PRESETS, type ScenePreset, type StylePreset, type ToolbarOrientation, type ToolbarSize, type ToolbarVisibility, type ValidationAction };
294
+ export { type AIAction, type ActionCategory, type ActionConfig, type ActionMenuProps, type ActionToolbarProps, type ActionUIPattern, CAMERA_PRESETS, CATEGORY_LABELS, type CameraPreset, type CostBreakdown, type CostSummary, type CrudAction, type DataAction, type DimensionsGroupProps, type DimensionsValue, type DynamicListProps, type FieldWidth, type ICreatePrompt, type IPrompt, type IQueryPrompts, type IStyleSettings, type InputGroupActionType, type InputGroupFieldProps, type InputGroupHeaderProps, type InputGroupProps, type InputGroupRowProps, type InputGroupVariant, type KeyValueListProps, type KeyValuePair, LIGHTING_PRESETS, type LightingPreset, MOOD_PRESETS, type MenuAlign, type MenuSide, type MoodPreset, type NodeCostEstimate, PROMPT_CATEGORIES, type PromptCategory, type RowHelpers, SCENE_PRESETS, STYLE_PRESETS, type ScenePreset, type StylePreset, type ToolbarOrientation, type ToolbarSize, type ToolbarVisibility, type ValidationAction };
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkP7K5LM6V_js = require('./chunk-P7K5LM6V.js');
3
+ var chunkP4XY3T5T_js = require('./chunk-P4XY3T5T.js');
4
4
  var chunkKXAKQO3U_js = require('./chunk-KXAKQO3U.js');
5
5
  require('./chunk-RNGYPX4W.js');
6
6
 
@@ -110,67 +110,67 @@ var CATEGORY_LABELS = {
110
110
 
111
111
  Object.defineProperty(exports, "CONNECTION_RULES", {
112
112
  enumerable: true,
113
- get: function () { return chunkP7K5LM6V_js.CONNECTION_RULES; }
113
+ get: function () { return chunkP4XY3T5T_js.CONNECTION_RULES; }
114
114
  });
115
115
  Object.defineProperty(exports, "HandleTypeEnum", {
116
116
  enumerable: true,
117
- get: function () { return chunkP7K5LM6V_js.HandleTypeEnum; }
117
+ get: function () { return chunkP4XY3T5T_js.HandleTypeEnum; }
118
118
  });
119
119
  Object.defineProperty(exports, "KlingQuality", {
120
120
  enumerable: true,
121
- get: function () { return chunkP7K5LM6V_js.KlingQuality; }
121
+ get: function () { return chunkP4XY3T5T_js.KlingQuality; }
122
122
  });
123
123
  Object.defineProperty(exports, "ModelCapabilityEnum", {
124
124
  enumerable: true,
125
- get: function () { return chunkP7K5LM6V_js.ModelCapabilityEnum; }
125
+ get: function () { return chunkP4XY3T5T_js.ModelCapabilityEnum; }
126
126
  });
127
127
  Object.defineProperty(exports, "ModelUseCaseEnum", {
128
128
  enumerable: true,
129
- get: function () { return chunkP7K5LM6V_js.ModelUseCaseEnum; }
129
+ get: function () { return chunkP4XY3T5T_js.ModelUseCaseEnum; }
130
130
  });
131
131
  Object.defineProperty(exports, "NODE_DEFINITIONS", {
132
132
  enumerable: true,
133
- get: function () { return chunkP7K5LM6V_js.NODE_DEFINITIONS; }
133
+ get: function () { return chunkP4XY3T5T_js.NODE_DEFINITIONS; }
134
134
  });
135
135
  Object.defineProperty(exports, "NODE_ORDER", {
136
136
  enumerable: true,
137
- get: function () { return chunkP7K5LM6V_js.NODE_ORDER; }
137
+ get: function () { return chunkP4XY3T5T_js.NODE_ORDER; }
138
138
  });
139
139
  Object.defineProperty(exports, "NodeCategoryEnum", {
140
140
  enumerable: true,
141
- get: function () { return chunkP7K5LM6V_js.NodeCategoryEnum; }
141
+ get: function () { return chunkP4XY3T5T_js.NodeCategoryEnum; }
142
142
  });
143
143
  Object.defineProperty(exports, "NodeStatusEnum", {
144
144
  enumerable: true,
145
- get: function () { return chunkP7K5LM6V_js.NodeStatusEnum; }
145
+ get: function () { return chunkP4XY3T5T_js.NodeStatusEnum; }
146
146
  });
147
147
  Object.defineProperty(exports, "NodeTypeEnum", {
148
148
  enumerable: true,
149
- get: function () { return chunkP7K5LM6V_js.NodeTypeEnum; }
149
+ get: function () { return chunkP4XY3T5T_js.NodeTypeEnum; }
150
150
  });
151
151
  Object.defineProperty(exports, "ProcessingNodeType", {
152
152
  enumerable: true,
153
- get: function () { return chunkP7K5LM6V_js.ProcessingNodeType; }
153
+ get: function () { return chunkP4XY3T5T_js.ProcessingNodeType; }
154
154
  });
155
155
  Object.defineProperty(exports, "ProviderTypeEnum", {
156
156
  enumerable: true,
157
- get: function () { return chunkP7K5LM6V_js.ProviderTypeEnum; }
157
+ get: function () { return chunkP4XY3T5T_js.ProviderTypeEnum; }
158
158
  });
159
159
  Object.defineProperty(exports, "ReframeNodeType", {
160
160
  enumerable: true,
161
- get: function () { return chunkP7K5LM6V_js.ReframeNodeType; }
161
+ get: function () { return chunkP4XY3T5T_js.ReframeNodeType; }
162
162
  });
163
- Object.defineProperty(exports, "TemplateCategory", {
163
+ Object.defineProperty(exports, "UpscaleNodeType", {
164
164
  enumerable: true,
165
- get: function () { return chunkP7K5LM6V_js.TemplateCategory; }
165
+ get: function () { return chunkP4XY3T5T_js.UpscaleNodeType; }
166
166
  });
167
- Object.defineProperty(exports, "UpscaleNodeType", {
167
+ Object.defineProperty(exports, "WorkflowTemplateCategory", {
168
168
  enumerable: true,
169
- get: function () { return chunkP7K5LM6V_js.UpscaleNodeType; }
169
+ get: function () { return chunkP4XY3T5T_js.WorkflowTemplateCategory; }
170
170
  });
171
171
  Object.defineProperty(exports, "getNodesByCategory", {
172
172
  enumerable: true,
173
- get: function () { return chunkP7K5LM6V_js.getNodesByCategory; }
173
+ get: function () { return chunkP4XY3T5T_js.getNodesByCategory; }
174
174
  });
175
175
  Object.defineProperty(exports, "EdgeStyleEnum", {
176
176
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- export { CONNECTION_RULES, HandleTypeEnum, KlingQuality, ModelCapabilityEnum, ModelUseCaseEnum, NODE_DEFINITIONS, NODE_ORDER, NodeCategoryEnum, NodeStatusEnum, NodeTypeEnum, ProcessingNodeType, ProviderTypeEnum, ReframeNodeType, TemplateCategory, UpscaleNodeType, getNodesByCategory } from './chunk-OGJX4J7H.mjs';
1
+ export { CONNECTION_RULES, HandleTypeEnum, KlingQuality, ModelCapabilityEnum, ModelUseCaseEnum, NODE_DEFINITIONS, NODE_ORDER, NodeCategoryEnum, NodeStatusEnum, NodeTypeEnum, ProcessingNodeType, ProviderTypeEnum, ReframeNodeType, UpscaleNodeType, WorkflowTemplateCategory, getNodesByCategory } from './chunk-QNWQE2LJ.mjs';
2
2
  export { EdgeStyleEnum } from './chunk-WT2F5CAF.mjs';
3
3
  import './chunk-7NJUD2WZ.mjs';
4
4
 
package/dist/nodes.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { i as NodeType, k as NodeCategory, b as HandleDefinition, aH as WorkflowNodeData } from './union-CtYAY8Mv.mjs';
2
- export { ab as AnimationNodeData, as as AnnotationNodeData, ar as AnnotationShapeData, s as AspectRatio, ad as AudioCodec, A as AudioInputNodeData, o as AvailableVariable, B as BaseNodeData, C as CONNECTION_RULES, a4 as CameraMovement, a6 as CharacterOrientation, aa as CubicBezier, az as DownloadNodeData, a9 as EasingPreset, ai as FrameSelectionMode, ap as GridOutputFormat, G as GridPosition, a as HandleType, H as HandleTypeEnum, ax as ImageCompareNodeData, E as ImageGenNodeData, aq as ImageGridSplitNodeData, I as ImageInputNodeData, q as ImageModel, K as KlingQuality, a5 as KlingQualityMode, Q as LLMNodeData, X as LipSyncMode, W as LipSyncModel, Y as LipSyncNodeData, L as LumaAspectRatio, w as LumaReframeModel, e as ModelCapability, M as ModelCapabilityEnum, g as ModelUseCase, f as ModelUseCaseEnum, a3 as MotionControlMode, a8 as MotionControlNodeData, j as NodeCategoryEnum, m as NodeStatus, l as NodeStatusEnum, N as NodeTypeEnum, O as OutputFormat, aw as OutputGalleryNodeData, ay as OutputInputType, aA as OutputNodeData, ae as OutputQuality, p as PromptConstructorNodeData, n as PromptNodeData, h as ProviderModel, d as ProviderType, c as ProviderTypeEnum, ak as ReframeInputType, al as ReframeNodeData, ag as ResizeNodeData, t as Resolution, S as SelectedModel, av as SubtitleNodeData, au as SubtitlePosition, at as SubtitleStyle, _ as TTSProvider, $ as TTSVoice, J as TextModel, a0 as TextToSpeechNodeData, x as TopazEnhanceModel, y as TopazUpscaleFactor, D as TopazVideoFPS, z as TopazVideoResolution, a7 as TrajectoryPoint, a1 as TranscribeLanguage, a2 as TranscribeNodeData, ac as TransitionType, am as UpscaleInputType, an as UpscaleModel, ao as UpscaleNodeData, v as VideoDuration, aj as VideoFrameExtractNodeData, F as VideoGenNodeData, V as VideoInputNodeData, r as VideoModel, u as VideoResolution, af as VideoStitchNodeData, ah as VideoTrimNodeData, Z as VoiceChangeNodeData, aK as WorkflowEdge, aJ as WorkflowEdgeData, aB as WorkflowInputNodeData, aF as WorkflowInterface, aD as WorkflowInterfaceInput, aE as WorkflowInterfaceOutput, aI as WorkflowNode, aC as WorkflowOutputNodeData, aG as WorkflowRefNodeData } from './union-CtYAY8Mv.mjs';
1
+ import { N as NodeType, P as NodeCategory, H as HandleDefinition, aH as WorkflowNodeData } from './union-BVaWc1Cx.mjs';
2
+ export { A as AnimationNodeData, b as AnnotationNodeData, c as AnnotationShapeData, d as AspectRatio, e as AudioCodec, f as AudioInputNodeData, g as AvailableVariable, B as BaseNodeData, C as CONNECTION_RULES, h as CameraMovement, i as CharacterOrientation, j as CubicBezier, D as DownloadNodeData, E as EasingPreset, F as FrameSelectionMode, G as GridOutputFormat, k as GridPosition, l as HandleType, m as HandleTypeEnum, I as ImageCompareNodeData, n as ImageGenNodeData, o as ImageGridSplitNodeData, p as ImageInputNodeData, q as ImageModel, K as KlingQuality, r as KlingQualityMode, L as LLMNodeData, s as LipSyncMode, t as LipSyncModel, u as LipSyncNodeData, v as LumaAspectRatio, w as LumaReframeModel, M as ModelCapability, x as ModelCapabilityEnum, y as ModelUseCase, z as ModelUseCaseEnum, J as MotionControlMode, O as MotionControlNodeData, Q as NodeCategoryEnum, R as NodeStatus, S as NodeStatusEnum, T as NodeTypeEnum, U as OutputFormat, V as OutputGalleryNodeData, X as OutputInputType, Y as OutputNodeData, Z as OutputQuality, $ as PromptConstructorNodeData, a0 as PromptNodeData, a1 as ProviderModel, a2 as ProviderType, a3 as ProviderTypeEnum, a4 as ReframeInputType, a5 as ReframeNodeData, a7 as ResizeNodeData, a8 as Resolution, a9 as SelectedModel, aa as SubtitleNodeData, ab as SubtitlePosition, ac as SubtitleStyle, ad as TTSProvider, ae as TTSVoice, af as TextModel, ag as TextToSpeechNodeData, ah as TopazEnhanceModel, ai as TopazUpscaleFactor, aj as TopazVideoFPS, ak as TopazVideoResolution, al as TrajectoryPoint, am as TranscribeLanguage, an as TranscribeNodeData, ao as TransitionType, ap as UpscaleInputType, aq as UpscaleModel, ar as UpscaleNodeData, at as VideoDuration, au as VideoFrameExtractNodeData, av as VideoGenNodeData, aw as VideoInputNodeData, ax as VideoModel, ay as VideoResolution, az as VideoStitchNodeData, aA as VideoTrimNodeData, aB as VoiceChangeNodeData, a as WorkflowEdge, aC as WorkflowEdgeData, aD as WorkflowInputNodeData, aE as WorkflowInterface, aF as WorkflowInterfaceInput, aG as WorkflowInterfaceOutput, W as WorkflowNode, aI as WorkflowOutputNodeData, aJ as WorkflowRefNodeData } from './union-BVaWc1Cx.mjs';
3
3
  import '@xyflow/react';
4
4
 
5
5
  interface NodeDefinition {
package/dist/nodes.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { i as NodeType, k as NodeCategory, b as HandleDefinition, aH as WorkflowNodeData } from './union-CtYAY8Mv.js';
2
- export { ab as AnimationNodeData, as as AnnotationNodeData, ar as AnnotationShapeData, s as AspectRatio, ad as AudioCodec, A as AudioInputNodeData, o as AvailableVariable, B as BaseNodeData, C as CONNECTION_RULES, a4 as CameraMovement, a6 as CharacterOrientation, aa as CubicBezier, az as DownloadNodeData, a9 as EasingPreset, ai as FrameSelectionMode, ap as GridOutputFormat, G as GridPosition, a as HandleType, H as HandleTypeEnum, ax as ImageCompareNodeData, E as ImageGenNodeData, aq as ImageGridSplitNodeData, I as ImageInputNodeData, q as ImageModel, K as KlingQuality, a5 as KlingQualityMode, Q as LLMNodeData, X as LipSyncMode, W as LipSyncModel, Y as LipSyncNodeData, L as LumaAspectRatio, w as LumaReframeModel, e as ModelCapability, M as ModelCapabilityEnum, g as ModelUseCase, f as ModelUseCaseEnum, a3 as MotionControlMode, a8 as MotionControlNodeData, j as NodeCategoryEnum, m as NodeStatus, l as NodeStatusEnum, N as NodeTypeEnum, O as OutputFormat, aw as OutputGalleryNodeData, ay as OutputInputType, aA as OutputNodeData, ae as OutputQuality, p as PromptConstructorNodeData, n as PromptNodeData, h as ProviderModel, d as ProviderType, c as ProviderTypeEnum, ak as ReframeInputType, al as ReframeNodeData, ag as ResizeNodeData, t as Resolution, S as SelectedModel, av as SubtitleNodeData, au as SubtitlePosition, at as SubtitleStyle, _ as TTSProvider, $ as TTSVoice, J as TextModel, a0 as TextToSpeechNodeData, x as TopazEnhanceModel, y as TopazUpscaleFactor, D as TopazVideoFPS, z as TopazVideoResolution, a7 as TrajectoryPoint, a1 as TranscribeLanguage, a2 as TranscribeNodeData, ac as TransitionType, am as UpscaleInputType, an as UpscaleModel, ao as UpscaleNodeData, v as VideoDuration, aj as VideoFrameExtractNodeData, F as VideoGenNodeData, V as VideoInputNodeData, r as VideoModel, u as VideoResolution, af as VideoStitchNodeData, ah as VideoTrimNodeData, Z as VoiceChangeNodeData, aK as WorkflowEdge, aJ as WorkflowEdgeData, aB as WorkflowInputNodeData, aF as WorkflowInterface, aD as WorkflowInterfaceInput, aE as WorkflowInterfaceOutput, aI as WorkflowNode, aC as WorkflowOutputNodeData, aG as WorkflowRefNodeData } from './union-CtYAY8Mv.js';
1
+ import { N as NodeType, P as NodeCategory, H as HandleDefinition, aH as WorkflowNodeData } from './union-BVaWc1Cx.js';
2
+ export { A as AnimationNodeData, b as AnnotationNodeData, c as AnnotationShapeData, d as AspectRatio, e as AudioCodec, f as AudioInputNodeData, g as AvailableVariable, B as BaseNodeData, C as CONNECTION_RULES, h as CameraMovement, i as CharacterOrientation, j as CubicBezier, D as DownloadNodeData, E as EasingPreset, F as FrameSelectionMode, G as GridOutputFormat, k as GridPosition, l as HandleType, m as HandleTypeEnum, I as ImageCompareNodeData, n as ImageGenNodeData, o as ImageGridSplitNodeData, p as ImageInputNodeData, q as ImageModel, K as KlingQuality, r as KlingQualityMode, L as LLMNodeData, s as LipSyncMode, t as LipSyncModel, u as LipSyncNodeData, v as LumaAspectRatio, w as LumaReframeModel, M as ModelCapability, x as ModelCapabilityEnum, y as ModelUseCase, z as ModelUseCaseEnum, J as MotionControlMode, O as MotionControlNodeData, Q as NodeCategoryEnum, R as NodeStatus, S as NodeStatusEnum, T as NodeTypeEnum, U as OutputFormat, V as OutputGalleryNodeData, X as OutputInputType, Y as OutputNodeData, Z as OutputQuality, $ as PromptConstructorNodeData, a0 as PromptNodeData, a1 as ProviderModel, a2 as ProviderType, a3 as ProviderTypeEnum, a4 as ReframeInputType, a5 as ReframeNodeData, a7 as ResizeNodeData, a8 as Resolution, a9 as SelectedModel, aa as SubtitleNodeData, ab as SubtitlePosition, ac as SubtitleStyle, ad as TTSProvider, ae as TTSVoice, af as TextModel, ag as TextToSpeechNodeData, ah as TopazEnhanceModel, ai as TopazUpscaleFactor, aj as TopazVideoFPS, ak as TopazVideoResolution, al as TrajectoryPoint, am as TranscribeLanguage, an as TranscribeNodeData, ao as TransitionType, ap as UpscaleInputType, aq as UpscaleModel, ar as UpscaleNodeData, at as VideoDuration, au as VideoFrameExtractNodeData, av as VideoGenNodeData, aw as VideoInputNodeData, ax as VideoModel, ay as VideoResolution, az as VideoStitchNodeData, aA as VideoTrimNodeData, aB as VoiceChangeNodeData, a as WorkflowEdge, aC as WorkflowEdgeData, aD as WorkflowInputNodeData, aE as WorkflowInterface, aF as WorkflowInterfaceInput, aG as WorkflowInterfaceOutput, W as WorkflowNode, aI as WorkflowOutputNodeData, aJ as WorkflowRefNodeData } from './union-BVaWc1Cx.js';
3
3
  import '@xyflow/react';
4
4
 
5
5
  interface NodeDefinition {
package/dist/nodes.js CHANGED
@@ -1,54 +1,54 @@
1
1
  'use strict';
2
2
 
3
- var chunkP7K5LM6V_js = require('./chunk-P7K5LM6V.js');
3
+ var chunkP4XY3T5T_js = require('./chunk-P4XY3T5T.js');
4
4
 
5
5
 
6
6
 
7
7
  Object.defineProperty(exports, "CONNECTION_RULES", {
8
8
  enumerable: true,
9
- get: function () { return chunkP7K5LM6V_js.CONNECTION_RULES; }
9
+ get: function () { return chunkP4XY3T5T_js.CONNECTION_RULES; }
10
10
  });
11
11
  Object.defineProperty(exports, "HandleTypeEnum", {
12
12
  enumerable: true,
13
- get: function () { return chunkP7K5LM6V_js.HandleTypeEnum; }
13
+ get: function () { return chunkP4XY3T5T_js.HandleTypeEnum; }
14
14
  });
15
15
  Object.defineProperty(exports, "KlingQuality", {
16
16
  enumerable: true,
17
- get: function () { return chunkP7K5LM6V_js.KlingQuality; }
17
+ get: function () { return chunkP4XY3T5T_js.KlingQuality; }
18
18
  });
19
19
  Object.defineProperty(exports, "ModelCapabilityEnum", {
20
20
  enumerable: true,
21
- get: function () { return chunkP7K5LM6V_js.ModelCapabilityEnum; }
21
+ get: function () { return chunkP4XY3T5T_js.ModelCapabilityEnum; }
22
22
  });
23
23
  Object.defineProperty(exports, "ModelUseCaseEnum", {
24
24
  enumerable: true,
25
- get: function () { return chunkP7K5LM6V_js.ModelUseCaseEnum; }
25
+ get: function () { return chunkP4XY3T5T_js.ModelUseCaseEnum; }
26
26
  });
27
27
  Object.defineProperty(exports, "NODE_DEFINITIONS", {
28
28
  enumerable: true,
29
- get: function () { return chunkP7K5LM6V_js.NODE_DEFINITIONS; }
29
+ get: function () { return chunkP4XY3T5T_js.NODE_DEFINITIONS; }
30
30
  });
31
31
  Object.defineProperty(exports, "NODE_ORDER", {
32
32
  enumerable: true,
33
- get: function () { return chunkP7K5LM6V_js.NODE_ORDER; }
33
+ get: function () { return chunkP4XY3T5T_js.NODE_ORDER; }
34
34
  });
35
35
  Object.defineProperty(exports, "NodeCategoryEnum", {
36
36
  enumerable: true,
37
- get: function () { return chunkP7K5LM6V_js.NodeCategoryEnum; }
37
+ get: function () { return chunkP4XY3T5T_js.NodeCategoryEnum; }
38
38
  });
39
39
  Object.defineProperty(exports, "NodeStatusEnum", {
40
40
  enumerable: true,
41
- get: function () { return chunkP7K5LM6V_js.NodeStatusEnum; }
41
+ get: function () { return chunkP4XY3T5T_js.NodeStatusEnum; }
42
42
  });
43
43
  Object.defineProperty(exports, "NodeTypeEnum", {
44
44
  enumerable: true,
45
- get: function () { return chunkP7K5LM6V_js.NodeTypeEnum; }
45
+ get: function () { return chunkP4XY3T5T_js.NodeTypeEnum; }
46
46
  });
47
47
  Object.defineProperty(exports, "ProviderTypeEnum", {
48
48
  enumerable: true,
49
- get: function () { return chunkP7K5LM6V_js.ProviderTypeEnum; }
49
+ get: function () { return chunkP4XY3T5T_js.ProviderTypeEnum; }
50
50
  });
51
51
  Object.defineProperty(exports, "getNodesByCategory", {
52
52
  enumerable: true,
53
- get: function () { return chunkP7K5LM6V_js.getNodesByCategory; }
53
+ get: function () { return chunkP4XY3T5T_js.getNodesByCategory; }
54
54
  });
package/dist/nodes.mjs CHANGED
@@ -1 +1 @@
1
- export { CONNECTION_RULES, HandleTypeEnum, KlingQuality, ModelCapabilityEnum, ModelUseCaseEnum, NODE_DEFINITIONS, NODE_ORDER, NodeCategoryEnum, NodeStatusEnum, NodeTypeEnum, ProviderTypeEnum, getNodesByCategory } from './chunk-OGJX4J7H.mjs';
1
+ export { CONNECTION_RULES, HandleTypeEnum, KlingQuality, ModelCapabilityEnum, ModelUseCaseEnum, NODE_DEFINITIONS, NODE_ORDER, NodeCategoryEnum, NodeStatusEnum, NodeTypeEnum, ProviderTypeEnum, getNodesByCategory } from './chunk-QNWQE2LJ.mjs';