mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
feat(connector): [RISKIFIED] Add support for riskified frm connector (#2533)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Kashif <kashif@protonmail.com> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Jagan <jaganelavarasan@gmail.com>
This commit is contained in:
@ -127,6 +127,7 @@ pub enum Connector {
|
||||
Zen,
|
||||
Signifyd,
|
||||
Plaid,
|
||||
Riskified,
|
||||
}
|
||||
|
||||
impl Connector {
|
||||
@ -200,6 +201,7 @@ impl From<PayoutConnectors> for RoutableConnectors {
|
||||
pub enum FrmConnectors {
|
||||
/// Signifyd Risk Manager. Official docs: https://docs.signifyd.com/
|
||||
Signifyd,
|
||||
Riskified,
|
||||
}
|
||||
|
||||
#[cfg(feature = "frm")]
|
||||
@ -207,6 +209,7 @@ impl From<FrmConnectors> for RoutableConnectors {
|
||||
fn from(value: FrmConnectors) -> Self {
|
||||
match value {
|
||||
FrmConnectors::Signifyd => Self::Signifyd,
|
||||
FrmConnectors::Riskified => Self::Riskified,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user