1
0
mirror of https://github.com/bitwarden/browser synced 2026-03-02 19:41:26 +00:00

refactor(auth): initialize new logout lib

This commit is contained in:
addisonbeck
2025-05-27 14:12:01 -04:00
parent 32e6f44e7a
commit 0564f0ee9f
24 changed files with 60 additions and 33 deletions

View File

@@ -3,7 +3,6 @@
*/
export * from "./abstractions";
export * from "./models";
export * from "./types";
export * from "./services";
export * from "./utilities";
export * from "./login-strategies";

View File

@@ -1 +0,0 @@
export * from "./logout-reason.type";

View File

@@ -1,10 +0,0 @@
export type LogoutReason =
| "invalidGrantError"
| "vaultTimeout"
| "invalidSecurityStamp"
| "logoutNotification"
| "keyConnectorError"
| "sessionExpired"
| "accessTokenUnableToBeDecrypted"
| "refreshTokenSecureStorageRetrievalFailure"
| "accountDeleted";