mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
fix(router): add dynamic fields support for samsung_pay (#7090)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -53,6 +53,12 @@ impl Default for Mandates {
|
||||
]),
|
||||
},
|
||||
),
|
||||
(
|
||||
enums::PaymentMethodType::SamsungPay,
|
||||
SupportedConnectorsForMandate {
|
||||
connector_list: HashSet::from([enums::Connector::Cybersource]),
|
||||
},
|
||||
),
|
||||
])),
|
||||
),
|
||||
(
|
||||
@ -8889,6 +8895,21 @@ impl Default for settings::RequiredFields {
|
||||
]),
|
||||
},
|
||||
),
|
||||
(
|
||||
enums::PaymentMethodType::SamsungPay,
|
||||
ConnectorFields {
|
||||
fields: HashMap::from([
|
||||
(
|
||||
enums::Connector::Cybersource,
|
||||
RequiredFieldFinal {
|
||||
mandate: HashMap::new(),
|
||||
non_mandate: HashMap::new(),
|
||||
common: HashMap::new(),
|
||||
}
|
||||
),
|
||||
]),
|
||||
},
|
||||
),
|
||||
(
|
||||
enums::PaymentMethodType::GooglePay,
|
||||
ConnectorFields {
|
||||
|
||||
Reference in New Issue
Block a user