feat(core): Add a new endpoint for Complete Authorize flow (#4686)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Swangi Kumari
2024-05-20 21:32:36 +05:30
committed by GitHub
parent 36409bdc91
commit 226c337399
14 changed files with 267 additions and 21 deletions

View File

@ -1162,6 +1162,11 @@ impl DataModelExt for PaymentIntentUpdate {
} => DieselPaymentIntentUpdate::AuthorizationCountUpdate {
authorization_count,
},
Self::CompleteAuthorizeUpdate {
shipping_address_id,
} => DieselPaymentIntentUpdate::CompleteAuthorizeUpdate {
shipping_address_id,
},
}
}