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

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 = {
id: 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 = {
type: "text"
}
@ -1005,12 +1005,12 @@ export type Event =
| EventSessionIdle
| EventSessionCompacted
| EventTodoUpdated
| EventWorktreeReady
| EventWorktreeFailed
| EventPtyCreated
| EventPtyUpdated
| EventPtyExited
| EventPtyDeleted
| EventWorktreeReady
| EventWorktreeFailed
| EventMessageUpdated
| EventMessageRemoved
| EventMessagePartUpdated