chore: generate

This commit is contained in:
GitHub Action
2026-01-18 06:35:48 +00:00
parent b7ad6bd839
commit 90f848fbc6
2 changed files with 47 additions and 47 deletions

View File

@@ -633,6 +633,14 @@ export type EventTodoUpdated = {
} }
} }
export type EventFileWatcherUpdated = {
type: "file.watcher.updated"
properties: {
file: string
event: "add" | "change" | "unlink"
}
}
export type EventTuiPromptAppend = { export type EventTuiPromptAppend = {
type: "tui.prompt.append" type: "tui.prompt.append"
properties: { 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 = { export type EventVcsBranchUpdated = {
type: "vcs.branch.updated" type: "vcs.branch.updated"
properties: { properties: {
@@ -880,6 +880,7 @@ export type Event =
| EventQuestionRejected | EventQuestionRejected
| EventSessionCompacted | EventSessionCompacted
| EventTodoUpdated | EventTodoUpdated
| EventFileWatcherUpdated
| EventTuiPromptAppend | EventTuiPromptAppend
| EventTuiCommandExecute | EventTuiCommandExecute
| EventTuiToastShow | EventTuiToastShow
@@ -892,7 +893,6 @@ export type Event =
| EventSessionDeleted | EventSessionDeleted
| EventSessionDiff | EventSessionDiff
| EventSessionError | EventSessionError
| EventFileWatcherUpdated
| EventVcsBranchUpdated | EventVcsBranchUpdated
| EventPtyCreated | EventPtyCreated
| EventPtyUpdated | EventPtyUpdated

View File

@@ -7370,6 +7370,41 @@
}, },
"required": ["type", "properties"] "required": ["type", "properties"]
}, },
"Event.file.watcher.updated": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "file.watcher.updated"
},
"properties": {
"type": "object",
"properties": {
"file": {
"type": "string"
},
"event": {
"anyOf": [
{
"type": "string",
"const": "add"
},
{
"type": "string",
"const": "change"
},
{
"type": "string",
"const": "unlink"
}
]
}
},
"required": ["file", "event"]
}
},
"required": ["type", "properties"]
},
"Event.tui.prompt.append": { "Event.tui.prompt.append": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -7798,41 +7833,6 @@
}, },
"required": ["type", "properties"] "required": ["type", "properties"]
}, },
"Event.file.watcher.updated": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "file.watcher.updated"
},
"properties": {
"type": "object",
"properties": {
"file": {
"type": "string"
},
"event": {
"anyOf": [
{
"type": "string",
"const": "add"
},
{
"type": "string",
"const": "change"
},
{
"type": "string",
"const": "unlink"
}
]
}
},
"required": ["file", "event"]
}
},
"required": ["type", "properties"]
},
"Event.vcs.branch.updated": { "Event.vcs.branch.updated": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -8054,6 +8054,9 @@
{ {
"$ref": "#/components/schemas/Event.todo.updated" "$ref": "#/components/schemas/Event.todo.updated"
}, },
{
"$ref": "#/components/schemas/Event.file.watcher.updated"
},
{ {
"$ref": "#/components/schemas/Event.tui.prompt.append" "$ref": "#/components/schemas/Event.tui.prompt.append"
}, },
@@ -8090,9 +8093,6 @@
{ {
"$ref": "#/components/schemas/Event.session.error" "$ref": "#/components/schemas/Event.session.error"
}, },
{
"$ref": "#/components/schemas/Event.file.watcher.updated"
},
{ {
"$ref": "#/components/schemas/Event.vcs.branch.updated" "$ref": "#/components/schemas/Event.vcs.branch.updated"
}, },