mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
* updated report components to only show can edit ciphers, added badges, spec files --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
129 lines
2.8 KiB
TypeScript
129 lines
2.8 KiB
TypeScript
export const cipherData: any[] = [
|
|
{
|
|
initializerKey: 1,
|
|
id: "cbea34a8-bde4-46ad-9d19-b05001228ab1",
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "Cannot Be Edited",
|
|
notes: null,
|
|
isDeleted: false,
|
|
type: 1,
|
|
favorite: false,
|
|
organizationUseTotp: false,
|
|
login: {
|
|
password: "123",
|
|
},
|
|
edit: false,
|
|
viewPassword: true,
|
|
collectionIds: [],
|
|
revisionDate: "2023-08-03T17:40:59.793Z",
|
|
creationDate: "2023-08-03T17:40:59.793Z",
|
|
deletedDate: null,
|
|
reprompt: 0,
|
|
localData: null,
|
|
},
|
|
{
|
|
initializerKey: 1,
|
|
id: "cbea34a8-bde4-46ad-9d19-b05001228ab2",
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "Can Be Edited id ending 2",
|
|
notes: null,
|
|
isDeleted: false,
|
|
type: 1,
|
|
favorite: false,
|
|
organizationUseTotp: false,
|
|
login: {
|
|
password: "123",
|
|
hasUris: true,
|
|
uris: [
|
|
{
|
|
uri: "http://nothing.com",
|
|
},
|
|
],
|
|
},
|
|
edit: true,
|
|
viewPassword: true,
|
|
collectionIds: [],
|
|
revisionDate: "2023-08-03T17:40:59.793Z",
|
|
creationDate: "2023-08-03T17:40:59.793Z",
|
|
deletedDate: null,
|
|
reprompt: 0,
|
|
localData: null,
|
|
},
|
|
{
|
|
initializerKey: 1,
|
|
id: "cbea34a8-bde4-46ad-9d19-b05001228cd3",
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "Can Be Edited id ending 3",
|
|
notes: null,
|
|
type: 1,
|
|
favorite: false,
|
|
organizationUseTotp: false,
|
|
login: {
|
|
password: "123",
|
|
hasUris: true,
|
|
uris: [
|
|
{
|
|
uri: "http://example.com",
|
|
},
|
|
],
|
|
},
|
|
edit: true,
|
|
viewPassword: true,
|
|
collectionIds: [],
|
|
revisionDate: "2023-08-03T17:40:59.793Z",
|
|
creationDate: "2023-08-03T17:40:59.793Z",
|
|
deletedDate: null,
|
|
reprompt: 0,
|
|
localData: null,
|
|
},
|
|
{
|
|
initializerKey: 1,
|
|
id: "cbea34a8-bde4-46ad-9d19-b05001228xy4",
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "Can Be Edited id ending 4",
|
|
notes: null,
|
|
type: 1,
|
|
favorite: false,
|
|
organizationUseTotp: false,
|
|
login: {
|
|
hasUris: true,
|
|
uris: [{ uri: "101domain.com" }],
|
|
},
|
|
edit: true,
|
|
viewPassword: true,
|
|
collectionIds: [],
|
|
revisionDate: "2023-08-03T17:40:59.793Z",
|
|
creationDate: "2023-08-03T17:40:59.793Z",
|
|
deletedDate: null,
|
|
reprompt: 0,
|
|
localData: null,
|
|
},
|
|
{
|
|
initializerKey: 1,
|
|
id: "cbea34a8-bde4-46ad-9d19-b05001227nm5",
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "Can Be Edited id ending 5",
|
|
notes: null,
|
|
type: 1,
|
|
favorite: false,
|
|
organizationUseTotp: false,
|
|
login: {
|
|
hasUris: true,
|
|
uris: [{ uri: "123formbuilder.com" }],
|
|
},
|
|
edit: true,
|
|
viewPassword: true,
|
|
collectionIds: [],
|
|
revisionDate: "2023-08-03T17:40:59.793Z",
|
|
creationDate: "2023-08-03T17:40:59.793Z",
|
|
deletedDate: null,
|
|
reprompt: 0,
|
|
localData: null,
|
|
},
|
|
];
|