Skip to content

Commit

Permalink
fix(connector): [Cybersource] fix the required fields for wallet mand…
Browse files Browse the repository at this point in the history
…ate payments (#6921)

Co-authored-by: Chikke Srujan <[email protected]>
  • Loading branch information
srujanchikke and Chikke Srujan authored Dec 23, 2024
1 parent 2606083 commit 1ebd494
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8142,7 +8142,8 @@ impl Default for settings::RequiredFields {
enums::Connector::Bankofamerica,
RequiredFieldFinal {
mandate: HashMap::new(),
non_mandate: HashMap::from(
non_mandate: HashMap::new(),
common: HashMap::from(
[
(
"email".to_string(),
Expand Down Expand Up @@ -8222,14 +8223,14 @@ impl Default for settings::RequiredFields {
)
]
),
common: HashMap::new(),
}
),
(
enums::Connector::Cybersource,
RequiredFieldFinal {
mandate: HashMap::new(),
non_mandate: HashMap::from(
non_mandate: HashMap::new(),
common: HashMap::from(
[
(
"billing.email".to_string(),
Expand Down Expand Up @@ -8309,7 +8310,6 @@ impl Default for settings::RequiredFields {
)
]
),
common: HashMap::new(),
}
),
(
Expand Down Expand Up @@ -8524,7 +8524,8 @@ impl Default for settings::RequiredFields {
enums::Connector::Bankofamerica,
RequiredFieldFinal {
mandate: HashMap::new(),
non_mandate: HashMap::from(
non_mandate: HashMap::new(),
common: HashMap::from(
[
(
"email".to_string(),
Expand Down Expand Up @@ -8604,7 +8605,6 @@ impl Default for settings::RequiredFields {
)
]
),
common: HashMap::new(),
}
),
(
Expand Down Expand Up @@ -8789,7 +8789,8 @@ impl Default for settings::RequiredFields {
enums::Connector::Cybersource,
RequiredFieldFinal {
mandate: HashMap::new(),
non_mandate: HashMap::from(
non_mandate: HashMap::new(),
common: HashMap::from(
[
(
"billing.email".to_string(),
Expand Down Expand Up @@ -8869,7 +8870,6 @@ impl Default for settings::RequiredFields {
)
]
),
common: HashMap::new(),
}
),
(
Expand Down

0 comments on commit 1ebd494

Please sign in to comment.