chore: generate

This commit is contained in:
GitHub Action
2026-01-26 22:49:23 +00:00
parent 021d9d105e
commit 4075f9e1ab
2 changed files with 46 additions and 46 deletions

View File

@@ -627,6 +627,14 @@ export type EventSessionCompacted = {
}
}
export type EventFileWatcherUpdated = {
type: "file.watcher.updated"
properties: {
file: string
event: "add" | "change" | "unlink"
}
}
export type Todo = {
/**
* Brief description of the task
@@ -654,14 +662,6 @@ 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: {
@@ -903,8 +903,8 @@ export type Event =
| EventQuestionReplied
| EventQuestionRejected
| EventSessionCompacted
| EventTodoUpdated
| EventFileWatcherUpdated
| EventTodoUpdated
| EventTuiPromptAppend
| EventTuiCommandExecute
| EventTuiToastShow