bitwarden_auth/login/api/request/mod.rs
1//! Request models for Identity API endpoints that cannot be auto-generated
2//! (e.g., connect/token endpoints) and are shared across multiple features within the login
3//! client
4//!
5//! For standard controller endpoints, use the `bitwarden-api-identity` crate.
6mod login_api_request;
7#[allow(
8 unused_imports,
9 reason = "STANDARD_USER_SCOPES is used in tests in password_login_api_request.rs"
10)]
11pub(crate) use login_api_request::{LoginApiRequest, STANDARD_USER_SCOPES};