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.443.0"
".": "0.444.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: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d5ad75c7a80acd1cb3ff0483fa0b5b2eb9d73287f107f53a8fb3a3a0b6a32ed8.yml
openapi_spec_hash: da73faf476df3eddcf0ac51c38dd1b17
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-81da26cfd6540bc5195c268095b26df132373e932997f224d19247a36e1a1183.yml
openapi_spec_hash: 7b9bbc35378f2fc47629810923bd0017
config_hash: 25d7d7aa4882db6189b4b53e8e249e80
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.444.0 (2026-03-16)

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

### Features

* **api:** api update ([0ac5c64](https://github.com/Increase/increase-python/commit/0ac5c641015bbced16f355d0b0977841041f17f4))

## 0.443.0 (2026-03-13)

Full Changelog: [v0.442.0...v0.443.0](https://github.com/Increase/increase-python/compare/v0.442.0...v0.443.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.443.0"
version = "0.444.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.443.0" # x-release-please-version
__version__ = "0.444.0" # x-release-please-version
7 changes: 7 additions & 0 deletions src/increase/types/card_push_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,6 +765,13 @@ class CardPushTransfer(BaseModel):
recipient_name: str
"""The name of the funds recipient."""

route: Literal["visa", "mastercard"]
"""The card network route used for the transfer.

- `visa` - Visa and Interlink
- `mastercard` - Mastercard and Maestro
"""

sender_address_city: str
"""The city of the sender."""

Expand Down
7 changes: 7 additions & 0 deletions src/increase/types/card_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,13 @@ class CardValidation(BaseModel):
merchant_state: str
"""The U.S. state where the merchant (typically your business) is located."""

route: Literal["visa", "mastercard"]
"""The card network route used for the validation.

- `visa` - Visa and Interlink
- `mastercard` - Mastercard and Maestro
"""

status: Literal["requires_attention", "pending_submission", "submitted", "complete", "declined"]
"""The lifecycle status of the validation.

Expand Down