File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ export type Body_login_login_access_token = {
9
9
client_secret ?: string | null
10
10
}
11
11
12
+ export type CreateUser = {
13
+ email : string
14
+ password : string
15
+ full_name : string
16
+ is_verified ?: boolean
17
+ }
18
+
12
19
export type HTTPValidationError = {
13
20
detail ?: Array < ValidationError >
14
21
}
@@ -44,13 +51,6 @@ export type NewPassword = {
44
51
new_password : string
45
52
}
46
53
47
- export type PrivateCreateUser = {
48
- email : string
49
- password : string
50
- full_name : string
51
- is_verified ?: boolean
52
- }
53
-
54
54
export type Token = {
55
55
access_token : string
56
56
token_type ?: string
@@ -166,7 +166,7 @@ export type RecoverPasswordHtmlContentData = {
166
166
export type RecoverPasswordHtmlContentResponse = string
167
167
168
168
export type CreateUserData = {
169
- requestBody : PrivateCreateUser
169
+ requestBody : CreateUser
170
170
}
171
171
172
172
export type CreateUserResponse = UserPublic
You can’t perform that action at this time.
0 commit comments