Skip to content

Commit

Permalink
run ES lint over change interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Danble committed Jan 9, 2025
1 parent 0cb0108 commit b41fa87
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions packages/types/change.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ type FieldOptions =
'morphology' | 'local_orthography' | 'semantic_domains' |
'parts_of_speech' | 'phonetic' | 'dialects' | 'interlinearization' |
'notes' | 'sources' | 'example_sentence' | 'noun_class' |
'variant' | 'gloss' | 'plural_form' | 'scientific_names';
'variant' | 'gloss' | 'plural_form' | 'scientific_names'

export interface Change {
updatedBy: string;
updatedName: string;
entryId: string;
entryName: string;
dictionaryId: string;
dictionaryName: string;
previousValue: string | string[];
currentValue: string | string[];
field: FieldOptions;
updatedAtMs: number;
updatedBy: string
updatedName: string
entryId: string
entryName: string
dictionaryId: string
dictionaryName: string
previousValue: string | string[]
currentValue: string | string[]
field: FieldOptions
updatedAtMs: number
}
2 changes: 1 addition & 1 deletion packages/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ export { type IPrintFields, StandardPrintFields } from './print-entry.interface'
export { type EntryFieldValue, type i18nEntryFieldKey } from './entry-fields.enum'
export type { ContentUpdateRequestBody } from './supabase/content-update.interface'
export type { UnsupportedFields } from './supabase/unsupported.interface'
export type { Change } from './change.interface';
export type { Change } from './change.interface'
export type { Database, Tables, TablesInsert, TablesUpdate } from './supabase/combined.types'

0 comments on commit b41fa87

Please sign in to comment.