From 318edce60377cd32bf2b09f9ade74cc372315606 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Mon, 17 Feb 2025 22:36:57 +0100 Subject: [PATCH] docs: update CIBA group tags --- docs/README.md | 2 +- src/index.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/README.md b/docs/README.md index d08384bd..b171c72f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -57,7 +57,7 @@ Support from the community to continue maintaining and improving this module is - [clientCredentialsGrantRequest](functions/clientCredentialsGrantRequest.md) - [processClientCredentialsResponse](functions/processClientCredentialsResponse.md) -## Client-Initiated Backchannel Authentication +## Client-Initiated Backchannel Authentication (CIBA) - [backchannelAuthenticationGrantRequest](functions/backchannelAuthenticationGrantRequest.md) - [backchannelAuthenticationRequest](functions/backchannelAuthenticationRequest.md) diff --git a/src/index.ts b/src/index.ts index e82652e8..8d3dba86 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6003,7 +6003,7 @@ export interface BackchannelAuthenticationRequestOptions * @param clientAuthentication Client Authentication Method. * @param parameters Backchannel Authentication Request parameters. * - * @group Client-Initiated Backchannel Authentication + * @group Client-Initiated Backchannel Authentication (CIBA) * * @see [OpenID Connect Client-Initiated Backchannel Authentication](https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html#auth_request) */ @@ -6063,7 +6063,7 @@ export interface BackchannelAuthenticationResponse { * style errors are rejected using {@link ResponseBodyError}. WWW-Authenticate HTTP Header * challenges are rejected with {@link WWWAuthenticateChallengeError}. * - * @group Client-Initiated Backchannel Authentication + * @group Client-Initiated Backchannel Authentication (CIBA) * * @see [OpenID Connect Client-Initiated Backchannel Authentication](https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html#auth_request) */ @@ -6147,7 +6147,7 @@ export async function processBackchannelAuthenticationResponse( * {@link BackchannelAuthenticationResponse.auth_req_id `auth_req_id`} retrieved from * {@link processBackchannelAuthenticationResponse}. * - * @group Client-Initiated Backchannel Authentication + * @group Client-Initiated Backchannel Authentication (CIBA) * * @see [OpenID Connect Client-Initiated Backchannel Authentication](https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html#token_request) * @see [RFC 9449 - OAuth 2.0 Demonstrating Proof-of-Possession at the Application Layer (DPoP)](https://www.rfc-editor.org/rfc/rfc9449.html#name-dpop-access-token-request) @@ -6188,7 +6188,7 @@ export async function backchannelAuthenticationGrantRequest( * style errors are rejected using {@link ResponseBodyError}. WWW-Authenticate HTTP Header * challenges are rejected with {@link WWWAuthenticateChallengeError}. * - * @group Client-Initiated Backchannel Authentication + * @group Client-Initiated Backchannel Authentication (CIBA) * * @see [OpenID Connect Client-Initiated Backchannel Authentication](https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html#token_request) */