chore: frontend types

This commit is contained in:
wilson 2026-05-08 08:57:03 +01:00
parent 01e09680c8
commit 213b7562fa

View file

@ -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;
};
/**