mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
Update jslib and service dependencies (#1160)
* Update service deps * Update jslib
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: e02e663ce1...720967475b
@@ -125,7 +125,7 @@ const sendService = new SendService(cryptoService, userService, apiService, file
|
|||||||
i18nService, cryptoFunctionService);
|
i18nService, cryptoFunctionService);
|
||||||
const policyService = new PolicyService(userService, storageService, apiService);
|
const policyService = new PolicyService(userService, storageService, apiService);
|
||||||
const keyConnectorService = new KeyConnectorService(storageService, userService, cryptoService, apiService,
|
const keyConnectorService = new KeyConnectorService(storageService, userService, cryptoService, apiService,
|
||||||
environmentService, tokenService, logService);
|
tokenService, logService);
|
||||||
const vaultTimeoutService = new VaultTimeoutService(cipherService, folderService, collectionService,
|
const vaultTimeoutService = new VaultTimeoutService(cipherService, folderService, collectionService,
|
||||||
cryptoService, platformUtilsService, storageService, messagingService, searchService, userService, tokenService,
|
cryptoService, platformUtilsService, storageService, messagingService, searchService, userService, tokenService,
|
||||||
policyService, keyConnectorService, null, async () => messagingService.send('logout', { expired: false }));
|
policyService, keyConnectorService, null, async () => messagingService.send('logout', { expired: false }));
|
||||||
@@ -148,6 +148,7 @@ const systemService = new SystemService(storageService, vaultTimeoutService, mes
|
|||||||
null);
|
null);
|
||||||
const nativeMessagingService = new NativeMessagingService(cryptoFunctionService, cryptoService, platformUtilsService,
|
const nativeMessagingService = new NativeMessagingService(cryptoFunctionService, cryptoService, platformUtilsService,
|
||||||
logService, i18nService, userService, messagingService, vaultTimeoutService, storageService);
|
logService, i18nService, userService, messagingService, vaultTimeoutService, storageService);
|
||||||
|
const userVerificationService = new UserVerificationService(cryptoService, i18nService, apiService);
|
||||||
|
|
||||||
containerService.attachToGlobal(window);
|
containerService.attachToGlobal(window);
|
||||||
|
|
||||||
@@ -238,7 +239,7 @@ export function initFactory(): Function {
|
|||||||
{ provide: NativeMessagingService, useValue: nativeMessagingService },
|
{ provide: NativeMessagingService, useValue: nativeMessagingService },
|
||||||
{ provide: FileUploadServiceAbstraction, useValue: fileUploadService },
|
{ provide: FileUploadServiceAbstraction, useValue: fileUploadService },
|
||||||
{ provide: KeyConnectorServiceAbstraction, useValue: keyConnectorService },
|
{ provide: KeyConnectorServiceAbstraction, useValue: keyConnectorService },
|
||||||
{ provide: UserVerificationServiceAbstraction, useClass: UserVerificationService },
|
{ provide: UserVerificationServiceAbstraction, useValue: userVerificationService },
|
||||||
{ provide: PasswordRepromptServiceAbstraction, useClass: PasswordRepromptService },
|
{ provide: PasswordRepromptServiceAbstraction, useClass: PasswordRepromptService },
|
||||||
{
|
{
|
||||||
provide: APP_INITIALIZER,
|
provide: APP_INITIALIZER,
|
||||||
|
|||||||
Reference in New Issue
Block a user