mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 21:07:58 +08:00
fix(connector): [Cybersource] fix the required fields for wallet mandate payments (#6911)
Co-authored-by: Chikke Srujan <chikke.srujan@Chikke-Srujan-N7WRTY72X7.local>
This commit is contained in:
@ -8142,7 +8142,8 @@ impl Default for settings::RequiredFields {
|
|||||||
enums::Connector::Bankofamerica,
|
enums::Connector::Bankofamerica,
|
||||||
RequiredFieldFinal {
|
RequiredFieldFinal {
|
||||||
mandate: HashMap::new(),
|
mandate: HashMap::new(),
|
||||||
non_mandate: HashMap::from(
|
non_mandate: HashMap::new(),
|
||||||
|
common: HashMap::from(
|
||||||
[
|
[
|
||||||
(
|
(
|
||||||
"email".to_string(),
|
"email".to_string(),
|
||||||
@ -8222,14 +8223,14 @@ impl Default for settings::RequiredFields {
|
|||||||
)
|
)
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
common: HashMap::new(),
|
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
enums::Connector::Cybersource,
|
enums::Connector::Cybersource,
|
||||||
RequiredFieldFinal {
|
RequiredFieldFinal {
|
||||||
mandate: HashMap::new(),
|
mandate: HashMap::new(),
|
||||||
non_mandate: HashMap::from(
|
non_mandate: HashMap::new(),
|
||||||
|
common: HashMap::from(
|
||||||
[
|
[
|
||||||
(
|
(
|
||||||
"billing.email".to_string(),
|
"billing.email".to_string(),
|
||||||
@ -8309,7 +8310,6 @@ impl Default for settings::RequiredFields {
|
|||||||
)
|
)
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
common: HashMap::new(),
|
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
@ -8524,7 +8524,8 @@ impl Default for settings::RequiredFields {
|
|||||||
enums::Connector::Bankofamerica,
|
enums::Connector::Bankofamerica,
|
||||||
RequiredFieldFinal {
|
RequiredFieldFinal {
|
||||||
mandate: HashMap::new(),
|
mandate: HashMap::new(),
|
||||||
non_mandate: HashMap::from(
|
non_mandate: HashMap::new(),
|
||||||
|
common: HashMap::from(
|
||||||
[
|
[
|
||||||
(
|
(
|
||||||
"email".to_string(),
|
"email".to_string(),
|
||||||
@ -8604,7 +8605,6 @@ impl Default for settings::RequiredFields {
|
|||||||
)
|
)
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
common: HashMap::new(),
|
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
@ -8789,7 +8789,8 @@ impl Default for settings::RequiredFields {
|
|||||||
enums::Connector::Cybersource,
|
enums::Connector::Cybersource,
|
||||||
RequiredFieldFinal {
|
RequiredFieldFinal {
|
||||||
mandate: HashMap::new(),
|
mandate: HashMap::new(),
|
||||||
non_mandate: HashMap::from(
|
non_mandate: HashMap::new(),
|
||||||
|
common: HashMap::from(
|
||||||
[
|
[
|
||||||
(
|
(
|
||||||
"billing.email".to_string(),
|
"billing.email".to_string(),
|
||||||
@ -8869,7 +8870,6 @@ impl Default for settings::RequiredFields {
|
|||||||
)
|
)
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
common: HashMap::new(),
|
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
|
|||||||
Reference in New Issue
Block a user