1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 13:10:17 +00:00

Fixed dependency issues

This commit is contained in:
gbubemismith
2025-04-21 12:16:27 -04:00
parent d48aa21bd6
commit 6d48827df2
5 changed files with 12 additions and 2 deletions

View File

@@ -1049,6 +1049,8 @@ export default class MainBackground {
this.kdfConfigService,
this.accountService,
this.apiService,
this.configService,
this.cipherEncryptionService,
);
this.organizationVaultExportService = new OrganizationVaultExportService(

View File

@@ -811,6 +811,8 @@ export class ServiceContainer {
this.kdfConfigService,
this.accountService,
this.apiService,
this.configService,
this.cipherEncryptionService,
);
this.organizationExportService = new OrganizationVaultExportService(

View File

@@ -28,6 +28,7 @@ import { MessagingService } from "@bitwarden/common/platform/abstractions/messag
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
import { CipherId } from "@bitwarden/common/types/guid";
import { CipherEncryptionService } from "@bitwarden/common/vault/abstractions/cipher-encryption.service";
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
import { FolderService } from "@bitwarden/common/vault/abstractions/folder/folder.service.abstraction";
import { TotpService } from "@bitwarden/common/vault/abstractions/totp.service";
@@ -72,7 +73,8 @@ export class ViewComponent extends BaseViewComponent implements OnInit, OnDestro
accountService: AccountService,
toastService: ToastService,
cipherAuthorizationService: CipherAuthorizationService,
private configService: ConfigService,
configService: ConfigService,
cipherEncryptionService: CipherEncryptionService,
) {
super(
cipherService,
@@ -100,6 +102,8 @@ export class ViewComponent extends BaseViewComponent implements OnInit, OnDestro
billingAccountProfileStateService,
toastService,
cipherAuthorizationService,
configService,
cipherEncryptionService,
);
}

View File

@@ -855,6 +855,8 @@ const safeProviders: SafeProvider[] = [
KdfConfigService,
AccountServiceAbstraction,
ApiServiceAbstraction,
ConfigService,
CipherEncryptionService,
],
}),
safeProvider({

View File

@@ -142,7 +142,7 @@ export class ViewComponent implements OnDestroy, OnInit {
private billingAccountProfileStateService: BillingAccountProfileStateService,
protected toastService: ToastService,
private cipherAuthorizationService: CipherAuthorizationService,
private configService: ConfigService,
protected configService: ConfigService,
private cipherEncryptionService: CipherEncryptionService,
) {}