deprecated session.idle event

This commit is contained in:
Dax Raad
2025-11-17 11:42:28 -05:00
parent 7f0b2ce1ac
commit bdfa213ccf
3 changed files with 19 additions and 17 deletions

View File

@@ -456,6 +456,13 @@ export type EventSessionStatus = {
}
}
export type EventSessionIdle = {
type: "session.idle"
properties: {
sessionID: string
}
}
export type EventSessionCompacted = {
type: "session.compacted"
properties: {
@@ -507,13 +514,6 @@ export type EventCommandExecuted = {
}
}
export type EventSessionIdle = {
type: "session.idle"
properties: {
sessionID: string
}
}
export type Session = {
id: string
projectID: string
@@ -650,11 +650,11 @@ export type Event =
| EventPermissionUpdated
| EventPermissionReplied
| EventSessionStatus
| EventSessionIdle
| EventSessionCompacted
| EventFileEdited
| EventTodoUpdated
| EventCommandExecuted
| EventSessionIdle
| EventSessionCreated
| EventSessionUpdated
| EventSessionDeleted