feat(auth): verify google signup mobile before account creation
Some checks failed
Frontend CI/CD / build (push) Has been cancelled
Frontend CI/CD / deploy (push) Has been cancelled

This commit is contained in:
2026-05-14 23:24:21 +03:30
parent cd5409c9b2
commit 2ab42c287f
2 changed files with 10 additions and 5 deletions

View File

@@ -127,7 +127,7 @@ export type GoogleOAuthFlowResponse =
mobile: string;
detail?: string;
email: string;
resolution: "existing_email_claim" | "existing_mobile_claim";
resolution: "new_account" | "existing_email_claim" | "existing_mobile_claim";
mobile_hint?: string | null;
};