feat(apple_pay): add support for pre decrypted apple pay token (#2056)

Co-authored-by: Sangamesh <sangamesh.kulkarni@juspay.in>
This commit is contained in:
Shankar Singh C
2023-09-07 22:49:10 +05:30
committed by GitHub
parent 81c6480bdf
commit 75ee632782
34 changed files with 1174 additions and 227 deletions

View File

@ -14,7 +14,7 @@ use crate::{
connector,
core::{
errors::{ConnectorError, CustomResult, RouterResult},
payments,
payments::{self, helpers},
},
routes::AppState,
services,
@ -30,6 +30,7 @@ pub trait ConstructFlowSpecificData<F, Req, Res> {
merchant_account: &domain::MerchantAccount,
key_store: &domain::MerchantKeyStore,
customer: &Option<domain::Customer>,
merchant_connector_account: &helpers::MerchantConnectorAccountType,
) -> RouterResult<types::RouterData<F, Req, Res>>;
}