chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-03 09:49:08 +00:00
commit b6f76e29c5
2 changed files with 282 additions and 282 deletions

View file

@ -53,6 +53,10 @@ export type Event =
| EventAccountRemoved
| EventAccountSwitched
| EventFileWatcherUpdated
| EventPtyCreated
| EventPtyUpdated
| EventPtyExited
| EventPtyDeleted
| EventLspUpdated
| EventPermissionAsked
| EventPermissionReplied
@ -65,10 +69,6 @@ export type Event =
| EventCommandExecuted
| EventProjectDirectoriesUpdated
| EventProjectUpdated
| EventPtyCreated
| EventPtyUpdated
| EventPtyExited
| EventPtyDeleted
| EventQuestionAsked
| EventQuestionReplied
| EventQuestionRejected
@ -1191,6 +1191,35 @@ export type GlobalEvent = {
event: "add" | "change" | "unlink"
}
}
| {
id: string
type: "pty.created"
properties: {
info: Pty
}
}
| {
id: string
type: "pty.updated"
properties: {
info: Pty
}
}
| {
id: string
type: "pty.exited"
properties: {
id: string
exitCode: number
}
}
| {
id: string
type: "pty.deleted"
properties: {
id: string
}
}
| {
id: string
type: "lsp.updated"
@ -1335,35 +1364,6 @@ export type GlobalEvent = {
sandboxes: Array<string>
}
}
| {
id: string
type: "pty.created"
properties: {
info: Pty
}
}
| {
id: string
type: "pty.updated"
properties: {
info: Pty
}
}
| {
id: string
type: "pty.exited"
properties: {
id: string
exitCode: number
}
}
| {
id: string
type: "pty.deleted"
properties: {
id: string
}
}
| {
id: string
type: "question.asked"
@ -4355,6 +4355,39 @@ export type EventFileWatcherUpdated = {
}
}
export type EventPtyCreated = {
id: string
type: "pty.created"
properties: {
info: Pty
}
}
export type EventPtyUpdated = {
id: string
type: "pty.updated"
properties: {
info: Pty
}
}
export type EventPtyExited = {
id: string
type: "pty.exited"
properties: {
id: string
exitCode: number
}
}
export type EventPtyDeleted = {
id: string
type: "pty.deleted"
properties: {
id: string
}
}
export type EventLspUpdated = {
id: string
type: "lsp.updated"
@ -4456,39 +4489,6 @@ export type EventProjectUpdated = {
}
}
export type EventPtyCreated = {
id: string
type: "pty.created"
properties: {
info: Pty
}
}
export type EventPtyUpdated = {
id: string
type: "pty.updated"
properties: {
info: Pty
}
}
export type EventPtyExited = {
id: string
type: "pty.exited"
properties: {
id: string
exitCode: number
}
}
export type EventPtyDeleted = {
id: string
type: "pty.deleted"
properties: {
id: string
}
}
export type EventQuestionAsked = {
id: string
type: "question.asked"