import { request } from '@/utils/http' import type { UserInfoDTO } from './types' export interface UserProfileDTO { user: UserInfoDTO roleName?: string } export interface UpdateProfileCommand { nickName?: string phoneNumber?: string email?: string sex?: number } export interface UpdatePasswordCommand { newPassword: string confirmPassword: string } export function getProfileApi() { return request({ method: 'GET', url: '/app/user/profile' }) } export function updateProfileApi(data: UpdateProfileCommand) { return request({ method: 'PUT', url: '/app/user/profile', data }) } export function updatePasswordApi(data: UpdatePasswordCommand) { return request({ method: 'PUT', url: '/app/user/profile/password', data }) }