Merge branch 'master' into db-set-and-bak

This commit is contained in:
2023-03-19 11:30:00 -06:00
11 changed files with 496 additions and 16 deletions

View File

@@ -14,6 +14,18 @@ export const AccountsSchema = {
"++id, dateCreated, derivationPath, $identity, $mnemonic, publicKeyHex",
};
export interface Contact {
did: string;
name?: string;
publicKeyBase64?: string;
seesMe?: boolean;
registered?: boolean;
}
export const ContactsSchema = {
contacts: "++did, name, publicKeyBase64, registered, seesMe",
};
// a singleton
export type Settings = {
id: number;