chore: [frontend] Generate API types
This commit is contained in:
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
|
|
@ -1522,6 +1522,42 @@ export type RemoveLearnableLanguageApiAccountLearnableLanguagesLanguageIdDeleteR
|
||||||
|
|
||||||
export type RemoveLearnableLanguageApiAccountLearnableLanguagesLanguageIdDeleteResponse = RemoveLearnableLanguageApiAccountLearnableLanguagesLanguageIdDeleteResponses[keyof RemoveLearnableLanguageApiAccountLearnableLanguagesLanguageIdDeleteResponses];
|
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 = {
|
export type SearchWordformsApiDictionaryWordformsGetData = {
|
||||||
body?: never;
|
body?: never;
|
||||||
path?: never;
|
path?: never;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue