Add config example, changeset and API reports

Signed-off-by: Jake Smith <jakemgsmith@gmail.com>
This commit is contained in:
Jake Smith
2025-11-22 03:41:05 +00:00
committed by Fredrik Adelöw
parent 959e6ecc5a
commit 37fba1d8ec
4 changed files with 47 additions and 8 deletions
+10 -2
View File
@@ -250,6 +250,8 @@ export type BitbucketCloudIntegrationConfig = {
username?: string;
appPassword?: string;
token?: string;
clientId?: string;
clientSecret?: string;
commitSigningKey?: string;
};
@@ -450,12 +452,18 @@ export function getBitbucketCloudFileFetchUrl(
config: BitbucketCloudIntegrationConfig,
): string;
// @public
export function getBitbucketCloudOAuthToken(
clientId: string,
clientSecret: string,
): Promise<string>;
// @public
export function getBitbucketCloudRequestOptions(
config: BitbucketCloudIntegrationConfig,
): {
): Promise<{
headers: Record<string, string>;
};
}>;
// @public @deprecated
export function getBitbucketDefaultBranch(