feat(address): add payment method billing details (#3812)

This commit is contained in:
Narayan Bhat
2024-03-01 17:37:29 +05:30
committed by GitHub
parent f95beaa189
commit 33f07419ab
90 changed files with 1690 additions and 215 deletions

View File

@ -112,8 +112,8 @@ pub async fn create_link_token(
&*state.store,
pi.billing_address_id.clone(),
&key_store,
pi.payment_id.clone(),
merchant_account.merchant_id.clone(),
&pi.payment_id,
&merchant_account.merchant_id,
merchant_account.storage_scheme,
)
.await
@ -678,8 +678,8 @@ pub async fn retrieve_payment_method_from_auth_service(
&*state.store,
payment_intent.billing_address_id.clone(),
key_store,
payment_intent.payment_id.clone(),
merchant_account.merchant_id.clone(),
&payment_intent.payment_id,
&merchant_account.merchant_id,
merchant_account.storage_scheme,
)
.await?;