feat: add durable app-server queued turns

This commit is contained in:
Edward Frazer
2026-05-06 19:02:23 -07:00
parent 79ad209ce6
commit 0c81f7874c
48 changed files with 5994 additions and 61 deletions

View File

@@ -0,0 +1,20 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"queuedTurnIds": {
"items": {
"type": "string"
},
"type": "array"
},
"threadId": {
"type": "string"
}
},
"required": [
"queuedTurnIds",
"threadId"
],
"title": "ThreadQueueReorderParams",
"type": "object"
}