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.330.0"
".": "0.331.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: 213
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fc17d091731928c882b2272ea5de831cafcbf237a7887652a5f133c29cb1bbc4.yml
openapi_spec_hash: aad429d087b7557be4103d1309cd81a0
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-61d42e1f44023df8161e3b35d6154011e638f78b3b232379396ea8980d6257b5.yml
openapi_spec_hash: 8831b733d617f5c7ee39db3cb62da20c
config_hash: e1e8bc2138a13f290956ae6687f099cd
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.331.0 (2025-09-18)

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

### Features

* **api:** api update ([4cb30a6](https://github.com/Increase/increase-python/commit/4cb30a649857da54cb32c21dab372195aa027b51))

## 0.330.0 (2025-09-17)

Full Changelog: [v0.329.0...v0.330.0](https://github.com/Increase/increase-python/compare/v0.329.0...v0.330.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.330.0"
version = "0.331.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.330.0" # x-release-please-version
__version__ = "0.331.0" # x-release-please-version
7 changes: 7 additions & 0 deletions src/increase/types/routing_number_list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ class RoutingNumberListResponse(BaseModel):
- `not_supported` - The routing number cannot receive this transfer type.
"""

fednow_transfers: Literal["supported", "not_supported"]
"""This routing number's support for FedNow Transfers.

- `supported` - The routing number can receive this transfer type.
- `not_supported` - The routing number cannot receive this transfer type.
"""

name: str
"""The name of the financial institution belonging to a routing number."""

Expand Down