From 3a14c7ad3cc19fdca2ab5aab6b58317d7a4b3bb9 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Fri, 24 Jan 2025 18:08:42 +0100 Subject: [PATCH] Fix cli --- apps/cli/src/service-container/service-container.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/cli/src/service-container/service-container.ts b/apps/cli/src/service-container/service-container.ts index 57fca7a9214..0ddba03c0de 100644 --- a/apps/cli/src/service-container/service-container.ts +++ b/apps/cli/src/service-container/service-container.ts @@ -62,6 +62,7 @@ import { BillingAccountProfileStateService } from "@bitwarden/common/billing/abs import { DefaultBillingAccountProfileStateService } from "@bitwarden/common/billing/services/account/billing-account-profile-state.service"; import { ClientType } from "@bitwarden/common/enums"; import { KeyGenerationService as KeyGenerationServiceAbstraction } from "@bitwarden/common/key-management/crypto/abstractions/key-generation.service"; +import { KeySuffixOptions } from "@bitwarden/common/key-management/crypto/enums"; import { EncryptServiceImplementation } from "@bitwarden/common/key-management/crypto/services/encrypt.service.implementation"; import { FallbackBulkEncryptService } from "@bitwarden/common/key-management/crypto/services/fallback-bulk-encrypt.service"; import { KeyGenerationService } from "@bitwarden/common/key-management/crypto/services/key-generation.service"; @@ -73,7 +74,7 @@ import { } from "@bitwarden/common/platform/abstractions/environment.service"; import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service"; import { SdkService } from "@bitwarden/common/platform/abstractions/sdk/sdk.service"; -import { KeySuffixOptions, LogLevelType } from "@bitwarden/common/platform/enums"; +import { LogLevelType } from "@bitwarden/common/platform/enums"; import { StateFactory } from "@bitwarden/common/platform/factories/state-factory"; import { MessageSender } from "@bitwarden/common/platform/messaging"; import { Account } from "@bitwarden/common/platform/models/domain/account";