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.153.0"
".": "0.154.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: 199
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-146225aba7612f3b51a06949deecd941065be0543e463521e6f18d079154844c.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-7678922302b8dfe04d326fee16e9644cb1dd6cffa5e810c58f37d9b159b04582.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.154.0 (2024-11-11)

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

### Features

* **api:** api update ([#806](https://github.com/Increase/increase-python/issues/806)) ([61f99e2](https://github.com/Increase/increase-python/commit/61f99e2e55980f64f55996a7f6ff9c15a76884a0))

## 0.153.0 (2024-11-09)

Full Changelog: [v0.152.0...v0.153.0](https://github.com/Increase/increase-python/compare/v0.152.0...v0.153.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.153.0"
version = "0.154.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.153.0" # x-release-please-version
__version__ = "0.154.0" # x-release-please-version
9 changes: 8 additions & 1 deletion src/increase/types/inbound_ach_transfer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import List, Optional
from datetime import datetime
from datetime import date, datetime
from typing_extensions import Literal

from .._models import BaseModel
Expand Down Expand Up @@ -419,6 +419,13 @@ class InboundACHTransfer(BaseModel):
- `debit` - Debit
"""

effective_date: date
"""The effective date of the transfer.

This is sent by the sending bank and is a factor in determining funds
availability.
"""

expected_settlement_schedule: Literal["same_day", "future_dated"]
"""The settlement schedule the transfer is expected to follow.

Expand Down