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.152.0"
".": "0.153.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-6851e8d3095620503dba6bf1dbbe60d894bb54200d90d7870588fe5804350392.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-146225aba7612f3b51a06949deecd941065be0543e463521e6f18d079154844c.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.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)

### Features

* **api:** api update ([#803](https://github.com/Increase/increase-python/issues/803)) ([27a0ddd](https://github.com/Increase/increase-python/commit/27a0ddd84da9fbfc787c13a04c112575cc784c42))

## 0.152.0 (2024-11-08)

Full Changelog: [v0.151.0...v0.152.0](https://github.com/Increase/increase-python/compare/v0.151.0...v0.152.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.152.0"
version = "0.153.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.152.0" # x-release-please-version
__version__ = "0.153.0" # x-release-please-version
12 changes: 12 additions & 0 deletions src/increase/types/inbound_check_deposit.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,18 @@ class InboundCheckDeposit(BaseModel):
front_image_file_id: Optional[str] = None
"""The ID for the File containing the image of the front of the check."""

payee_name_analysis: Literal["name_matches", "does_not_match", "not_evaluated"]
"""Whether the details on the check match the recipient name of the check transfer.

This is an optional feature, contact sales to enable.

- `name_matches` - The details on the check match the recipient name of the
check transfer.
- `does_not_match` - The details on the check do not match the recipient name of
the check transfer.
- `not_evaluated` - The payee name analysis was not evaluated.
"""

status: Literal["pending", "accepted", "declined", "returned", "requires_attention"]
"""The status of the Inbound Check Deposit.

Expand Down