@@ -74,6 +74,7 @@ pub enum RoutableConnectors {
74
74
Boku ,
75
75
Braintree ,
76
76
Cashtocode ,
77
+ Celero ,
77
78
Chargebee ,
78
79
// Checkbook,
79
80
Checkout ,
@@ -232,6 +233,7 @@ pub enum Connector {
232
233
Boku ,
233
234
Braintree ,
234
235
Cashtocode ,
236
+ Celero ,
235
237
Chargebee ,
236
238
// Checkbook,
237
239
Checkout ,
@@ -417,6 +419,7 @@ impl Connector {
417
419
| Self :: Boku
418
420
| Self :: Braintree
419
421
| Self :: Cashtocode
422
+ | Self :: Celero
420
423
| Self :: Chargebee
421
424
// | Self::Checkbook
422
425
| Self :: Coinbase
@@ -580,6 +583,7 @@ impl From<RoutableConnectors> for Connector {
580
583
RoutableConnectors :: Boku => Self :: Boku ,
581
584
RoutableConnectors :: Braintree => Self :: Braintree ,
582
585
RoutableConnectors :: Cashtocode => Self :: Cashtocode ,
586
+ RoutableConnectors :: Celero => Self :: Celero ,
583
587
RoutableConnectors :: Chargebee => Self :: Chargebee ,
584
588
// RoutableConnectors::Checkbook => Self::Checkbook,
585
589
RoutableConnectors :: Checkout => Self :: Checkout ,
@@ -701,6 +705,7 @@ impl TryFrom<Connector> for RoutableConnectors {
701
705
Connector :: Boku => Ok ( Self :: Boku ) ,
702
706
Connector :: Braintree => Ok ( Self :: Braintree ) ,
703
707
Connector :: Cashtocode => Ok ( Self :: Cashtocode ) ,
708
+ Connector :: Celero => Ok ( Self :: Celero ) ,
704
709
Connector :: Chargebee => Ok ( Self :: Chargebee ) ,
705
710
// Connector::Checkbook => Ok(Self::Checkbook),
706
711
Connector :: Checkout => Ok ( Self :: Checkout ) ,
0 commit comments