diff --git a/packages/types/change.interface.ts b/packages/types/change.interface.ts index a7de0f849..e83e34160 100644 --- a/packages/types/change.interface.ts +++ b/packages/types/change.interface.ts @@ -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 } diff --git a/packages/types/index.ts b/packages/types/index.ts index 12b14d94c..c860626fd 100644 --- a/packages/types/index.ts +++ b/packages/types/index.ts @@ -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'