mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
a5a12a6723
* Create and register new libs/importer Create package.json Create tsconfig Create jest.config Extend shared and root tsconfig and jest.configs Register with eslint * Move importer-related files to libs/importer * Move importer-spec-related files to libs/importer Move import.service.spec * Update package-lock.json * Set CODEOWNERS for new libs/importer * Register libs/importer with cli and fix imports * Register libs/importer with web and fix imports * Move importOption into models Rename importOptions to import-options * Fix linting issues after updating prettier * Only expose necessary files from libs/importer Fix tsconfig files - Removes the trailing /index on imports in web/cli As the spec-files no longer can access the internals via @bitwarden/importer they import by path (../src/importers) * Add barrel files to vendors with more than one importer
136 lines
4.3 KiB
TypeScript
136 lines
4.3 KiB
TypeScript
import { ExportData } from "../../../src/importers/onepassword/types/onepassword-1pux-importer-types";
|
|
|
|
export const LoginData: ExportData = {
|
|
accounts: [
|
|
{
|
|
attrs: {
|
|
accountName: "Wendy Appleseed",
|
|
name: "Wendy Appleseed",
|
|
avatar: "profile-pic.png",
|
|
email: "wendy.c.appleseed@gmail.com",
|
|
uuid: "D4RI47B7BJDT25C2LWA7LEJLHZ",
|
|
domain: "https://my.1password.com/",
|
|
},
|
|
vaults: [
|
|
{
|
|
attrs: {
|
|
uuid: "rr3lr6c2opoggvrete23q72ahi",
|
|
desc: "",
|
|
avatar: "pic.png",
|
|
name: "Personal",
|
|
type: "P",
|
|
},
|
|
items: [
|
|
{
|
|
uuid: "2b3hr6p5hinr7prtrj65bwmxqu",
|
|
favIndex: 0,
|
|
createdAt: 1635522833,
|
|
updatedAt: 1635522872,
|
|
trashed: false,
|
|
categoryUuid: "001",
|
|
details: {
|
|
loginFields: [
|
|
{
|
|
value: "username123123123@gmail.com",
|
|
id: "",
|
|
name: "email",
|
|
fieldType: "E",
|
|
designation: "username",
|
|
},
|
|
{
|
|
value: "password!",
|
|
id: "",
|
|
name: "password",
|
|
fieldType: "P",
|
|
designation: "password",
|
|
},
|
|
{
|
|
value: "",
|
|
id: "terms",
|
|
name: "terms",
|
|
fieldType: "C",
|
|
},
|
|
{
|
|
value: "✓",
|
|
id: "policies",
|
|
name: "policies",
|
|
fieldType: "C",
|
|
},
|
|
],
|
|
sections: [
|
|
{
|
|
title: "Saved on www.fakesite.com",
|
|
name: "Section_mlvk6wzoifml4rbs4c3rfu4e2a",
|
|
fields: [
|
|
{
|
|
title: "Create an account",
|
|
id: "cyqyggt2otns6tbbqtsl6w2ceu",
|
|
value: {
|
|
string: "username123123",
|
|
},
|
|
indexAtSource: 0,
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "default",
|
|
},
|
|
},
|
|
{
|
|
title: "one-time password",
|
|
id: "TOTP_564mvwqapphpsjetnnuovmuxum",
|
|
value: {
|
|
totp: "otpseed777",
|
|
},
|
|
indexAtSource: 0,
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "default",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
passwordHistory: [
|
|
{
|
|
value: "123uio123oiu123uiopassword",
|
|
time: 1635522872,
|
|
},
|
|
{
|
|
value: "123uio123oiu123uiopassword123",
|
|
time: 1635522854,
|
|
},
|
|
{
|
|
value: "123uio123oiu123uiopassword123123",
|
|
time: 1635522848,
|
|
},
|
|
],
|
|
},
|
|
overview: {
|
|
subtitle: "username123123@gmail.com",
|
|
urls: [
|
|
{
|
|
label: "website",
|
|
url: "https://www.fakesite.com",
|
|
},
|
|
],
|
|
title: "eToro",
|
|
url: "https://www.fakesite.com",
|
|
ps: 54,
|
|
pbe: 0.0,
|
|
pgrng: false,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|