mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 12:06:56 +08:00
feat(core): Added integrity framework for Authorize and Sync flow with connector as Stripe (#5109)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Hrithikesh <61539176+hrithikesh026@users.noreply.github.com> Co-authored-by: Narayan Bhat <narayan.bhat@juspay.in>
This commit is contained in:
@ -130,6 +130,7 @@ impl ConstructFlowSpecificData<frm_api::Checkout, FraudCheckCheckoutData, FraudC
|
||||
refund_id: None,
|
||||
dispute_id: None,
|
||||
connector_response: None,
|
||||
integrity_check: Ok(()),
|
||||
};
|
||||
|
||||
Ok(router_data)
|
||||
|
||||
@ -111,6 +111,7 @@ pub async fn construct_fulfillment_router_data<'a>(
|
||||
refund_id: None,
|
||||
dispute_id: None,
|
||||
connector_response: None,
|
||||
integrity_check: Ok(()),
|
||||
};
|
||||
Ok(router_data)
|
||||
}
|
||||
|
||||
@ -102,6 +102,7 @@ impl ConstructFlowSpecificData<RecordReturn, FraudCheckRecordReturnData, FraudCh
|
||||
refund_id: None,
|
||||
dispute_id: None,
|
||||
connector_response: None,
|
||||
integrity_check: Ok(()),
|
||||
};
|
||||
|
||||
Ok(router_data)
|
||||
|
||||
@ -111,6 +111,7 @@ impl ConstructFlowSpecificData<frm_api::Sale, FraudCheckSaleData, FraudCheckResp
|
||||
refund_id: None,
|
||||
dispute_id: None,
|
||||
connector_response: None,
|
||||
integrity_check: Ok(()),
|
||||
};
|
||||
|
||||
Ok(router_data)
|
||||
|
||||
@ -115,6 +115,7 @@ impl
|
||||
refund_id: None,
|
||||
dispute_id: None,
|
||||
connector_response: None,
|
||||
integrity_check: Ok(()),
|
||||
};
|
||||
|
||||
Ok(router_data)
|
||||
|
||||
Reference in New Issue
Block a user