Skip to content

Commit f67ce51

Browse files
committed
template-pr
1 parent a9a1ded commit f67ce51

File tree

21 files changed

+1316
-13
lines changed

21 files changed

+1316
-13
lines changed

config/config.example.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
198198
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
199199
checkout.base_url = "https://api.sandbox.checkout.com/"
200200
coinbase.base_url = "https://api.commerce.coinbase.com"
201+
coingate.base_url = "https://api-sandbox.coingate.com/v2"
201202
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
202203
cybersource.base_url = "https://apitest.cybersource.com/"
203204
datatrans.base_url = "https://api.sandbox.datatrans.com/"
@@ -312,6 +313,7 @@ cards = [
312313
"adyenplatform",
313314
"authorizedotnet",
314315
"coinbase",
316+
"coingate",
315317
"cryptopay",
316318
"braintree",
317319
"checkout",

config/deployments/integration_test.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
4141
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
4242
checkout.base_url = "https://api.sandbox.checkout.com/"
4343
coinbase.base_url = "https://api.commerce.coinbase.com"
44+
coingate.base_url = "https://api-sandbox.coingate.com/v2"
4445
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
4546
cybersource.base_url = "https://apitest.cybersource.com/"
4647
datatrans.base_url = "https://api.sandbox.datatrans.com/"

config/deployments/production.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ braintree.base_url = "https://payments.braintree-api.com/graphql"
4545
cashtocode.base_url = "https://cluster14.api.cashtocode.com"
4646
checkout.base_url = "https://api.checkout.com/"
4747
coinbase.base_url = "https://api.commerce.coinbase.com"
48+
coingate.base_url = "https://api.coingate.com/v2"
4849
cryptopay.base_url = "https://business.cryptopay.me/"
4950
cybersource.base_url = "https://api.cybersource.com/"
5051
datatrans.base_url = "https://api.datatrans.com/"

config/deployments/sandbox.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
4545
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
4646
checkout.base_url = "https://api.sandbox.checkout.com/"
4747
coinbase.base_url = "https://api.commerce.coinbase.com"
48+
coingate.base_url = "https://api-sandbox.coingate.com/v2"
4849
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
4950
cybersource.base_url = "https://apitest.cybersource.com/"
5051
datatrans.base_url = "https://api.sandbox.datatrans.com/"

config/development.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ cards = [
111111
"braintree",
112112
"checkout",
113113
"coinbase",
114+
"coingate",
114115
"cryptopay",
115116
"cybersource",
116117
"datatrans",
@@ -217,6 +218,7 @@ braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
217218
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
218219
checkout.base_url = "https://api.sandbox.checkout.com/"
219220
coinbase.base_url = "https://api.commerce.coinbase.com"
221+
coingate.base_url = "https://api-sandbox.coingate.com/"
220222
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
221223
cybersource.base_url = "https://apitest.cybersource.com/"
222224
datatrans.base_url = "https://api.sandbox.datatrans.com/"

config/docker_compose.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
130130
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
131131
checkout.base_url = "https://api.sandbox.checkout.com/"
132132
coinbase.base_url = "https://api.commerce.coinbase.com"
133+
coingate.base_url = "https://api-sandbox.coingate.com/v2"
133134
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
134135
cybersource.base_url = "https://apitest.cybersource.com/"
135136
datatrans.base_url = "https://api.sandbox.datatrans.com/"
@@ -235,6 +236,7 @@ cards = [
235236
"braintree",
236237
"checkout",
237238
"coinbase",
239+
"coingate",
238240
"cryptopay",
239241
"cybersource",
240242
"datatrans",

crates/common_enums/src/connector_enums.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ pub enum RoutableConnectors {
6767
Cashtocode,
6868
Checkout,
6969
Coinbase,
70+
// Coingate,
7071
Cryptopay,
7172
Cybersource,
7273
Datatrans,

crates/hyperswitch_connectors/src/connectors.rs

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pub mod bluesnap;
99
pub mod boku;
1010
pub mod cashtocode;
1111
pub mod coinbase;
12+
pub mod coingate;
1213
pub mod cryptopay;
1314
pub mod ctp_mastercard;
1415
pub mod cybersource;
@@ -59,16 +60,17 @@ pub mod zsl;
5960
pub use self::{
6061
airwallex::Airwallex, amazonpay::Amazonpay, bambora::Bambora, bamboraapac::Bamboraapac,
6162
bankofamerica::Bankofamerica, billwerk::Billwerk, bitpay::Bitpay, bluesnap::Bluesnap,
62-
boku::Boku, cashtocode::Cashtocode, coinbase::Coinbase, cryptopay::Cryptopay,
63-
ctp_mastercard::CtpMastercard, cybersource::Cybersource, datatrans::Datatrans,
64-
deutschebank::Deutschebank, digitalvirgo::Digitalvirgo, dlocal::Dlocal, elavon::Elavon,
65-
fiserv::Fiserv, fiservemea::Fiservemea, fiuu::Fiuu, forte::Forte, globepay::Globepay,
66-
gocardless::Gocardless, helcim::Helcim, inespay::Inespay, jpmorgan::Jpmorgan, mollie::Mollie,
67-
multisafepay::Multisafepay, nexinets::Nexinets, nexixpay::Nexixpay, nomupay::Nomupay,
68-
novalnet::Novalnet, paybox::Paybox, payeezy::Payeezy, payu::Payu, placetopay::Placetopay,
69-
powertranz::Powertranz, prophetpay::Prophetpay, rapyd::Rapyd, razorpay::Razorpay,
70-
redsys::Redsys, shift4::Shift4, square::Square, stax::Stax, taxjar::Taxjar, thunes::Thunes,
71-
tsys::Tsys, unified_authentication_service::UnifiedAuthenticationService, volt::Volt,
63+
boku::Boku, cashtocode::Cashtocode, coinbase::Coinbase, coingate::Coingate,
64+
cryptopay::Cryptopay, ctp_mastercard::CtpMastercard, cybersource::Cybersource,
65+
datatrans::Datatrans, deutschebank::Deutschebank, digitalvirgo::Digitalvirgo, dlocal::Dlocal,
66+
elavon::Elavon, fiserv::Fiserv, fiservemea::Fiservemea, fiuu::Fiuu, forte::Forte,
67+
globepay::Globepay, gocardless::Gocardless, helcim::Helcim, inespay::Inespay,
68+
jpmorgan::Jpmorgan, mollie::Mollie, multisafepay::Multisafepay, nexinets::Nexinets,
69+
nexixpay::Nexixpay, nomupay::Nomupay, novalnet::Novalnet, paybox::Paybox, payeezy::Payeezy,
70+
payu::Payu, placetopay::Placetopay, powertranz::Powertranz, prophetpay::Prophetpay,
71+
rapyd::Rapyd, razorpay::Razorpay, redsys::Redsys, shift4::Shift4, square::Square, stax::Stax,
72+
taxjar::Taxjar, thunes::Thunes, tsys::Tsys,
73+
unified_authentication_service::UnifiedAuthenticationService, volt::Volt,
7274
wellsfargo::Wellsfargo, worldline::Worldline, worldpay::Worldpay, xendit::Xendit, zen::Zen,
7375
zsl::Zsl,
7476
};

0 commit comments

Comments
 (0)