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.376.0"
".": "0.377.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-3d5a35f67916cc1c9e9e4df38edbf72b926effa0faf60ea5cb7047a4a2d7f3c7.yml
openapi_spec_hash: 33c55e463f9bf747f502bdb38d5e2622
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-44b5f1aa7877231cd00051536df52b79d7cdc9cdd18194e9d58416a23c0e3080.yml
openapi_spec_hash: 60f0bd1ca37c9a57996238e105cca091
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.377.0 (2025-10-31)

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

### Features

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

## 0.376.0 (2025-10-31)

Full Changelog: [v0.375.0...v0.376.0](https://github.com/Increase/increase-python/compare/v0.375.0...v0.376.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.376.0"
version = "0.377.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.376.0" # x-release-please-version
__version__ = "0.377.0" # x-release-please-version
6 changes: 6 additions & 0 deletions src/increase/types/export_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@ class AccountStatementBai2(TypedDict, total=False):
will include end-of-day balances for the provided date.
"""

program_id: str
"""The Program to create a BAI2 report for.

If not provided, all open accounts will be included.
"""


class AccountStatementOfxCreatedAt(TypedDict, total=False):
after: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
Expand Down
2 changes: 2 additions & 0 deletions tests/api_resources/test_exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
account_statement_bai2={
"account_id": "account_id",
"effective_date": parse_date("2019-12-27"),
"program_id": "program_id",
},
account_statement_ofx={
"account_id": "account_id",
Expand Down Expand Up @@ -201,6 +202,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
account_statement_bai2={
"account_id": "account_id",
"effective_date": parse_date("2019-12-27"),
"program_id": "program_id",
},
account_statement_ofx={
"account_id": "account_id",
Expand Down