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

@@ -7699,6 +7699,61 @@
}
]
},
"WindowsSandboxNuxSurface": {
"enum": [
"tui",
"codexApp",
"vscode"
],
"type": "string"
},
"WindowsSandboxSetupStatus": {
"enum": [
"started",
"running",
"completed",
"failed"
],
"type": "string"
},
"WindowsSandboxSetupStatusNotification": {
"properties": {
"attempt": {
"format": "uint32",
"minimum": 0.0,
"type": "integer"
},
"elapsedMs": {
"format": "int64",
"type": "integer"
},
"failureCode": {
"type": [
"string",
"null"
]
},
"failureMessage": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/definitions/WindowsSandboxSetupStatus"
},
"surface": {
"$ref": "#/definitions/WindowsSandboxNuxSurface"
}
},
"required": [
"attempt",
"elapsedMs",
"status",
"surface"
],
"type": "object"
},
"WindowsWorldWritableWarningNotification": {
"properties": {
"extraCount": {
@@ -8311,6 +8366,26 @@
"title": "Windows/worldWritableWarningNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"windowsSandbox/setupStatus"
],
"title": "WindowsSandbox/setupStatusNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/WindowsSandboxSetupStatusNotification"
}
},
"required": [
"method",
"params"
],
"title": "WindowsSandbox/setupStatusNotification",
"type": "object"
},
{
"properties": {
"method": {