/** * Gateway 路径常量:各模块使用独立 path 端点,便于路由与扩展。 */ export declare const PATHS: { /** 业务 REST API(Nest) */ readonly SERVER_API: "/server-api"; /** Agent 对话 WebSocket */ readonly WS: "/ws"; /** 语音通道 WebSocket(扩展占位) */ readonly WS_VOICE: "/ws/voice"; /** Agent 流式 SSE(占位) */ readonly SSE: "/sse"; /** 通道模块(webhook / 回调) */ readonly CHANNEL: "/channel"; /** 健康检查 */ readonly HEALTH: "/health"; /** 定时任务执行(Nest 回调 Gateway) */ readonly RUN_SCHEDULED_TASK: "/run-scheduled-task"; }; export type PathKey = keyof typeof PATHS;