Update network config schema fixture

This commit is contained in:
canvrno-oai
2026-05-27 13:23:13 -07:00
parent 1659dedc94
commit c1903cdd1d

View File

@@ -1783,13 +1783,36 @@
},
"NetworkProxyMode": {
"description": "How Codex should choose an outbound proxy when a future resolver is available.\n\nThis is intentionally configuration-only for now: it establishes the stable spelling used by the resolver work without changing any HTTP routing by itself.",
"enum": [
"auto",
"env",
"system",
"direct"
],
"type": "string"
"oneOf": [
{
"description": "Prefer explicit proxy configuration, then OS/system discovery, then direct.",
"enum": [
"auto"
],
"type": "string"
},
{
"description": "Only honor conventional environment/configured proxy values.",
"enum": [
"env"
],
"type": "string"
},
{
"description": "Prefer OS/system proxy discovery (for example PAC/WPAD) when supported.",
"enum": [
"system"
],
"type": "string"
},
{
"description": "Do not use a proxy for Codex-managed outbound clients.",
"enum": [
"direct"
],
"type": "string"
}
]
},
"NetworkProxyModeToml": {
"enum": [
@@ -5047,4 +5070,4 @@
},
"title": "ConfigToml",
"type": "object"
}
}