feat(FRM): Revise post FRM core flows (#4394)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
chikke srujan
2024-04-29 12:27:12 +05:30
committed by GitHub
parent c3a1db16f3
commit 01ec7c64a4
20 changed files with 337 additions and 125 deletions

View File

@ -1445,6 +1445,7 @@ impl DataModelExt for PaymentAttemptUpdate {
currency,
status,
authentication_type,
capture_method,
payment_method,
browser_info,
connector,
@ -1472,6 +1473,7 @@ impl DataModelExt for PaymentAttemptUpdate {
currency,
status,
authentication_type,
capture_method,
payment_method,
browser_info,
connector,
@ -1744,6 +1746,7 @@ impl DataModelExt for PaymentAttemptUpdate {
currency,
status,
authentication_type,
capture_method,
payment_method,
browser_info,
connector,
@ -1771,6 +1774,7 @@ impl DataModelExt for PaymentAttemptUpdate {
currency,
status,
authentication_type,
capture_method,
payment_method,
browser_info,
connector,

View File

@ -1113,9 +1113,11 @@ impl DataModelExt for PaymentIntentUpdate {
updated_by,
},
Self::ApproveUpdate {
status,
merchant_decision,
updated_by,
} => DieselPaymentIntentUpdate::ApproveUpdate {
status,
merchant_decision,
updated_by,
},