스킬 정리 및 리팩토링

This commit is contained in:
2026-02-26 09:05:17 +09:00
parent 4c52d6d82f
commit 406af7408a
71 changed files with 3776 additions and 3934 deletions

View File

@@ -177,8 +177,17 @@ export interface DashboardStockCashOrderRequest {
orderType: DashboardOrderType;
quantity: number;
price: number;
/**
* KIS 계좌번호(권장: 8-2, 예: 12345678-01)
* @see lib/kis/account.ts parseKisAccountParts 서버 주문 라우트에서 8-2 파싱에 사용합니다.
*/
accountNo: string;
accountProductCode: string;
/**
* 계좌상품코드(2자리, 선택)
* @description accountNo가 8-2 형식이면 서버에서 자동 파싱합니다.
* @see app/api/kis/domestic/order-cash/route.ts 주문 요청 검증/계좌 파싱
*/
accountProductCode?: string;
}
/**