mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 18:17:13 +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:
		| @ -209,6 +209,7 @@ pub async fn construct_payout_router_data<'a, F>( | ||||
|         refund_id: None, | ||||
|         dispute_id: None, | ||||
|         connector_response: None, | ||||
|         integrity_check: Ok(()), | ||||
|     }; | ||||
|  | ||||
|     Ok(router_data) | ||||
| @ -371,6 +372,7 @@ pub async fn construct_refund_router_data<'a, F>( | ||||
|         refund_id: Some(refund.refund_id.clone()), | ||||
|         dispute_id: None, | ||||
|         connector_response: None, | ||||
|         integrity_check: Ok(()), | ||||
|     }; | ||||
|  | ||||
|     Ok(router_data) | ||||
| @ -608,6 +610,7 @@ pub async fn construct_accept_dispute_router_data<'a>( | ||||
|         dispute_id: Some(dispute.dispute_id.clone()), | ||||
|         refund_id: None, | ||||
|         connector_response: None, | ||||
|         integrity_check: Ok(()), | ||||
|     }; | ||||
|     Ok(router_data) | ||||
| } | ||||
| @ -703,6 +706,7 @@ pub async fn construct_submit_evidence_router_data<'a>( | ||||
|         refund_id: None, | ||||
|         dispute_id: Some(dispute.dispute_id.clone()), | ||||
|         connector_response: None, | ||||
|         integrity_check: Ok(()), | ||||
|     }; | ||||
|     Ok(router_data) | ||||
| } | ||||
| @ -804,6 +808,7 @@ pub async fn construct_upload_file_router_data<'a>( | ||||
|         refund_id: None, | ||||
|         dispute_id: None, | ||||
|         connector_response: None, | ||||
|         integrity_check: Ok(()), | ||||
|     }; | ||||
|     Ok(router_data) | ||||
| } | ||||
| @ -902,6 +907,7 @@ pub async fn construct_defend_dispute_router_data<'a>( | ||||
|         refund_id: None, | ||||
|         dispute_id: Some(dispute.dispute_id.clone()), | ||||
|         connector_response: None, | ||||
|         integrity_check: Ok(()), | ||||
|     }; | ||||
|     Ok(router_data) | ||||
| } | ||||
| @ -989,6 +995,7 @@ pub async fn construct_retrieve_file_router_data<'a>( | ||||
|         refund_id: None, | ||||
|         dispute_id: None, | ||||
|         connector_response: None, | ||||
|         integrity_check: Ok(()), | ||||
|     }; | ||||
|     Ok(router_data) | ||||
| } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Sahkal Poddar
					Sahkal Poddar