Merging changes

This commit is contained in:
Matthew Aaron Raymer
2023-11-08 14:47:48 +08:00
28 changed files with 1051 additions and 1020 deletions

View File

@@ -7,5 +7,5 @@ export interface Contact {
}
export const ContactsSchema = {
contacts: "++did, name, publicKeyBase64, registered, seesMe",
contacts: "&did, name, publicKeyBase64, registered, seesMe",
};

View File

@@ -13,7 +13,6 @@ export type BoundingBox = {
*/
export type Settings = {
id: number; // Only one entry using MASTER_SETTINGS_KEY
activeDid?: string; // Active Decentralized ID
apiServer?: string; // API server URL
firstName?: string; // User's first name
@@ -22,6 +21,7 @@ export type Settings = {
lastNotifiedClaimId?: string; // Last notified claim ID
// Array of named search boxes defined by bounding boxes
searchBoxes?: Array<{
name: string;
bbox: BoundingBox;