diff --git a/frontend/src/client/types.gen.ts b/frontend/src/client/types.gen.ts index 376d6e3..3480bfc 100644 --- a/frontend/src/client/types.gen.ts +++ b/frontend/src/client/types.gen.ts @@ -316,6 +316,12 @@ export type AdventureEntryItem = { * Story Text */ story_text: string | null; + /** + * Story Text Linguistic Data + */ + story_text_linguistic_data: { + [key: string]: unknown; + } | null; /** * Translation */ @@ -674,6 +680,12 @@ export type EntryDetailResponse = { * Audio File Name */ audio_file_name: string | null; + /** + * Story Text Linguistic Data + */ + story_text_linguistic_data: { + [key: string]: unknown; + } | null; }; /**