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.505.0"
".": "0.506.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-f0841004cde131703a9fc63fec3ae9ce98b63f0e8fe8d4326d1d75142538eda3.yml
openapi_spec_hash: a5a1e052b6e09ba465311f8adfcf9429
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-7761a7b3900011b6b82798bdc61499235a02ed9c48fa5f20e2758f4f2e45c72b.yml
openapi_spec_hash: 39139aa45b204b3144fe560fcad8893b
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.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)

### Features

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

## 0.505.0 (2026-05-01)

Full Changelog: [v0.504.0...v0.505.0](https://github.com/Increase/increase-python/compare/v0.504.0...v0.505.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.505.0"
version = "0.506.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.505.0" # x-release-please-version
__version__ = "0.506.0" # x-release-please-version
16 changes: 10 additions & 6 deletions src/increase/resources/simulations/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,11 @@ def validation(
idempotency_key: str | None = None,
) -> Entity:
"""
Simulates setting an [Entity](#entities)'s validation under the managed
compliance regime. Any existing managed compliance validation on the Entity will
be marked as no longer current.
Set the status for an
[Entity's validation](/documentation/api/entities#entity-object.validation). In
production, Know Your Customer validations
[run automatically](/documentation/entity-validation#entity-validation). While
developing, it can be helpful to override the behavior in Sandbox.

Args:
entity_id: The identifier of the Entity to set the validation on.
Expand Down Expand Up @@ -141,9 +143,11 @@ async def validation(
idempotency_key: str | None = None,
) -> Entity:
"""
Simulates setting an [Entity](#entities)'s validation under the managed
compliance regime. Any existing managed compliance validation on the Entity will
be marked as no longer current.
Set the status for an
[Entity's validation](/documentation/api/entities#entity-object.validation). In
production, Know Your Customer validations
[run automatically](/documentation/entity-validation#entity-validation). While
developing, it can be helpful to override the behavior in Sandbox.

Args:
entity_id: The identifier of the Entity to set the validation on.
Expand Down