diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9a47da07..646eee7b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.496.0" + ".": "0.497.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 0f4697e3..6f61c3b1 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e69542f..f6f69af5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index 9d757de9..4df8601c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/increase/_version.py b/src/increase/_version.py index 7277d6c3..86e445cb 100644 --- a/src/increase/_version.py +++ b/src/increase/_version.py @@ -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 diff --git a/src/increase/types/card_push_transfer.py b/src/increase/types/card_push_transfer.py index 3b11c2c2..6810b9eb 100644 --- a/src/increase/types/card_push_transfer.py +++ b/src/increase/types/card_push_transfer.py @@ -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 diff --git a/src/increase/types/card_token_capabilities.py b/src/increase/types/card_token_capabilities.py index 78e22dbe..3eb6b806 100644 --- a/src/increase/types/card_token_capabilities.py +++ b/src/increase/types/card_token_capabilities.py @@ -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 """ diff --git a/src/increase/types/card_validation.py b/src/increase/types/card_validation.py index fd0450c0..9d8f1e3f 100644 --- a/src/increase/types/card_validation.py +++ b/src/increase/types/card_validation.py @@ -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"] diff --git a/src/increase/types/simulations/card_token_create_params.py b/src/increase/types/simulations/card_token_create_params.py index d9b752bc..50252fb3 100644 --- a/src/increase/types/simulations/card_token_create_params.py +++ b/src/increase/types/simulations/card_token_create_params.py @@ -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 """