fix(app-server-protocol): regenerate schema fixtures for network approval context

This commit is contained in:
viyatb-oai
2026-02-11 14:22:30 -08:00
parent ddb4c2b28c
commit 619a719993
10 changed files with 227 additions and 0 deletions

View File

@@ -2101,6 +2101,17 @@
"description": "The command's working directory.",
"type": "string"
},
"network_approval_context": {
"anyOf": [
{
"$ref": "#/definitions/NetworkApprovalContext"
},
{
"type": "null"
}
],
"description": "Optional network context for a blocked request that can be approved."
},
"parsed_cmd": {
"items": {
"$ref": "#/definitions/ParsedCommand"
@@ -4162,6 +4173,28 @@
],
"type": "string"
},
"NetworkApprovalContext": {
"properties": {
"host": {
"type": "string"
},
"protocol": {
"$ref": "#/definitions/NetworkApprovalProtocol"
}
},
"required": [
"host",
"protocol"
],
"type": "object"
},
"NetworkApprovalProtocol": {
"enum": [
"http",
"https"
],
"type": "string"
},
"ParsedCommand": {
"oneOf": [
{