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.165.1"
".": "0.166.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-5fb150851a7b999aa231fd826e5365716f9c7d487a3fc1bb0a9df65bdfdfeca3.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-120670f0bcb7ab318b5b09e639e25e243d2cb7a630a27aebb4f94395b1fc337b.yml
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.166.0 (2024-12-04)

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

### Features

* **api:** api update ([#857](https://github.com/Increase/increase-python/issues/857)) ([d57f9f2](https://github.com/Increase/increase-python/commit/d57f9f2c3df5e7fd69cba167d259d535989bddd5))


### Chores

* **internal:** bump pyright ([#854](https://github.com/Increase/increase-python/issues/854)) ([9864983](https://github.com/Increase/increase-python/commit/9864983dea855e3020afd63004a52cb0fc8c8697))
* make the `Omit` type public ([#856](https://github.com/Increase/increase-python/issues/856)) ([b194c78](https://github.com/Increase/increase-python/commit/b194c784d2209ea7b5e7473a33c9d72f78a836b3))

## 0.165.1 (2024-11-28)

Full Changelog: [v0.165.0...v0.165.1](https://github.com/Increase/increase-python/compare/v0.165.0...v0.165.1)
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.165.1"
version = "0.166.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pydantic-core==2.23.4
# via pydantic
pygments==2.18.0
# via rich
pyright==1.1.380
pyright==1.1.389
pytest==8.3.3
# via pytest-asyncio
pytest-asyncio==0.24.0
Expand Down Expand Up @@ -97,6 +97,7 @@ typing-extensions==4.12.2
# via mypy
# via pydantic
# via pydantic-core
# via pyright
virtualenv==20.24.5
# via nox
zipp==3.17.0
Expand Down
3 changes: 2 additions & 1 deletion src/increase/__init__.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 . import types
from ._types import NOT_GIVEN, NoneType, NotGiven, Transport, ProxiesTypes
from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes
from ._utils import file_from_path
from ._client import (
ENVIRONMENTS,
Expand Down Expand Up @@ -58,6 +58,7 @@
"ProxiesTypes",
"NotGiven",
"NOT_GIVEN",
"Omit",
"IncreaseError",
"APIError",
"APIStatusError",
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.165.1" # x-release-please-version
__version__ = "0.166.0" # x-release-please-version
12 changes: 12 additions & 0 deletions src/increase/types/real_time_payments_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

__all__ = [
"RealTimePaymentsTransfer",
"Acknowledgement",
"Approval",
"Cancellation",
"CreatedBy",
Expand All @@ -19,6 +20,11 @@
]


class Acknowledgement(BaseModel):
acknowledged_at: datetime
"""When the transfer was acknowledged."""


class Approval(BaseModel):
approved_at: datetime
"""
Expand Down Expand Up @@ -192,6 +198,12 @@ class RealTimePaymentsTransfer(BaseModel):
account_id: str
"""The Account from which the transfer was sent."""

acknowledgement: Optional[Acknowledgement] = None
"""
If the transfer is acknowledged by the recipient bank, this will contain
supplemental details.
"""

amount: int
"""The transfer amount in USD cents."""

Expand Down
Loading