Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.410.0"
".": "0.411.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6b5ac6804e3261a05214c5891c95222ef1b5e9003f211ab32db1d03a7531835a.yml
openapi_spec_hash: 611c8d38ba7122a428f57f3069aac84a
config_hash: ff2eb5f192b4de36611b37b27961c2d8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/increase/_version.py
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions src/increase/types/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions src/increase/types/entity_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions src/increase/types/entity_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions tests/api_resources/test_entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
},
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
},
Expand Down