Skip to content

Commit

Permalink
update notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-8 committed Nov 3, 2023
1 parent 2a8de57 commit d4d5ea5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 91 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules

*.local

.eslintcache
.eslintcache
notes
81 changes: 0 additions & 81 deletions notes/history-table.md

This file was deleted.

18 changes: 9 additions & 9 deletions packages/types/entry.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ export interface ExpandedEntry extends IFirestoreMetaDataAbbreviated {
}

export interface ExpandedSense {
glosses?: IGloss;
parts_of_speech_keys?: string[];
glosses?: IGloss; // jsonb object
parts_of_speech_keys?: string[]; // jsonb array
translated_parts_of_speech?: string[];
ld_semantic_domains_keys?: string[];
ld_semantic_domains_keys?: string[]; // jsonb array
translated_ld_semantic_domains?: string[];
write_in_semantic_domains?: string[];
example_sentences?: IExampleSentence[];
photo_files?: ExpandedPhoto[];
video_files?: ExpandedVideo[];
noun_class?: string;
definition_english?: string;
write_in_semantic_domains?: string[]; // jsonb array
example_sentences?: IExampleSentence[]; // junction table
photo_files?: ExpandedPhoto[]; // junction table
video_files?: ExpandedVideo[]; // junction table
noun_class?: string; // varchar
definition_english?: string; // text
}

export interface DatabaseSense {
Expand Down

0 comments on commit d4d5ea5

Please sign in to comment.