🧑‍💻 Implement uv workspaces (#2090)

This commit is contained in:
Alejandra
2026-01-20 19:19:07 +01:00
committed by GitHub
parent fcad8f8270
commit 3a5611aa7f
9 changed files with 2073 additions and 1626 deletions

View File

@@ -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'
}
},