feat(connector): add authorize, capture, void, psync, refund, rsync for Forte connector (#955)

Co-authored-by: Arjun Karthik <m.arjunkarthik@gmail.com>
Co-authored-by: Arun Raj M <jarnura47@gmail.com>
This commit is contained in:
Prasunna Soppa
2023-05-04 19:22:28 +05:30
committed by GitHub
parent c888635166
commit f0464bc4f5
23 changed files with 998 additions and 238 deletions

View File

@ -104,7 +104,7 @@ fn get_pm_and_subsequent_auth_detail(
Ok((payment_details, processing_options, subseuent_auth_info))
}
_ => Err(errors::ConnectorError::NotSupported {
payment_method: format!("{:?}", item.request.payment_method_data),
message: format!("{:?}", item.request.payment_method_data),
connector: "AuthorizeDotNet",
payment_experience: api_models::enums::PaymentExperience::RedirectToUrl
.to_string(),
@ -131,7 +131,7 @@ fn get_pm_and_subsequent_auth_detail(
}
api::PaymentMethodData::Crypto(_) | api::PaymentMethodData::BankDebit(_) => {
Err(errors::ConnectorError::NotSupported {
payment_method: format!("{:?}", item.request.payment_method_data),
message: format!("{:?}", item.request.payment_method_data),
connector: "AuthorizeDotNet",
payment_experience: api_models::enums::PaymentExperience::RedirectToUrl
.to_string(),