mirror of
https://github.com/openai/codex.git
synced 2026-05-16 17:23:57 +00:00
## Summary Second PR in the split from #17956. Stacked on #18227. - adds app-server v2 protocol/schema support for `account/sendAddCreditsNudgeEmail` - adds the backend-client `send_add_credits_nudge_email` request and request body mapping - handles the app-server request with auth checks, backend call, and cooldown mapping - adds the disabled `workspace_owner_usage_nudge` feature flag and focused app-server/backend tests ## Validation - `cargo test -p codex-backend-client` - `cargo test -p codex-app-server-protocol` - `cargo test -p codex-app-server rate_limits` - `cargo test -p codex-tui workspace_` - `cargo test -p codex-tui status_` - `just fmt` - `just fix -p codex-backend-client` - `just fix -p codex-app-server-protocol` - `just fix -p codex-app-server` - `just fix -p codex-tui`
13 lines
370 B
Rust
13 lines
370 B
Rust
mod client;
|
|
pub(crate) mod types;
|
|
|
|
pub use client::AddCreditsNudgeCreditType;
|
|
pub use client::Client;
|
|
pub use client::RequestError;
|
|
pub use types::CodeTaskDetailsResponse;
|
|
pub use types::CodeTaskDetailsResponseExt;
|
|
pub use types::ConfigFileResponse;
|
|
pub use types::PaginatedListTaskListItem;
|
|
pub use types::TaskListItem;
|
|
pub use types::TurnAttemptsSiblingTurnsResponse;
|