import type { paths as openapi } from "../openapi/openapi-typescript.ts"; /** * Overrides Bitbucket Cloud's OpenAPI schema. */ export interface paths extends Omit { readonly "/repositories/{workspace}/{repo_slug}/refs/branches": Omit & { readonly post: Omit & { readonly requestBody: { readonly content: { readonly "application/json": CreateBranchRequest; }; }; }; }; } /** Request to create a branch. */ export interface CreateBranchRequest { /** Name of the new branch */ readonly name: string; /** Where to point the new branch to */ readonly target: Target; } export interface Target { readonly hash: string; } //# sourceMappingURL=paths.d.ts.map