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.186.0"
".": "0.187.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-28ffd3b61bd618b2a60b46dd2afb8f52370c43e02cab2e9106465c3cffafb95a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ce741f23d99b551b38099da78d730af0cf9019e3b51e61bc988a5e5979c26143.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.187.0 (2025-02-04)

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

### Features

* **api:** api update ([#949](https://github.com/Increase/increase-python/issues/949)) ([cb02b70](https://github.com/Increase/increase-python/commit/cb02b708ab3e039fa38a48480f5da851a73e36aa))

## 0.186.0 (2025-02-03)

Full Changelog: [v0.185.0...v0.186.0](https://github.com/Increase/increase-python/compare/v0.185.0...v0.186.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.186.0"
version = "0.187.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.186.0" # x-release-please-version
__version__ = "0.187.0" # x-release-please-version
3 changes: 2 additions & 1 deletion src/increase/types/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ class Account(BaseModel):
id: str
"""The Account identifier."""

bank: Literal["blue_ridge_bank", "first_internet_bank", "grasshopper_bank"]
bank: Literal["blue_ridge_bank", "core_bank", "first_internet_bank", "grasshopper_bank"]
"""The bank the Account is with.

- `blue_ridge_bank` - Blue Ridge Bank, N.A.
- `core_bank` - Core Bank
- `first_internet_bank` - First Internet Bank of Indiana
- `grasshopper_bank` - Grasshopper Bank
"""
Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ class Program(BaseModel):
id: str
"""The Program identifier."""

bank: Literal["blue_ridge_bank", "first_internet_bank", "grasshopper_bank"]
bank: Literal["blue_ridge_bank", "core_bank", "first_internet_bank", "grasshopper_bank"]
"""The Bank the Program is with.

- `blue_ridge_bank` - Blue Ridge Bank, N.A.
- `core_bank` - Core Bank
- `first_internet_bank` - First Internet Bank of Indiana
- `grasshopper_bank` - Grasshopper Bank
"""
Expand Down