We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e00eeb commit 00c9e12Copy full SHA for 00c9e12
src/types/api/MyPage.types.d.ts
@@ -29,6 +29,25 @@ export interface ProfileUpdateResponse extends ProfileBase {
29
completionRate?: number // 포트폴리오 완성률 (%)
30
}
31
32
+/*
33
+path: '/v1/my-page/check-nickname'
34
+POST: 닉네임 중복 체크
35
+*/
36
+export interface CheckNicknameRequest {
37
+ nickname: Nickname // 닉네임 중복 검사 대상
38
+}
39
+
40
+export type CheckNicknameResponse = boolean
41
42
43
+PasswordUpdateResponse
44
+{
45
+ "isSuccess": true,
46
+ "code": "COMMON200",
47
+ "message": "비밀번호 수정이 완료되었습니다."
48
49
50
51
/*
52
path: '/v1/my-page/password'
53
PATCH: 마이 페이지 비밀번호 수정
0 commit comments