제어 집계함수 노드 추가

This commit is contained in:
kjs
2025-12-05 15:18:55 +09:00
parent 09fee58186
commit 0429e0db7d
10 changed files with 959 additions and 7 deletions

View File

@@ -25,6 +25,7 @@ import { UpdateActionNode } from "./nodes/UpdateActionNode";
import { DeleteActionNode } from "./nodes/DeleteActionNode";
import { UpsertActionNode } from "./nodes/UpsertActionNode";
import { DataTransformNode } from "./nodes/DataTransformNode";
import { AggregateNode } from "./nodes/AggregateNode";
import { RestAPISourceNode } from "./nodes/RestAPISourceNode";
import { CommentNode } from "./nodes/CommentNode";
import { LogNode } from "./nodes/LogNode";
@@ -41,6 +42,7 @@ const nodeTypes = {
// 변환/조건
condition: ConditionNode,
dataTransform: DataTransformNode,
aggregate: AggregateNode,
// 액션
insertAction: InsertActionNode,
updateAction: UpdateActionNode,