app server request/response structure for sandbox nux

This commit is contained in:
iceweasel-oai
2026-02-13 15:07:10 -08:00
parent 12f69b893f
commit 96557c4854
31 changed files with 1502 additions and 19 deletions

View File

@@ -3268,6 +3268,25 @@
"type": "object"
}
]
},
"WindowsSandboxNuxStartParams": {
"properties": {
"surface": {
"$ref": "#/definitions/WindowsSandboxNuxSurface"
}
},
"required": [
"surface"
],
"type": "object"
},
"WindowsSandboxNuxSurface": {
"enum": [
"tui",
"codexApp",
"vscode"
],
"type": "string"
}
},
"description": "Request from the client to the server.",
@@ -4111,6 +4130,30 @@
"title": "Config/batchWriteRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"windowsSandbox/nuxStart"
],
"title": "WindowsSandbox/nuxStartRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/WindowsSandboxNuxStartParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "WindowsSandbox/nuxStartRequest",
"type": "object"
},
{
"properties": {
"id": {