Update api spec (#425)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2025-04-29 10:05:00 -07:00
committed by GitHub
parent 282bffa217
commit c8a1761f16
3 changed files with 988 additions and 981 deletions

File diff suppressed because it is too large Load Diff

View File

@ -8,6 +8,8 @@ class OAuth2ClientInfo(BaseModel):
csrf_token: Optional[str] = None csrf_token: Optional[str] = None
oidc_nonce: Optional[str] = None
pkce_code_verifier: Optional[str] = None pkce_code_verifier: Optional[str] = None
url: Optional[str] = None url: Optional[str] = None

View File

@ -27693,6 +27693,11 @@
"description": "Value used for [CSRF](https://tools.ietf.org/html/rfc6749#section-10.12) protection via the `state` parameter.", "description": "Value used for [CSRF](https://tools.ietf.org/html/rfc6749#section-10.12) protection via the `state` parameter.",
"type": "string" "type": "string"
}, },
"oidc_nonce": {
"nullable": true,
"description": "Nonce required for OIDC flows.",
"type": "string"
},
"pkce_code_verifier": { "pkce_code_verifier": {
"nullable": true, "nullable": true,
"description": "Code Verifier used for [PKCE]((https://tools.ietf.org/html/rfc7636)) protection via the `code_verifier` parameter. The value must have a minimum length of 43 characters and a maximum length of 128 characters. Each character must be ASCII alphanumeric or one of the characters \"-\" / \".\" / \"_\" / \"~\".", "description": "Code Verifier used for [PKCE]((https://tools.ietf.org/html/rfc7636)) protection via the `code_verifier` parameter. The value must have a minimum length of 43 characters and a maximum length of 128 characters. Each character must be ASCII alphanumeric or one of the characters \"-\" / \".\" / \"_\" / \"~\".",