chore: generate

thinking-toggle-wip
GitHub Action 2025-12-24 01:37:35 +00:00 committed by Aiden Cline
parent 245a63e3cf
commit b8c2f9db59
2 changed files with 30 additions and 0 deletions

View File

@ -595,6 +595,13 @@ export type EventTuiToastShow = {
}
}
export type EventMcpToolsChanged = {
type: "mcp.tools.changed"
properties: {
server: string
}
}
export type EventCommandExecuted = {
type: "command.executed"
properties: {
@ -761,6 +768,7 @@ export type Event =
| EventTuiPromptAppend
| EventTuiCommandExecute
| EventTuiToastShow
| EventMcpToolsChanged
| EventCommandExecuted
| EventSessionCreated
| EventSessionUpdated

View File

@ -6645,6 +6645,25 @@
},
"required": ["type", "properties"]
},
"Event.mcp.tools.changed": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "mcp.tools.changed"
},
"properties": {
"type": "object",
"properties": {
"server": {
"type": "string"
}
},
"required": ["server"]
}
},
"required": ["type", "properties"]
},
"Event.command.executed": {
"type": "object",
"properties": {
@ -7142,6 +7161,9 @@
{
"$ref": "#/components/schemas/Event.tui.toast.show"
},
{
"$ref": "#/components/schemas/Event.mcp.tools.changed"
},
{
"$ref": "#/components/schemas/Event.command.executed"
},