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.395.0"
".": "0.396.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: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-7a6340375b0e06648ff3e7e4b8aa1527b71df0c7a3d793738ba6fe20eef6f624.yml
openapi_spec_hash: 3cb2076c8a4870d3b17d02780a295172
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fadbd087449a336a91be2645c64e2fe1e81e0f52d9810ab5f830af7e1c727138.yml
openapi_spec_hash: 7e44d91e713fb44925a3565b882248d7
config_hash: ca1425272e17fa23d4466d33492334fa
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.396.0 (2025-11-18)

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

### Features

* **api:** api update ([73f8a13](https://github.com/Increase/increase-python/commit/73f8a1397f32d11e5b4111e6e706f23e9a87e06e))

## 0.395.0 (2025-11-14)

Full Changelog: [v0.394.0...v0.395.0](https://github.com/Increase/increase-python/compare/v0.394.0...v0.395.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.395.0"
version = "0.396.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.395.0" # x-release-please-version
__version__ = "0.396.0" # x-release-please-version
30 changes: 16 additions & 14 deletions src/increase/resources/card_push_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ def with_streaming_response(self) -> CardPushTransfersResourceWithStreamingRespo
def create(
self,
*,
amount: int,
business_application_identifier: Literal[
"account_to_account",
"business_to_business",
Expand All @@ -71,6 +70,7 @@ def create(
merchant_name_prefix: str,
merchant_postal_code: str,
merchant_state: str,
presentment_amount: card_push_transfer_create_params.PresentmentAmount,
recipient_name: str,
sender_address_city: str,
sender_address_line1: str,
Expand All @@ -87,13 +87,10 @@ def create(
timeout: float | httpx.Timeout | None | NotGiven = not_given,
idempotency_key: str | None = None,
) -> CardPushTransfer:
"""Create a Card Push Transfer
"""
Create a Card Push Transfer

Args:
amount: The transfer amount in USD cents.

For Card Push transfers, must be positive.

business_application_identifier: The Business Application Identifier describes the type of transaction being
performed. Your program must be approved for the specified Business Application
Identifier in order to use it.
Expand Down Expand Up @@ -134,6 +131,10 @@ def create(

merchant_state: The state of the merchant (generally your business) sending the transfer.

presentment_amount: The amount to transfer. The receiving bank will convert this to the cardholder's
currency. The amount that is applied to your Increase account matches the
currency of your account.

recipient_name: The name of the funds recipient.

sender_address_city: The city of the sender.
Expand Down Expand Up @@ -164,7 +165,6 @@ def create(
"/card_push_transfers",
body=maybe_transform(
{
"amount": amount,
"business_application_identifier": business_application_identifier,
"card_token_id": card_token_id,
"merchant_category_code": merchant_category_code,
Expand All @@ -173,6 +173,7 @@ def create(
"merchant_name_prefix": merchant_name_prefix,
"merchant_postal_code": merchant_postal_code,
"merchant_state": merchant_state,
"presentment_amount": presentment_amount,
"recipient_name": recipient_name,
"sender_address_city": sender_address_city,
"sender_address_line1": sender_address_line1,
Expand Down Expand Up @@ -406,7 +407,6 @@ def with_streaming_response(self) -> AsyncCardPushTransfersResourceWithStreaming
async def create(
self,
*,
amount: int,
business_application_identifier: Literal[
"account_to_account",
"business_to_business",
Expand All @@ -430,6 +430,7 @@ async def create(
merchant_name_prefix: str,
merchant_postal_code: str,
merchant_state: str,
presentment_amount: card_push_transfer_create_params.PresentmentAmount,
recipient_name: str,
sender_address_city: str,
sender_address_line1: str,
Expand All @@ -446,13 +447,10 @@ async def create(
timeout: float | httpx.Timeout | None | NotGiven = not_given,
idempotency_key: str | None = None,
) -> CardPushTransfer:
"""Create a Card Push Transfer
"""
Create a Card Push Transfer

Args:
amount: The transfer amount in USD cents.

For Card Push transfers, must be positive.

business_application_identifier: The Business Application Identifier describes the type of transaction being
performed. Your program must be approved for the specified Business Application
Identifier in order to use it.
Expand Down Expand Up @@ -493,6 +491,10 @@ async def create(

merchant_state: The state of the merchant (generally your business) sending the transfer.

presentment_amount: The amount to transfer. The receiving bank will convert this to the cardholder's
currency. The amount that is applied to your Increase account matches the
currency of your account.

recipient_name: The name of the funds recipient.

sender_address_city: The city of the sender.
Expand Down Expand Up @@ -523,7 +525,6 @@ async def create(
"/card_push_transfers",
body=await async_maybe_transform(
{
"amount": amount,
"business_application_identifier": business_application_identifier,
"card_token_id": card_token_id,
"merchant_category_code": merchant_category_code,
Expand All @@ -532,6 +533,7 @@ async def create(
"merchant_name_prefix": merchant_name_prefix,
"merchant_postal_code": merchant_postal_code,
"merchant_state": merchant_state,
"presentment_amount": presentment_amount,
"recipient_name": recipient_name,
"sender_address_city": sender_address_city,
"sender_address_line1": sender_address_line1,
Expand Down
Loading