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