Skip to content

Commit ac0fc38

Browse files
author
github-actions
committed
✨ Autogenerate frontend client
1 parent 0e2f437 commit ac0fc38

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

frontend/src/client/schemas.gen.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,31 @@ export const NewPasswordSchema = {
212212
title: "NewPassword",
213213
} as const
214214

215+
export const PrivateUserCreateSchema = {
216+
properties: {
217+
email: {
218+
type: "string",
219+
title: "Email",
220+
},
221+
password: {
222+
type: "string",
223+
title: "Password",
224+
},
225+
full_name: {
226+
type: "string",
227+
title: "Full Name",
228+
},
229+
is_verified: {
230+
type: "boolean",
231+
title: "Is Verified",
232+
default: false,
233+
},
234+
},
235+
type: "object",
236+
required: ["email", "password", "full_name"],
237+
title: "PrivateUserCreate",
238+
} as const
239+
215240
export const TokenSchema = {
216241
properties: {
217242
access_token: {

0 commit comments

Comments
 (0)