feat(checkbook_io): connector integrate ACH (#8730)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Nithin N
2025-08-08 18:18:14 +05:30
committed by GitHub
parent 3547eac397
commit bee4aed40c
25 changed files with 584 additions and 615 deletions

View File

@ -80,7 +80,7 @@ pub enum RoutableConnectors {
Celero,
Chargebee,
Custombilling,
// Checkbook,
Checkbook,
Checkout,
Coinbase,
Coingate,
@ -246,7 +246,7 @@ pub enum Connector {
Cashtocode,
Celero,
Chargebee,
// Checkbook,
Checkbook,
Checkout,
Coinbase,
Coingate,
@ -440,7 +440,7 @@ impl Connector {
| Self::Cashtocode
| Self::Celero
| Self::Chargebee
// | Self::Checkbook
| Self::Checkbook
| Self::Coinbase
| Self::Coingate
| Self::Cryptopay
@ -613,7 +613,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Celero => Self::Celero,
RoutableConnectors::Chargebee => Self::Chargebee,
RoutableConnectors::Custombilling => Self::Custombilling,
// RoutableConnectors::Checkbook => Self::Checkbook,
RoutableConnectors::Checkbook => Self::Checkbook,
RoutableConnectors::Checkout => Self::Checkout,
RoutableConnectors::Coinbase => Self::Coinbase,
RoutableConnectors::Cryptopay => Self::Cryptopay,
@ -742,7 +742,7 @@ impl TryFrom<Connector> for RoutableConnectors {
Connector::Cashtocode => Ok(Self::Cashtocode),
Connector::Celero => Ok(Self::Celero),
Connector::Chargebee => Ok(Self::Chargebee),
// Connector::Checkbook => Ok(Self::Checkbook),
Connector::Checkbook => Ok(Self::Checkbook),
Connector::Checkout => Ok(Self::Checkout),
Connector::Coinbase => Ok(Self::Coinbase),
Connector::Coingate => Ok(Self::Coingate),