mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 19:42:27 +08:00
feat(connector): [Stripebilling] add incoming webhook support (#7417)
Co-authored-by: Nishanth Challa <nishanth.challa@Nishanth-Challa-C0WGKCFHLF.local> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
0be1f878ed
commit
3282444132
@ -1559,6 +1559,10 @@ impl ConnectorAuthTypeAndMetadataValidation<'_> {
|
||||
stripe::transformers::StripeAuthType::try_from(self.auth_type)?;
|
||||
Ok(())
|
||||
}
|
||||
// api_enums::Connector::Stripebilling => {
|
||||
// stripebilling::transformers::StripebillingAuthType::try_from(self.auth_type)?;
|
||||
// Ok(())
|
||||
// }
|
||||
api_enums::Connector::Trustpay => {
|
||||
trustpay::transformers::TrustpayAuthType::try_from(self.auth_type)?;
|
||||
Ok(())
|
||||
|
||||
@ -538,7 +538,9 @@ impl ConnectorData {
|
||||
enums::Connector::Stripe => {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Stripe::new())))
|
||||
}
|
||||
// enums::Connector::Stripebilling => Ok(ConnectorEnum::Old(Box::new(connector::Stripebilling))),
|
||||
// enums::Connector::Stripebilling =>{
|
||||
// Ok(ConnectorEnum::Old(Box::new(connector::Stripebilling::new())))
|
||||
// },
|
||||
enums::Connector::Wise => Ok(ConnectorEnum::Old(Box::new(connector::Wise::new()))),
|
||||
enums::Connector::Worldline => {
|
||||
Ok(ConnectorEnum::Old(Box::new(&connector::Worldline)))
|
||||
|
||||
Reference in New Issue
Block a user