restapi 여러개 띄우는거 작업 가능하게 하는거 진행중

This commit is contained in:
leeheejin
2025-10-27 18:33:15 +09:00
parent 4f2cf6c0ff
commit 5b394473f4
23 changed files with 4283 additions and 106 deletions

View File

@@ -34,6 +34,7 @@ export interface ExternalApiConnection {
connection_name: string;
description?: string;
base_url: string;
endpoint_path?: string;
default_headers: Record<string, string>;
auth_type: AuthType;
auth_config?: {

View File

@@ -9,6 +9,7 @@ export interface ExternalRestApiConnection {
connection_name: string;
description?: string;
base_url: string;
endpoint_path?: string;
default_headers: Record<string, string>;
auth_type: AuthType;
auth_config?: {

View File

@@ -101,6 +101,8 @@ export interface WeatherAlert {
location: string;
description: string;
timestamp: string;
polygon?: { lat: number; lng: number }[]; // 폴리곤 경계 좌표
center?: { lat: number; lng: number }; // 중심점 좌표
}
export async function getWeatherAlerts(): Promise<WeatherAlert[]> {