chore: [frontend] update types
This commit is contained in:
parent
d54f98d007
commit
1b54536647
4 changed files with 41 additions and 4 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -296,6 +296,10 @@ export type AdventureEntryItem = {
|
|||
* Adventure Id
|
||||
*/
|
||||
adventure_id: string;
|
||||
/**
|
||||
* Possible Choices
|
||||
*/
|
||||
possible_choices: Array<AdventureChoiceItem> | null;
|
||||
/**
|
||||
* Generated From Choice Id
|
||||
*/
|
||||
|
|
@ -3169,6 +3173,34 @@ export type ListPacksForSelectionBffPacksGetResponses = {
|
|||
|
||||
export type ListPacksForSelectionBffPacksGetResponse = ListPacksForSelectionBffPacksGetResponses[keyof ListPacksForSelectionBffPacksGetResponses];
|
||||
|
||||
export type GetAdventureAudioFileMediaAdventureAudioFilenameGetData = {
|
||||
body?: never;
|
||||
path: {
|
||||
/**
|
||||
* Filename
|
||||
*/
|
||||
filename: string;
|
||||
};
|
||||
query?: never;
|
||||
url: '/media/adventure-audio/{filename}';
|
||||
};
|
||||
|
||||
export type GetAdventureAudioFileMediaAdventureAudioFilenameGetErrors = {
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type GetAdventureAudioFileMediaAdventureAudioFilenameGetError = GetAdventureAudioFileMediaAdventureAudioFilenameGetErrors[keyof GetAdventureAudioFileMediaAdventureAudioFilenameGetErrors];
|
||||
|
||||
export type GetAdventureAudioFileMediaAdventureAudioFilenameGetResponses = {
|
||||
/**
|
||||
* Successful Response
|
||||
*/
|
||||
200: unknown;
|
||||
};
|
||||
|
||||
export type GetMediaFileMediaFilenameGetData = {
|
||||
body?: never;
|
||||
path: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue