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:
committed by
GitHub
parent
282bffa217
commit
c8a1761f16
File diff suppressed because it is too large
Load Diff
@ -8,6 +8,8 @@ class OAuth2ClientInfo(BaseModel):
|
||||
|
||||
csrf_token: Optional[str] = None
|
||||
|
||||
oidc_nonce: Optional[str] = None
|
||||
|
||||
pkce_code_verifier: Optional[str] = None
|
||||
|
||||
url: Optional[str] = None
|
||||
|
@ -27693,6 +27693,11 @@
|
||||
"description": "Value used for [CSRF](https://tools.ietf.org/html/rfc6749#section-10.12) protection via the `state` parameter.",
|
||||
"type": "string"
|
||||
},
|
||||
"oidc_nonce": {
|
||||
"nullable": true,
|
||||
"description": "Nonce required for OIDC flows.",
|
||||
"type": "string"
|
||||
},
|
||||
"pkce_code_verifier": {
|
||||
"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 \"-\" / \".\" / \"_\" / \"~\".",
|
||||
|
Reference in New Issue
Block a user