Skip to content

Commit

Permalink
chore: update API specs and client
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 18, 2024
1 parent 6ad7cb8 commit 51c1dfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions server/application-server/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ components:
$ref: "#/components/schemas/PullRequest"
PullRequest:
required:
- number
- prNumber
- state
- title
- url
Expand All @@ -237,7 +237,7 @@ components:
type: string
url:
type: string
number:
prNumber:
type: integer
format: int32
state:
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/app/core/modules/openapi/model/pull-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface PullRequest {
updatedAt?: string;
title: string;
url: string;
number: number;
prNumber: number;
/**
* State of the PullRequest. Does not include the state of the merge.
*/
Expand Down

0 comments on commit 51c1dfc

Please sign in to comment.