[chore] Update jslib

This commit is contained in:
addison 2022-01-31 14:21:06 -05:00
parent 4118b12cab
commit f6e274a9a0
1 changed files with 7 additions and 3 deletions

View File

@ -1,8 +1,8 @@
import { CipherRepromptType } from "jslib-common/enums/cipherRepromptType"; import { CipherRepromptType } from "jslib-common/enums/cipherRepromptType";
import { CipherType } from "jslib-common/enums/cipherType"; import { CipherType } from "jslib-common/enums/cipherType";
import { AccountFactory } from "jslib-common/models/domain/account";
import { CipherView } from "jslib-common/models/view/cipherView"; import { CipherView } from "jslib-common/models/view/cipherView";
import { GlobalState } from "jslib-common/models/domain/globalState";
import { ApiService } from "jslib-common/services/api.service"; import { ApiService } from "jslib-common/services/api.service";
import { AppIdService } from "jslib-common/services/appId.service"; import { AppIdService } from "jslib-common/services/appId.service";
@ -97,6 +97,9 @@ import VaultTimeoutService from "../services/vaultTimeout.service";
import { Account } from "../models/account"; import { Account } from "../models/account";
import { GlobalStateFactory } from "jslib-common/factories/globalStateFactory";
import { StateFactory } from "jslib-common/factories/stateFactory";
export default class MainBackground { export default class MainBackground {
messagingService: MessagingServiceAbstraction; messagingService: MessagingServiceAbstraction;
storageService: StorageServiceAbstraction; storageService: StorageServiceAbstraction;
@ -166,14 +169,15 @@ export default class MainBackground {
this.logService = new ConsoleLogService(false); this.logService = new ConsoleLogService(false);
this.stateMigrationService = new StateMigrationService( this.stateMigrationService = new StateMigrationService(
this.storageService, this.storageService,
this.secureStorageService this.secureStorageService,
new GlobalStateFactory(GlobalState),
); );
this.stateService = new StateService( this.stateService = new StateService(
this.storageService, this.storageService,
this.secureStorageService, this.secureStorageService,
this.logService, this.logService,
this.stateMigrationService, this.stateMigrationService,
new AccountFactory(Account) new StateFactory(GlobalState, Account)
); );
this.platformUtilsService = new BrowserPlatformUtilsService( this.platformUtilsService = new BrowserPlatformUtilsService(
this.messagingService, this.messagingService,