Skip to content

Commit cc24f5c

Browse files
chore(formatting): regenerate openapi spec and TypeScript types
The rename of the rule request parameter from 'format' to 'style' and the ['groups' => []] default for the condition parameter changed the API contract, but the generated openapi.json and openapi.ts were not regenerated. Regenerate both so the openapi CI check matches the code. AI-assistant: Claude Code 2.1.263 (Claude Fable 5.1) Claude-Session: https://claude.ai/code/session_01XfLgKWUTg2M1jPdqgQz3FD Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
1 parent 7c09253 commit cc24f5c

2 files changed

Lines changed: 16 additions & 8 deletions

File tree

openapi.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7574,7 +7574,9 @@
75747574
},
75757575
"condition": {
75767576
"type": "object",
7577-
"default": {},
7577+
"default": {
7578+
"groups": []
7579+
},
75787580
"description": "Condition set definition",
75797581
"required": [
75807582
"groups"
@@ -7652,7 +7654,7 @@
76527654
}
76537655
}
76547656
},
7655-
"format": {
7657+
"style": {
76567658
"type": "object",
76577659
"default": {},
76587660
"description": "Style definition",
@@ -7846,7 +7848,9 @@
78467848
},
78477849
"condition": {
78487850
"type": "object",
7849-
"default": {},
7851+
"default": {
7852+
"groups": []
7853+
},
78507854
"description": "Condition set definition",
78517855
"required": [
78527856
"groups"
@@ -7924,7 +7928,7 @@
79247928
}
79257929
}
79267930
},
7927-
"format": {
7931+
"style": {
79287932
"type": "object",
79297933
"default": {},
79307934
"description": "Style definition",

src/types/openapi/openapi.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5060,7 +5060,9 @@ export interface operations {
50605060
readonly enabled?: boolean;
50615061
/**
50625062
* @description Condition set definition
5063-
* @default {}
5063+
* @default {
5064+
* "groups": []
5065+
* }
50645066
*/
50655067
readonly condition?: {
50665068
readonly groups: readonly {
@@ -5078,7 +5080,7 @@ export interface operations {
50785080
* @description Style definition
50795081
* @default {}
50805082
*/
5081-
readonly format?: {
5083+
readonly style?: {
50825084
readonly backgroundColor?: string;
50835085
readonly textColor?: string;
50845086
/** @enum {string} */
@@ -5187,7 +5189,9 @@ export interface operations {
51875189
readonly enabled?: boolean;
51885190
/**
51895191
* @description Condition set definition
5190-
* @default {}
5192+
* @default {
5193+
* "groups": []
5194+
* }
51915195
*/
51925196
readonly condition?: {
51935197
readonly groups: readonly {
@@ -5205,7 +5209,7 @@ export interface operations {
52055209
* @description Style definition
52065210
* @default {}
52075211
*/
5208-
readonly format?: {
5212+
readonly style?: {
52095213
readonly backgroundColor?: string;
52105214
readonly textColor?: string;
52115215
/** @enum {string} */

0 commit comments

Comments
 (0)