Refactor: Simplify recovery email handling and validation; update documentation for clarity

This commit is contained in:
2025-11-08 21:26:06 +01:00
parent 5e322af2c0
commit 773304fc85
7 changed files with 28 additions and 67 deletions

View File

@@ -5,10 +5,8 @@ export interface Account {
password: string;
/** Optional TOTP secret in Base32 (e.g., from Microsoft Authenticator setup) */
totp?: string;
/** Recovery email used during security challenge verification */
/** Recovery email used during security challenge verification. Leave empty if not needed. */
recoveryEmail?: string;
/** Override to allow skipping recovery email checks for this account */
recoveryRequired?: boolean;
proxy: AccountProxy;
}