Moving things around and preping things for IDAA. Archive, Posts, Recovery Meetings

This commit is contained in:
Scott Idem
2024-09-24 20:05:52 -04:00
parent 6dc89083ec
commit 41706fbcd7
2 changed files with 124 additions and 7 deletions

View File

@@ -60,13 +60,13 @@ export interface Note {
passcode_write_expire?: null|Date
enable: null|boolean;
hide: null|boolean;
priority: null|boolean
sort: null|number;
group: null|string;
notes: null|string;
hide?: null|boolean;
priority?: null|boolean
sort?: null|number;
group?: null|string;
notes?: null|string;
created_on: Date;
updated_on: null|Date;
updated_on?: null|Date;
// Additional fields for convenience (database views)
file_count?: null|number; // Only files directly under a note
@@ -92,7 +92,9 @@ export interface Note {
note_presentation_li?: null|list;
// A key value list of the files
note_file_kv?: null|key_val;
note_file_li?: null|list;
note_file_li?: null|[];
// note_collection_id?: null|string; // For a collection of notes?
// Future standard fields!!!
obj_id?: null|string;