chore: [frontend] Generate API types

This commit is contained in:
wilson 2026-04-18 17:25:31 +01:00
parent ae9e50721b
commit fd96396c30
4 changed files with 55 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

View file

@ -1522,6 +1522,42 @@ export type RemoveLearnableLanguageApiAccountLearnableLanguagesLanguageIdDeleteR
export type RemoveLearnableLanguageApiAccountLearnableLanguagesLanguageIdDeleteResponse = RemoveLearnableLanguageApiAccountLearnableLanguagesLanguageIdDeleteResponses[keyof RemoveLearnableLanguageApiAccountLearnableLanguagesLanguageIdDeleteResponses];
export type SearchWordformsPrefixApiDictionarySearchGetData = {
body?: never;
path?: never;
query: {
/**
* Lang Code
*/
lang_code: string;
/**
* Text
*/
text: string;
};
url: '/api/dictionary/search';
};
export type SearchWordformsPrefixApiDictionarySearchGetErrors = {
/**
* Validation Error
*/
422: HttpValidationError;
};
export type SearchWordformsPrefixApiDictionarySearchGetError = SearchWordformsPrefixApiDictionarySearchGetErrors[keyof SearchWordformsPrefixApiDictionarySearchGetErrors];
export type SearchWordformsPrefixApiDictionarySearchGetResponses = {
/**
* Response Search Wordforms Prefix Api Dictionary Search Get
*
* Successful Response
*/
200: Array<WordformMatch>;
};
export type SearchWordformsPrefixApiDictionarySearchGetResponse = SearchWordformsPrefixApiDictionarySearchGetResponses[keyof SearchWordformsPrefixApiDictionarySearchGetResponses];
export type SearchWordformsApiDictionaryWordformsGetData = {
body?: never;
path?: never;