From 1b4bae6e983373f662282485de8a9783de31128f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 20:36:04 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index f4cd3049..d4f74e2f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 230 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6f7d8729d517e528b4a2bad402f49122fdf982be7b2df213c393e0d692cef7e7.yml openapi_spec_hash: bd048174c7a122d23818810434e7881d -config_hash: dd86da070cc89eb6d3868bf23764c847 +config_hash: ff2eb5f192b4de36611b37b27961c2d8 From 3aca538095c247f49dc51ea2bf54d052264252ef Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:47:03 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 ++-- src/increase/types/entity.py | 3 +++ src/increase/types/entity_create_params.py | 6 ++++++ src/increase/types/entity_update_params.py | 6 ++++++ tests/api_resources/test_entities.py | 4 ++++ 5 files changed, 21 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index d4f74e2f..beed026f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 230 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6f7d8729d517e528b4a2bad402f49122fdf982be7b2df213c393e0d692cef7e7.yml -openapi_spec_hash: bd048174c7a122d23818810434e7881d +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6b5ac6804e3261a05214c5891c95222ef1b5e9003f211ab32db1d03a7531835a.yml +openapi_spec_hash: 611c8d38ba7122a428f57f3069aac84a config_hash: ff2eb5f192b4de36611b37b27961c2d8 diff --git a/src/increase/types/entity.py b/src/increase/types/entity.py index bb1af1ee..e5088b0e 100644 --- a/src/increase/types/entity.py +++ b/src/increase/types/entity.py @@ -174,6 +174,9 @@ class Corporation(BaseModel): corporation. """ + email: Optional[str] = None + """An email address for the business.""" + incorporation_state: Optional[str] = None """ The two-letter United States Postal Service (USPS) abbreviation for the diff --git a/src/increase/types/entity_create_params.py b/src/increase/types/entity_create_params.py index f02ce2fd..e2e2bf60 100644 --- a/src/increase/types/entity_create_params.py +++ b/src/increase/types/entity_create_params.py @@ -377,6 +377,12 @@ class Corporation(TypedDict, total=False): your bank partner. """ + email: str + """An email address for the business. + + Not every program requires an email for submitted Entities. + """ + incorporation_state: str """ The two-letter United States Postal Service (USPS) abbreviation for the diff --git a/src/increase/types/entity_update_params.py b/src/increase/types/entity_update_params.py index a4a324c5..2036fd59 100644 --- a/src/increase/types/entity_update_params.py +++ b/src/increase/types/entity_update_params.py @@ -110,6 +110,12 @@ class Corporation(TypedDict, total=False): Mail receiving locations like PO Boxes and PMB's are disallowed. """ + email: str + """An email address for the business. + + Not every program requires an email for submitted Entities. + """ + industry_code: str """ The North American Industry Classification System (NAICS) code for the diff --git a/tests/api_resources/test_entities.py b/tests/api_resources/test_entities.py index ace0390a..0c395304 100644 --- a/tests/api_resources/test_entities.py +++ b/tests/api_resources/test_entities.py @@ -84,6 +84,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None: "name": "National Phonograph Company", "tax_identifier": "602214076", "beneficial_ownership_exemption_reason": "regulated_financial_institution", + "email": "dev@stainless.com", "incorporation_state": "NY", "industry_code": "x", "website": "https://example.com", @@ -355,6 +356,7 @@ def test_method_update_with_all_params(self, client: Increase) -> None: "zip": "10045", "line2": "Unit 2", }, + "email": "dev@stainless.com", "industry_code": "x", "name": "x", }, @@ -1011,6 +1013,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease) "name": "National Phonograph Company", "tax_identifier": "602214076", "beneficial_ownership_exemption_reason": "regulated_financial_institution", + "email": "dev@stainless.com", "incorporation_state": "NY", "industry_code": "x", "website": "https://example.com", @@ -1282,6 +1285,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncIncrease) "zip": "10045", "line2": "Unit 2", }, + "email": "dev@stainless.com", "industry_code": "x", "name": "x", }, From e2dbe289cbb334c32dfb59d38ca1fd98bbe40b1f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:47:25 +0000 Subject: [PATCH 3/3] release: 0.411.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 79c93934..179ae823 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.410.0" + ".": "0.411.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 69860f4e..52c87a34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.411.0 (2025-12-15) + +Full Changelog: [v0.410.0...v0.411.0](https://github.com/Increase/increase-python/compare/v0.410.0...v0.411.0) + +### Features + +* **api:** api update ([3aca538](https://github.com/Increase/increase-python/commit/3aca538095c247f49dc51ea2bf54d052264252ef)) + ## 0.410.0 (2025-12-09) Full Changelog: [v0.409.0...v0.410.0](https://github.com/Increase/increase-python/compare/v0.409.0...v0.410.0) diff --git a/pyproject.toml b/pyproject.toml index 8483839e..09e3d4e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.410.0" +version = "0.411.0" description = "The official Python library for the increase API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/increase/_version.py b/src/increase/_version.py index 0ba71bbe..1315ef5a 100644 --- a/src/increase/_version.py +++ b/src/increase/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "increase" -__version__ = "0.410.0" # x-release-please-version +__version__ = "0.411.0" # x-release-please-version