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.155.0"
".": "0.156.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: 199
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-820e880c0c5a0a64c9370d6fa3f8d0f479c25f88ea3e2cec4d83ab6b40c9cebf.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3ba84b9feb561355302af8e25d666f65a8a3f152f59dcb7dec57abcb99639d61.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.156.0 (2024-11-13)

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

### Features

* **api:** api update ([#814](https://github.com/Increase/increase-python/issues/814)) ([fea3d8a](https://github.com/Increase/increase-python/commit/fea3d8ae7604c9ef23fb902470f1c89fee0ac28d))

## 0.155.0 (2024-11-13)

Full Changelog: [v0.154.0...v0.155.0](https://github.com/Increase/increase-python/compare/v0.154.0...v0.155.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.155.0"
version = "0.156.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.155.0" # x-release-please-version
__version__ = "0.156.0" # x-release-please-version
12 changes: 6 additions & 6 deletions src/increase/types/card_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ class ElementCardAuthorization(BaseModel):
is transacting with.
"""

merchant_category_code: Optional[str] = None
merchant_category_code: str
"""
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
card is transacting with.
Expand All @@ -345,7 +345,7 @@ class ElementCardAuthorization(BaseModel):
merchant_city: Optional[str] = None
"""The city the merchant resides in."""

merchant_country: Optional[str] = None
merchant_country: str
"""The country the merchant resides in."""

merchant_descriptor: str
Expand Down Expand Up @@ -746,7 +746,7 @@ class ElementCardDecline(BaseModel):
is transacting with.
"""

merchant_category_code: Optional[str] = None
merchant_category_code: str
"""
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
card is transacting with.
Expand All @@ -755,7 +755,7 @@ class ElementCardDecline(BaseModel):
merchant_city: Optional[str] = None
"""The city the merchant resides in."""

merchant_country: Optional[str] = None
merchant_country: str
"""The country the merchant resides in."""

merchant_descriptor: str
Expand Down Expand Up @@ -2486,7 +2486,7 @@ class ElementCardValidation(BaseModel):
is transacting with.
"""

merchant_category_code: Optional[str] = None
merchant_category_code: str
"""
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
card is transacting with.
Expand All @@ -2495,7 +2495,7 @@ class ElementCardValidation(BaseModel):
merchant_city: Optional[str] = None
"""The city the merchant resides in."""

merchant_country: Optional[str] = None
merchant_country: str
"""The country the merchant resides in."""

merchant_descriptor: str
Expand Down
4 changes: 2 additions & 2 deletions src/increase/types/declined_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ class SourceCardDecline(BaseModel):
is transacting with.
"""

merchant_category_code: Optional[str] = None
merchant_category_code: str
"""
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
card is transacting with.
Expand All @@ -392,7 +392,7 @@ class SourceCardDecline(BaseModel):
merchant_city: Optional[str] = None
"""The city the merchant resides in."""

merchant_country: Optional[str] = None
merchant_country: str
"""The country the merchant resides in."""

merchant_descriptor: str
Expand Down
4 changes: 2 additions & 2 deletions src/increase/types/pending_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ class SourceCardAuthorization(BaseModel):
is transacting with.
"""

merchant_category_code: Optional[str] = None
merchant_category_code: str
"""
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
card is transacting with.
Expand All @@ -342,7 +342,7 @@ class SourceCardAuthorization(BaseModel):
merchant_city: Optional[str] = None
"""The city the merchant resides in."""

merchant_country: Optional[str] = None
merchant_country: str
"""The country the merchant resides in."""

merchant_descriptor: str
Expand Down
4 changes: 2 additions & 2 deletions src/increase/types/real_time_decision.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ class CardAuthorization(BaseModel):
is transacting with.
"""

merchant_category_code: Optional[str] = None
merchant_category_code: str
"""
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
card is transacting with.
Expand All @@ -357,7 +357,7 @@ class CardAuthorization(BaseModel):
merchant_city: Optional[str] = None
"""The city the merchant resides in."""

merchant_country: Optional[str] = None
merchant_country: str
"""The country the merchant resides in."""

merchant_descriptor: str
Expand Down