BitbucketServerSession
Home > @backstage/core-app-api > BitbucketServerSession
Session information for Bitbucket Server auth.
Signature:
export type BitbucketServerSession = {
    providerInfo: {
        accessToken: string;
        scopes: Set<string>;
        expiresAt?: Date;
    };
    profile: ProfileInfo;
    backstageIdentity: BackstageIdentityResponse;
};
References: ProfileInfo, BackstageIdentityResponse