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.292.0"
".": "0.293.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: 215
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9a5905fe541badfa11ad0641e7aea625c9fb0bc59ba33b1d43d8e88cbbdd71b2.yml
openapi_spec_hash: 4347de40c3142cd56c2185aac9a6739e
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-289025fcb79a47841395734231b11fd75ad3d80dec533e0eb4533e6afaf82cdf.yml
openapi_spec_hash: 511ad2e7d8c798641f073775ccdab523
config_hash: 0b0a2503208283b283fc5bc6df6a07a5
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.293.0 (2025-08-20)

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

### Features

* **api:** api update ([a3265e7](https://github.com/Increase/increase-python/commit/a3265e7a7890d393b3e9e335a295b426b1c46a79))

## 0.292.0 (2025-08-20)

Full Changelog: [v0.291.0...v0.292.0](https://github.com/Increase/increase-python/compare/v0.291.0...v0.292.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.292.0"
version = "0.293.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.292.0" # x-release-please-version
__version__ = "0.293.0" # x-release-please-version
17 changes: 17 additions & 0 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"SourceRealTimePaymentsTransferAcknowledgement",
"SourceSampleFunds",
"SourceSwiftTransferIntention",
"SourceSwiftTransferReturn",
"SourceWireTransferIntention",
]

Expand Down Expand Up @@ -2348,6 +2349,11 @@ class SourceSwiftTransferIntention(BaseModel):
"""The identifier of the Swift Transfer that led to this Transaction."""


class SourceSwiftTransferReturn(BaseModel):
transfer_id: str
"""The identifier of the Swift Transfer that led to this Transaction."""


class SourceWireTransferIntention(BaseModel):
account_number: str
"""The destination account number."""
Expand Down Expand Up @@ -2500,6 +2506,7 @@ class Source(BaseModel):
"sample_funds",
"wire_transfer_intention",
"swift_transfer_intention",
"swift_transfer_return",
"card_push_transfer_acceptance",
"other",
]
Expand Down Expand Up @@ -2571,6 +2578,8 @@ class Source(BaseModel):
`wire_transfer_intention` object.
- `swift_transfer_intention` - Swift Transfer Intention: details will be under
the `swift_transfer_intention` object.
- `swift_transfer_return` - Swift Transfer Return: details will be under the
`swift_transfer_return` object.
- `card_push_transfer_acceptance` - Card Push Transfer Acceptance: details will
be under the `card_push_transfer_acceptance` object.
- `other` - The Transaction was made for an undocumented or deprecated reason.
Expand Down Expand Up @@ -2734,6 +2743,14 @@ class Source(BaseModel):
equal to `swift_transfer_intention`. A Swift Transfer initiated via Increase.
"""

swift_transfer_return: Optional[SourceSwiftTransferReturn] = None
"""A Swift Transfer Return object.

This field will be present in the JSON response if and only if `category` is
equal to `swift_transfer_return`. A Swift Transfer Return is created when a
Swift Transfer is returned by the receiving bank.
"""

wire_transfer_intention: Optional[SourceWireTransferIntention] = None
"""A Wire Transfer Intention object.

Expand Down
1 change: 1 addition & 0 deletions src/increase/types/transaction_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ class TransactionListParams(TypedDict, total=False):
"sample_funds",
"wire_transfer_intention",
"swift_transfer_intention",
"swift_transfer_return",
"card_push_transfer_acceptance",
"other",
]
Expand Down