chore: generate
This commit is contained in:
@@ -692,6 +692,14 @@ export type EventMcpToolsChanged = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type EventMcpBrowserOpenFailed = {
|
||||||
|
type: "mcp.browser.open.failed"
|
||||||
|
properties: {
|
||||||
|
mcpName: string
|
||||||
|
url: string
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export type EventCommandExecuted = {
|
export type EventCommandExecuted = {
|
||||||
type: "command.executed"
|
type: "command.executed"
|
||||||
properties: {
|
properties: {
|
||||||
@@ -875,6 +883,7 @@ export type Event =
|
|||||||
| EventTuiToastShow
|
| EventTuiToastShow
|
||||||
| EventTuiSessionSelect
|
| EventTuiSessionSelect
|
||||||
| EventMcpToolsChanged
|
| EventMcpToolsChanged
|
||||||
|
| EventMcpBrowserOpenFailed
|
||||||
| EventCommandExecuted
|
| EventCommandExecuted
|
||||||
| EventSessionCreated
|
| EventSessionCreated
|
||||||
| EventSessionUpdated
|
| EventSessionUpdated
|
||||||
|
|||||||
@@ -7473,6 +7473,28 @@
|
|||||||
},
|
},
|
||||||
"required": ["type", "properties"]
|
"required": ["type", "properties"]
|
||||||
},
|
},
|
||||||
|
"Event.mcp.browser.open.failed": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"const": "mcp.browser.open.failed"
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"mcpName": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"url": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["mcpName", "url"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["type", "properties"]
|
||||||
|
},
|
||||||
"Event.command.executed": {
|
"Event.command.executed": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@@ -8016,6 +8038,9 @@
|
|||||||
{
|
{
|
||||||
"$ref": "#/components/schemas/Event.mcp.tools.changed"
|
"$ref": "#/components/schemas/Event.mcp.tools.changed"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/Event.mcp.browser.open.failed"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"$ref": "#/components/schemas/Event.command.executed"
|
"$ref": "#/components/schemas/Event.command.executed"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user