mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 17:47:54 +08:00
refactor(connector): [NMI] Add Zip code as mandatory field for 3DS (#3666)
This commit is contained in:
@ -1499,6 +1499,15 @@ impl Default for super::settings::RequiredFields {
|
|||||||
value: None,
|
value: None,
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
"billing.address.zip".to_string(),
|
||||||
|
RequiredFieldInfo {
|
||||||
|
required_field: "billing.address.zip".to_string(),
|
||||||
|
display_name: "billing_zip".to_string(),
|
||||||
|
field_type: enums::FieldType::UserAddressPincode,
|
||||||
|
value: None,
|
||||||
|
}
|
||||||
|
),
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
common: HashMap::new(),
|
common: HashMap::new(),
|
||||||
@ -3548,6 +3557,15 @@ impl Default for super::settings::RequiredFields {
|
|||||||
value: None,
|
value: None,
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
"billing.address.zip".to_string(),
|
||||||
|
RequiredFieldInfo {
|
||||||
|
required_field: "billing.address.zip".to_string(),
|
||||||
|
display_name: "billing_zip".to_string(),
|
||||||
|
field_type: enums::FieldType::UserAddressPincode,
|
||||||
|
value: None,
|
||||||
|
}
|
||||||
|
),
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
common: HashMap::new(),
|
common: HashMap::new(),
|
||||||
|
|||||||
Reference in New Issue
Block a user