⬆️ Update @hey-api/openapi-ts dependency version and update dependabot config (#1845)

This commit is contained in:
Alejandra
2025-09-07 23:49:07 +02:00
committed by GitHub
parent 948e7c92c6
commit e4bfdfa856
5 changed files with 365 additions and 64 deletions

View File

@@ -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: {