mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-11-04 05:59:48 +08:00 
			
		
		
		
	feat(router): add endpoint for listing connector features (#6612)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Pa1NarK <69745008+pixincreate@users.noreply.github.com>
This commit is contained in:
		@ -23,6 +23,7 @@ use crate::api;
 | 
			
		||||
/// trait Payment
 | 
			
		||||
pub trait Payment:
 | 
			
		||||
    api::ConnectorCommon
 | 
			
		||||
    + api::ConnectorSpecifications
 | 
			
		||||
    + api::ConnectorValidation
 | 
			
		||||
    + PaymentAuthorize
 | 
			
		||||
    + PaymentAuthorizeSessionToken
 | 
			
		||||
 | 
			
		||||
@ -19,7 +19,9 @@ use hyperswitch_domain_models::{
 | 
			
		||||
    router_response_types::{PaymentsResponseData, TaxCalculationResponseData},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
use crate::api::{ConnectorCommon, ConnectorIntegrationV2, ConnectorValidation};
 | 
			
		||||
use crate::api::{
 | 
			
		||||
    ConnectorCommon, ConnectorIntegrationV2, ConnectorSpecifications, ConnectorValidation,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/// trait PaymentAuthorizeV2
 | 
			
		||||
pub trait PaymentAuthorizeV2:
 | 
			
		||||
@ -182,6 +184,7 @@ pub trait PaymentsPostProcessingV2:
 | 
			
		||||
/// trait PaymentV2
 | 
			
		||||
pub trait PaymentV2:
 | 
			
		||||
    ConnectorCommon
 | 
			
		||||
    + ConnectorSpecifications
 | 
			
		||||
    + ConnectorValidation
 | 
			
		||||
    + PaymentAuthorizeV2
 | 
			
		||||
    + PaymentAuthorizeSessionTokenV2
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user