chore: generate

This commit is contained in:
GitHub Action
2026-01-03 07:16:11 +00:00
parent 5c5e636030
commit 527553ada2
3 changed files with 33 additions and 14 deletions

View File

@@ -1566,7 +1566,12 @@ export type Config = {
* MCP (Model Context Protocol) server configurations
*/
mcp?: {
[key: string]: McpLocalConfig | McpRemoteConfig
[key: string]:
| McpLocalConfig
| McpRemoteConfig
| {
enabled: boolean
}
}
formatter?:
| false

View File

@@ -8817,6 +8817,8 @@
"type": "string"
},
"additionalProperties": {
"anyOf": [
{
"anyOf": [
{
"$ref": "#/components/schemas/McpLocalConfig"
@@ -8825,6 +8827,18 @@
"$ref": "#/components/schemas/McpRemoteConfig"
}
]
},
{
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
}
},
"required": ["enabled"],
"additionalProperties": false
}
]
}
},
"formatter": {