From 1a9585e50b8d2bda345855a9b1cac1c998259747 Mon Sep 17 00:00:00 2001 From: Gyanesh Gouraw Date: Mon, 15 Apr 2024 13:13:24 +0530 Subject: [PATCH] Updated description of authorization_details parameter as suggested in review comments --- src/auth/oauth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/oauth.ts b/src/auth/oauth.ts index 7b8751815..459881415 100644 --- a/src/auth/oauth.ts +++ b/src/auth/oauth.ts @@ -147,7 +147,7 @@ export interface PushedAuthorizationRequest extends ClientCredentials { code_challenge?: string; /** - * A JSON stringified an array of objects. It Can carry fine-grained authorization data in OAuth messages as part of Rich Authorization Requests(RAR) {@link https://auth0.com/docs/get-started/authentication-and-authorization-flow/authorization-code-flow/authorization-code-flow-with-rar | Reference} + * A JSON stringified array of objects. It can carry fine-grained authorization data in OAuth messages as part of Rich Authorization Requests (RAR) {@link https://auth0.com/docs/get-started/authentication-and-authorization-flow/authorization-code-flow/authorization-code-flow-with-rar | Reference} */ authorization_details?: string;