외부 호출 중간 저장

This commit is contained in:
hyeonsu
2025-09-17 17:14:59 +09:00
parent f85aac65db
commit b1a3ba713a
11 changed files with 1972 additions and 50 deletions

View File

@@ -93,6 +93,13 @@ export interface ExternalCallSettings {
discordUsername?: string;
}
// 단순화된 외부 호출 설정 (새로운 버전)
export interface SimpleExternalCallSettings {
configId?: number; // 선택된 외부 호출 설정 ID
configName?: string; // 설정 이름 (표시용)
message: string; // 메시지 템플릿
}
// ConnectionSetupModal Props 타입
export interface ConnectionSetupModalProps {
isOpen: boolean;