chore: update app server flow

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
viyatb-oai
2026-04-15 23:20:25 -07:00
parent faf48489f3
commit d22974712f
28 changed files with 921 additions and 1 deletions

View File

@@ -0,0 +1,47 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"RemoteControlPairingMode": {
"enum": [
"session",
"server"
],
"type": "string"
}
},
"properties": {
"environmentId": {
"type": "string"
},
"expiresAt": {
"format": "int64",
"type": "integer"
},
"mode": {
"$ref": "#/definitions/RemoteControlPairingMode"
},
"pairingCode": {
"type": "string"
},
"pairingId": {
"type": "string"
},
"prompt": {
"type": "string"
},
"serverId": {
"type": "string"
}
},
"required": [
"environmentId",
"expiresAt",
"mode",
"pairingCode",
"pairingId",
"prompt",
"serverId"
],
"title": "RemoteControlPairingStartResponse",
"type": "object"
}