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.316.0"
".": "0.317.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-e74540ca75fc4e7a0e28d2c41c53c6131dff74e1e3c1472601db19509bb77451.yml
openapi_spec_hash: 4030ac2965b556670d1b427ffc5c554b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a91424eba488276a87e396d4172d7381d22e9ff38639a98aafdbcc2f8b53d000.yml
openapi_spec_hash: 52c779ffbbb1e3a46738d374849ca92b
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.317.0 (2025-09-05)

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

### Features

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

## 0.316.0 (2025-09-05)

Full Changelog: [v0.315.0...v0.316.0](https://github.com/Increase/increase-python/compare/v0.315.0...v0.316.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.316.0"
version = "0.317.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.316.0" # x-release-please-version
__version__ = "0.317.0" # x-release-please-version
24 changes: 16 additions & 8 deletions src/increase/resources/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,19 +212,23 @@ def update(
Args:
entity_id: The entity identifier.

corporation: Details of the corporation entity to update.
corporation: Details of the corporation entity to update. If you specify this parameter and
the entity is not a corporation, the request will fail.

government_authority: Details of the government authority entity to update.
government_authority: Details of the government authority entity to update. If you specify this
parameter and the entity is not a government authority, the request will fail.

natural_person: Details of the natural person entity to update.
natural_person: Details of the natural person entity to update. If you specify this parameter
and the entity is not a natural person, the request will fail.

risk_rating: An assessment of the entity’s potential risk of involvement in financial crimes,
such as money laundering.

third_party_verification: A reference to data stored in a third-party verification service. Your
integration may or may not use this field.

trust: Details of the trust entity to update.
trust: Details of the trust entity to update. If you specify this parameter and the
entity is not a trust, the request will fail.

extra_headers: Send extra headers

Expand Down Expand Up @@ -848,19 +852,23 @@ async def update(
Args:
entity_id: The entity identifier.

corporation: Details of the corporation entity to update.
corporation: Details of the corporation entity to update. If you specify this parameter and
the entity is not a corporation, the request will fail.

government_authority: Details of the government authority entity to update.
government_authority: Details of the government authority entity to update. If you specify this
parameter and the entity is not a government authority, the request will fail.

natural_person: Details of the natural person entity to update.
natural_person: Details of the natural person entity to update. If you specify this parameter
and the entity is not a natural person, the request will fail.

risk_rating: An assessment of the entity’s potential risk of involvement in financial crimes,
such as money laundering.

third_party_verification: A reference to data stored in a third-party verification service. Your
integration may or may not use this field.

trust: Details of the trust entity to update.
trust: Details of the trust entity to update. If you specify this parameter and the
entity is not a trust, the request will fail.

extra_headers: Send extra headers

Expand Down
24 changes: 20 additions & 4 deletions src/increase/types/entity_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,25 @@

class EntityUpdateParams(TypedDict, total=False):
corporation: Corporation
"""Details of the corporation entity to update."""
"""Details of the corporation entity to update.

If you specify this parameter and the entity is not a corporation, the request
will fail.
"""

government_authority: GovernmentAuthority
"""Details of the government authority entity to update."""
"""Details of the government authority entity to update.

If you specify this parameter and the entity is not a government authority, the
request will fail.
"""

natural_person: NaturalPerson
"""Details of the natural person entity to update."""
"""Details of the natural person entity to update.

If you specify this parameter and the entity is not a natural person, the
request will fail.
"""

risk_rating: RiskRating
"""
Expand All @@ -42,7 +54,11 @@ class EntityUpdateParams(TypedDict, total=False):
"""

trust: Trust
"""Details of the trust entity to update."""
"""Details of the trust entity to update.

If you specify this parameter and the entity is not a trust, the request will
fail.
"""


class Corporation(TypedDict, total=False):
Expand Down