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/__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/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): 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,
 )