mirror of
https://github.com/openai/codex.git
synced 2026-05-23 20:44:50 +00:00
`#[serde(default)]` wasn't sufficient for our generated TS types to reflect that clients didn't have to set them. We also need `skip_serializing_if = "std::ops::Not::not"`. This is already a rule in our agents.md file.
17 lines
495 B
JSON
Generated
17 lines
495 B
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"cwd": {
|
|
"description": "Optional working directory to resolve project config layers. If specified, return the effective config as seen from that directory (i.e., including any project layers between `cwd` and the project/repo root).",
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"includeLayers": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"title": "ConfigReadParams",
|
|
"type": "object"
|
|
} |