mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
fix(core): add extended authorization to profile update and add supported payment method types (#9237)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -551,12 +551,12 @@ impl Connector {
|
||||
}
|
||||
|
||||
pub fn get_payment_methods_supporting_extended_authorization(self) -> HashSet<PaymentMethod> {
|
||||
HashSet::new()
|
||||
HashSet::from([PaymentMethod::Card])
|
||||
}
|
||||
pub fn get_payment_method_types_supporting_extended_authorization(
|
||||
self,
|
||||
) -> HashSet<PaymentMethodType> {
|
||||
HashSet::new()
|
||||
HashSet::from([PaymentMethodType::Credit, PaymentMethodType::Debit])
|
||||
}
|
||||
|
||||
pub fn should_acknowledge_webhook_for_resource_not_found_errors(self) -> bool {
|
||||
|
||||
Reference in New Issue
Block a user