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.214.0"
".": "0.215.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: 199
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-cc8e6b6ae3f31bfee6a3b1ed5d48604196757c1a78fec7054dc453c44ab8aa86.yml
openapi_spec_hash: 720e772da4156f4325664fb8b8df1d81
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-980332df3fb6b765fea4323999ffdf03b0617292e11fb251d4c1cb7bfd669527.yml
openapi_spec_hash: a5853d13470a12038e0a6c5cb069d611
config_hash: 20a463ecd33bd32b7b9bc6f4990907ac
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.215.0 (2025-03-31)

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

### Features

* **api:** api update ([#1061](https://github.com/Increase/increase-python/issues/1061)) ([d077a02](https://github.com/Increase/increase-python/commit/d077a02241ef10650d56cd30e9067b53403f1766))

## 0.214.0 (2025-03-28)

Full Changelog: [v0.213.0...v0.214.0](https://github.com/Increase/increase-python/compare/v0.213.0...v0.214.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.214.0"
version = "0.215.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.214.0" # x-release-please-version
__version__ = "0.215.0" # x-release-please-version
5 changes: 4 additions & 1 deletion src/increase/types/check_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,10 @@ class Submission(BaseModel):

class ThirdParty(BaseModel):
check_number: Optional[str] = None
"""The check number that will be printed on the check."""
"""The check number that you will print on the check."""

recipient_name: Optional[str] = None
"""The name that you will print on the check."""


class CheckTransfer(BaseModel):
Expand Down