⬆️ Update @hey-api/openapi-ts dependency version and update dependabot config (#1845)
This commit is contained in:
@@ -212,6 +212,31 @@ export const NewPasswordSchema = {
|
||||
title: "NewPassword",
|
||||
} as const
|
||||
|
||||
export const PrivateUserCreateSchema = {
|
||||
properties: {
|
||||
email: {
|
||||
type: "string",
|
||||
title: "Email",
|
||||
},
|
||||
password: {
|
||||
type: "string",
|
||||
title: "Password",
|
||||
},
|
||||
full_name: {
|
||||
type: "string",
|
||||
title: "Full Name",
|
||||
},
|
||||
is_verified: {
|
||||
type: "boolean",
|
||||
title: "Is Verified",
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
type: "object",
|
||||
required: ["email", "password", "full_name"],
|
||||
title: "PrivateUserCreate",
|
||||
} as const
|
||||
|
||||
export const TokenSchema = {
|
||||
properties: {
|
||||
access_token: {
|
||||
|
||||
Reference in New Issue
Block a user