Skip to content

Commit

Permalink
✨ Autogenerate frontend client
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 25, 2024
1 parent 13f1f9a commit b4ad168
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions frontend/src/client/types.gen.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,5 @@
// This file is auto-generated by @hey-api/openapi-ts

export type app__api__routes__private__UserCreate = {
email: string
password: string
full_name: string
is_verified?: boolean
}

export type app__models__UserCreate = {
email: string
is_active?: boolean
is_superuser?: boolean
full_name?: string | null
password: string
}

export type Body_login_login_access_token = {
grant_type?: string | null
username: string
Expand Down Expand Up @@ -59,6 +44,13 @@ export type NewPassword = {
new_password: string
}

export type PrivateUserCreate = {
email: string
password: string
full_name: string
is_verified?: boolean
}

export type Token = {
access_token: string
token_type?: string
Expand All @@ -69,6 +61,14 @@ export type UpdatePassword = {
new_password: string
}

export type UserCreate = {
email: string
is_active?: boolean
is_superuser?: boolean
full_name?: string | null
password: string
}

export type UserPublic = {
email: string
is_active?: boolean
Expand Down Expand Up @@ -166,7 +166,7 @@ export type LoginRecoverPasswordHtmlContentData = {
export type LoginRecoverPasswordHtmlContentResponse = string

export type PrivateCreateUserData = {
requestBody: app__api__routes__private__UserCreate
requestBody: PrivateUserCreate
}

export type PrivateCreateUserResponse = UserPublic
Expand All @@ -179,7 +179,7 @@ export type UsersReadUsersData = {
export type UsersReadUsersResponse = UsersPublic

export type UsersCreateUserData = {
requestBody: app__models__UserCreate
requestBody: UserCreate
}

export type UsersCreateUserResponse = UserPublic
Expand Down

0 comments on commit b4ad168

Please sign in to comment.