Skip to content

Commit

Permalink
fix: update generated files (#57)
Browse files Browse the repository at this point in the history
PR was merged without fixes to generated files (since
diff was mergeable).
  • Loading branch information
toumorokoshi authored Dec 11, 2024
1 parent b765f21 commit 1e024b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions example/bookstore/v1/bookstore_openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"get": {
"summary": "",
"description": "List method for isbn",
"operationId": "isbn.list",
"operationId": "ListIsbn",
"parameters": [
{
"name": "max_page_size",
Expand Down Expand Up @@ -91,7 +91,7 @@
"get": {
"summary": "",
"description": "Get method for isbn",
"operationId": "isbn.get",
"operationId": "GetIsbn",
"parameters": [
{
"name": "isbn",
Expand Down
4 changes: 2 additions & 2 deletions example/bookstore/v1/bookstore_openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ paths:
/isbns:
get:
description: List method for isbn
operationId: isbn.list
operationId: ListIsbn
parameters:
- description: ""
in: query
Expand Down Expand Up @@ -155,7 +155,7 @@ paths:
/isbns/{isbn}:
get:
description: Get method for isbn
operationId: isbn.get
operationId: GetIsbn
parameters:
- description: ""
in: path
Expand Down

0 comments on commit 1e024b8

Please sign in to comment.