From 59a2bc434dca0d9faeceaa42b965f4ba4e93b1a9 Mon Sep 17 00:00:00 2001 From: DEEPANSHU BANSAL <41580413+deepanshu-iiitu@users.noreply.github.com> Date: Thu, 14 Mar 2024 12:54:28 +0530 Subject: [PATCH] chore(config): [AUTHORIZEDOTNET] Add apple pay manual flow to dashboard (#4080) --- crates/connector_configs/toml/development.toml | 13 +++++++++++++ crates/connector_configs/toml/production.toml | 13 +++++++++++++ crates/connector_configs/toml/sandbox.toml | 13 +++++++++++++ 3 files changed, 39 insertions(+) diff --git a/crates/connector_configs/toml/development.toml b/crates/connector_configs/toml/development.toml index 58e54c3622..11025de310 100644 --- a/crates/connector_configs/toml/development.toml +++ b/crates/connector_configs/toml/development.toml @@ -334,6 +334,8 @@ merchant_secret="Source verification key" payment_method_type = "CartesBancaires" [[authorizedotnet.debit]] payment_method_type = "UnionPay" +[[authorizedotnet.wallet]] + payment_method_type = "apple_pay" [[authorizedotnet.wallet]] payment_method_type = "google_pay" [[authorizedotnet.wallet]] @@ -345,6 +347,17 @@ key1="Transaction Key" merchant_name="Google Pay Merchant Name" gateway_merchant_id="Google Pay Merchant Key" merchant_id="Google Pay Merchant ID" +[authorizedotnet.metadata.apple_pay.session_token_data] +certificate="Merchant Certificate (Base64 Encoded)" +certificate_keys="Merchant PrivateKey (Base64 Encoded)" +merchant_identifier="Apple Merchant Identifier" +display_name="Display Name" +initiative="Domain" +initiative_context="Domain Name" +[authorizedotnet.metadata.apple_pay.payment_request_data] +supported_networks=["visa","masterCard","amex","discover"] +merchant_capabilities=["supports3DS"] +label="apple" [authorizedotnet.connector_webhook_details] merchant_secret="Source verification key" diff --git a/crates/connector_configs/toml/production.toml b/crates/connector_configs/toml/production.toml index 41facc9732..079ead7e4c 100644 --- a/crates/connector_configs/toml/production.toml +++ b/crates/connector_configs/toml/production.toml @@ -227,6 +227,8 @@ merchant_secret="Source verification key" payment_method_type = "CartesBancaires" [[authorizedotnet.debit]] payment_method_type = "UnionPay" +[[authorizedotnet.wallet]] + payment_method_type = "apple_pay" [[authorizedotnet.wallet]] payment_method_type = "google_pay" [[authorizedotnet.wallet]] @@ -239,6 +241,17 @@ key1="Transaction Key" merchant_name="Google Pay Merchant Name" gateway_merchant_id="Google Pay Merchant Key" merchant_id="Google Pay Merchant ID" +[authorizedotnet.metadata.apple_pay.session_token_data] +certificate="Merchant Certificate (Base64 Encoded)" +certificate_keys="Merchant PrivateKey (Base64 Encoded)" +merchant_identifier="Apple Merchant Identifier" +display_name="Display Name" +initiative="Domain" +initiative_context="Domain Name" +[authorizedotnet.metadata.apple_pay.payment_request_data] +supported_networks=["visa","masterCard","amex","discover"] +merchant_capabilities=["supports3DS"] +label="apple" [authorizedotnet.connector_webhook_details] merchant_secret="Source verification key" diff --git a/crates/connector_configs/toml/sandbox.toml b/crates/connector_configs/toml/sandbox.toml index c93acee473..6913885d3f 100644 --- a/crates/connector_configs/toml/sandbox.toml +++ b/crates/connector_configs/toml/sandbox.toml @@ -334,6 +334,8 @@ merchant_secret="Source verification key" payment_method_type = "CartesBancaires" [[authorizedotnet.debit]] payment_method_type = "UnionPay" +[[authorizedotnet.wallet]] + payment_method_type = "apple_pay" [[authorizedotnet.wallet]] payment_method_type = "google_pay" [[authorizedotnet.wallet]] @@ -345,6 +347,17 @@ key1="Transaction Key" merchant_name="Google Pay Merchant Name" gateway_merchant_id="Google Pay Merchant Key" merchant_id="Google Pay Merchant ID" +[authorizedotnet.metadata.apple_pay.session_token_data] +certificate="Merchant Certificate (Base64 Encoded)" +certificate_keys="Merchant PrivateKey (Base64 Encoded)" +merchant_identifier="Apple Merchant Identifier" +display_name="Display Name" +initiative="Domain" +initiative_context="Domain Name" +[authorizedotnet.metadata.apple_pay.payment_request_data] +supported_networks=["visa","masterCard","amex","discover"] +merchant_capabilities=["supports3DS"] +label="apple" [authorizedotnet.connector_webhook_details] merchant_secret="Source verification key"