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.202.0"
".": "0.203.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ecd02bb92f99f15ee369204923a50283b42c9f2e46ed88e437771916e8495214.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9321195a045645c8811a82a028c4dfa4d365efbe1dfe47107a4a5b23679609cd.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.203.0 (2025-03-04)

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

### Features

* **api:** api update ([#1008](https://github.com/Increase/increase-python/issues/1008)) ([7631ad2](https://github.com/Increase/increase-python/commit/7631ad24981d11fda220363286ff7dfbba74e300))

## 0.202.0 (2025-03-04)

Full Changelog: [v0.201.0...v0.202.0](https://github.com/Increase/increase-python/compare/v0.201.0...v0.202.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.202.0"
version = "0.203.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.202.0" # x-release-please-version
__version__ = "0.203.0" # x-release-please-version
4 changes: 4 additions & 0 deletions src/increase/resources/simulations/card_authorizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def create(
decline_reason: Literal[
"account_closed",
"card_not_active",
"card_canceled",
"physical_card_not_active",
"entity_not_active",
"group_locked",
Expand Down Expand Up @@ -114,6 +115,7 @@ def create(

- `account_closed` - The account has been closed.
- `card_not_active` - The Card was not active.
- `card_canceled` - The Card has been canceled.
- `physical_card_not_active` - The Physical Card was not active.
- `entity_not_active` - The account's entity was not active.
- `group_locked` - The account was inactive.
Expand Down Expand Up @@ -245,6 +247,7 @@ async def create(
decline_reason: Literal[
"account_closed",
"card_not_active",
"card_canceled",
"physical_card_not_active",
"entity_not_active",
"group_locked",
Expand Down Expand Up @@ -304,6 +307,7 @@ async def create(

- `account_closed` - The account has been closed.
- `card_not_active` - The Card was not active.
- `card_canceled` - The Card has been canceled.
- `physical_card_not_active` - The Physical Card was not active.
- `entity_not_active` - The account's entity was not active.
- `group_locked` - The account was inactive.
Expand Down
2 changes: 2 additions & 0 deletions src/increase/types/card_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1039,6 +1039,7 @@ class ElementCardDecline(BaseModel):
reason: Literal[
"account_closed",
"card_not_active",
"card_canceled",
"physical_card_not_active",
"entity_not_active",
"group_locked",
Expand All @@ -1058,6 +1059,7 @@ class ElementCardDecline(BaseModel):

- `account_closed` - The account has been closed.
- `card_not_active` - The Card was not active.
- `card_canceled` - The Card has been canceled.
- `physical_card_not_active` - The Physical Card was not active.
- `entity_not_active` - The account's entity was not active.
- `group_locked` - The account was inactive.
Expand Down
2 changes: 2 additions & 0 deletions src/increase/types/declined_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,7 @@ class SourceCardDecline(BaseModel):
reason: Literal[
"account_closed",
"card_not_active",
"card_canceled",
"physical_card_not_active",
"entity_not_active",
"group_locked",
Expand All @@ -519,6 +520,7 @@ class SourceCardDecline(BaseModel):

- `account_closed` - The account has been closed.
- `card_not_active` - The Card was not active.
- `card_canceled` - The Card has been canceled.
- `physical_card_not_active` - The Physical Card was not active.
- `entity_not_active` - The account's entity was not active.
- `group_locked` - The account was inactive.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class CardAuthorizationCreateParams(TypedDict, total=False):
decline_reason: Literal[
"account_closed",
"card_not_active",
"card_canceled",
"physical_card_not_active",
"entity_not_active",
"group_locked",
Expand All @@ -44,6 +45,7 @@ class CardAuthorizationCreateParams(TypedDict, total=False):

- `account_closed` - The account has been closed.
- `card_not_active` - The Card was not active.
- `card_canceled` - The Card has been canceled.
- `physical_card_not_active` - The Physical Card was not active.
- `entity_not_active` - The account's entity was not active.
- `group_locked` - The account was inactive.
Expand Down