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 f3471f5 commit b939f9c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions frontend/src/client/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ export type Body_login_login_access_token = {
client_secret?: string | null
}

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

export type HTTPValidationError = {
detail?: Array<ValidationError>
}
Expand Down Expand Up @@ -44,13 +51,6 @@ export type NewPassword = {
new_password: string
}

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

export type Token = {
access_token: string
token_type?: string
Expand Down Expand Up @@ -166,7 +166,7 @@ export type RecoverPasswordHtmlContentData = {
export type RecoverPasswordHtmlContentResponse = string

export type CreateUserData = {
requestBody: PrivateCreateUser
requestBody: CreateUser
}

export type CreateUserResponse = UserPublic
Expand Down

0 comments on commit b939f9c

Please sign in to comment.