Skip to content

Commit

Permalink
Pull Requests: Get / Create (#8190)
Browse files Browse the repository at this point in the history
* Pull Requests: Get / Create

* Fix tests

* CR fixes
  • Loading branch information
N-o-Z authored Sep 19, 2024
1 parent b75038e commit b6e5add
Show file tree
Hide file tree
Showing 43 changed files with 1,600 additions and 467 deletions.
53 changes: 27 additions & 26 deletions api/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1742,33 +1742,34 @@ components:
type: string

PullRequest:
type: object
required:
- id
- status
- creation_date
- title
- author
- description
- source_branch
- destination_branch
allOf:
- $ref: '#/components/schemas/PullRequestBasic'
properties:
id:
type: string
creation_date:
type: integer
format: int64
author:
type: string
source_branch:
type: string
destination_branch:
type: string
commit_id:
type: string
description: the commit id of merged PRs
- $ref: '#/components/schemas/PullRequestBasic'
- required:
- status
- title
- description
- type: object
required:
- id
- creation_date
- author
- source_branch
- destination_branch
properties:
id:
type: string
creation_date:
type: string
format: date-time
author:
type: string
source_branch:
type: string
destination_branch:
type: string
merged_commit_id:
type: string
description: the commit id of merged PRs

PullRequestsList:
type: object
Expand Down
3 changes: 3 additions & 0 deletions clients/java-legacy/.openapi-generator/FILES

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions clients/java-legacy/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 30 additions & 44 deletions clients/java-legacy/api/openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions clients/java-legacy/docs/PullRequest.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions clients/java-legacy/docs/PullRequestAllOf.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b6e5add

Please sign in to comment.