chore: generate
This commit is contained in:
parent
245a63e3cf
commit
b8c2f9db59
2 changed files with 30 additions and 0 deletions
|
|
@ -595,6 +595,13 @@ export type EventTuiToastShow = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type EventMcpToolsChanged = {
|
||||||
|
type: "mcp.tools.changed"
|
||||||
|
properties: {
|
||||||
|
server: string
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export type EventCommandExecuted = {
|
export type EventCommandExecuted = {
|
||||||
type: "command.executed"
|
type: "command.executed"
|
||||||
properties: {
|
properties: {
|
||||||
|
|
@ -761,6 +768,7 @@ export type Event =
|
||||||
| EventTuiPromptAppend
|
| EventTuiPromptAppend
|
||||||
| EventTuiCommandExecute
|
| EventTuiCommandExecute
|
||||||
| EventTuiToastShow
|
| EventTuiToastShow
|
||||||
|
| EventMcpToolsChanged
|
||||||
| EventCommandExecuted
|
| EventCommandExecuted
|
||||||
| EventSessionCreated
|
| EventSessionCreated
|
||||||
| EventSessionUpdated
|
| EventSessionUpdated
|
||||||
|
|
|
||||||
|
|
@ -6645,6 +6645,25 @@
|
||||||
},
|
},
|
||||||
"required": ["type", "properties"]
|
"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": {
|
"Event.command.executed": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
@ -7142,6 +7161,9 @@
|
||||||
{
|
{
|
||||||
"$ref": "#/components/schemas/Event.tui.toast.show"
|
"$ref": "#/components/schemas/Event.tui.toast.show"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/Event.mcp.tools.changed"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"$ref": "#/components/schemas/Event.command.executed"
|
"$ref": "#/components/schemas/Event.command.executed"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue