feat: app-server close thread

This commit is contained in:
jif-oai
2026-04-14 18:28:09 +01:00
parent 81c0bcc921
commit 4c26d7af08
16 changed files with 306 additions and 12 deletions

View File

@@ -2636,6 +2636,17 @@
],
"type": "object"
},
"ThreadCloseParams": {
"properties": {
"threadId": {
"type": "string"
}
},
"required": [
"threadId"
],
"type": "object"
},
"ThreadCompactStartParams": {
"properties": {
"threadId": {
@@ -3769,6 +3780,30 @@
"title": "Thread/archiveRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"thread/close"
],
"title": "Thread/closeRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadCloseParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Thread/closeRequest",
"type": "object"
},
{
"properties": {
"id": {