mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 19:23:52 +00:00
11 lines
456 B
TypeScript
11 lines
456 B
TypeScript
export enum StateVersion {
|
|
One = 1, // Original flat key/value pair store
|
|
Two = 2, // Move to a typed State object
|
|
Three = 3, // Fix migration of users' premium status
|
|
Four = 4, // Fix 'Never Lock' option by removing stale data
|
|
Five = 5, // Migrate to new storage of encrypted organization keys
|
|
Six = 6, // Delete account.keys.legacyEtmKey property
|
|
Seven = 7, // Remove global desktop auto prompt setting, move to account
|
|
Latest = Seven,
|
|
}
|