외부호출 노드들

This commit is contained in:
kjs
2025-12-09 12:13:30 +09:00
parent cf73ce6ebb
commit bb98e9319f
12 changed files with 2671 additions and 5 deletions

View File

@@ -97,6 +97,34 @@ export const NODE_PALETTE: NodePaletteItem[] = [
color: "#8B5CF6", // 보라색
},
// ========================================================================
// 외부 연동
// ========================================================================
{
type: "emailAction",
label: "메일 발송",
icon: "",
description: "SMTP를 통해 이메일을 발송합니다",
category: "external",
color: "#EC4899", // 핑크색
},
{
type: "scriptAction",
label: "스크립트 실행",
icon: "",
description: "Python, Shell 등 외부 스크립트를 실행합니다",
category: "external",
color: "#10B981", // 에메랄드
},
{
type: "httpRequestAction",
label: "HTTP 요청",
icon: "",
description: "REST API를 호출합니다",
category: "external",
color: "#06B6D4", // 시안
},
// ========================================================================
// 유틸리티
// ========================================================================
@@ -123,7 +151,12 @@ export const NODE_CATEGORIES = [
},
{
id: "action",
label: "액션",
label: "데이터 액션",
icon: "",
},
{
id: "external",
label: "외부 연동",
icon: "",
},
{