Skip to content

Commit c68826e

Browse files
committed
+ Renamed Visa Checkout to Visa SRC
+ Blocking GetCustomerProfileIds call as response exceeds log limit
1 parent 4bed663 commit c68826e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

SampleCodeList.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ GetTransactionList,0,1
77
CreateAnApplePayTransaction,0,0
88
CreateAnAcceptTransaction,0,0
99
CreateAnAndroidPayTransaction,0,0
10-
DecryptVisaCheckoutData,0,1
11-
CreateVisaCheckoutTransaction,0,0
10+
decryptVisaSrcData,0,1
11+
createVisaSrcTransaction,0,0
1212
CaptureFundsAuthorizedThroughAnotherChannel,1,1
1313
AuthorizeCreditCard,1,1
1414
DebitBankAccount,1,1
@@ -23,7 +23,7 @@ UpdateCustomerShippingAddress,1,1
2323
UpdateCustomerProfile,0,1
2424
UpdateCustomerPaymentProfile,1,1
2525
GetCustomerShippingAddress,1,1
26-
GetCustomerProfileIds,0,1
26+
GetCustomerProfileIds,0,0
2727
GetCustomerProfile,1,1
2828
GetAcceptCustomerProfilePage,1,1
2929
GetCustomerPaymentProfile,1,1

VisaCheckout/create-visa-checkout-transaction.php renamed to VisaCheckout/create-visa-src-transaction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
define("AUTHORIZENET_LOG_FILE", "phplog");
88

9-
function createVisaCheckoutTransaction()
9+
function createVisaSrcTransaction()
1010
{
1111
/* Create a merchantAuthenticationType object with authentication details
1212
retrieved from the constants file */
@@ -88,6 +88,6 @@ function createVisaCheckoutTransaction()
8888
}
8989

9090
if(!defined('DONT_RUN_SAMPLES'))
91-
createVisaCheckoutTransaction();
91+
createVisaSrcTransaction();
9292

9393
?>

VisaCheckout/decrypt-visa-checkout-data.php renamed to VisaCheckout/decrypt-visa-src-data.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
define("AUTHORIZENET_LOG_FILE", "phplog");
88

9-
function decryptVisaCheckoutData()
9+
function decryptVisaSrcData()
1010
{
1111
/* Create a merchantAuthenticationType object with authentication details
1212
retrieved from the constants file */
@@ -46,6 +46,6 @@ function decryptVisaCheckoutData()
4646
}
4747

4848
if(!defined('DONT_RUN_SAMPLES'))
49-
decryptVisaCheckoutData();
49+
decryptVisaSrcData();
5050

5151
?>

0 commit comments

Comments
 (0)