Skip to content

Commit

Permalink
PR 10.8.2 Orval 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Aug 6, 2024
1 parent b3cfb8c commit 721764a
Show file tree
Hide file tree
Showing 6 changed files with 421 additions and 295 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.melloware</groupId>
<artifactId>quarkus-primereact</artifactId>
<version>10.8.0</version>
<version>10.8.2</version>
<name>Quarkus PrimeReact</name>
<description>Quarkus monorepo demonstrating Panache REST server with PrimeReact UI client</description>
<url>https://github.com/melloware/quarkus-monorepo</url>
Expand Down
12 changes: 6 additions & 6 deletions src/main/webui/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,10 @@
"schema" : {
"type" : "object",
"properties" : {
"loggerName" : { },
"loggerLevel" : {
"$ref" : "#/components/schemas/LoggerLevel"
}
},
"loggerName" : { }
}
}
}
Expand Down Expand Up @@ -624,14 +624,14 @@
"LoggerInfo" : {
"type" : "object",
"properties" : {
"name" : {
"type" : "string"
"configuredLevel" : {
"$ref" : "#/components/schemas/LoggerLevel"
},
"effectiveLevel" : {
"$ref" : "#/components/schemas/LoggerLevel"
},
"configuredLevel" : {
"$ref" : "#/components/schemas/LoggerLevel"
"name" : {
"type" : "string"
}
}
},
Expand Down
10 changes: 5 additions & 5 deletions src/main/webui/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ paths:
schema:
type: object
properties:
loggerName: {}
loggerLevel:
$ref: "#/components/schemas/LoggerLevel"
loggerName: {}
responses:
"201":
description: Created
Expand Down Expand Up @@ -477,12 +477,12 @@ components:
LoggerInfo:
type: object
properties:
name:
type: string
effectiveLevel:
$ref: "#/components/schemas/LoggerLevel"
configuredLevel:
$ref: "#/components/schemas/LoggerLevel"
effectiveLevel:
$ref: "#/components/schemas/LoggerLevel"
name:
type: string
HealthCheckResponse:
type: object
properties:
Expand Down
Loading

0 comments on commit 721764a

Please sign in to comment.