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.370.0"
".": "0.371.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: 228
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b91d72f65357f42c5529b6b86bf04409c243e4bf98dd441a64792b86698da51e.yml
openapi_spec_hash: 7b35443ba7263403ac7b0c67bc8826b4
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5e23344ee5f70c17195f26e0af9e85bed0a92f4e8597db349d0038c316be4ff2.yml
openapi_spec_hash: 02057c342dd5b1c72f2006dd28234429
config_hash: eb2035151c7b49c2f12caf55469b8f9a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.371.0 (2025-10-29)

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

### Features

* **api:** api update ([45cbf7d](https://github.com/Increase/increase-python/commit/45cbf7d88bad09460b1d10f5c6bc18de83486d23))

## 0.370.0 (2025-10-28)

Full Changelog: [v0.369.0...v0.370.0](https://github.com/Increase/increase-python/compare/v0.369.0...v0.370.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.370.0"
version = "0.371.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.370.0" # x-release-please-version
__version__ = "0.371.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/increase/resources/accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def create(
entity_id: The identifier for the Entity that will own the Account.

informational_entity_id: The identifier of an Entity that, while not owning the Account, is associated
with its activity. Its relationship to your group must be `informational`.
with its activity. This is generally the beneficiary of the funds.

program_id: The identifier for the Program that this Account falls under. Required if you
operate more than one Program.
Expand Down Expand Up @@ -399,7 +399,7 @@ async def create(
entity_id: The identifier for the Entity that will own the Account.

informational_entity_id: The identifier of an Entity that, while not owning the Account, is associated
with its activity. Its relationship to your group must be `informational`.
with its activity. This is generally the beneficiary of the funds.

program_id: The identifier for the Program that this Account falls under. Required if you
operate more than one Program.
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/account_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class AccountCreateParams(TypedDict, total=False):
informational_entity_id: str
"""
The identifier of an Entity that, while not owning the Account, is associated
with its activity. Its relationship to your group must be `informational`.
with its activity. This is generally the beneficiary of the funds.
"""

program_id: str
Expand Down