mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 04:04:24 +00:00
[PS-2096] BEEEEP: Add Psono importer (#4286)
* Add psono json importer Create types for psono export format Add test files Write tests for psono-json-importer Write importer for psono export Register 'psonojson' with `importOptions` Import/register psono-json-importer with import.service Add instructions on how to export from Psono * Retain all imported data Ensure all data is retained by adding unmapped properties into custom fields Each item type has a set of mapped properties, anything not matching will be created as a custom field Write extensive tests to ensure data is present * Skipping GPG We currently cannot import GPG Keys into notes or custom fields * Add organizational test Verify that folders get converted to collections when imported by an org * Remove combined test-file (whole export) * Remove redundant null type
This commit is contained in:
committed by
GitHub
parent
651968ca9c
commit
b1a1068906
@@ -0,0 +1,20 @@
|
||||
import { PsonoJsonExport } from "@bitwarden/common/importers/psono/psono-json-types";
|
||||
|
||||
export const ApplicationPasswordsData: PsonoJsonExport = {
|
||||
folders: [],
|
||||
items: [
|
||||
{
|
||||
type: "application_password",
|
||||
name: "My App Password",
|
||||
application_password_title: "My App Password",
|
||||
application_password_username: "someUser",
|
||||
application_password_password: "somePassword",
|
||||
application_password_notes: "some notes for the APP",
|
||||
create_date: "2022-12-13T19:42:05.784077Z",
|
||||
write_date: "2022-12-13T19:42:05.784103Z",
|
||||
callback_url: "",
|
||||
callback_user: "",
|
||||
callback_pass: "",
|
||||
},
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user