Skip to content

Commit

Permalink
feat(api): api update (#817)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Nov 13, 2024
1 parent 7831f7e commit 407f554
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
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-3ba84b9feb561355302af8e25d666f65a8a3f152f59dcb7dec57abcb99639d61.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8b8e19d1cfc46bbf4bd8f898d3231d6d571ae179ff531b22037470d4051f8351.yml
6 changes: 6 additions & 0 deletions src/increase/types/card_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1542,6 +1542,9 @@ class ElementCardRefund(BaseModel):
merchant_name: str
"""The name of the merchant."""

merchant_postal_code: Optional[str] = None
"""The merchant's postal code. For US merchants this is always a 5-digit ZIP code."""

merchant_state: Optional[str] = None
"""The state the merchant resides in."""

Expand Down Expand Up @@ -2200,6 +2203,9 @@ class ElementCardSettlement(BaseModel):
merchant_name: str
"""The name of the merchant."""

merchant_postal_code: Optional[str] = None
"""The merchant's postal code. For US merchants this is always a 5-digit ZIP code."""

merchant_state: Optional[str] = None
"""The state the merchant resides in."""

Expand Down
6 changes: 6 additions & 0 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,9 @@ class SourceCardRefund(BaseModel):
merchant_name: str
"""The name of the merchant."""

merchant_postal_code: Optional[str] = None
"""The merchant's postal code. For US merchants this is always a 5-digit ZIP code."""

merchant_state: Optional[str] = None
"""The state the merchant resides in."""

Expand Down Expand Up @@ -1464,6 +1467,9 @@ class SourceCardSettlement(BaseModel):
merchant_name: str
"""The name of the merchant."""

merchant_postal_code: Optional[str] = None
"""The merchant's postal code. For US merchants this is always a 5-digit ZIP code."""

merchant_state: Optional[str] = None
"""The state the merchant resides in."""

Expand Down

0 comments on commit 407f554

Please sign in to comment.