Skip to content

Commit 68e6c54

Browse files
committed
chore: generate
1 parent b572c68 commit 68e6c54

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

packages/sdk/js/src/v2/gen/types.gen.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,14 @@ export type EventMcpToolsChanged = {
692692
}
693693
}
694694

695+
export type EventMcpBrowserOpenFailed = {
696+
type: "mcp.browser.open.failed"
697+
properties: {
698+
mcpName: string
699+
url: string
700+
}
701+
}
702+
695703
export type EventCommandExecuted = {
696704
type: "command.executed"
697705
properties: {
@@ -875,6 +883,7 @@ export type Event =
875883
| EventTuiToastShow
876884
| EventTuiSessionSelect
877885
| EventMcpToolsChanged
886+
| EventMcpBrowserOpenFailed
878887
| EventCommandExecuted
879888
| EventSessionCreated
880889
| EventSessionUpdated

packages/sdk/openapi.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7473,6 +7473,28 @@
74737473
},
74747474
"required": ["type", "properties"]
74757475
},
7476+
"Event.mcp.browser.open.failed": {
7477+
"type": "object",
7478+
"properties": {
7479+
"type": {
7480+
"type": "string",
7481+
"const": "mcp.browser.open.failed"
7482+
},
7483+
"properties": {
7484+
"type": "object",
7485+
"properties": {
7486+
"mcpName": {
7487+
"type": "string"
7488+
},
7489+
"url": {
7490+
"type": "string"
7491+
}
7492+
},
7493+
"required": ["mcpName", "url"]
7494+
}
7495+
},
7496+
"required": ["type", "properties"]
7497+
},
74767498
"Event.command.executed": {
74777499
"type": "object",
74787500
"properties": {
@@ -8016,6 +8038,9 @@
80168038
{
80178039
"$ref": "#/components/schemas/Event.mcp.tools.changed"
80188040
},
8041+
{
8042+
"$ref": "#/components/schemas/Event.mcp.browser.open.failed"
8043+
},
80198044
{
80208045
"$ref": "#/components/schemas/Event.command.executed"
80218046
},

0 commit comments

Comments
 (0)