Skip to content

Commit

Permalink
10.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Nov 1, 2024
1 parent 372e741 commit 9bd5fe8
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 48 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.3</version>
<version>10.8.4</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
40 changes: 23 additions & 17 deletions src/main/webui/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"/entity/cars" : {
"get" : {
"tags" : [ "Car Resource" ],
"description" : "List",
"parameters" : [ {
"name" : "request",
"in" : "query",
Expand All @@ -47,6 +48,7 @@
},
"post" : {
"tags" : [ "Car Resource" ],
"description" : "Create",
"requestBody" : {
"content" : {
"application/json" : {
Expand All @@ -66,6 +68,7 @@
"/entity/cars/manufacturers" : {
"get" : {
"tags" : [ "Car Resource" ],
"description" : "Get Manufacturers",
"responses" : {
"200" : {
"description" : "OK",
Expand All @@ -86,6 +89,7 @@
"/entity/cars/{id}" : {
"get" : {
"tags" : [ "Car Resource" ],
"description" : "Get Single",
"parameters" : [ {
"name" : "id",
"in" : "path",
Expand All @@ -111,6 +115,7 @@
},
"put" : {
"tags" : [ "Car Resource" ],
"description" : "Update",
"parameters" : [ {
"name" : "id",
"in" : "path",
Expand Down Expand Up @@ -145,6 +150,7 @@
},
"delete" : {
"tags" : [ "Car Resource" ],
"description" : "Delete",
"parameters" : [ {
"name" : "id",
"in" : "path",
Expand All @@ -166,7 +172,7 @@
"summary" : "Return info on all loggers, or a specific logger",
"description" : "Logging Manager Loggers",
"get" : {
"tags" : [ "Logging-manager" ],
"tags" : [ "logging-manager" ],
"summary" : "Information on Logger(s)",
"description" : "Get information on all loggers or a specific logger.",
"operationId" : "logging_manager_get_all",
Expand Down Expand Up @@ -197,7 +203,7 @@
}
},
"post" : {
"tags" : [ "Logging-manager" ],
"tags" : [ "logging-manager" ],
"summary" : "Update log level",
"description" : "Update a log level for a certain logger",
"operationId" : "logging_manager_update",
Expand All @@ -207,10 +213,10 @@
"schema" : {
"type" : "object",
"properties" : {
"loggerName" : { },
"loggerLevel" : {
"$ref" : "#/components/schemas/LoggerLevel"
},
"loggerName" : { }
}
}
}
}
Expand All @@ -227,7 +233,7 @@
"summary" : "Return all levels that is available",
"description" : "All available levels",
"get" : {
"tags" : [ "Logging-manager" ],
"tags" : [ "logging-manager" ],
"summary" : "Get all available levels",
"description" : "This returns all possible log levels",
"operationId" : "logging_manager_levels",
Expand Down Expand Up @@ -461,7 +467,7 @@
},
"price" : {
"description" : "Price",
"minimum" : 0,
"minimum" : 0.00,
"type" : "number",
"example" : 9999.99
},
Expand Down Expand Up @@ -624,44 +630,44 @@
"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"
}
}
},
"HealthResponse" : {
"type" : "object",
"properties" : {
"status" : {
"enum" : [ "UP", "DOWN" ],
"type" : "string"
},
"checks" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/HealthCheck"
}
},
"status" : {
"enum" : [ "UP", "DOWN" ],
"type" : "string"
}
}
},
"HealthCheck" : {
"type" : "object",
"properties" : {
"name" : {
"status" : {
"enum" : [ "UP", "DOWN" ],
"type" : "string"
},
"data" : {
"type" : "object",
"nullable" : true
},
"status" : {
"enum" : [ "UP", "DOWN" ],
"name" : {
"type" : "string"
}
}
Expand Down
42 changes: 24 additions & 18 deletions src/main/webui/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ paths:
get:
tags:
- Car Resource
description: List
parameters:
- name: request
in: query
Expand All @@ -37,6 +38,7 @@ paths:
post:
tags:
- Car Resource
description: Create
requestBody:
content:
application/json:
Expand All @@ -49,6 +51,7 @@ paths:
get:
tags:
- Car Resource
description: Get Manufacturers
responses:
"200":
description: OK
Expand All @@ -62,6 +65,7 @@ paths:
get:
tags:
- Car Resource
description: Get Single
parameters:
- name: id
in: path
Expand All @@ -80,6 +84,7 @@ paths:
put:
tags:
- Car Resource
description: Update
parameters:
- name: id
in: path
Expand All @@ -103,6 +108,7 @@ paths:
delete:
tags:
- Car Resource
description: Delete
parameters:
- name: id
in: path
Expand All @@ -119,7 +125,7 @@ paths:
description: Logging Manager Loggers
get:
tags:
- Logging-manager
- logging-manager
summary: Information on Logger(s)
description: Get information on all loggers or a specific logger.
operationId: logging_manager_get_all
Expand All @@ -141,7 +147,7 @@ paths:
description: Not Found
post:
tags:
- Logging-manager
- logging-manager
summary: Update log level
description: Update a log level for a certain logger
operationId: logging_manager_update
Expand All @@ -151,9 +157,9 @@ paths:
schema:
type: object
properties:
loggerName: {}
loggerLevel:
$ref: "#/components/schemas/LoggerLevel"
loggerName: {}
responses:
"201":
description: Created
Expand All @@ -162,7 +168,7 @@ paths:
description: All available levels
get:
tags:
- Logging-manager
- logging-manager
summary: Get all available levels
description: This returns all possible log levels
operationId: logging_manager_levels
Expand Down Expand Up @@ -336,7 +342,7 @@ components:
example: 891d4c
price:
description: Price
minimum: 0
minimum: 0.00
type: number
example: 9999.99
modifiedTime:
Expand Down Expand Up @@ -477,34 +483,34 @@ components:
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
HealthResponse:
type: object
properties:
checks:
type: array
items:
$ref: "#/components/schemas/HealthCheck"
status:
enum:
- UP
- DOWN
type: string
checks:
type: array
items:
$ref: "#/components/schemas/HealthCheck"
HealthCheck:
type: object
properties:
name:
type: string
data:
type: object
nullable: true
status:
enum:
- UP
- DOWN
type: string
data:
type: object
nullable: true
name:
type: string
12 changes: 6 additions & 6 deletions src/main/webui/package-lock.json

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

4 changes: 2 additions & 2 deletions src/main/webui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quarkus-primereact",
"version": "10.8.3",
"version": "10.8.4",
"description": "Quarkus monorepo demonstrating Quarkus REST server with PrimeReact UI client.",
"homepage": ".",
"private": false,
Expand All @@ -16,7 +16,7 @@
"primeflex": "3.3.1",
"primeicons": "7.0.0",
"primelocale": "1.0.4",
"primereact": "10.8.3",
"primereact": "10.8.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.0",
Expand Down
Loading

0 comments on commit 9bd5fe8

Please sign in to comment.