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