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.393.0"
".": "0.394.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-af1c3f6f39bad6db3878ece15395915f818d9310c5535947520e935e82e8bac3.yml
openapi_spec_hash: 3291dcc6833f09527c442c898c8d11f0
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f4ebad4aaba1af68442e3650238657c7f7600714bbf7a26d01e01e69e467ee4b.yml
openapi_spec_hash: 0b7280b86b511746a24a4abef602990a
config_hash: ca1425272e17fa23d4466d33492334fa
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.394.0 (2025-11-14)

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

### Features

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

## 0.393.0 (2025-11-13)

Full Changelog: [v0.392.0...v0.393.0](https://github.com/Increase/increase-python/compare/v0.392.0...v0.393.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.393.0"
version = "0.394.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.393.0" # x-release-please-version
__version__ = "0.394.0" # x-release-please-version
15 changes: 12 additions & 3 deletions src/increase/types/physical_card_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ class PhysicalCardProfile(BaseModel):
"""The Card Profile identifier."""

back_image_file_id: Optional[str] = None
"""The identifier of the File containing the physical card's back image."""
"""The identifier of the File containing the physical card's back image.

This will be missing until the image has been post-processed.
"""

carrier_image_file_id: Optional[str] = None
"""The identifier of the File containing the physical card's carrier image."""
"""The identifier of the File containing the physical card's carrier image.

This will be missing until the image has been post-processed.
"""

contact_phone: Optional[str] = None
"""A phone number the user can contact to receive support for their card."""
Expand All @@ -41,7 +47,10 @@ class PhysicalCardProfile(BaseModel):
"""A description you can use to identify the Physical Card Profile."""

front_image_file_id: Optional[str] = None
"""The identifier of the File containing the physical card's front image."""
"""The identifier of the File containing the physical card's front image.

This will be missing until the image has been post-processed.
"""

idempotency_key: Optional[str] = None
"""The idempotency key you chose for this object.
Expand Down