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.319.0"
".": "0.320.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: 217
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-17c08bdd306c9bcf444a3d09db8878f633ec996cd2f091e1173742f6f3ffc5a5.yml
openapi_spec_hash: 70c131085fc22b07df6bac0f70fcf468
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-438f2a4d4f35670ae5692a6a9a36711af7944ac975bf309a6d50c02a28b13a70.yml
openapi_spec_hash: e4930cc26be238707449872070607e64
config_hash: e1885b38eded054b77308a024c5d80cc
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.320.0 (2025-09-08)

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

### Features

* **api:** api update ([eacc1e8](https://github.com/Increase/increase-python/commit/eacc1e82a2eada56d83a1dd9e8ae4ef7096ddf88))

## 0.319.0 (2025-09-08)

Full Changelog: [v0.318.0...v0.319.0](https://github.com/Increase/increase-python/compare/v0.318.0...v0.319.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.319.0"
version = "0.320.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.319.0" # x-release-please-version
__version__ = "0.320.0" # x-release-please-version
8 changes: 8 additions & 0 deletions src/increase/types/entity_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@ class Corporation(TypedDict, total=False):
Mail receiving locations like PO Boxes and PMB's are disallowed.
"""

industry_code: str
"""
The North American Industry Classification System (NAICS) code for the
corporation's primary line of business. This is a number, like `5132` for
`Software Publishers`. A full list of classification codes is available
[here](https://increase.com/documentation/data-dictionary#north-american-industry-classification-system-codes).
"""

name: str
"""The legal name of the corporation."""

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 @@ -355,6 +355,7 @@ def test_method_update_with_all_params(self, client: Increase) -> None:
"zip": "10045",
"line2": "Unit 2",
},
"industry_code": "x",
"name": "x",
},
government_authority={
Expand Down Expand Up @@ -1280,6 +1281,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncIncrease)
"zip": "10045",
"line2": "Unit 2",
},
"industry_code": "x",
"name": "x",
},
government_authority={
Expand Down