chore: generate
parent
1c35e59e4f
commit
dcc5b7d6db
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue