From 9379bff8d2f72b63e95700a1f843b881efeb85b1 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Thu, 25 Jan 2024 11:47:30 +0100 Subject: [PATCH] auth-backend-module-aws-alb-provider: update PassportProfile import Signed-off-by: Patrik Oldsberg --- .../src/authenticator.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/auth-backend-module-aws-alb-provider/src/authenticator.ts b/plugins/auth-backend-module-aws-alb-provider/src/authenticator.ts index 1da92e43e4..d7ca79927f 100644 --- a/plugins/auth-backend-module-aws-alb-provider/src/authenticator.ts +++ b/plugins/auth-backend-module-aws-alb-provider/src/authenticator.ts @@ -15,9 +15,12 @@ */ import { AuthenticationError } from '@backstage/errors'; -import { AwsAlbClaims, AwsAlbResult, PassportProfile } from './types'; +import { AwsAlbClaims, AwsAlbResult } from './types'; import { jwtVerify } from 'jose'; -import { createProxyAuthenticator } from '@backstage/plugin-auth-node'; +import { + PassportProfile, + createProxyAuthenticator, +} from '@backstage/plugin-auth-node'; import NodeCache from 'node-cache'; import { makeProfileInfo, provisionKeyCache } from './helpers';