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.354.0"
".": "0.355.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: 220
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4d0b54206ef7c159e14154c892fe3146fa1ed1108a06cf53731ba27ac27b962a.yml
openapi_spec_hash: 7a575e29fc5e9fd1e74e9de7ddb8ba67
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d5e8c32ee2dc3b3f70e43e439b18ad51e73cb830c01f7bb53290a340be7937ea.yml
openapi_spec_hash: dcf97003cd0f0b49bfc2b1213ef83ed9
config_hash: f0b80170c2ea09811aeae3f1e94bc422
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.355.0 (2025-10-10)

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

### Features

* **api:** api update ([495bb1b](https://github.com/Increase/increase-python/commit/495bb1b75ef8712b237bce12c1717100f4deade6))


### Chores

* **internal:** detect missing future annotations with ruff ([be1ccbe](https://github.com/Increase/increase-python/commit/be1ccbea392021bc96c899820faf5903b269fc9a))

## 0.354.0 (2025-10-08)

Full Changelog: [v0.353.0...v0.354.0](https://github.com/Increase/increase-python/compare/v0.353.0...v0.354.0)
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "increase"
version = "0.354.0"
version = "0.355.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down Expand Up @@ -224,6 +224,8 @@ select = [
"B",
# remove unused imports
"F401",
# check for missing future annotations
"FA102",
# bare except statements
"E722",
# unused arguments
Expand All @@ -246,6 +248,8 @@ unfixable = [
"T203",
]

extend-safe-fixes = ["FA102"]

[tool.ruff.lint.flake8-tidy-imports.banned-api]
"functools.lru_cache".msg = "This function does not retain type information for the wrapped function's arguments; The `lru_cache` function from `_utils` should be used instead"

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.354.0" # x-release-please-version
__version__ = "0.355.0" # x-release-please-version
11 changes: 11 additions & 0 deletions src/increase/types/ach_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,17 @@ class Settlement(BaseModel):


class Submission(BaseModel):
administrative_returns_expected_by: Optional[datetime.datetime] = None
"""The timestamp by which any administrative returns are expected to be received
by.

This follows the NACHA guidelines for return windows, which are: "In general,
return entries must be received by the RDFI’s ACH Operator by its deposit
deadline for the return entry to be made available to the ODFI no later than the
opening of business on the second banking day following the Settlement Date of
the original entry.".
"""

effective_date: datetime.date
"""The ACH transfer's effective date as sent to the Federal Reserve.

Expand Down