feat(core): add bulk tokenization flows (#7066)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Kashif
2025-03-07 18:20:18 +05:30
committed by GitHub
parent 586adea992
commit 2ff0d4f956
26 changed files with 2742 additions and 38 deletions

View File

@ -39,6 +39,7 @@ pub enum ApiIdentifier {
ApplePayCertificatesMigration,
Relay,
Documentation,
CardNetworkTokenization,
Hypersense,
PaymentMethodSession,
}
@ -317,6 +318,10 @@ impl From<Flow> for ApiIdentifier {
Flow::FeatureMatrix => Self::Documentation,
Flow::TokenizeCard
| Flow::TokenizeCardUsingPaymentMethodId
| Flow::TokenizeCardBatch => Self::CardNetworkTokenization,
Flow::HypersenseTokenRequest
| Flow::HypersenseVerifyToken
| Flow::HypersenseSignoutToken => Self::Hypersense,