feat: add wechat miniprogram webview login

This commit is contained in:
2026-05-03 19:05:45 +08:00
parent 9baa515a75
commit ce98a29c4d
17 changed files with 758 additions and 42 deletions

View File

@@ -123,6 +123,16 @@ export type AuthWechatBindPhoneResponse = {
user: AuthUser;
};
export type AuthWechatMiniProgramLoginRequest = {
code: string;
};
export type AuthWechatMiniProgramLoginResponse = {
token: string;
bindingStatus: AuthBindingStatus;
user: AuthUser;
};
export type AuthPhoneChangeRequest = {
phone: string;
code: string;