// 인증 구분 값 export const enum VerificationType { Registration = 0, // 회원가입 ForgotPassword = 1 // 비밀번호 재설정 } // JWT 클레임 키 (표준 JWT) export const CLAIM_NAME_IDENTIFIER = "sub"; export const CLAIM_EMAIL = "email"; export const CLAIM_NAME = "name"; // 로그인 기록 구분 값 export const enum LoginLogType { Today = "today", Week = "week", Month = "month", QuarterYear = "quarter", HalfYear = "half" } // 충전 내역 카테고리 필터 export const enum WalletLogCategory { All = "all", Charge = "charge", Earn = "earn", Spend = "spend", Refund = "refund" }