대시보드 추가기능 + 계좌인증

This commit is contained in:
2026-02-12 17:16:41 +09:00
parent 434a814246
commit 12feeb2775
20 changed files with 1847 additions and 156 deletions

View File

@@ -220,3 +220,15 @@ export interface DashboardKisWsApprovalResponse {
approvalKey?: string;
wsUrl?: string;
}
/**
* KIS 계좌 검증 API 응답
*/
export interface DashboardKisProfileValidateResponse {
ok: boolean;
tradingEnv: KisTradingEnv;
message: string;
account: {
normalizedAccountNo: string;
};
}