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.506.0"
".": "0.507.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: 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.506.0"
version = "0.507.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.506.0" # x-release-please-version
__version__ = "0.507.0" # x-release-please-version
12 changes: 6 additions & 6 deletions src/increase/resources/simulations/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions src/increase/types/simulations/entity_validation_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down