UNPKG

sfdx-hardis

Version:

Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards

21 lines (20 loc) 1.1 kB
import { GitProviderRoot } from './gitProviderRoot.js'; import { CommonPullRequestInfo, PullRequestMessageRequest, PullRequestMessageResult } from './index.js'; export declare class BitbucketProvider extends GitProviderRoot { private bitbucket; serverUrl: string; token: string; constructor(); getLabel(): string; getCurrentJobUrl(): Promise<string | null>; getCurrentBranchUrl(): Promise<string | null>; supportsMermaidInPrMarkdown(): Promise<boolean>; getPullRequestInfo(): Promise<CommonPullRequestInfo | null>; getBranchDeploymentCheckId(gitBranch: string): Promise<string | null>; getPullRequestDeploymentCheckId(): Promise<string | null>; private getDeploymentIdFromPullRequest; listPullRequestsInBranchSinceLastMerge(currentBranchName: string, targetBranchName: string, childBranchesNames: string[]): Promise<CommonPullRequestInfo[]>; postPullRequestMessage(prMessage: PullRequestMessageRequest): Promise<PullRequestMessageResult>; private completePullRequestInfo; uploadImage(localImagePath: string): Promise<string | null>; }