chore: commit remaining workspace updates

This commit is contained in:
Nathan Flurry 2026-02-08 11:51:47 -08:00
parent 98964f80ff
commit 3ba4c54c0c
4 changed files with 99 additions and 16 deletions

View file

@ -519,8 +519,36 @@
"daemon"
]
},
"TurnEventData": {
"type": "object",
"required": [
"phase"
],
"properties": {
"metadata": true,
"phase": {
"$ref": "#/definitions/TurnPhase"
},
"turn_id": {
"type": [
"string",
"null"
]
}
}
},
"TurnPhase": {
"type": "string",
"enum": [
"started",
"ended"
]
},
"UniversalEventData": {
"anyOf": [
{
"$ref": "#/definitions/TurnEventData"
},
{
"$ref": "#/definitions/SessionStartedData"
},
@ -552,6 +580,8 @@
"enum": [
"session.started",
"session.ended",
"turn.started",
"turn.ended",
"item.started",
"item.delta",
"item.completed",