Handle cloud requirements 401s with the same auth recovery flow as normal requests, so permanent refresh failures surface the existing user-facing auth message instead of a generic workspace-config load error.
11 lines
320 B
Rust
11 lines
320 B
Rust
mod client;
|
|
pub mod types;
|
|
|
|
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;
|