1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

[deps] Autofill: Update prettier to v3 (#7014)

* [deps] Autofill: Update prettier to v3

* prettier formatting updates

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
This commit is contained in:
renovate[bot]
2023-11-29 16:15:20 -05:00
committed by GitHub
parent 4ff5f38e89
commit 28de9439be
1145 changed files with 5898 additions and 5612 deletions

View File

@@ -110,7 +110,7 @@ export class AuthService implements AuthServiceAbstraction {
protected passwordStrengthService: PasswordStrengthServiceAbstraction,
protected policyService: PolicyService,
protected deviceTrustCryptoService: DeviceTrustCryptoServiceAbstraction,
protected authReqCryptoService: AuthRequestCryptoServiceAbstraction
protected authReqCryptoService: AuthRequestCryptoServiceAbstraction,
) {}
async logIn(
@@ -119,7 +119,7 @@ export class AuthService implements AuthServiceAbstraction {
| PasswordLoginCredentials
| SsoLoginCredentials
| AuthRequestLoginCredentials
| WebAuthnLoginCredentials
| WebAuthnLoginCredentials,
): Promise<AuthResult> {
this.clearState();
@@ -144,7 +144,7 @@ export class AuthService implements AuthServiceAbstraction {
this.twoFactorService,
this.passwordStrengthService,
this.policyService,
this
this,
);
break;
case AuthenticationType.Sso:
@@ -161,7 +161,7 @@ export class AuthService implements AuthServiceAbstraction {
this.keyConnectorService,
this.deviceTrustCryptoService,
this.authReqCryptoService,
this.i18nService
this.i18nService,
);
break;
case AuthenticationType.UserApi:
@@ -176,7 +176,7 @@ export class AuthService implements AuthServiceAbstraction {
this.stateService,
this.twoFactorService,
this.environmentService,
this.keyConnectorService
this.keyConnectorService,
);
break;
case AuthenticationType.AuthRequest:
@@ -190,7 +190,7 @@ export class AuthService implements AuthServiceAbstraction {
this.logService,
this.stateService,
this.twoFactorService,
this.deviceTrustCryptoService
this.deviceTrustCryptoService,
);
break;
case AuthenticationType.WebAuthn:
@@ -203,7 +203,7 @@ export class AuthService implements AuthServiceAbstraction {
this.messagingService,
this.logService,
this.stateService,
this.twoFactorService
this.twoFactorService,
);
break;
}
@@ -218,7 +218,7 @@ export class AuthService implements AuthServiceAbstraction {
async logInTwoFactor(
twoFactor: TokenTwoFactorRequest,
captchaResponse: string
captchaResponse: string,
): Promise<AuthResult> {
if (this.logInStrategy == null) {
throw new Error(this.i18nService.t("sessionTimeout"));
@@ -281,7 +281,7 @@ export class AuthService implements AuthServiceAbstraction {
// Attempt to get the key from storage and set it in memory
const userKey = await this.cryptoService.getUserKeyFromStorage(
KeySuffixOptions.Auto,
userId
userId,
);
await this.cryptoService.setUserKey(userKey, userId);
}
@@ -307,7 +307,7 @@ export class AuthService implements AuthServiceAbstraction {
kdfConfig = new KdfConfig(
preloginResponse.kdfIterations,
preloginResponse.kdfMemory,
preloginResponse.kdfParallelism
preloginResponse.kdfParallelism,
);
}
} catch (e) {
@@ -329,7 +329,7 @@ export class AuthService implements AuthServiceAbstraction {
async passwordlessLogin(
id: string,
key: string,
requestApproved: boolean
requestApproved: boolean,
): Promise<AuthRequestResponse> {
const pubKey = Utils.fromB64ToArray(key);
@@ -346,7 +346,7 @@ export class AuthService implements AuthServiceAbstraction {
if (masterKeyHash != null) {
encryptedMasterKeyHash = await this.cryptoService.rsaEncrypt(
Utils.fromUtf8ToArray(masterKeyHash),
pubKey
pubKey,
);
}
} else {
@@ -360,7 +360,7 @@ export class AuthService implements AuthServiceAbstraction {
encryptedKey.encryptedString,
encryptedMasterKeyHash?.encryptedString,
await this.appIdService.getAppId(),
requestApproved
requestApproved,
);
return await this.apiService.putAuthRequest(id, request);
}
@@ -371,7 +371,7 @@ export class AuthService implements AuthServiceAbstraction {
| PasswordLoginStrategy
| SsoLoginStrategy
| AuthRequestLoginStrategy
| WebAuthnLoginStrategy
| WebAuthnLoginStrategy,
) {
this.logInStrategy = strategy;
this.startSessionTimeout();