mirror of
https://github.com/bitwarden/browser
synced 2026-02-25 17:13:24 +00:00
* Prevent collection nesting on import into a my items collection My Items collections do not support nested collections. The import source hierarchy needs to be flattened into the My Items collection * Introduce new types for folder and collection relationship Makes it easier to identify which position is for the cipherIndex and which is for the folder-/collection-index * Fix assignment of ciphers to My items collection * Remove unneeded type cast or assertions * Add clarifying comment --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
21 lines
920 B
TypeScript
21 lines
920 B
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
// This import has been flagged as unallowed for this class. It may be involved in a circular dependency loop.
|
|
// eslint-disable-next-line no-restricted-imports
|
|
import { CollectionView } from "@bitwarden/admin-console/common";
|
|
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
|
|
import { FolderView } from "@bitwarden/common/vault/models/view/folder.view";
|
|
|
|
export type FolderRelationship = [cipherIndex: number, folderIndex: number];
|
|
export type CollectionRelationship = [cipherIndex: number, collectionIndex: number];
|
|
|
|
export class ImportResult {
|
|
success = false;
|
|
errorMessage: string;
|
|
ciphers: CipherView[] = [];
|
|
folders: FolderView[] = [];
|
|
folderRelationships: FolderRelationship[] = [];
|
|
collections: CollectionView[] = [];
|
|
collectionRelationships: CollectionRelationship[] = [];
|
|
}
|