From b41bae59c702421e9b6a0be01efd8e414564ecde Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 20 Jan 2026 14:30:49 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E2=9C=A8=20Autogenerate=20frontend=20clien?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/client/schemas.gen.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/client/schemas.gen.ts b/frontend/src/client/schemas.gen.ts index a924713d37..fba9429f53 100644 --- a/frontend/src/client/schemas.gen.ts +++ b/frontend/src/client/schemas.gen.ts @@ -6,7 +6,7 @@ export const Body_login_login_access_tokenSchema = { anyOf: [ { type: 'string', - pattern: 'password' + pattern: '^password$' }, { type: 'null' @@ -20,6 +20,7 @@ export const Body_login_login_access_tokenSchema = { }, password: { type: 'string', + format: 'password', title: 'Password' }, scope: { @@ -47,6 +48,7 @@ export const Body_login_login_access_tokenSchema = { type: 'null' } ], + format: 'password', title: 'Client Secret' } }, From f7d59043f09da31a55d32cc3316a0e294455c95d Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 20 Jan 2026 14:58:20 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=A8=20Autogenerate=20frontend=20clien?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/client/schemas.gen.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/client/schemas.gen.ts b/frontend/src/client/schemas.gen.ts index fba9429f53..a924713d37 100644 --- a/frontend/src/client/schemas.gen.ts +++ b/frontend/src/client/schemas.gen.ts @@ -6,7 +6,7 @@ export const Body_login_login_access_tokenSchema = { anyOf: [ { type: 'string', - pattern: '^password$' + pattern: 'password' }, { type: 'null' @@ -20,7 +20,6 @@ export const Body_login_login_access_tokenSchema = { }, password: { type: 'string', - format: 'password', title: 'Password' }, scope: { @@ -48,7 +47,6 @@ export const Body_login_login_access_tokenSchema = { type: 'null' } ], - format: 'password', title: 'Client Secret' } },