mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 03:33:54 +00:00
[PM-3040] [BEEEP] Extend json-export to include passwordhistory and vault item dates (created, updated, deleted) (#5917)
* Add password history to json exports Change callout to not mention missing password history any longer * Added item meta dates to json exports Added vault items creation-/revision-/deleted-dates to json exports * Removed unnecessary promises * Add bitwarden-json-export types Define types Use types in vault-export-service Move existing password-protected type to export-types * Use bitwarden-json-export types in bitwarden-json-importer * Clean up passwordHistory if needed * Define and use bitwarden-csv-export-types
This commit is contained in:
committed by
GitHub
parent
b56bb19c02
commit
15f29c5fb1
@@ -313,6 +313,9 @@ export abstract class BaseImporter {
|
||||
if (cipher.fields != null && cipher.fields.length === 0) {
|
||||
cipher.fields = null;
|
||||
}
|
||||
if (cipher.passwordHistory != null && cipher.passwordHistory.length === 0) {
|
||||
cipher.passwordHistory = null;
|
||||
}
|
||||
}
|
||||
|
||||
protected processKvp(
|
||||
|
||||
Reference in New Issue
Block a user