chore: generate

This commit is contained in:
opencode-agent[bot]
2026-02-03 21:10:08 +00:00
parent 95211a8854
commit 2f12e8ee92
2 changed files with 20 additions and 5 deletions

View File

@@ -1403,9 +1403,9 @@ export type AgentConfig = {
[key: string]: unknown [key: string]: unknown
} }
/** /**
* Hex color code for the agent (e.g., #FF5733) * Hex color code (e.g., #FF5733) or theme color (e.g., primary)
*/ */
color?: string color?: string | "primary" | "secondary" | "accent" | "success" | "warning" | "error" | "info"
/** /**
* Maximum number of agentic iterations before forcing text-only response * Maximum number of agentic iterations before forcing text-only response
*/ */
@@ -1430,6 +1430,13 @@ export type AgentConfig = {
[key: string]: unknown [key: string]: unknown
} }
| string | string
| "primary"
| "secondary"
| "accent"
| "success"
| "warning"
| "error"
| "info"
| number | number
| PermissionConfig | PermissionConfig
| undefined | undefined

View File

@@ -9071,9 +9071,17 @@
"additionalProperties": {} "additionalProperties": {}
}, },
"color": { "color": {
"description": "Hex color code for the agent (e.g., #FF5733)", "description": "Hex color code (e.g., #FF5733) or theme color (e.g., primary)",
"type": "string", "anyOf": [
"pattern": "^#[0-9a-fA-F]{6}$" {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$"
},
{
"type": "string",
"enum": ["primary", "secondary", "accent", "success", "warning", "error", "info"]
}
]
}, },
"steps": { "steps": {
"description": "Maximum number of agentic iterations before forcing text-only response", "description": "Maximum number of agentic iterations before forcing text-only response",