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.496.0"
".": "0.497.0"
}
2 changes: 1 addition & 1 deletion .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-47752267c48d299a01c906499bb7d584228ea8801b7d83e34ae4100d5dec3434.yml
openapi_spec_hash: 132e71b6e6bb1c5f06153f87d50e335b
openapi_spec_hash: 9ea8bc6dc383de626d3fa15c823227ae
config_hash: 026e2baa580c7f5f2447c24332081ba8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.497.0 (2026-04-27)

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

### Features

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

## 0.496.0 (2026-04-27)

Full Changelog: [v0.495.1...v0.496.0](https://github.com/Increase/increase-python/compare/v0.495.1...v0.496.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.496.0"
version = "0.497.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.496.0" # x-release-please-version
__version__ = "0.497.0" # x-release-please-version
3 changes: 2 additions & 1 deletion src/increase/types/card_push_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -821,11 +821,12 @@ class CardPushTransfer(BaseModel):
recipient_name: str
"""The name of the funds recipient."""

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

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

sender_address_city: str
Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/card_token_capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ class Route(BaseModel):
issuer_country: str
"""The ISO-3166-1 alpha-2 country code of the card's issuing bank."""

route: Literal["visa", "mastercard"]
route: Literal["visa", "mastercard", "pulse"]
"""The card network route the capabilities apply to.

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


Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/card_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,11 +437,12 @@ class CardValidation(BaseModel):
merchant_state: str
"""The U.S. state where the merchant (typically your business) is located."""

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

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

status: Literal["requires_attention", "pending_submission", "submitted", "complete", "declined"]
Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/simulations/card_token_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ class Capability(TypedDict, total=False):
- `not_supported` - The capability is not supported.
"""

route: Required[Literal["visa", "mastercard"]]
route: Required[Literal["visa", "mastercard", "pulse"]]
"""The route of the capability.

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


Expand Down