diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c1ebe3f9a..0243314d8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.376.0" + ".": "0.377.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 8014bc2c8..7ca08cf6a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index d8d948494..9f0aaeb9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index 66ebb63a4..697980b57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/increase/_version.py b/src/increase/_version.py index 0a5e98835..315be3eec 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.376.0" # x-release-please-version +__version__ = "0.377.0" # x-release-please-version diff --git a/src/increase/types/export_create_params.py b/src/increase/types/export_create_params.py index 175d3a4fa..2c9adf7b2 100644 --- a/src/increase/types/export_create_params.py +++ b/src/increase/types/export_create_params.py @@ -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")] diff --git a/tests/api_resources/test_exports.py b/tests/api_resources/test_exports.py index 8159a6bde..496ac45e1 100644 --- a/tests/api_resources/test_exports.py +++ b/tests/api_resources/test_exports.py @@ -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", @@ -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",