import type { PassportProfile } from '@backstage/plugin-auth-node/'; /** * JWT header extraction result, containing the raw value and the parsed JWT * payload. * * @public */ export type AwsAlbResult = { fullProfile: PassportProfile; expiresInSeconds?: number; accessToken: string; }; /** * @public */ export type AwsAlbClaims = { sub: string; name: string; family_name: string; given_name: string; picture: string; email: string; exp: number; iss: string; };