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.176.2"
".": "0.177.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-6cc3e4ac223759041f330390923fab4098db3de30668152712a863fa81b40849.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5ea7ed56030d4b00596b425a2efee0459583f4e0e283daad7ebb63a0cd76d29f.yml
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.177.0 (2025-01-14)

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

### Features

* **api:** api update ([#910](https://github.com/Increase/increase-python/issues/910)) ([5eec787](https://github.com/Increase/increase-python/commit/5eec787e3b83883554179aa5e038ca8e857bb9d3))


### Chores

* **internal:** update deps ([#908](https://github.com/Increase/increase-python/issues/908)) ([9131e2d](https://github.com/Increase/increase-python/commit/9131e2dfcbda437331aabc5f43a997efa6d8c705))

## 0.176.2 (2025-01-10)

Full Changelog: [v0.176.1...v0.176.2](https://github.com/Increase/increase-python/compare/v0.176.1...v0.176.2)
Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cache_fine_grained = True
# ```
# Changing this codegen to make mypy happy would increase complexity
# and would not be worth it.
disable_error_code = func-returns-value
disable_error_code = func-returns-value,overload-cannot-match

# https://github.com/python/mypy/issues/12162
[mypy.overrides]
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.176.2"
version = "0.177.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ markdown-it-py==3.0.0
# via rich
mdurl==0.1.2
# via markdown-it-py
mypy==1.13.0
mypy==1.14.1
mypy-extensions==1.0.0
# via mypy
nest-asyncio==1.6.0
Expand All @@ -68,7 +68,7 @@ pydantic-core==2.27.1
# via pydantic
pygments==2.18.0
# via rich
pyright==1.1.390
pyright==1.1.391
pytest==8.3.3
# via pytest-asyncio
pytest-asyncio==0.24.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.176.2" # x-release-please-version
__version__ = "0.177.0" # x-release-please-version
7 changes: 6 additions & 1 deletion src/increase/types/inbound_ach_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,12 @@ class InboundACHTransfer(BaseModel):
"""

trace_number: str
"""The trace number of the transfer."""
"""A 15 digit number set by the sending bank and transmitted to the receiving bank.

Along with the amount, date, and originating routing number, this can be used to
identify the ACH transfer. ACH trace numbers are not unique, but are
[used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
"""

transfer_return: Optional[TransferReturn] = None
"""If your transfer is returned, this will contain details of the return."""
Expand Down
Loading