From b83c4c6625d960ffa3c44a043f49442a1a2c6bac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zcan?= Date: Wed, 9 Sep 2026 17:41:49 +0300 Subject: [PATCH 1/2] Rename `threeds_key` to `threeds_key_exists` in `merchant_pos_response` --- craftgate/response/merchant_pos_response.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/craftgate/response/merchant_pos_response.py b/craftgate/response/merchant_pos_response.py index 17db6f8..b534e8c 100644 --- a/craftgate/response/merchant_pos_response.py +++ b/craftgate/response/merchant_pos_response.py @@ -27,7 +27,7 @@ def __init__( terminal_id: Optional[str] = None, threeds_posnet_id: Optional[str] = None, threeds_terminal_id: Optional[str] = None, - threeds_key: Optional[str] = None, + threeds_key_exists: Optional[bool] = None, threeds_path: Optional[str] = None, enable_foreign_card: Optional[bool] = None, enable_installment: Optional[bool] = None, @@ -59,7 +59,7 @@ def __init__( self.terminal_id = terminal_id self.threeds_posnet_id = threeds_posnet_id self.threeds_terminal_id = threeds_terminal_id - self.threeds_key = threeds_key + self.threeds_key_exists = threeds_key_exists self.threeds_path = threeds_path self.enable_foreign_card = enable_foreign_card self.enable_installment = enable_installment From cb4eb0a8218c168b90c70509d59dcd07828dfab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zcan?= Date: Thu, 10 Sep 2026 15:33:07 +0300 Subject: [PATCH 2/2] Remove `threeds_key_exists` from `merchant_pos_response`. --- craftgate/response/merchant_pos_response.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/craftgate/response/merchant_pos_response.py b/craftgate/response/merchant_pos_response.py index b534e8c..ee26877 100644 --- a/craftgate/response/merchant_pos_response.py +++ b/craftgate/response/merchant_pos_response.py @@ -27,7 +27,6 @@ def __init__( terminal_id: Optional[str] = None, threeds_posnet_id: Optional[str] = None, threeds_terminal_id: Optional[str] = None, - threeds_key_exists: Optional[bool] = None, threeds_path: Optional[str] = None, enable_foreign_card: Optional[bool] = None, enable_installment: Optional[bool] = None, @@ -59,7 +58,6 @@ def __init__( self.terminal_id = terminal_id self.threeds_posnet_id = threeds_posnet_id self.threeds_terminal_id = threeds_terminal_id - self.threeds_key_exists = threeds_key_exists self.threeds_path = threeds_path self.enable_foreign_card = enable_foreign_card self.enable_installment = enable_installment