From 4dded332ae9c86e35d23f91a2a5a5cdbc14f8293 Mon Sep 17 00:00:00 2001 From: Anurag Thakur Date: Fri, 25 Oct 2024 13:09:56 +0530 Subject: [PATCH] Fix compile error --- crates/router/src/types/api/payments.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/router/src/types/api/payments.rs b/crates/router/src/types/api/payments.rs index 1ec484c80f8..cfbd17b6ce5 100644 --- a/crates/router/src/types/api/payments.rs +++ b/crates/router/src/types/api/payments.rs @@ -23,7 +23,7 @@ pub use api_models::payments::{PaymentsCreateIntentRequest, PaymentsIntentRespon use error_stack::ResultExt; pub use hyperswitch_domain_models::router_flow_types::payments::{ Approve, Authorize, AuthorizeSessionToken, Balance, CalculateTax, Capture, CompleteAuthorize, - CreateConnectorCustomer, IncrementalAuthorization, InitPayment, PSync, PaymentConfirmIntent, + CreateConnectorCustomer, IncrementalAuthorization, InitPayment, PSync, PaymentCreateIntent, PaymentGetIntent, PaymentMethodToken, PostProcessing, PostSessionTokens, PreProcessing, Reject, SdkSessionUpdate, Session, SetupMandate, Void, };