Skip to content

Commit 4bc78c1

Browse files
author
github-actions
committed
✨ Autogenerate frontend client
1 parent 3d56c3a commit 4bc78c1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

frontend/src/client/types.gen.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ export type Body_login_login_access_token = {
99
client_secret?: string | null
1010
}
1111

12+
export type CreateUser = {
13+
email: string
14+
password: string
15+
full_name: string
16+
is_verified?: boolean
17+
}
18+
1219
export type HTTPValidationError = {
1320
detail?: Array<ValidationError>
1421
}
@@ -44,13 +51,6 @@ export type NewPassword = {
4451
new_password: string
4552
}
4653

47-
export type PrivateCreateUser = {
48-
email: string
49-
password: string
50-
full_name: string
51-
is_verified?: boolean
52-
}
53-
5454
export type Token = {
5555
access_token: string
5656
token_type?: string
@@ -166,7 +166,7 @@ export type RecoverPasswordHtmlContentData = {
166166
export type RecoverPasswordHtmlContentResponse = string
167167

168168
export type CreateUserData = {
169-
requestBody: PrivateCreateUser
169+
requestBody: CreateUser
170170
}
171171

172172
export type CreateUserResponse = UserPublic

0 commit comments

Comments
 (0)