From cf582353e3cd9aa509ed93e6385ecb31af50c851 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 07:12:19 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/increase/resources/simulations/entities.py | 12 ++++++------ .../types/simulations/entity_validation_params.py | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.stats.yml b/.stats.yml index e3d4bfe6..05958983 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 238 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-7761a7b3900011b6b82798bdc61499235a02ed9c48fa5f20e2758f4f2e45c72b.yml -openapi_spec_hash: 39139aa45b204b3144fe560fcad8893b +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-dfa51d8d0b4b31cb929920acfba59c9d2e928de78fc1ac44c639ff9f735727bf.yml +openapi_spec_hash: 401f64bbe952d952c600b78c42f0ed6c config_hash: 060e036e1db198f2e908364c9df7096e diff --git a/src/increase/resources/simulations/entities.py b/src/increase/resources/simulations/entities.py index 9db62dfe..d8512a50 100644 --- a/src/increase/resources/simulations/entities.py +++ b/src/increase/resources/simulations/entities.py @@ -66,11 +66,11 @@ def validation( developing, it can be helpful to override the behavior in Sandbox. Args: - entity_id: The identifier of the Entity to set the validation on. + entity_id: The identifier of the Entity whose validation status to update. - issues: The issues to attach to the new managed compliance validation. + issues: The validation issues to attach. Only allowed when `status` is `invalid`. - status: The status to set on the new managed compliance validation. + status: The validation status to set on the Entity. - `valid` - The submitted data is valid. - `invalid` - Additional information is required to validate the data. @@ -150,11 +150,11 @@ async def validation( developing, it can be helpful to override the behavior in Sandbox. Args: - entity_id: The identifier of the Entity to set the validation on. + entity_id: The identifier of the Entity whose validation status to update. - issues: The issues to attach to the new managed compliance validation. + issues: The validation issues to attach. Only allowed when `status` is `invalid`. - status: The status to set on the new managed compliance validation. + status: The validation status to set on the Entity. - `valid` - The submitted data is valid. - `invalid` - Additional information is required to validate the data. diff --git a/src/increase/types/simulations/entity_validation_params.py b/src/increase/types/simulations/entity_validation_params.py index c340a374..215c7be6 100644 --- a/src/increase/types/simulations/entity_validation_params.py +++ b/src/increase/types/simulations/entity_validation_params.py @@ -10,10 +10,10 @@ class EntityValidationParams(TypedDict, total=False): issues: Required[Iterable[Issue]] - """The issues to attach to the new managed compliance validation.""" + """The validation issues to attach. Only allowed when `status` is `invalid`.""" status: Required[Literal["valid", "invalid", "pending"]] - """The status to set on the new managed compliance validation. + """The validation status to set on the Entity. - `valid` - The submitted data is valid. - `invalid` - Additional information is required to validate the data. @@ -25,7 +25,7 @@ class Issue(TypedDict, total=False): category: Required[ Literal["entity_tax_identifier", "entity_address", "beneficial_owner_identity", "beneficial_owner_address"] ] - """The category of the issue. + """The type of issue. - `entity_tax_identifier` - The entity's tax identifier could not be validated. Update the tax ID with the From dbd221827bc07e59965cb9ebd96ef57b7bd22f9b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 07:12:54 +0000 Subject: [PATCH 2/2] release: 0.507.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 00090125..7ea4b07b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.506.0" + ".": "0.507.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 86686e13..753078b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.507.0 (2026-05-01) + +Full Changelog: [v0.506.0...v0.507.0](https://github.com/Increase/increase-python/compare/v0.506.0...v0.507.0) + +### Features + +* **api:** api update ([cf58235](https://github.com/Increase/increase-python/commit/cf582353e3cd9aa509ed93e6385ecb31af50c851)) + ## 0.506.0 (2026-05-01) Full Changelog: [v0.505.0...v0.506.0](https://github.com/Increase/increase-python/compare/v0.505.0...v0.506.0) diff --git a/pyproject.toml b/pyproject.toml index d7339fad..d18e7186 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.506.0" +version = "0.507.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 6fee3ef0..7bec82ce 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.506.0" # x-release-please-version +__version__ = "0.507.0" # x-release-please-version