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.407.0"
".": "0.408.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-56334e000721ba4ee20536271d3acf7231529d7b1f651729e2f4ebe75eb12048.yml
openapi_spec_hash: 45777c412bcbc1aead50c84f78695203
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-942f7494ee0f14c1634ede0989985359cea633e5eece3d761910e7ffd6ac0fd8.yml
openapi_spec_hash: d87134899fb29e27832158facf9d67eb
config_hash: b6f365add90e618b2174634df140826e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.408.0 (2025-12-08)

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

### Features

* **api:** api update ([de8fd2d](https://github.com/Increase/increase-python/commit/de8fd2d16c00290fff0da8f8ef41b9ab4cc31d34))

## 0.407.0 (2025-12-08)

Full Changelog: [v0.406.1...v0.407.0](https://github.com/Increase/increase-python/compare/v0.406.1...v0.407.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.407.0"
version = "0.408.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.407.0" # x-release-please-version
__version__ = "0.408.0" # x-release-please-version
6 changes: 6 additions & 0 deletions src/increase/resources/event_subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ def create(
"proof_of_authorization_request.created",
"proof_of_authorization_request.updated",
"real_time_decision.card_authorization_requested",
"real_time_decision.card_balance_inquiry_requested",
"real_time_decision.digital_wallet_token_requested",
"real_time_decision.digital_wallet_authentication_requested",
"real_time_decision.card_authentication_requested",
Expand Down Expand Up @@ -299,6 +300,8 @@ def create(
Authorization Request is updated.
- `real_time_decision.card_authorization_requested` - Occurs whenever a
Real-Time Decision is created in response to a card authorization.
- `real_time_decision.card_balance_inquiry_requested` - Occurs whenever a
Real-Time Decision is created in response to a card balance inquiry.
- `real_time_decision.digital_wallet_token_requested` - Occurs whenever a
Real-Time Decision is created in response to a digital wallet provisioning
attempt.
Expand Down Expand Up @@ -626,6 +629,7 @@ async def create(
"proof_of_authorization_request.created",
"proof_of_authorization_request.updated",
"real_time_decision.card_authorization_requested",
"real_time_decision.card_balance_inquiry_requested",
"real_time_decision.digital_wallet_token_requested",
"real_time_decision.digital_wallet_authentication_requested",
"real_time_decision.card_authentication_requested",
Expand Down Expand Up @@ -790,6 +794,8 @@ async def create(
Authorization Request is updated.
- `real_time_decision.card_authorization_requested` - Occurs whenever a
Real-Time Decision is created in response to a card authorization.
- `real_time_decision.card_balance_inquiry_requested` - Occurs whenever a
Real-Time Decision is created in response to a card balance inquiry.
- `real_time_decision.digital_wallet_token_requested` - Occurs whenever a
Real-Time Decision is created in response to a digital wallet provisioning
attempt.
Expand Down
10 changes: 10 additions & 0 deletions src/increase/resources/real_time_decisions.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def action(
card_authentication: real_time_decision_action_params.CardAuthentication | Omit = omit,
card_authentication_challenge: real_time_decision_action_params.CardAuthenticationChallenge | Omit = omit,
card_authorization: real_time_decision_action_params.CardAuthorization | Omit = omit,
card_balance_inquiry: real_time_decision_action_params.CardBalanceInquiry | Omit = omit,
digital_wallet_authentication: real_time_decision_action_params.DigitalWalletAuthentication | Omit = omit,
digital_wallet_token: real_time_decision_action_params.DigitalWalletToken | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
Expand All @@ -110,6 +111,9 @@ def action(
card_authorization: If the Real-Time Decision relates to a card authorization attempt, this object
contains your response to the authorization.

card_balance_inquiry: If the Real-Time Decision relates to a card balance inquiry attempt, this object
contains your response to the inquiry.

digital_wallet_authentication: If the Real-Time Decision relates to a digital wallet authentication attempt,
this object contains your response to the authentication.

Expand Down Expand Up @@ -137,6 +141,7 @@ def action(
"card_authentication": card_authentication,
"card_authentication_challenge": card_authentication_challenge,
"card_authorization": card_authorization,
"card_balance_inquiry": card_balance_inquiry,
"digital_wallet_authentication": digital_wallet_authentication,
"digital_wallet_token": digital_wallet_token,
},
Expand Down Expand Up @@ -217,6 +222,7 @@ async def action(
card_authentication: real_time_decision_action_params.CardAuthentication | Omit = omit,
card_authentication_challenge: real_time_decision_action_params.CardAuthenticationChallenge | Omit = omit,
card_authorization: real_time_decision_action_params.CardAuthorization | Omit = omit,
card_balance_inquiry: real_time_decision_action_params.CardBalanceInquiry | Omit = omit,
digital_wallet_authentication: real_time_decision_action_params.DigitalWalletAuthentication | Omit = omit,
digital_wallet_token: real_time_decision_action_params.DigitalWalletToken | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
Expand All @@ -242,6 +248,9 @@ async def action(
card_authorization: If the Real-Time Decision relates to a card authorization attempt, this object
contains your response to the authorization.

card_balance_inquiry: If the Real-Time Decision relates to a card balance inquiry attempt, this object
contains your response to the inquiry.

digital_wallet_authentication: If the Real-Time Decision relates to a digital wallet authentication attempt,
this object contains your response to the authentication.

Expand Down Expand Up @@ -269,6 +278,7 @@ async def action(
"card_authentication": card_authentication,
"card_authentication_challenge": card_authentication_challenge,
"card_authorization": card_authorization,
"card_balance_inquiry": card_balance_inquiry,
"digital_wallet_authentication": digital_wallet_authentication,
"digital_wallet_token": digital_wallet_token,
},
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ class Event(BaseModel):
"proof_of_authorization_request.created",
"proof_of_authorization_request.updated",
"real_time_decision.card_authorization_requested",
"real_time_decision.card_balance_inquiry_requested",
"real_time_decision.digital_wallet_token_requested",
"real_time_decision.digital_wallet_authentication_requested",
"real_time_decision.card_authentication_requested",
Expand Down Expand Up @@ -255,6 +256,8 @@ class Event(BaseModel):
Authorization Request is updated.
- `real_time_decision.card_authorization_requested` - Occurs whenever a
Real-Time Decision is created in response to a card authorization.
- `real_time_decision.card_balance_inquiry_requested` - Occurs whenever a
Real-Time Decision is created in response to a card balance inquiry.
- `real_time_decision.digital_wallet_token_requested` - Occurs whenever a
Real-Time Decision is created in response to a digital wallet provisioning
attempt.
Expand Down
1 change: 1 addition & 0 deletions src/increase/types/event_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ class EventListParams(TypedDict, total=False):
"proof_of_authorization_request.created",
"proof_of_authorization_request.updated",
"real_time_decision.card_authorization_requested",
"real_time_decision.card_balance_inquiry_requested",
"real_time_decision.digital_wallet_token_requested",
"real_time_decision.digital_wallet_authentication_requested",
"real_time_decision.card_authentication_requested",
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/event_subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ class EventSubscription(BaseModel):
"proof_of_authorization_request.created",
"proof_of_authorization_request.updated",
"real_time_decision.card_authorization_requested",
"real_time_decision.card_balance_inquiry_requested",
"real_time_decision.digital_wallet_token_requested",
"real_time_decision.digital_wallet_authentication_requested",
"real_time_decision.card_authentication_requested",
Expand Down Expand Up @@ -268,6 +269,8 @@ class EventSubscription(BaseModel):
Authorization Request is updated.
- `real_time_decision.card_authorization_requested` - Occurs whenever a
Real-Time Decision is created in response to a card authorization.
- `real_time_decision.card_balance_inquiry_requested` - Occurs whenever a
Real-Time Decision is created in response to a card balance inquiry.
- `real_time_decision.digital_wallet_token_requested` - Occurs whenever a
Real-Time Decision is created in response to a digital wallet provisioning
attempt.
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/event_subscription_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ class EventSubscriptionCreateParams(TypedDict, total=False):
"proof_of_authorization_request.created",
"proof_of_authorization_request.updated",
"real_time_decision.card_authorization_requested",
"real_time_decision.card_balance_inquiry_requested",
"real_time_decision.digital_wallet_token_requested",
"real_time_decision.digital_wallet_authentication_requested",
"real_time_decision.card_authentication_requested",
Expand Down Expand Up @@ -248,6 +249,8 @@ class EventSubscriptionCreateParams(TypedDict, total=False):
Authorization Request is updated.
- `real_time_decision.card_authorization_requested` - Occurs whenever a
Real-Time Decision is created in response to a card authorization.
- `real_time_decision.card_balance_inquiry_requested` - Occurs whenever a
Real-Time Decision is created in response to a card balance inquiry.
- `real_time_decision.digital_wallet_token_requested` - Occurs whenever a
Real-Time Decision is created in response to a digital wallet provisioning
attempt.
Expand Down
Loading