Skip to content

Commit 061d103

Browse files
updates generated client
1 parent 752a5d1 commit 061d103

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

frontend/src/client/schemas.gen.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export const NewPasswordSchema = {
202202
},
203203
new_password: {
204204
type: 'string',
205-
maxLength: 40,
205+
maxLength: 128,
206206
minLength: 8,
207207
title: 'New Password'
208208
}
@@ -258,13 +258,13 @@ export const UpdatePasswordSchema = {
258258
properties: {
259259
current_password: {
260260
type: 'string',
261-
maxLength: 40,
261+
maxLength: 128,
262262
minLength: 8,
263263
title: 'Current Password'
264264
},
265265
new_password: {
266266
type: 'string',
267-
maxLength: 40,
267+
maxLength: 128,
268268
minLength: 8,
269269
title: 'New Password'
270270
}
@@ -306,7 +306,7 @@ export const UserCreateSchema = {
306306
},
307307
password: {
308308
type: 'string',
309-
maxLength: 40,
309+
maxLength: 128,
310310
minLength: 8,
311311
title: 'Password'
312312
}
@@ -367,7 +367,7 @@ export const UserRegisterSchema = {
367367
},
368368
password: {
369369
type: 'string',
370-
maxLength: 40,
370+
maxLength: 128,
371371
minLength: 8,
372372
title: 'Password'
373373
},
@@ -430,7 +430,7 @@ export const UserUpdateSchema = {
430430
anyOf: [
431431
{
432432
type: 'string',
433-
maxLength: 40,
433+
maxLength: 128,
434434
minLength: 8
435435
},
436436
{

0 commit comments

Comments
 (0)