From 9514fdc4342dc054bf8cd8877fdfc4382a725b34 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Thu, 25 Jan 2024 12:45:25 +0100 Subject: [PATCH] auth-backend-module-aws-alb-provider: update API report Signed-off-by: Patrik Oldsberg --- plugins/auth-backend-module-aws-alb-provider/api-report.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/plugins/auth-backend-module-aws-alb-provider/api-report.md b/plugins/auth-backend-module-aws-alb-provider/api-report.md index 88e00d87c1..76a366d2c9 100644 --- a/plugins/auth-backend-module-aws-alb-provider/api-report.md +++ b/plugins/auth-backend-module-aws-alb-provider/api-report.md @@ -8,7 +8,7 @@ import { BackendFeature } from '@backstage/backend-plugin-api'; import { JWTHeaderParameters } from 'jose'; import { KeyObject } from 'crypto'; -import passport from 'passport'; +import type { PassportProfile } from '@backstage/plugin-auth-node/'; import { ProxyAuthenticator } from '@backstage/plugin-auth-node'; import { SignInResolverFactory } from '@backstage/plugin-auth-node'; @@ -39,9 +39,4 @@ export namespace awsAlbSignInResolvers { unknown >; } - -// @public (undocumented) -export type PassportProfile = passport.Profile & { - avatarUrl?: string; -}; ```