From d59896eb0229f1490c712f19cf84eb2bcf123698 Mon Sep 17 00:00:00 2001 From: Gabriel Day Date: Wed, 14 Jun 2023 13:22:31 -0500 Subject: [PATCH] fix(authentication): Export JwtVerifyOptions (#3214) --- packages/authentication/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/authentication/src/index.ts b/packages/authentication/src/index.ts index 47962f995b..f7ea82a173 100644 --- a/packages/authentication/src/index.ts +++ b/packages/authentication/src/index.ts @@ -6,7 +6,8 @@ export { AuthenticationResult, AuthenticationStrategy, AuthenticationParams, - ConnectionEvent + ConnectionEvent, + JwtVerifyOptions } from './core' export { AuthenticationBaseStrategy } from './strategy' export { AuthenticationService } from './service'