From 213b7562fa890c573313884e88fc056fb430c441 Mon Sep 17 00:00:00 2001 From: wilson Date: Fri, 8 May 2026 08:57:03 +0100 Subject: [PATCH] chore: frontend types --- frontend/src/client/types.gen.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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; }; /**