v3.1.0 initial

This commit is contained in:
TheNetsky
2026-01-05 16:26:47 +01:00
parent a8ddb65b21
commit 576899f39d
37 changed files with 3391 additions and 865 deletions

View File

@@ -1,9 +1,12 @@
export interface Account {
email: string
password: string
totp?: string
totpSecret?: string
recoveryEmail: string
geoLocale: 'auto' | string
langCode: 'en' | string
proxy: AccountProxy
saveFingerprint: ConfigSaveFingerprint
}
export interface AccountProxy {
@@ -13,3 +16,8 @@ export interface AccountProxy {
password: string
username: string
}
export interface ConfigSaveFingerprint {
mobile: boolean
desktop: boolean
}