From 01bab6fc34f7e9eae7a8007bb965779ee2d83661 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 11 Oct 2025 19:07:59 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/increase/resources/simulations/programs.py | 16 ++++++++++++++-- .../types/simulations/program_create_params.py | 10 +++++++++- 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/.stats.yml b/.stats.yml index a4cac0a4b..cc5e6cfd0 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 220 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-071556e7dfc2b2d72c1f9fee711211e0272dab780651b1a49d3e302d3a9f59be.yml -openapi_spec_hash: 01d445dc17f564c99f440a768f170b0d +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-20e8d84deba6f3f35ffb7e8ad746f470aa7acbfa55d98bc7dcb931a768193243.yml +openapi_spec_hash: 7a807bc7bc882d53dc1df541c1ee0495 config_hash: f0b80170c2ea09811aeae3f1e94bc422 diff --git a/src/increase/resources/simulations/programs.py b/src/increase/resources/simulations/programs.py index 33982aa56..23c617954 100644 --- a/src/increase/resources/simulations/programs.py +++ b/src/increase/resources/simulations/programs.py @@ -48,7 +48,12 @@ def create( *, name: str, bank: Literal[ - "blue_ridge_bank", "core_bank", "first_internet_bank", "global_innovations_bank", "grasshopper_bank" + "blue_ridge_bank", + "core_bank", + "first_internet_bank", + "global_innovations_bank", + "grasshopper_bank", + "twin_city_bank", ] | Omit = omit, reserve_account_id: str | Omit = omit, @@ -77,6 +82,7 @@ def create( - `first_internet_bank` - First Internet Bank of Indiana - `global_innovations_bank` - Global Innovations Bank - `grasshopper_bank` - Grasshopper Bank + - `twin_city_bank` - Twin City Bank reserve_account_id: The identifier of the Account the Program should be added to is for. @@ -136,7 +142,12 @@ async def create( *, name: str, bank: Literal[ - "blue_ridge_bank", "core_bank", "first_internet_bank", "global_innovations_bank", "grasshopper_bank" + "blue_ridge_bank", + "core_bank", + "first_internet_bank", + "global_innovations_bank", + "grasshopper_bank", + "twin_city_bank", ] | Omit = omit, reserve_account_id: str | Omit = omit, @@ -165,6 +176,7 @@ async def create( - `first_internet_bank` - First Internet Bank of Indiana - `global_innovations_bank` - Global Innovations Bank - `grasshopper_bank` - Grasshopper Bank + - `twin_city_bank` - Twin City Bank reserve_account_id: The identifier of the Account the Program should be added to is for. diff --git a/src/increase/types/simulations/program_create_params.py b/src/increase/types/simulations/program_create_params.py index d8718d60d..7153e2292 100644 --- a/src/increase/types/simulations/program_create_params.py +++ b/src/increase/types/simulations/program_create_params.py @@ -11,7 +11,14 @@ class ProgramCreateParams(TypedDict, total=False): name: Required[str] """The name of the program being added.""" - bank: Literal["blue_ridge_bank", "core_bank", "first_internet_bank", "global_innovations_bank", "grasshopper_bank"] + bank: Literal[ + "blue_ridge_bank", + "core_bank", + "first_internet_bank", + "global_innovations_bank", + "grasshopper_bank", + "twin_city_bank", + ] """The bank for the program's accounts, defaults to First Internet Bank. - `blue_ridge_bank` - Blue Ridge Bank, N.A. @@ -19,6 +26,7 @@ class ProgramCreateParams(TypedDict, total=False): - `first_internet_bank` - First Internet Bank of Indiana - `global_innovations_bank` - Global Innovations Bank - `grasshopper_bank` - Grasshopper Bank + - `twin_city_bank` - Twin City Bank """ reserve_account_id: str From a68cbd739813d368bbaec387eefa645ded78f49d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 11 Oct 2025 19:08:20 +0000 Subject: [PATCH 2/2] release: 0.357.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 d4af9aa61..b65ebe518 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.356.0" + ".": "0.357.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index cea04552a..77ea336c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.357.0 (2025-10-11) + +Full Changelog: [v0.356.0...v0.357.0](https://github.com/Increase/increase-python/compare/v0.356.0...v0.357.0) + +### Features + +* **api:** api update ([01bab6f](https://github.com/Increase/increase-python/commit/01bab6fc34f7e9eae7a8007bb965779ee2d83661)) + ## 0.356.0 (2025-10-10) Full Changelog: [v0.355.0...v0.356.0](https://github.com/Increase/increase-python/compare/v0.355.0...v0.356.0) diff --git a/pyproject.toml b/pyproject.toml index 2cef96eb1..842d9db0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.356.0" +version = "0.357.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 ef958dd0e..1b296863d 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.356.0" # x-release-please-version +__version__ = "0.357.0" # x-release-please-version