/** * Bitbucket client implementation. * * Uses the proto-generated REST API Integration Plugin type from @superblocksteam/types. * Bitbucket integrations use the REST API Integration plugin under the hood. */ import { RestApiIntegrationClient } from "../base/index.js"; import type { BitbucketClient } from "./types.js"; /** * Internal implementation of BitbucketClient. * * Extends RestApiIntegrationClient to inherit the generic apiRequest() method. * This implementation communicates with the orchestrator to execute * Bitbucket API calls. At runtime, the orchestrator handles authentication * and API request execution. */ export class BitbucketClientImpl extends RestApiIntegrationClient implements BitbucketClient { // Inherits: name, pluginId, config, executeQuery, apiRequest() }