diff --git a/server/application-server/openapi.yaml b/server/application-server/openapi.yaml index 2d0e2d03..f4b6f8c9 100644 --- a/server/application-server/openapi.yaml +++ b/server/application-server/openapi.yaml @@ -231,7 +231,6 @@ components: $ref: "#/components/schemas/PullRequest" PullRequest: required: - - prNumber - state - title - url @@ -253,9 +252,6 @@ components: type: string url: type: string - prNumber: - type: integer - format: int32 state: type: string description: |- diff --git a/webapp/src/app/core/modules/openapi/model/pull-request.ts b/webapp/src/app/core/modules/openapi/model/pull-request.ts index c6275663..98c19061 100644 --- a/webapp/src/app/core/modules/openapi/model/pull-request.ts +++ b/webapp/src/app/core/modules/openapi/model/pull-request.ts @@ -23,7 +23,6 @@ export interface PullRequest { number?: number; title: string; url: string; - prNumber: number; /** * State of the PullRequest. Does not include the state of the merge. */