Moving things around and preping things for IDAA. Archive, Posts, Recovery Meetings
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user