feat(coingate): Add Crypto Pay Flow (#7247)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
awasthi21
2025-02-17 15:10:11 +05:30
committed by GitHub
parent 3607b30c26
commit c868ff38e0
19 changed files with 181 additions and 376 deletions

View File

@ -68,7 +68,7 @@ pub enum RoutableConnectors {
// Chargebee,
Checkout,
Coinbase,
// Coingate,
Coingate,
Cryptopay,
Cybersource,
Datatrans,
@ -206,6 +206,7 @@ pub enum Connector {
// Chargebee,
Checkout,
Coinbase,
Coingate,
Cryptopay,
CtpMastercard,
Cybersource,
@ -359,6 +360,7 @@ impl Connector {
| Self::Cashtocode
// | Self::Chargebee
| Self::Coinbase
|Self::Coingate
| Self::Cryptopay
| Self::Deutschebank
| Self::Digitalvirgo
@ -547,6 +549,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Zsl => Self::Zsl,
RoutableConnectors::Xendit => Self::Xendit,
RoutableConnectors::Inespay => Self::Inespay,
RoutableConnectors::Coingate => Self::Coingate,
}
}
}