From d676e7140a21c3cfe5d92ca0eeb3a1f3c34c70ba Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Tue, 6 Jan 2026 14:37:24 -0800 Subject: [PATCH] Add banquest, summit_payments, and yaadpay payment processors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ENG-3738 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- HISTORY.rst | 2 ++ src/minfraud/validation.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 8ad2903..6f334ec 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,8 @@ History 3.3.0 ++++++++++++++++++ +* Added ``banquest``, ``summit_payments``, and ``yaadpay`` to the + ``/payment/processor`` validation. * The version is now retrieved from package metadata at runtime using ``importlib.metadata``. This reduces the chance of version inconsistencies during releases. diff --git a/src/minfraud/validation.py b/src/minfraud/validation.py index cdd0f6b..dc22072 100644 --- a/src/minfraud/validation.py +++ b/src/minfraud/validation.py @@ -126,6 +126,7 @@ def _hostname(hostname: str) -> str: "aps_payments", "authorizenet", "balanced", + "banquest", "beanstream", "bluepay", "bluesnap", @@ -257,6 +258,7 @@ def _hostname(hostname: str) -> str: "solidtrust_pay", "sps_decidir", "stripe", + "summit_payments", "synapsefi", "systempay", "telerecargas", @@ -276,6 +278,7 @@ def _hostname(hostname: str) -> str: "windcave", "wirecard", "worldpay", + "yaadpay", ], )