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.427.0"
".": "0.428.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 234
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b42ffa447aa14da70d972676b1d5ad0c2720ff4e33a483037b2b1bb51190a69f.yml
openapi_spec_hash: f2a5c5e804880a8e8d13f5f32ca264a1
config_hash: b7ec7f54fa76c1f8bde7a548710a1d38
configured_endpoints: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f46fe8b546ee1a4ad24918ef0803f48e6586e061d5445ae1aeb6abc7b8cf64a3.yml
openapi_spec_hash: 440b743a615d5ecc832affd6c3154809
config_hash: dda988c5565c2f15cc708122984d7691
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.428.0 (2026-03-10)

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

### Features

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

## 0.427.0 (2026-03-09)

Full Changelog: [v0.426.0...v0.427.0](https://github.com/Increase/increase-python/compare/v0.426.0...v0.427.0)
Expand Down
13 changes: 13 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,19 @@ Methods:
- <code title="post /entities/{entity_id}/create_beneficial_owner">client.entities.<a href="./src/increase/resources/entities.py">create_beneficial_owner</a>(entity_id, \*\*<a href="src/increase/types/entity_create_beneficial_owner_params.py">params</a>) -> <a href="./src/increase/types/entity.py">Entity</a></code>
- <code title="post /entities/{entity_id}/update_beneficial_owner_address">client.entities.<a href="./src/increase/resources/entities.py">update_beneficial_owner_address</a>(entity_id, \*\*<a href="src/increase/types/entity_update_beneficial_owner_address_params.py">params</a>) -> <a href="./src/increase/types/entity.py">Entity</a></code>

# BeneficialOwners

Types:

```python
from increase.types import EntityBeneficialOwner
```

Methods:

- <code title="get /entity_beneficial_owners/{entity_beneficial_owner_id}">client.beneficial_owners.<a href="./src/increase/resources/beneficial_owners.py">retrieve</a>(entity_beneficial_owner_id) -> <a href="./src/increase/types/entity_beneficial_owner.py">EntityBeneficialOwner</a></code>
- <code title="get /entity_beneficial_owners">client.beneficial_owners.<a href="./src/increase/resources/beneficial_owners.py">list</a>(\*\*<a href="src/increase/types/beneficial_owner_list_params.py">params</a>) -> <a href="./src/increase/types/entity_beneficial_owner.py">SyncPage[EntityBeneficialOwner]</a></code>

# SupplementalDocuments

Types:
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.427.0"
version = "0.428.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
38 changes: 38 additions & 0 deletions src/increase/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
fednow_transfers,
intrafi_balances,
account_transfers,
beneficial_owners,
external_accounts,
oauth_connections,
account_statements,
Expand Down Expand Up @@ -121,6 +122,7 @@
from .resources.fednow_transfers import FednowTransfersResource, AsyncFednowTransfersResource
from .resources.intrafi_balances import IntrafiBalancesResource, AsyncIntrafiBalancesResource
from .resources.account_transfers import AccountTransfersResource, AsyncAccountTransfersResource
from .resources.beneficial_owners import BeneficialOwnersResource, AsyncBeneficialOwnersResource
from .resources.external_accounts import ExternalAccountsResource, AsyncExternalAccountsResource
from .resources.oauth_connections import OAuthConnectionsResource, AsyncOAuthConnectionsResource
from .resources.account_statements import AccountStatementsResource, AsyncAccountStatementsResource
Expand Down Expand Up @@ -478,6 +480,12 @@ def entities(self) -> EntitiesResource:

return EntitiesResource(self)

@cached_property
def beneficial_owners(self) -> BeneficialOwnersResource:
from .resources.beneficial_owners import BeneficialOwnersResource

return BeneficialOwnersResource(self)

@cached_property
def supplemental_documents(self) -> SupplementalDocumentsResource:
from .resources.supplemental_documents import SupplementalDocumentsResource
Expand Down Expand Up @@ -1071,6 +1079,12 @@ def entities(self) -> AsyncEntitiesResource:

return AsyncEntitiesResource(self)

@cached_property
def beneficial_owners(self) -> AsyncBeneficialOwnersResource:
from .resources.beneficial_owners import AsyncBeneficialOwnersResource

return AsyncBeneficialOwnersResource(self)

@cached_property
def supplemental_documents(self) -> AsyncSupplementalDocumentsResource:
from .resources.supplemental_documents import AsyncSupplementalDocumentsResource
Expand Down Expand Up @@ -1591,6 +1605,12 @@ def entities(self) -> entities.EntitiesResourceWithRawResponse:

return EntitiesResourceWithRawResponse(self._client.entities)

@cached_property
def beneficial_owners(self) -> beneficial_owners.BeneficialOwnersResourceWithRawResponse:
from .resources.beneficial_owners import BeneficialOwnersResourceWithRawResponse

return BeneficialOwnersResourceWithRawResponse(self._client.beneficial_owners)

@cached_property
def supplemental_documents(self) -> supplemental_documents.SupplementalDocumentsResourceWithRawResponse:
from .resources.supplemental_documents import SupplementalDocumentsResourceWithRawResponse
Expand Down Expand Up @@ -1954,6 +1974,12 @@ def entities(self) -> entities.AsyncEntitiesResourceWithRawResponse:

return AsyncEntitiesResourceWithRawResponse(self._client.entities)

@cached_property
def beneficial_owners(self) -> beneficial_owners.AsyncBeneficialOwnersResourceWithRawResponse:
from .resources.beneficial_owners import AsyncBeneficialOwnersResourceWithRawResponse

return AsyncBeneficialOwnersResourceWithRawResponse(self._client.beneficial_owners)

@cached_property
def supplemental_documents(self) -> supplemental_documents.AsyncSupplementalDocumentsResourceWithRawResponse:
from .resources.supplemental_documents import AsyncSupplementalDocumentsResourceWithRawResponse
Expand Down Expand Up @@ -2317,6 +2343,12 @@ def entities(self) -> entities.EntitiesResourceWithStreamingResponse:

return EntitiesResourceWithStreamingResponse(self._client.entities)

@cached_property
def beneficial_owners(self) -> beneficial_owners.BeneficialOwnersResourceWithStreamingResponse:
from .resources.beneficial_owners import BeneficialOwnersResourceWithStreamingResponse

return BeneficialOwnersResourceWithStreamingResponse(self._client.beneficial_owners)

@cached_property
def supplemental_documents(self) -> supplemental_documents.SupplementalDocumentsResourceWithStreamingResponse:
from .resources.supplemental_documents import SupplementalDocumentsResourceWithStreamingResponse
Expand Down Expand Up @@ -2686,6 +2718,12 @@ def entities(self) -> entities.AsyncEntitiesResourceWithStreamingResponse:

return AsyncEntitiesResourceWithStreamingResponse(self._client.entities)

@cached_property
def beneficial_owners(self) -> beneficial_owners.AsyncBeneficialOwnersResourceWithStreamingResponse:
from .resources.beneficial_owners import AsyncBeneficialOwnersResourceWithStreamingResponse

return AsyncBeneficialOwnersResourceWithStreamingResponse(self._client.beneficial_owners)

@cached_property
def supplemental_documents(self) -> supplemental_documents.AsyncSupplementalDocumentsResourceWithStreamingResponse:
from .resources.supplemental_documents import AsyncSupplementalDocumentsResourceWithStreamingResponse
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.427.0" # x-release-please-version
__version__ = "0.428.0" # x-release-please-version
14 changes: 14 additions & 0 deletions src/increase/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,14 @@
AccountTransfersResourceWithStreamingResponse,
AsyncAccountTransfersResourceWithStreamingResponse,
)
from .beneficial_owners import (
BeneficialOwnersResource,
AsyncBeneficialOwnersResource,
BeneficialOwnersResourceWithRawResponse,
AsyncBeneficialOwnersResourceWithRawResponse,
BeneficialOwnersResourceWithStreamingResponse,
AsyncBeneficialOwnersResourceWithStreamingResponse,
)
from .external_accounts import (
ExternalAccountsResource,
AsyncExternalAccountsResource,
Expand Down Expand Up @@ -662,6 +670,12 @@
"AsyncEntitiesResourceWithRawResponse",
"EntitiesResourceWithStreamingResponse",
"AsyncEntitiesResourceWithStreamingResponse",
"BeneficialOwnersResource",
"AsyncBeneficialOwnersResource",
"BeneficialOwnersResourceWithRawResponse",
"AsyncBeneficialOwnersResourceWithRawResponse",
"BeneficialOwnersResourceWithStreamingResponse",
"AsyncBeneficialOwnersResourceWithStreamingResponse",
"SupplementalDocumentsResource",
"AsyncSupplementalDocumentsResource",
"SupplementalDocumentsResourceWithRawResponse",
Expand Down
Loading