feat(python): expose OAuth connection config (#3586)

Expose the merged Rust OAuth header provider through the Python async
connection path.

Includes:
- Python OAuthConfig and OAuthFlowType public config objects
- PyO3 conversion into the Rust OAuthConfig
- connect_async(oauth_config=...) plumbing
- repr redaction coverage for client_secret

Local validation: cargo fmt --all; ruff format/check on touched Python
files.
This commit is contained in:
Jack Ye
2026-06-29 12:36:35 -07:00
committed by GitHub
parent 70126943ff
commit 39e819b6a7
8 changed files with 200 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ pub mod expr;
pub mod header;
pub mod index;
pub mod namespace;
pub mod oauth;
pub mod permutation;
pub mod query;
pub mod runtime;