import { ProfileInfo, BackstageIdentityResponse } from '@backstage/core-plugin-api'; /** * Session information for Bitbucket Server auth. * * @public */ export type BitbucketServerSession = { providerInfo: { accessToken: string; scopes: Set; expiresAt?: Date; }; profile: ProfileInfo; backstageIdentity: BackstageIdentityResponse; };