Skip to content

Commit 9bd5fe8

Browse files
committed
10.8.4
1 parent 372e741 commit 9bd5fe8

File tree

6 files changed

+78
-48
lines changed

6 files changed

+78
-48
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.melloware</groupId>
55
<artifactId>quarkus-primereact</artifactId>
6-
<version>10.8.3</version>
6+
<version>10.8.4</version>
77
<name>Quarkus PrimeReact</name>
88
<description>Quarkus monorepo demonstrating Panache REST server with PrimeReact UI client</description>
99
<url>https://github.com/melloware/quarkus-monorepo</url>

src/main/webui/openapi.json

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"/entity/cars" : {
2626
"get" : {
2727
"tags" : [ "Car Resource" ],
28+
"description" : "List",
2829
"parameters" : [ {
2930
"name" : "request",
3031
"in" : "query",
@@ -47,6 +48,7 @@
4748
},
4849
"post" : {
4950
"tags" : [ "Car Resource" ],
51+
"description" : "Create",
5052
"requestBody" : {
5153
"content" : {
5254
"application/json" : {
@@ -66,6 +68,7 @@
6668
"/entity/cars/manufacturers" : {
6769
"get" : {
6870
"tags" : [ "Car Resource" ],
71+
"description" : "Get Manufacturers",
6972
"responses" : {
7073
"200" : {
7174
"description" : "OK",
@@ -86,6 +89,7 @@
8689
"/entity/cars/{id}" : {
8790
"get" : {
8891
"tags" : [ "Car Resource" ],
92+
"description" : "Get Single",
8993
"parameters" : [ {
9094
"name" : "id",
9195
"in" : "path",
@@ -111,6 +115,7 @@
111115
},
112116
"put" : {
113117
"tags" : [ "Car Resource" ],
118+
"description" : "Update",
114119
"parameters" : [ {
115120
"name" : "id",
116121
"in" : "path",
@@ -145,6 +150,7 @@
145150
},
146151
"delete" : {
147152
"tags" : [ "Car Resource" ],
153+
"description" : "Delete",
148154
"parameters" : [ {
149155
"name" : "id",
150156
"in" : "path",
@@ -166,7 +172,7 @@
166172
"summary" : "Return info on all loggers, or a specific logger",
167173
"description" : "Logging Manager Loggers",
168174
"get" : {
169-
"tags" : [ "Logging-manager" ],
175+
"tags" : [ "logging-manager" ],
170176
"summary" : "Information on Logger(s)",
171177
"description" : "Get information on all loggers or a specific logger.",
172178
"operationId" : "logging_manager_get_all",
@@ -197,7 +203,7 @@
197203
}
198204
},
199205
"post" : {
200-
"tags" : [ "Logging-manager" ],
206+
"tags" : [ "logging-manager" ],
201207
"summary" : "Update log level",
202208
"description" : "Update a log level for a certain logger",
203209
"operationId" : "logging_manager_update",
@@ -207,10 +213,10 @@
207213
"schema" : {
208214
"type" : "object",
209215
"properties" : {
216+
"loggerName" : { },
210217
"loggerLevel" : {
211218
"$ref" : "#/components/schemas/LoggerLevel"
212-
},
213-
"loggerName" : { }
219+
}
214220
}
215221
}
216222
}
@@ -227,7 +233,7 @@
227233
"summary" : "Return all levels that is available",
228234
"description" : "All available levels",
229235
"get" : {
230-
"tags" : [ "Logging-manager" ],
236+
"tags" : [ "logging-manager" ],
231237
"summary" : "Get all available levels",
232238
"description" : "This returns all possible log levels",
233239
"operationId" : "logging_manager_levels",
@@ -461,7 +467,7 @@
461467
},
462468
"price" : {
463469
"description" : "Price",
464-
"minimum" : 0,
470+
"minimum" : 0.00,
465471
"type" : "number",
466472
"example" : 9999.99
467473
},
@@ -624,44 +630,44 @@
624630
"LoggerInfo" : {
625631
"type" : "object",
626632
"properties" : {
627-
"name" : {
628-
"type" : "string"
633+
"effectiveLevel" : {
634+
"$ref" : "#/components/schemas/LoggerLevel"
629635
},
630636
"configuredLevel" : {
631637
"$ref" : "#/components/schemas/LoggerLevel"
632638
},
633-
"effectiveLevel" : {
634-
"$ref" : "#/components/schemas/LoggerLevel"
639+
"name" : {
640+
"type" : "string"
635641
}
636642
}
637643
},
638644
"HealthResponse" : {
639645
"type" : "object",
640646
"properties" : {
641-
"status" : {
642-
"enum" : [ "UP", "DOWN" ],
643-
"type" : "string"
644-
},
645647
"checks" : {
646648
"type" : "array",
647649
"items" : {
648650
"$ref" : "#/components/schemas/HealthCheck"
649651
}
652+
},
653+
"status" : {
654+
"enum" : [ "UP", "DOWN" ],
655+
"type" : "string"
650656
}
651657
}
652658
},
653659
"HealthCheck" : {
654660
"type" : "object",
655661
"properties" : {
656-
"name" : {
662+
"status" : {
663+
"enum" : [ "UP", "DOWN" ],
657664
"type" : "string"
658665
},
659666
"data" : {
660667
"type" : "object",
661668
"nullable" : true
662669
},
663-
"status" : {
664-
"enum" : [ "UP", "DOWN" ],
670+
"name" : {
665671
"type" : "string"
666672
}
667673
}

src/main/webui/openapi.yaml

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ paths:
2222
get:
2323
tags:
2424
- Car Resource
25+
description: List
2526
parameters:
2627
- name: request
2728
in: query
@@ -37,6 +38,7 @@ paths:
3738
post:
3839
tags:
3940
- Car Resource
41+
description: Create
4042
requestBody:
4143
content:
4244
application/json:
@@ -49,6 +51,7 @@ paths:
4951
get:
5052
tags:
5153
- Car Resource
54+
description: Get Manufacturers
5255
responses:
5356
"200":
5457
description: OK
@@ -62,6 +65,7 @@ paths:
6265
get:
6366
tags:
6467
- Car Resource
68+
description: Get Single
6569
parameters:
6670
- name: id
6771
in: path
@@ -80,6 +84,7 @@ paths:
8084
put:
8185
tags:
8286
- Car Resource
87+
description: Update
8388
parameters:
8489
- name: id
8590
in: path
@@ -103,6 +108,7 @@ paths:
103108
delete:
104109
tags:
105110
- Car Resource
111+
description: Delete
106112
parameters:
107113
- name: id
108114
in: path
@@ -119,7 +125,7 @@ paths:
119125
description: Logging Manager Loggers
120126
get:
121127
tags:
122-
- Logging-manager
128+
- logging-manager
123129
summary: Information on Logger(s)
124130
description: Get information on all loggers or a specific logger.
125131
operationId: logging_manager_get_all
@@ -141,7 +147,7 @@ paths:
141147
description: Not Found
142148
post:
143149
tags:
144-
- Logging-manager
150+
- logging-manager
145151
summary: Update log level
146152
description: Update a log level for a certain logger
147153
operationId: logging_manager_update
@@ -151,9 +157,9 @@ paths:
151157
schema:
152158
type: object
153159
properties:
160+
loggerName: {}
154161
loggerLevel:
155162
$ref: "#/components/schemas/LoggerLevel"
156-
loggerName: {}
157163
responses:
158164
"201":
159165
description: Created
@@ -162,7 +168,7 @@ paths:
162168
description: All available levels
163169
get:
164170
tags:
165-
- Logging-manager
171+
- logging-manager
166172
summary: Get all available levels
167173
description: This returns all possible log levels
168174
operationId: logging_manager_levels
@@ -336,7 +342,7 @@ components:
336342
example: 891d4c
337343
price:
338344
description: Price
339-
minimum: 0
345+
minimum: 0.00
340346
type: number
341347
example: 9999.99
342348
modifiedTime:
@@ -477,34 +483,34 @@ components:
477483
LoggerInfo:
478484
type: object
479485
properties:
480-
name:
481-
type: string
482-
configuredLevel:
483-
$ref: "#/components/schemas/LoggerLevel"
484486
effectiveLevel:
485487
$ref: "#/components/schemas/LoggerLevel"
488+
configuredLevel:
489+
$ref: "#/components/schemas/LoggerLevel"
490+
name:
491+
type: string
486492
HealthResponse:
487493
type: object
488494
properties:
495+
checks:
496+
type: array
497+
items:
498+
$ref: "#/components/schemas/HealthCheck"
489499
status:
490500
enum:
491501
- UP
492502
- DOWN
493503
type: string
494-
checks:
495-
type: array
496-
items:
497-
$ref: "#/components/schemas/HealthCheck"
498504
HealthCheck:
499505
type: object
500506
properties:
501-
name:
502-
type: string
503-
data:
504-
type: object
505-
nullable: true
506507
status:
507508
enum:
508509
- UP
509510
- DOWN
510511
type: string
512+
data:
513+
type: object
514+
nullable: true
515+
name:
516+
type: string

src/main/webui/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quarkus-primereact",
3-
"version": "10.8.3",
3+
"version": "10.8.4",
44
"description": "Quarkus monorepo demonstrating Quarkus REST server with PrimeReact UI client.",
55
"homepage": ".",
66
"private": false,
@@ -16,7 +16,7 @@
1616
"primeflex": "3.3.1",
1717
"primeicons": "7.0.0",
1818
"primelocale": "1.0.4",
19-
"primereact": "10.8.3",
19+
"primereact": "10.8.4",
2020
"react": "18.3.1",
2121
"react-dom": "18.3.1",
2222
"react-hook-form": "7.53.0",

0 commit comments

Comments
 (0)