diff --git a/plugins/scaffolder-backend-module-bitbucket-cloud/report.api.md b/plugins/scaffolder-backend-module-bitbucket-cloud/report.api.md index b853023b07..67c05a4ea5 100644 --- a/plugins/scaffolder-backend-module-bitbucket-cloud/report.api.md +++ b/plugins/scaffolder-backend-module-bitbucket-cloud/report.api.md @@ -13,6 +13,24 @@ import { TemplateAction } from '@backstage/plugin-scaffolder-node'; const bitbucketCloudModule: BackendFeature; export default bitbucketCloudModule; +// @public +export function createBitbucketCloudBranchRestrictionAction(options: { + integrations: ScmIntegrationRegistry; +}): TemplateAction< + { + repoUrl: string; + kind: string; + branchMatchKind?: string | undefined; + branchType?: string | undefined; + pattern?: string | undefined; + value?: number | undefined; + users?: object[] | undefined; + groups?: object[] | undefined; + token?: string | undefined; + }, + JsonObject +>; + // @public export const createBitbucketPipelinesRunAction: (options: { integrations: ScmIntegrationRegistry;