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 @@
{
".": "6.4.0-alpha20"
".": "6.4.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: 77
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier%2Fcourier-7f8623bc0783065cb0109d10b6b774a372530343cd9fed253a93a2f451cb9a7d.yml
openapi_spec_hash: 00cda0114b95af8693416ce26c4f8499
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier%2Fcourier-d643c34df4e6c0ba17b85adf379fddaf20ca14211e49fe9715eeb19e64d42556.yml
openapi_spec_hash: 63b45d459907b1e30baeefcd3e552da7
config_hash: 1dfe9dc0d55d828e116bd0f89061c3c5
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 6.4.0 (2025-11-08)

Full Changelog: [v6.4.0-alpha20...v6.4.0](https://github.com/trycourier/courier-python/compare/v6.4.0-alpha20...v6.4.0)

### Features

* **api:** manual updates ([b16bac2](https://github.com/trycourier/courier-python/commit/b16bac2553d106e3ddc040bdfe3beac79f8c0408))
* **api:** manual updates ([cd9ed1b](https://github.com/trycourier/courier-python/commit/cd9ed1b563215b6896734669bd041c091f0db29a))
* Token Prop Description Change ([66b3845](https://github.com/trycourier/courier-python/commit/66b3845cce21eca402dac7348ce9017fa8a55255))


### Chores

* configure new SDK language ([f004f07](https://github.com/trycourier/courier-python/commit/f004f07aabba46f78d7834c62b4ef1ce4ec11759))
* **internal:** codegen related update ([6fb395b](https://github.com/trycourier/courier-python/commit/6fb395bb3062bb749130c8f6345fbfcd693d2584))

## 6.4.0-alpha20 (2025-11-04)

Full Changelog: [v6.4.0-alpha19...v6.4.0-alpha20](https://github.com/trycourier/courier-python/compare/v6.4.0-alpha19...v6.4.0-alpha20)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The REST API documentation can be found on [www.courier.com](https://www.courier

```sh
# install from PyPI
pip install --pre trycourier
pip install trycourier
```

## Usage
Expand Down Expand Up @@ -85,7 +85,7 @@ You can enable this by installing `aiohttp`:

```sh
# install from PyPI
pip install --pre trycourier[aiohttp]
pip install trycourier[aiohttp]
```

Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
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 = "trycourier"
version = "6.4.0-alpha20"
version = "6.4.0"
description = "The official Python library for the Courier API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/courier/_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__ = "courier"
__version__ = "6.4.0-alpha20" # x-release-please-version
__version__ = "6.4.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/courier/resources/users/tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def add_single(
expiry_date: ISO 8601 formatted date the token expires. Defaults to 2 months. Set to false to
disable expiration.

properties: Properties sent to the provider along with the token
properties: Properties about the token.

tracking: Tracking information about the device the token came from.

Expand Down Expand Up @@ -518,7 +518,7 @@ async def add_single(
expiry_date: ISO 8601 formatted date the token expires. Defaults to 2 months. Set to false to
disable expiration.

properties: Properties sent to the provider along with the token
properties: Properties about the token.

tracking: Tracking information about the device the token came from.

Expand Down
2 changes: 1 addition & 1 deletion src/courier/types/users/token_add_single_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class TokenAddSingleParams(TypedDict, total=False):
"""

properties: object
"""Properties sent to the provider along with the token"""
"""Properties about the token."""

tracking: Optional[Tracking]
"""Tracking information about the device the token came from."""
Expand Down
2 changes: 1 addition & 1 deletion src/courier/types/users/user_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class UserToken(BaseModel):
"""

properties: Optional[object] = None
"""Properties sent to the provider along with the token"""
"""Properties about the token."""

tracking: Optional[Tracking] = None
"""Tracking information about the device the token came from."""