restapi 여러개 띄우는거 작업 가능하게 하는거 진행중
This commit is contained in:
@@ -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?: {
|
||||
|
||||
@@ -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?: {
|
||||
|
||||
@@ -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[]> {
|
||||
|
||||
Reference in New Issue
Block a user