We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e2f437 commit ac0fc38Copy full SHA for ac0fc38
frontend/src/client/schemas.gen.ts
@@ -212,6 +212,31 @@ export const NewPasswordSchema = {
212
title: "NewPassword",
213
} as const
214
215
+export const PrivateUserCreateSchema = {
216
+ properties: {
217
+ email: {
218
+ type: "string",
219
+ title: "Email",
220
+ },
221
+ password: {
222
223
+ title: "Password",
224
225
+ full_name: {
226
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
+
240
export const TokenSchema = {
241
properties: {
242
access_token: {
0 commit comments