core-agent-ide/codex-rs/utils
Owen Lin 89c00611c2
[app-server] remove serde(skip_serializing_if = "Option::is_none") annotations (#5939)
We had this annotation everywhere in app-server APIs which made it so
that fields get serialized as `field?: T`, meaning if the field as
`None` we would omit the field in the payload. Removing this annotation
changes it so that we return `field: T | null` instead, which makes
codex app-server's API more aligned with the convention of public OpenAI
APIs like Responses.

Separately, remove the `#[ts(optional_fields = nullable)]` annotations
that were recently added which made all the TS types become `field?: T |
null` which is not great since clients need to handle undefined and
null.

I think generally it'll be best to have optional types be either:
- `field: T | null` (preferred, aligned with public OpenAI APIs)
- `field?: T` where we have to, such as types generated from the MCP
schema:
https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/schema/2025-06-18/schema.ts
(see changes to `mcp-types/`)

I updated @etraut-openai's unit test to check that all generated TS
types are one or the other, not both (so will error if we have a type
that has `field?: T | null`). I don't think there's currently a good use
case for that - but we can always revisit.
2025-10-30 18:18:53 +00:00
..
cache feat: image resizing (#5446) 2025-10-27 16:58:10 +00:00
git [app-server] remove serde(skip_serializing_if = "Option::is_none") annotations (#5939) 2025-10-30 18:18:53 +00:00
image feat: image resizing (#5446) 2025-10-27 16:58:10 +00:00
json-to-toml fix: separate codex mcp into codex mcp-server and codex app-server (#4471) 2025-09-30 07:06:18 +00:00
pty chore: rework tools execution workflow (#5278) 2025-10-20 20:57:37 +01:00
readiness feat: async ghost commit (#5618) 2025-10-27 10:09:10 +00:00
string chore: refactor tool handling (#4510) 2025-10-03 13:21:06 +01:00
tokenizer feat: use actual tokenizer for unified_exec truncation (#5514) 2025-10-23 17:08:06 +01:00