From d1a1e3f572a8e0cc84f3cf6f7bfaf66f3745742a Mon Sep 17 00:00:00 2001 From: Matthew Tran <0e4ef622@gmail.com> Date: Mon, 22 Dec 2025 14:11:42 -0600 Subject: [PATCH 1/2] Add extra Entity fields --- Makefile | 2 +- ntropy_sdk/transactions.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0de64f8..0c4844a 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ clean-build: ## remove build artifacts rm -fr dist/ rm -fr .eggs/ find . -name '*.egg-info' -exec rm -fr {} + - find . -name '*.egg' -exec rm -f {} + + find . -name '*.egg' -exec rm -fr {} + clean-pyc: ## remove Python file artifacts find . -name '*.pyc' -exec rm -f {} + diff --git a/ntropy_sdk/transactions.py b/ntropy_sdk/transactions.py index 6366572..032663d 100644 --- a/ntropy_sdk/transactions.py +++ b/ntropy_sdk/transactions.py @@ -93,6 +93,9 @@ class Entity(BaseModel): default=[], description="A list of [Merchant Category Codes](https://en.wikipedia.org/wiki/Merchant_category_code)", ) + phone_number: Optional[str] = Field(default=None, description="The phone number of the entity") + tax_number: Optional[str] = Field(default=None, description="The tax number of the entity") + naics2017: Optional[str] = Field(default=None, description="The 2017 NAICS code of the entity") class LocationStructured(BaseModel): From 4d14d1db21ff30b0b99199e2aad8469966c53b60 Mon Sep 17 00:00:00 2001 From: Matthew Tran <0e4ef622@gmail.com> Date: Mon, 22 Dec 2025 14:11:54 -0600 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=205.2.0=20=E2=86=92=205.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ntropy_sdk/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ntropy_sdk/__init__.py b/ntropy_sdk/__init__.py index 86539ad..85b6ff2 100644 --- a/ntropy_sdk/__init__.py +++ b/ntropy_sdk/__init__.py @@ -1,4 +1,4 @@ -__version__ = "5.2.0" +__version__ = "5.3.0" from typing import TYPE_CHECKING, Optional diff --git a/setup.cfg b/setup.cfg index 1cf2281..fbc772e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.2.0 +current_version = 5.3.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(rc(?P
\d+))?
@@ -22,4 +22,3 @@ universal = 1
 exclude = docs
 
 [aliases]
-
diff --git a/setup.py b/setup.py
index 299e8c4..966fb03 100644
--- a/setup.py
+++ b/setup.py
@@ -55,6 +55,6 @@
     test_suite="tests",
     tests_require=test_requirements,
     url="https://github.com/ntropy-network/ntropy-sdk",
-    version="5.2.0",
+    version="5.3.0",
     zip_safe=False,
 )