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; } ```