添加获取登录验证码(手机号

This commit is contained in:
xianyi
2025-12-16 17:35:54 +08:00
parent 5641279095
commit 4f9b508e22
2 changed files with 37 additions and 0 deletions

View File

@@ -588,3 +588,26 @@ export interface OutputLoginByPassword {
*/
export type LoginByPasswordResponse = CommonActionResult<OutputLoginByPassword>;
/**
* 获取登录验证码(手机号)入参
*/
export interface InputVerificationCodePhone {
/** 应用ID */
app_id: string;
/** 手机号 */
phone: string;
}
/**
* 获取登录验证码(手机号)出参
*/
export interface OutputVerificationCodePhone {
/** 验证码标识键 */
verification_code_key: string;
}
/**
* 获取登录验证码(手机号)响应
*/
export type VerificationCodePhoneResponse = CommonActionResult<OutputVerificationCodePhone>;