( profileUI: User['profileUI'] )
| 405 | } |
| 406 | |
| 407 | export function putUpdateMyProfileUI( |
| 408 | profileUI: User['profileUI'] |
| 409 | ): Promise<ResponseWithData<void>> { |
| 410 | return put('/update-my-profileui', { profileUI }); |
| 411 | } |
| 412 | |
| 413 | export function putUpdateMySocials( |
| 414 | update: Record<string, string> |