사용자 계정 관리 API 연동 및 기능 개선

- 사용자 비밀번호 변경 API 추가
- 메뉴 권한 관리 API 추가 (조회/저장)
- 인증 방법 수정 API 추가
- 사용자 권한 업데이트 API 추가
- 계정 관리 UI 컴포넌트 개선
- Docker 및 Makefile 설정 업데이트

🤖 Generated with Claude Code (https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-09-26 14:22:37 +09:00
parent 43e7eefefa
commit dd2fa9d6f3
25 changed files with 999 additions and 261 deletions

View File

@@ -133,7 +133,8 @@ export interface CodesGroupByCodeClParams {
codeCl: string;
};
export interface CodesGroupByCodeClResponse extends CodeGroupItem {
status: boolean;
error?: ErrorResponse;
}
export interface CodesCacheStatusResponse {
additionalProp1: string;
@@ -141,13 +142,15 @@ export interface CodesCacheStatusResponse {
additionalProp3: string;
};
export interface CodesCacheRefreshResponse {
status: boolean;
error?: ErrorResponse;
};
export interface CodesCacheRefreshByCodeClParams {
codeCl: string;
};
export interface CodesCacheRefreshByCodeClResponse {
status: boolean;
error?: ErrorResponse;
};
export interface EmptyTokenVerifyCodeParams {
usrid: string;
@@ -177,7 +180,8 @@ export interface EmptyTokenChangeParams {
newConfirmPassword: string;
};
export interface EmptyTokenChangeResponse {
status: boolean;
error?: ErrorResponse;
};
export interface EmptyTokenAddSendCodeParams {
usrid: string;
@@ -196,3 +200,12 @@ export interface SectionArrowProps {
export interface BannerInfo {
HomneBottomBanner: boolean;
};
export interface ErrorResponse {
root: string;
errKey: string;
code: string;
message: string;
timestamp: string;
details: Record<string, string>;
}