feat(connector): [AMAZONPAY] add Payment flows for Amazon Pay Wallet (#7062)

Co-authored-by: Anurag Singh <anurag.singh.001@Anurag-Singh-WPMHJ5619X.local>
Co-authored-by: Anurag Singh <anurag.singh.001@AnuragSMHJ5619X.lan>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
Co-authored-by: Anurag Singh <anurag.singh.001@MacBookPro.lan>
This commit is contained in:
Anurag
2025-08-29 14:00:32 +05:30
committed by GitHub
parent 9f0cd51cab
commit 23cf4376f5
70 changed files with 1954 additions and 278 deletions

View File

@ -63,7 +63,7 @@ pub enum RoutableConnectors {
Adyen,
Affirm,
Airwallex,
// Amazonpay,
Amazonpay,
Archipel,
Authorizedotnet,
Bankofamerica,
@ -232,7 +232,7 @@ pub enum Connector {
Adyen,
Affirm,
Airwallex,
// Amazonpay,
Amazonpay,
Archipel,
Authorizedotnet,
Bambora,
@ -432,7 +432,7 @@ impl Connector {
| Self::Affirm
| Self::Adyenplatform
| Self::Airwallex
// | Self::Amazonpay
| Self::Amazonpay
| Self::Authorizedotnet
| Self::Bambora
| Self::Bamboraapac
@ -606,6 +606,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Adyen => Self::Adyen,
RoutableConnectors::Affirm => Self::Affirm,
RoutableConnectors::Airwallex => Self::Airwallex,
RoutableConnectors::Amazonpay => Self::Amazonpay,
RoutableConnectors::Archipel => Self::Archipel,
RoutableConnectors::Authorizedotnet => Self::Authorizedotnet,
RoutableConnectors::Bankofamerica => Self::Bankofamerica,
@ -738,6 +739,7 @@ impl TryFrom<Connector> for RoutableConnectors {
Connector::Adyen => Ok(Self::Adyen),
Connector::Affirm => Ok(Self::Affirm),
Connector::Airwallex => Ok(Self::Airwallex),
Connector::Amazonpay => Ok(Self::Amazonpay),
Connector::Archipel => Ok(Self::Archipel),
Connector::Authorizedotnet => Ok(Self::Authorizedotnet),
Connector::Bankofamerica => Ok(Self::Bankofamerica),