feat(core): Add uas framework support (#6743)

Co-authored-by: sai-harsha-vardhan <harsha111hero@gmail.com>
This commit is contained in:
Sahkal Poddar
2024-12-11 17:32:42 +05:30
committed by GitHub
parent cd205378c0
commit 9466ced894
55 changed files with 1284 additions and 94 deletions

View File

@ -215,6 +215,7 @@ pub async fn construct_payout_router_data<'a, F>(
additional_merchant_data: None,
header_payload: None,
connector_mandate_request_reference_id: None,
authentication_id: None,
psd2_sca_exemption_type: None,
};
@ -396,6 +397,7 @@ pub async fn construct_refund_router_data<'a, F>(
additional_merchant_data: None,
header_payload: None,
connector_mandate_request_reference_id: None,
authentication_id: None,
psd2_sca_exemption_type: None,
};
@ -704,6 +706,7 @@ pub async fn construct_accept_dispute_router_data<'a>(
additional_merchant_data: None,
header_payload: None,
connector_mandate_request_reference_id: None,
authentication_id: None,
psd2_sca_exemption_type: None,
};
Ok(router_data)
@ -801,6 +804,7 @@ pub async fn construct_submit_evidence_router_data<'a>(
additional_merchant_data: None,
header_payload: None,
connector_mandate_request_reference_id: None,
authentication_id: None,
psd2_sca_exemption_type: None,
};
Ok(router_data)
@ -904,6 +908,7 @@ pub async fn construct_upload_file_router_data<'a>(
additional_merchant_data: None,
header_payload: None,
connector_mandate_request_reference_id: None,
authentication_id: None,
psd2_sca_exemption_type: None,
};
Ok(router_data)
@ -1027,6 +1032,7 @@ pub async fn construct_payments_dynamic_tax_calculation_router_data<'a, F: Clone
additional_merchant_data: None,
header_payload: None,
connector_mandate_request_reference_id: None,
authentication_id: None,
psd2_sca_exemption_type: None,
};
Ok(router_data)
@ -1127,6 +1133,7 @@ pub async fn construct_defend_dispute_router_data<'a>(
additional_merchant_data: None,
header_payload: None,
connector_mandate_request_reference_id: None,
authentication_id: None,
psd2_sca_exemption_type: None,
};
Ok(router_data)
@ -1221,6 +1228,7 @@ pub async fn construct_retrieve_file_router_data<'a>(
additional_merchant_data: None,
header_payload: None,
connector_mandate_request_reference_id: None,
authentication_id: None,
psd2_sca_exemption_type: None,
};
Ok(router_data)