chore: generate

thinking-toggle-wip
GitHub Action 2025-12-26 17:09:31 +00:00 committed by Aiden Cline
parent 1c35e59e4f
commit dcc5b7d6db
2 changed files with 14 additions and 4 deletions

View File

@ -1154,6 +1154,11 @@ export type KeybindsConfig = {
tips_toggle?: string
}
/**
* Log level
*/
export type LogLevel = "DEBUG" | "INFO" | "WARN" | "ERROR"
/**
* Server configuration for opencode serve and web commands
*/
@ -1409,10 +1414,7 @@ export type Config = {
*/
theme?: string
keybinds?: KeybindsConfig
/**
* Log level
*/
logLevel?: "DEBUG" | "INFO" | "WARN" | "ERROR"
logLevel?: LogLevel
/**
* TUI specific settings
*/

View File

@ -7697,6 +7697,11 @@
},
"additionalProperties": false
},
"LogLevel": {
"description": "Log level",
"type": "string",
"enum": ["DEBUG", "INFO", "WARN", "ERROR"]
},
"ServerConfig": {
"description": "Server configuration for opencode serve and web commands",
"type": "object",
@ -8174,6 +8179,9 @@
"keybinds": {
"$ref": "#/components/schemas/KeybindsConfig"
},
"logLevel": {
"$ref": "#/components/schemas/LogLevel"
},
"tui": {
"description": "TUI specific settings",
"type": "object",