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.422.0"
".": "0.423.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 227
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9e8b4907003e0149ea10d8c95b2facfbc011f366cea40fe86b5f02940e68998d.yml
openapi_spec_hash: e93ee5c48421038334b8961b303465d6
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-0281c1d774b1853b7b09bbce88b8d6e0301179b68d53627c5940edd7d2f8b180.yml
openapi_spec_hash: e22a9d6a4f0f32976d0ac9dd7e6d7dd0
config_hash: ca52ca9a2968f330339fd50c1a386e05
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.423.0 (2026-01-07)

Full Changelog: [v0.422.0...v0.423.0](https://github.com/Increase/increase-python/compare/v0.422.0...v0.423.0)

### Features

* **api:** api update ([7700723](https://github.com/Increase/increase-python/commit/770072305586ae6b1fe9e6db0c4aea4515a36967))

## 0.422.0 (2026-01-07)

Full Changelog: [v0.421.0...v0.422.0](https://github.com/Increase/increase-python/compare/v0.421.0...v0.422.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.422.0"
version = "0.423.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.422.0" # x-release-please-version
__version__ = "0.423.0" # x-release-please-version
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 @@ -116,6 +116,12 @@ class Corporation(TypedDict, total=False):
Not every program requires an email for submitted Entities.
"""

incorporation_state: str
"""
The two-letter United States Postal Service (USPS) abbreviation for the
corporation's state of incorporation.
"""

industry_code: str
"""
The North American Industry Classification System (NAICS) code for the
Expand Down
2 changes: 2 additions & 0 deletions tests/api_resources/test_entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ def test_method_update_with_all_params(self, client: Increase) -> None:
"line2": "Unit 2",
},
"email": "dev@stainless.com",
"incorporation_state": "x",
"industry_code": "x",
"name": "x",
},
Expand Down Expand Up @@ -1300,6 +1301,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncIncrease)
"line2": "Unit 2",
},
"email": "dev@stainless.com",
"incorporation_state": "x",
"industry_code": "x",
"name": "x",
},
Expand Down