chore: generate

This commit is contained in:
opencode-agent[bot]
2026-03-16 18:00:18 +00:00
parent e5cbecf17c
commit 410fbd8a00
2 changed files with 29 additions and 29 deletions

View File

@@ -162,6 +162,13 @@ export type EventFileWatcherUpdated = {
} }
} }
export type EventVcsBranchUpdated = {
type: "vcs.branch.updated"
properties: {
branch?: string
}
}
export type EventServerConnected = { export type EventServerConnected = {
type: "server.connected" type: "server.connected"
properties: { properties: {
@@ -882,13 +889,6 @@ export type EventSessionError = {
} }
} }
export type EventVcsBranchUpdated = {
type: "vcs.branch.updated"
properties: {
branch?: string
}
}
export type EventWorkspaceReady = { export type EventWorkspaceReady = {
type: "workspace.ready" type: "workspace.ready"
properties: { properties: {
@@ -968,6 +968,7 @@ export type Event =
| EventPermissionAsked | EventPermissionAsked
| EventPermissionReplied | EventPermissionReplied
| EventFileWatcherUpdated | EventFileWatcherUpdated
| EventVcsBranchUpdated
| EventServerConnected | EventServerConnected
| EventGlobalDisposed | EventGlobalDisposed
| EventLspClientDiagnostics | EventLspClientDiagnostics
@@ -994,7 +995,6 @@ export type Event =
| EventSessionDeleted | EventSessionDeleted
| EventSessionDiff | EventSessionDiff
| EventSessionError | EventSessionError
| EventVcsBranchUpdated
| EventWorkspaceReady | EventWorkspaceReady
| EventWorkspaceFailed | EventWorkspaceFailed
| EventPtyCreated | EventPtyCreated

View File

@@ -7337,6 +7337,24 @@
}, },
"required": ["type", "properties"] "required": ["type", "properties"]
}, },
"Event.vcs.branch.updated": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "vcs.branch.updated"
},
"properties": {
"type": "object",
"properties": {
"branch": {
"type": "string"
}
}
}
},
"required": ["type", "properties"]
},
"Event.server.connected": { "Event.server.connected": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -9387,24 +9405,6 @@
}, },
"required": ["type", "properties"] "required": ["type", "properties"]
}, },
"Event.vcs.branch.updated": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "vcs.branch.updated"
},
"properties": {
"type": "object",
"properties": {
"branch": {
"type": "string"
}
}
}
},
"required": ["type", "properties"]
},
"Event.workspace.ready": { "Event.workspace.ready": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -9629,6 +9629,9 @@
{ {
"$ref": "#/components/schemas/Event.file.watcher.updated" "$ref": "#/components/schemas/Event.file.watcher.updated"
}, },
{
"$ref": "#/components/schemas/Event.vcs.branch.updated"
},
{ {
"$ref": "#/components/schemas/Event.server.connected" "$ref": "#/components/schemas/Event.server.connected"
}, },
@@ -9707,9 +9710,6 @@
{ {
"$ref": "#/components/schemas/Event.session.error" "$ref": "#/components/schemas/Event.session.error"
}, },
{
"$ref": "#/components/schemas/Event.vcs.branch.updated"
},
{ {
"$ref": "#/components/schemas/Event.workspace.ready" "$ref": "#/components/schemas/Event.workspace.ready"
}, },