mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-28 12:45:45 +01:00
e47415fe91
* Replaced field trashed with state The new field state contains either 'active' or 'archived' Adjust all the test files to have the new field Add unit test to verify skipping archived items on import Fix importer * Add addtional fields to 1pux importer types No mapping currently necessary * Field indexAtSource was deprecated Removing it from the 1pux-importer-types Updating all the test files * Removed remaining instances of indexAtSource * Fixed a leftover instance of trashed -> state --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
163 lines
5.5 KiB
TypeScript
163 lines
5.5 KiB
TypeScript
import { ExportData } from "../../../src/importers/onepassword/types/onepassword-1pux-importer-types";
|
|
|
|
export const OutdoorLicenseData: ExportData = {
|
|
accounts: [
|
|
{
|
|
attrs: {
|
|
accountName: "1Password Customer",
|
|
name: "1Password Customer",
|
|
avatar: "",
|
|
email: "username123123123@gmail.com",
|
|
uuid: "TRIZ3XV4JJFRXJ3BARILLTUA6E",
|
|
domain: "https://my.1password.com/",
|
|
},
|
|
vaults: [
|
|
{
|
|
attrs: {
|
|
uuid: "pqcgbqjxr4tng2hsqt5ffrgwju",
|
|
desc: "Just test entries",
|
|
avatar: "ke7i5rxnjrh3tj6uesstcosspu.png",
|
|
name: "T's Test Vault",
|
|
type: "U",
|
|
},
|
|
items: [
|
|
{
|
|
uuid: "6fb73t5lk7vc52h3osw3ccmguy",
|
|
favIndex: 0,
|
|
createdAt: 1619467374,
|
|
updatedAt: 1619467492,
|
|
state: "active",
|
|
categoryUuid: "104",
|
|
details: {
|
|
loginFields: [],
|
|
notesPlain: "My Outdoor License",
|
|
sections: [
|
|
{
|
|
title: "",
|
|
fields: [
|
|
{
|
|
title: "full name",
|
|
id: "name",
|
|
value: {
|
|
string: "Cash Bandit",
|
|
},
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "words",
|
|
},
|
|
},
|
|
{
|
|
title: "valid from",
|
|
id: "valid_from",
|
|
value: {
|
|
date: 1617278460,
|
|
},
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "default",
|
|
},
|
|
},
|
|
{
|
|
title: "expires",
|
|
id: "expires",
|
|
value: {
|
|
date: 2343124860,
|
|
},
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "default",
|
|
},
|
|
},
|
|
{
|
|
title: "approved wildlife",
|
|
id: "game",
|
|
value: {
|
|
string: "Bananas,blueberries,corn",
|
|
},
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "words",
|
|
},
|
|
},
|
|
{
|
|
title: "maximum quota",
|
|
id: "quota",
|
|
value: {
|
|
string: "100/each",
|
|
},
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "default",
|
|
},
|
|
},
|
|
{
|
|
title: "state",
|
|
id: "state",
|
|
value: {
|
|
string: "Washington",
|
|
},
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "words",
|
|
},
|
|
},
|
|
{
|
|
title: "country",
|
|
id: "country",
|
|
value: {
|
|
string: "United States of America",
|
|
},
|
|
guarded: false,
|
|
multiline: false,
|
|
dontGenerate: false,
|
|
inputTraits: {
|
|
keyboard: "default",
|
|
correction: "default",
|
|
capitalization: "words",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
passwordHistory: [],
|
|
},
|
|
overview: {
|
|
subtitle: "Cash Bandit",
|
|
title: "Harvest License",
|
|
url: "",
|
|
ps: 0,
|
|
pbe: 0.0,
|
|
pgrng: false,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|