mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
feat(customer_v2): add customer create v2 endpoint (#5444)
Co-authored-by: Narayan Bhat <narayan.bhat@juspay.in> Co-authored-by: hrithikesh026 <hrithikesh.vm@juspay.in> Co-authored-by: Prajjwal Kumar <prajjwal.kumar@juspay.in> Co-authored-by: Sanchith Hegde <sanchith.hegde@juspay.in> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -28,6 +28,7 @@ pub use common_utils::{
|
||||
crypto,
|
||||
ext_traits::{ByteSliceExt, BytesExt, Encode, StringExt, ValueExt},
|
||||
fp_utils::when,
|
||||
id_type,
|
||||
validation::validate_email,
|
||||
};
|
||||
use error_stack::ResultExt;
|
||||
@ -768,15 +769,15 @@ pub trait CustomerAddress {
|
||||
address_details: payments::AddressDetails,
|
||||
key: &[u8],
|
||||
storage_scheme: storage::enums::MerchantStorageScheme,
|
||||
merchant_id: common_utils::id_type::MerchantId,
|
||||
merchant_id: id_type::MerchantId,
|
||||
) -> CustomResult<storage::AddressUpdate, common_utils::errors::CryptoError>;
|
||||
|
||||
async fn get_domain_address(
|
||||
&self,
|
||||
state: &SessionState,
|
||||
address_details: payments::AddressDetails,
|
||||
merchant_id: &common_utils::id_type::MerchantId,
|
||||
customer_id: &common_utils::id_type::CustomerId,
|
||||
merchant_id: &id_type::MerchantId,
|
||||
customer_id: &id_type::CustomerId,
|
||||
key: &[u8],
|
||||
storage_scheme: storage::enums::MerchantStorageScheme,
|
||||
) -> CustomResult<domain::CustomerAddress, common_utils::errors::CryptoError>;
|
||||
@ -791,7 +792,7 @@ impl CustomerAddress for api_models::customers::CustomerRequest {
|
||||
address_details: payments::AddressDetails,
|
||||
key: &[u8],
|
||||
storage_scheme: storage::enums::MerchantStorageScheme,
|
||||
merchant_id: common_utils::id_type::MerchantId,
|
||||
merchant_id: id_type::MerchantId,
|
||||
) -> CustomResult<storage::AddressUpdate, common_utils::errors::CryptoError> {
|
||||
let encrypted_data = batch_encrypt(
|
||||
&state.into(),
|
||||
@ -827,8 +828,8 @@ impl CustomerAddress for api_models::customers::CustomerRequest {
|
||||
&self,
|
||||
state: &SessionState,
|
||||
address_details: payments::AddressDetails,
|
||||
merchant_id: &common_utils::id_type::MerchantId,
|
||||
customer_id: &common_utils::id_type::CustomerId,
|
||||
merchant_id: &id_type::MerchantId,
|
||||
customer_id: &id_type::CustomerId,
|
||||
key: &[u8],
|
||||
storage_scheme: storage::enums::MerchantStorageScheme,
|
||||
) -> CustomResult<domain::CustomerAddress, common_utils::errors::CryptoError> {
|
||||
@ -875,7 +876,7 @@ impl CustomerAddress for api_models::customers::CustomerRequest {
|
||||
pub fn add_apple_pay_flow_metrics(
|
||||
apple_pay_flow: &Option<domain::ApplePayFlow>,
|
||||
connector: Option<String>,
|
||||
merchant_id: common_utils::id_type::MerchantId,
|
||||
merchant_id: id_type::MerchantId,
|
||||
) {
|
||||
if let Some(flow) = apple_pay_flow {
|
||||
match flow {
|
||||
@ -909,7 +910,7 @@ pub fn add_apple_pay_payment_status_metrics(
|
||||
payment_attempt_status: enums::AttemptStatus,
|
||||
apple_pay_flow: Option<domain::ApplePayFlow>,
|
||||
connector: Option<String>,
|
||||
merchant_id: common_utils::id_type::MerchantId,
|
||||
merchant_id: id_type::MerchantId,
|
||||
) {
|
||||
if payment_attempt_status == enums::AttemptStatus::Charged {
|
||||
if let Some(flow) = apple_pay_flow {
|
||||
|
||||
Reference in New Issue
Block a user