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.158.0"
".": "0.159.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-8ced45f4f5595df242ca2c43d1c74f4904ca3d18581ea6ca335f885967a0a663.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-423dab63d43cc4e237026e0a7a8ac247653ed0cae54b51511b92d522dd9e58f6.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.159.0 (2024-11-13)

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

### Features

* **api:** api update ([#823](https://github.com/Increase/increase-python/issues/823)) ([f455b5f](https://github.com/Increase/increase-python/commit/f455b5f23acd2f396f348b26734b9d8b994c7028))

## 0.158.0 (2024-11-13)

Full Changelog: [v0.157.0...v0.158.0](https://github.com/Increase/increase-python/compare/v0.157.0...v0.158.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.158.0"
version = "0.159.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.158.0" # x-release-please-version
__version__ = "0.159.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/increase/types/card_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,7 @@ class ElementCardRefund(BaseModel):
merchant_category_code: str
"""The 4-digit MCC describing the merchant's business."""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down Expand Up @@ -2194,7 +2194,7 @@ class ElementCardSettlement(BaseModel):
merchant_category_code: str
"""The 4-digit MCC describing the merchant's business."""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down
4 changes: 2 additions & 2 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ class SourceCardRefund(BaseModel):
merchant_category_code: str
"""The 4-digit MCC describing the merchant's business."""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down Expand Up @@ -1458,7 +1458,7 @@ class SourceCardSettlement(BaseModel):
merchant_category_code: str
"""The 4-digit MCC describing the merchant's business."""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down