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.342.0"
".": "0.343.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c51555226fd66ed304eb1e9c759a6485c071eb2cb9ca9ee86f5b5cd88552ee4a.yml
openapi_spec_hash: c5b09ec531c068cb675f8cd3729733c6
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-911c3719c8d84e1119e71e0cf93ae1f2c52f42529e56671731f07273feb5ac88.yml
openapi_spec_hash: 462c4c10440c2f87e0624d8c25a89b75
config_hash: a143293c5450ae8f52acad08f3102575
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.343.0 (2025-09-26)

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

### Features

* **api:** api update ([81f5a0e](https://github.com/Increase/increase-python/commit/81f5a0e655e0d73f0961f09acf419666831ed2e0))

## 0.342.0 (2025-09-26)

Full Changelog: [v0.341.0...v0.342.0](https://github.com/Increase/increase-python/compare/v0.341.0...v0.342.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.342.0"
version = "0.343.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.342.0" # x-release-please-version
__version__ = "0.343.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/increase/types/physical_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ class ShipmentTrackingUpdate(BaseModel):


class ShipmentTracking(BaseModel):
number: str
"""The tracking number."""
number: Optional[str] = None
"""The tracking number. Not available for USPS shipments."""

return_number: Optional[str] = None
"""For returned shipments, the tracking number of the return shipment."""
Expand Down