mirror of
https://github.com/TheNetsky/Microsoft-Rewards-Script.git
synced 2026-01-18 05:53:57 +00:00
* support passwordless auth (using Authenticator app) * update readme * feat: added mobile app tasks (daily check in + read to earn) * fix some stuff * make ReadToEarn use the delay config * fix daily reward search per week * reorder mobile tasks * fix message * Search fixes, reformatting and types --------- Co-authored-by: TheNetsky <56271887+TheNetsky@users.noreply.github.com>
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
export interface OAuth {
|
|
access_token: string;
|
|
refresh_token: string;
|
|
scope: string;
|
|
expires_in: number;
|
|
ext_expires_in: number;
|
|
foci: string;
|
|
token_type: string;
|
|
} |