From df7ea8e22fc88cfc7005a7e9cfe5e8f2ded63fe5 Mon Sep 17 00:00:00 2001 From: Andy Caruso Date: Tue, 22 Mar 2022 09:15:46 -0700 Subject: [PATCH] Update API docs Signed-off-by: Andy Caruso --- plugins/auth-node/api-report.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/plugins/auth-node/api-report.md b/plugins/auth-node/api-report.md index c577ccb353..f7fdd6369b 100644 --- a/plugins/auth-node/api-report.md +++ b/plugins/auth-node/api-report.md @@ -30,12 +30,9 @@ export function getBearerTokenFromAuthorizationHeader( // @public export class IdentityClient { authenticate(token: string | undefined): Promise; - static create( - options: { - discovery: PluginEndpointDiscovery; - issuer: string; - }, - cooldownMs?: number, - ): IdentityClient; + static create(options: { + discovery: PluginEndpointDiscovery; + issuer: string; + }): IdentityClient; } ```