| | |
| | | }); |
| | | } |
| | | |
| | | /** 解绑微信小程序快捷登录 POST /api/user/auth/unBindUserWxmpId */ |
| | | export async function unBindUserWxmpId( |
| | | body: API.UnBindUserWxmpIdCommand, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<string>('/api/user/auth/unBindUserWxmpId', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json-patch+json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 发送更换手机号短信 POST /api/user/auth/updatePhoneNumberVerifyCode */ |
| | | export async function updatePhoneNumberVerifyCode( |
| | | body: API.UpdatePhoneNumberVerifyCodeCommand, |