Refactor: Implement email confirmation for password auth

This commit is contained in:
gpt-engineer-app[bot]
2025-10-14 15:39:05 +00:00
parent 92a0bf1257
commit 677f14ee7b
6 changed files with 49 additions and 26 deletions

View File

@@ -31,5 +31,6 @@ export interface IdentityOperationResult {
success: boolean;
error?: string;
needsRelogin?: boolean;
needsEmailConfirmation?: boolean;
email?: string;
}