chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-11 01:48:25 +00:00
parent a4c686025c
commit 57f9397677
2 changed files with 64 additions and 64 deletions
+17 -17
View File
@@ -469,6 +469,21 @@ export type EventTodoUpdated = {
} }
} }
export type EventWorktreeReady = {
type: "worktree.ready"
properties: {
name: string
branch: string
}
}
export type EventWorktreeFailed = {
type: "worktree.failed"
properties: {
message: string
}
}
export type Pty = { export type Pty = {
id: string id: string
title: string title: string
@@ -508,21 +523,6 @@ export type EventPtyDeleted = {
} }
} }
export type EventWorktreeReady = {
type: "worktree.ready"
properties: {
name: string
branch: string
}
}
export type EventWorktreeFailed = {
type: "worktree.failed"
properties: {
message: string
}
}
export type OutputFormatText = { export type OutputFormatText = {
type: "text" type: "text"
} }
@@ -1005,12 +1005,12 @@ export type Event =
| EventSessionIdle | EventSessionIdle
| EventSessionCompacted | EventSessionCompacted
| EventTodoUpdated | EventTodoUpdated
| EventWorktreeReady
| EventWorktreeFailed
| EventPtyCreated | EventPtyCreated
| EventPtyUpdated | EventPtyUpdated
| EventPtyExited | EventPtyExited
| EventPtyDeleted | EventPtyDeleted
| EventWorktreeReady
| EventWorktreeFailed
| EventMessageUpdated | EventMessageUpdated
| EventMessageRemoved | EventMessageRemoved
| EventMessagePartUpdated | EventMessagePartUpdated
+47 -47
View File
@@ -8351,6 +8351,47 @@
}, },
"required": ["type", "properties"] "required": ["type", "properties"]
}, },
"Event.worktree.ready": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "worktree.ready"
},
"properties": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"branch": {
"type": "string"
}
},
"required": ["name", "branch"]
}
},
"required": ["type", "properties"]
},
"Event.worktree.failed": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "worktree.failed"
},
"properties": {
"type": "object",
"properties": {
"message": {
"type": "string"
}
},
"required": ["message"]
}
},
"required": ["type", "properties"]
},
"Pty": { "Pty": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -8464,47 +8505,6 @@
}, },
"required": ["type", "properties"] "required": ["type", "properties"]
}, },
"Event.worktree.ready": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "worktree.ready"
},
"properties": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"branch": {
"type": "string"
}
},
"required": ["name", "branch"]
}
},
"required": ["type", "properties"]
},
"Event.worktree.failed": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "worktree.failed"
},
"properties": {
"type": "object",
"properties": {
"message": {
"type": "string"
}
},
"required": ["message"]
}
},
"required": ["type", "properties"]
},
"OutputFormatText": { "OutputFormatText": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -9967,6 +9967,12 @@
{ {
"$ref": "#/components/schemas/Event.todo.updated" "$ref": "#/components/schemas/Event.todo.updated"
}, },
{
"$ref": "#/components/schemas/Event.worktree.ready"
},
{
"$ref": "#/components/schemas/Event.worktree.failed"
},
{ {
"$ref": "#/components/schemas/Event.pty.created" "$ref": "#/components/schemas/Event.pty.created"
}, },
@@ -9979,12 +9985,6 @@
{ {
"$ref": "#/components/schemas/Event.pty.deleted" "$ref": "#/components/schemas/Event.pty.deleted"
}, },
{
"$ref": "#/components/schemas/Event.worktree.ready"
},
{
"$ref": "#/components/schemas/Event.worktree.failed"
},
{ {
"$ref": "#/components/schemas/Event.message.updated" "$ref": "#/components/schemas/Event.message.updated"
}, },