feat(authentication): added profile acquirer create module (#8155)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Sahkal Poddar
2025-06-11 18:50:19 +05:30
committed by GitHub
parent 5ce2ab2d05
commit f54d785ed4
32 changed files with 699 additions and 22 deletions

View File

@ -203,6 +203,9 @@ Never share your secret api keys. Keep them guarded and secure.
// Routes for poll apis
routes::poll::retrieve_poll_status,
// Routes for profile acquirer account
routes::profile_acquirer::profile_acquirer_create,
// Routes for 3DS Decision Rule
routes::three_ds_decision_rule::three_ds_decision_rule_execute,
),
@ -274,6 +277,8 @@ Never share your secret api keys. Keep them guarded and secure.
api_models::payment_methods::PaymentMethodResponse,
api_models::payment_methods::CustomerPaymentMethod,
common_types::three_ds_decision_rule_engine::ThreeDSDecisionRule,
common_types::domain::AcquirerConfigMap,
common_types::domain::AcquirerConfig,
api_models::payment_methods::PaymentMethodListResponse,
api_models::payment_methods::ResponsePaymentMethodsEnabled,
api_models::payment_methods::ResponsePaymentMethodTypes,
@ -773,6 +778,8 @@ Never share your secret api keys. Keep them guarded and secure.
api_models::open_router::DecisionEngineGatewayWiseExtraScore,
api_models::open_router::DecisionEngineSRSubLevelInputConfig,
api_models::open_router::DecisionEngineEliminationData,
api_models::profile_acquirer::ProfileAcquirerCreate,
api_models::profile_acquirer::ProfileAcquirerResponse,
euclid::frontend::dir::enums::CustomerDevicePlatform,
euclid::frontend::dir::enums::CustomerDeviceType,
euclid::frontend::dir::enums::CustomerDeviceDisplaySize,