mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
67a219ffc2
Makes sense to move this struct to `app-server-protocol/` since we want
to serialize as camelCase, but we don't for structs defined in
`protocol/`
It was:
```
export type Account = { "type": "ApiKey", api_key: string, } | { "type": "chatgpt", email: string | null, plan_type: PlanType, };
```
But we want:
```
export type Account = { "type": "apiKey", apiKey: string, } | { "type": "chatgpt", email: string | null, planType: PlanType, };
```
67a219ffc2
ยท
2025-10-27 14:06:13 -07:00
History