File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ import type { paths as openapi } from "../openapi/openapi-typescript.ts"
33/**
44 * Overrides Bitbucket Cloud's OpenAPI schema.
55 */
6- export interface paths
7- extends Omit < openapi , "/repositories/{workspace}/{repo_slug}/refs/branches" > {
6+ export interface paths extends Omit <
7+ openapi ,
8+ "/repositories/{workspace}/{repo_slug}/refs/branches"
9+ > {
810 readonly "/repositories/{workspace}/{repo_slug}/refs/branches" : Omit <
911 openapi [ "/repositories/{workspace}/{repo_slug}/refs/branches" ] ,
1012 "post"
Original file line number Diff line number Diff line change @@ -9,20 +9,17 @@ export type SchemaRestPullRequestActivity =
99 | SchemaRestPullRequestActivityUpdated
1010type User = SchemaRestPullRequestActivityBase [ "user" ]
1111
12- export interface SchemaRestPullRequestActivityCommented
13- extends SchemaRestPullRequestActivityBase {
12+ export interface SchemaRestPullRequestActivityCommented extends SchemaRestPullRequestActivityBase {
1413 readonly action : "COMMENTED"
1514 readonly comment ?: SchemaRestComment
1615 readonly commentAnchor ?: SchemaRestComment [ "anchor" ]
1716}
1817
19- export interface SchemaRestPullRequestActivityOpened
20- extends SchemaRestPullRequestActivityBase {
18+ export interface SchemaRestPullRequestActivityOpened extends SchemaRestPullRequestActivityBase {
2119 readonly action : "OPENED"
2220}
2321
24- export interface SchemaRestPullRequestActivityUpdated
25- extends SchemaRestPullRequestActivityBase {
22+ export interface SchemaRestPullRequestActivityUpdated extends SchemaRestPullRequestActivityBase {
2623 readonly action : "UPDATED"
2724 readonly addedReviewers : User [ ]
2825 readonly removedReviewers : User [ ]
You can’t perform that action at this time.
0 commit comments