// 인증 구분 값 export const enum VerificationType { Registration = 0, // 회원가입 ForgotPassword = 1, // 비밀번호 재설정 ChangedEmail = 2 // 이메일 변경 } // ASP.NET Core에서 발급한 JWT Key export const CLAIM_NAME_IDENTIFIER = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"; export const CLAIM_EMAIL = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"; export const CLAIM_NAME = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name"; // 로그인 기록 구분 값 export const enum LoginLogType { Today = "today", Week = "week", Month = "month", QuarterYear = "quarter", HalfYear = "half" }