( username: string )
| 399 | } |
| 400 | |
| 401 | export function putUpdateMyUsername( |
| 402 | username: string |
| 403 | ): Promise<ResponseWithData<void>> { |
| 404 | return put('/update-my-username', { username }); |
| 405 | } |
| 406 | |
| 407 | export function putUpdateMyProfileUI( |
| 408 | profileUI: User['profileUI'] |