feat(connector): integrate netcetera connector with pre authentication flow (#4293)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Hrithikesh
2024-04-16 15:54:06 +05:30
committed by GitHub
parent 00340a3369
commit d4dbaadb06
31 changed files with 1074 additions and 16 deletions

View File

@ -505,6 +505,10 @@ pub enum ConnectorAuthType {
CurrencyAuthKey {
auth_key_map: HashMap<common_enums::Currency, pii::SecretSerdeValue>,
},
CertificateAuth {
certificate: Secret<String>,
private_key: Secret<String>,
},
#[default]
NoKey,
}