feat(connector): [Tokenex]Add external vault insert and retrieve flows (#9470)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Prasunna Soppa
2025-09-23 12:46:39 +05:30
committed by GitHub
parent e410af26ff
commit 62b64d84ec
16 changed files with 240 additions and 473 deletions

View File

@ -336,7 +336,7 @@ pub enum Connector {
Threedsecureio,
// Tokenio,
//Thunes,
// Tokenex, added as template code for future usage
Tokenex,
Tokenio,
Trustpay,
Trustpayments,
@ -548,6 +548,7 @@ impl Connector {
| Self::Cardinal
| Self::CtpVisa
| Self::Noon
| Self::Tokenex
| Self::Tokenio
| Self::Stripe
| Self::Datatrans
@ -870,7 +871,8 @@ impl TryFrom<Connector> for RoutableConnectors {
| Connector::Threedsecureio
| Connector::Vgs
| Connector::CtpVisa
| Connector::Cardinal => Err("Invalid conversion. Not a routable connector"),
| Connector::Cardinal
| Connector::Tokenex => Err("Invalid conversion. Not a routable connector"),
}
}
}