chore: generate
This commit is contained in:
parent
b7ad6bd839
commit
90f848fbc6
2 changed files with 47 additions and 47 deletions
|
|
@ -633,6 +633,14 @@ export type EventTodoUpdated = {
|
|||
}
|
||||
}
|
||||
|
||||
export type EventFileWatcherUpdated = {
|
||||
type: "file.watcher.updated"
|
||||
properties: {
|
||||
file: string
|
||||
event: "add" | "change" | "unlink"
|
||||
}
|
||||
}
|
||||
|
||||
export type EventTuiPromptAppend = {
|
||||
type: "tui.prompt.append"
|
||||
properties: {
|
||||
|
|
@ -791,14 +799,6 @@ export type EventSessionError = {
|
|||
}
|
||||
}
|
||||
|
||||
export type EventFileWatcherUpdated = {
|
||||
type: "file.watcher.updated"
|
||||
properties: {
|
||||
file: string
|
||||
event: "add" | "change" | "unlink"
|
||||
}
|
||||
}
|
||||
|
||||
export type EventVcsBranchUpdated = {
|
||||
type: "vcs.branch.updated"
|
||||
properties: {
|
||||
|
|
@ -880,6 +880,7 @@ export type Event =
|
|||
| EventQuestionRejected
|
||||
| EventSessionCompacted
|
||||
| EventTodoUpdated
|
||||
| EventFileWatcherUpdated
|
||||
| EventTuiPromptAppend
|
||||
| EventTuiCommandExecute
|
||||
| EventTuiToastShow
|
||||
|
|
@ -892,7 +893,6 @@ export type Event =
|
|||
| EventSessionDeleted
|
||||
| EventSessionDiff
|
||||
| EventSessionError
|
||||
| EventFileWatcherUpdated
|
||||
| EventVcsBranchUpdated
|
||||
| EventPtyCreated
|
||||
| EventPtyUpdated
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue