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.222.0"
".": "0.223.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-f3fa36b4bd3a55445fc8f959c9023e2ace20ec8957e492288d45170f1f284ca6.yml
openapi_spec_hash: 837c92afcea095a3cdd40deca976839c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-55c174581a08cabdf3fcf2fc66d480d497c5f77ab8f0f5e776cc7113b4960037.yml
openapi_spec_hash: 8f70d88f00c9c15ebd8e9049e9f65063
config_hash: 20a463ecd33bd32b7b9bc6f4990907ac
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.223.0 (2025-04-12)

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

### Features

* **api:** api update ([f8c1b01](https://github.com/Increase/increase-python/commit/f8c1b0100f2bd6103fb9723758b1dbc4a79a6927))
* **api:** api update ([4e3f4f7](https://github.com/Increase/increase-python/commit/4e3f4f7eae5975fcc72118322bf7672efa2d8f75))
* **api:** api update ([77049a7](https://github.com/Increase/increase-python/commit/77049a796a927efd09963dbeb629e5160d0e05b4))

## 0.222.0 (2025-04-11)

Full Changelog: [v0.221.0...v0.222.0](https://github.com/Increase/increase-python/compare/v0.221.0...v0.222.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.222.0"
version = "0.223.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.222.0" # x-release-please-version
__version__ = "0.223.0" # x-release-please-version
6 changes: 3 additions & 3 deletions src/increase/types/check_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ class PhysicalCheckTrackingUpdate(BaseModel):


class PhysicalCheck(BaseModel):
attachment_file_id: Optional[str] = None
"""The ID of the file for the check attachment."""

mailing_address: PhysicalCheckMailingAddress
"""Details for where Increase will mail the check."""

Expand Down Expand Up @@ -271,9 +274,6 @@ class Submission(BaseModel):


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

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

Expand Down
8 changes: 0 additions & 8 deletions src/increase/types/check_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,6 @@ class PhysicalCheck(TypedDict, total=False):


class ThirdParty(TypedDict, total=False):
check_number: str
"""The check number you will print on the check.

This should not contain leading zeroes. If this is omitted, Increase will
generate a check number for you; you should inspect the response and use that
check number.
"""

recipient_name: str
"""The pay-to name you will print on the check.

Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/physical_card_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ class PhysicalCardProfile(BaseModel):
group.
"""

program_id: str
"""The identifier for the Program this Physical Card Profile belongs to."""

status: Literal["pending_creating", "pending_reviewing", "rejected", "pending_submitting", "active", "archived"]
"""The status of the Physical Card Profile.

Expand Down
10 changes: 2 additions & 8 deletions tests/api_resources/test_check_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
"signature_text": "Ian Crease",
},
require_approval=True,
third_party={
"check_number": "x",
"recipient_name": "x",
},
third_party={"recipient_name": "x"},
)
assert_matches_type(CheckTransfer, check_transfer, path=["response"])

Expand Down Expand Up @@ -348,10 +345,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
"signature_text": "Ian Crease",
},
require_approval=True,
third_party={
"check_number": "x",
"recipient_name": "x",
},
third_party={"recipient_name": "x"},
)
assert_matches_type(CheckTransfer, check_transfer, path=["response"])

Expand Down