From 4141ae0241ff96590cf1489789fb8f8ef6bcaa27 Mon Sep 17 00:00:00 2001 From: dany-rg <71352714+dany-rg@users.noreply.github.com> Date: Mon, 20 Oct 2025 10:35:17 -0400 Subject: [PATCH 1/2] add PARTIAL_AUTH --- src/GatewayResponse.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/GatewayResponse.php b/src/GatewayResponse.php index 722a06d..ed6980f 100644 --- a/src/GatewayResponse.php +++ b/src/GatewayResponse.php @@ -391,6 +391,11 @@ static function PAREQ() return "PAREQ"; } + static function PARTIAL_AUTH() + { + return "partialAuth"; + } + static function PROCESSOR_3DS() { return "PROCESSOR3DS"; From b071d595d1a9c1a0ad4960b7566026181d5c429e Mon Sep 17 00:00:00 2001 From: dany-rg <71352714+dany-rg@users.noreply.github.com> Date: Mon, 20 Oct 2025 10:37:52 -0400 Subject: [PATCH 2/2] add PARTIAL_AUTH --- src/GatewayChecksum.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GatewayChecksum.php b/src/GatewayChecksum.php index cf6f5a9..a72baa2 100644 --- a/src/GatewayChecksum.php +++ b/src/GatewayChecksum.php @@ -10,7 +10,7 @@ class GatewayChecksum { - private const VERSION = "P8.29"; + private const VERSION = "P8.30"; public static $checksum = ""; public static $baseChecksum = "e3dac4334da197e3055e6b9db45b9600"; public static $versionNo = GatewayChecksum::VERSION;