mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-11 01:36:16 +00:00
Update to recovery email management: makes the recoveryEmail field optional and adds the ability to disable recovery email verification per account. Added corresponding documentation and updated configuration examples.
This commit is contained in:
@@ -5,8 +5,10 @@ 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 (mandatory) */
|
||||
recoveryEmail: string;
|
||||
/** Recovery email used during security challenge verification */
|
||||
recoveryEmail?: string;
|
||||
/** Override to allow skipping recovery email checks for this account */
|
||||
recoveryRequired?: boolean;
|
||||
proxy: AccountProxy;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user