mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
feat(users): Incorporate themes in user APIs (#6772)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -150,6 +150,7 @@ pub struct GetUserDetailsResponse {
|
||||
pub recovery_codes_left: Option<usize>,
|
||||
pub profile_id: id_type::ProfileId,
|
||||
pub entity_type: EntityType,
|
||||
pub theme_id: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug, serde::Deserialize, serde::Serialize)]
|
||||
@ -345,8 +346,9 @@ pub struct SsoSignInRequest {
|
||||
}
|
||||
|
||||
#[derive(Debug, serde::Deserialize, serde::Serialize)]
|
||||
pub struct AuthIdQueryParam {
|
||||
pub struct AuthIdAndThemeIdQueryParam {
|
||||
pub auth_id: Option<String>,
|
||||
pub theme_id: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug, serde::Deserialize, serde::Serialize)]
|
||||
|
||||
Reference in New Issue
Block a user