From eaddb8b15dfcd17a7aef38823a143e2378cabf2a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 18:57:52 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/increase/resources/entities.py | 20 ++++++++++++-------- src/increase/types/entity.py | 13 +++++++------ src/increase/types/entity_create_params.py | 13 +++++++------ src/increase/types/entity_update_params.py | 13 +++++++------ 5 files changed, 35 insertions(+), 28 deletions(-) diff --git a/.stats.yml b/.stats.yml index 8b661a7b8..dc28c5ae5 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 217 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-438f2a4d4f35670ae5692a6a9a36711af7944ac975bf309a6d50c02a28b13a70.yml -openapi_spec_hash: e4930cc26be238707449872070607e64 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5d85239e5d724254ab22d922c6cad05e1c361c791ef4a578e1165158bd967753.yml +openapi_spec_hash: b2c90485c02d643ad09954f4d88dbc25 config_hash: e1885b38eded054b77308a024c5d80cc diff --git a/src/increase/resources/entities.py b/src/increase/resources/entities.py index 43a9af62c..b3f038161 100644 --- a/src/increase/resources/entities.py +++ b/src/increase/resources/entities.py @@ -110,8 +110,9 @@ def create( supplemental_documents: Additional documentation associated with the entity. - third_party_verification: A reference to data stored in a third-party verification service. Your - integration may or may not use this field. + third_party_verification: If you are using a third-party service for identity verification, you can use + this field to associate this Entity with the identifier that represents them in + that service. trust: Details of the trust entity to create. Required if `structure` is equal to `trust`. @@ -224,8 +225,9 @@ def update( 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. + third_party_verification: If you are using a third-party service for identity verification, you can use + this field to associate this Entity with the identifier that represents them in + that service. trust: Details of the trust entity to update. If you specify this parameter and the entity is not a trust, the request will fail. @@ -750,8 +752,9 @@ async def create( supplemental_documents: Additional documentation associated with the entity. - third_party_verification: A reference to data stored in a third-party verification service. Your - integration may or may not use this field. + third_party_verification: If you are using a third-party service for identity verification, you can use + this field to associate this Entity with the identifier that represents them in + that service. trust: Details of the trust entity to create. Required if `structure` is equal to `trust`. @@ -864,8 +867,9 @@ async def update( 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. + third_party_verification: If you are using a third-party service for identity verification, you can use + this field to associate this Entity with the identifier that represents them in + that service. trust: Details of the trust entity to update. If you specify this parameter and the entity is not a trust, the request will fail. diff --git a/src/increase/types/entity.py b/src/increase/types/entity.py index 02e494585..2bd94c198 100644 --- a/src/increase/types/entity.py +++ b/src/increase/types/entity.py @@ -351,9 +351,9 @@ class RiskRating(BaseModel): rating: Literal["low", "medium", "high"] """The rating given to this entity. - - `low` - Low - - `medium` - Medium - - `high` - High + - `low` - Minimal risk of involvement in financial crime. + - `medium` - Moderate risk of involvement in financial crime. + - `high` - Elevated risk of involvement in financial crime. """ @@ -633,9 +633,10 @@ class Entity(BaseModel): """ third_party_verification: Optional[ThirdPartyVerification] = None - """A reference to data stored in a third-party verification service. - - Your integration may or may not use this field. + """ + If you are using a third-party service for identity verification, you can use + this field to associate this Entity with the identifier that represents them in + that service. """ trust: Optional[Trust] = None diff --git a/src/increase/types/entity_create_params.py b/src/increase/types/entity_create_params.py index 6f0b97f7c..296ac689a 100644 --- a/src/increase/types/entity_create_params.py +++ b/src/increase/types/entity_create_params.py @@ -106,9 +106,10 @@ class EntityCreateParams(TypedDict, total=False): """Additional documentation associated with the entity.""" third_party_verification: ThirdPartyVerification - """A reference to data stored in a third-party verification service. - - Your integration may or may not use this field. + """ + If you are using a third-party service for identity verification, you can use + this field to associate this Entity with the identifier that represents them in + that service. """ trust: Trust @@ -700,9 +701,9 @@ class RiskRating(TypedDict, total=False): rating: Required[Literal["low", "medium", "high"]] """The rating given to this entity. - - `low` - Low - - `medium` - Medium - - `high` - High + - `low` - Minimal risk of involvement in financial crime. + - `medium` - Moderate risk of involvement in financial crime. + - `high` - Elevated risk of involvement in financial crime. """ diff --git a/src/increase/types/entity_update_params.py b/src/increase/types/entity_update_params.py index 184336c8a..532b73717 100644 --- a/src/increase/types/entity_update_params.py +++ b/src/increase/types/entity_update_params.py @@ -52,9 +52,10 @@ class EntityUpdateParams(TypedDict, total=False): """ third_party_verification: ThirdPartyVerification - """A reference to data stored in a third-party verification service. - - Your integration may or may not use this field. + """ + If you are using a third-party service for identity verification, you can use + this field to associate this Entity with the identifier that represents them in + that service. """ trust: Trust @@ -176,9 +177,9 @@ class RiskRating(TypedDict, total=False): rating: Required[Literal["low", "medium", "high"]] """The rating given to this entity. - - `low` - Low - - `medium` - Medium - - `high` - High + - `low` - Minimal risk of involvement in financial crime. + - `medium` - Moderate risk of involvement in financial crime. + - `high` - Elevated risk of involvement in financial crime. """ From ef185ef17be3db07e4fbf5892bcfc9167979c14b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 18:58:12 +0000 Subject: [PATCH 2/2] release: 0.321.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 da9608d70..db5791310 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.320.0" + ".": "0.321.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cca59a34..bb1ad4ed9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.321.0 (2025-09-08) + +Full Changelog: [v0.320.0...v0.321.0](https://github.com/Increase/increase-python/compare/v0.320.0...v0.321.0) + +### Features + +* **api:** api update ([eaddb8b](https://github.com/Increase/increase-python/commit/eaddb8b15dfcd17a7aef38823a143e2378cabf2a)) + ## 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) diff --git a/pyproject.toml b/pyproject.toml index 93edf5806..11d27c3bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.320.0" +version = "0.321.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 fd065e106..79980d54f 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.320.0" # x-release-please-version +__version__ = "0.321.0" # x-release-please-version