mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-10 01:06:17 +00:00
19 lines
578 B
TypeScript
19 lines
578 B
TypeScript
export interface Account {
|
|
/** Enable/disable this account (if false, account will be skipped during execution) */
|
|
enabled?: boolean;
|
|
email: string;
|
|
password: string;
|
|
/** Optional TOTP secret in Base32 (e.g., from Microsoft Authenticator setup) */
|
|
totp?: string;
|
|
/** Recovery email used during security challenge verification. Leave empty if not needed. */
|
|
recoveryEmail?: string;
|
|
proxy: AccountProxy;
|
|
}
|
|
|
|
export interface AccountProxy {
|
|
proxyAxios: boolean;
|
|
url: string;
|
|
port: number;
|
|
password: string;
|
|
username: string;
|
|
} |