Skip to content

Commit c5c374c

Browse files
release: 6.4.0-alpha16 (#102)
* codegen metadata * fix: Dep Warning * release: 6.4.0-alpha16 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 55fc2a5 commit c5c374c

9 files changed

Lines changed: 18 additions & 10 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "6.4.0-alpha15"
2+
".": "6.4.0-alpha16"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 77
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier%2Fcourier-e67d027395335bdf5f8ba227544e255f4d833b76fdbd89983d5b3884d77c6532.yml
3-
openapi_spec_hash: 04595b6bb94328ee23497a77e87ed8b2
4-
config_hash: 30d699fd984f2fc03258eb666dc848a2
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier%2Fcourier-17f51389a59f61b350e400d0693d11d34b3fe88582164cbe97c98d7cd32ac982.yml
3+
openapi_spec_hash: 8afff7d6ab9219c0379980128e1629ff
4+
config_hash: 3b322758d3aee96e67f456c2d35c6f6a

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 6.4.0-alpha16 (2025-10-17)
4+
5+
Full Changelog: [v6.4.0-alpha15...v6.4.0-alpha16](https://github.com/trycourier/courier-python/compare/v6.4.0-alpha15...v6.4.0-alpha16)
6+
7+
### Bug Fixes
8+
9+
* Dep Warning ([57f6081](https://github.com/trycourier/courier-python/commit/57f6081d87114e8c7fb0b8765a20321e9bf2542c))
10+
311
## 6.4.0-alpha15 (2025-10-17)
412

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "trycourier"
3-
version = "6.4.0-alpha15"
3+
version = "6.4.0-alpha16"
44
description = "The official Python library for the courier API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/courier/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "courier"
4-
__version__ = "6.4.0-alpha15" # x-release-please-version
4+
__version__ = "6.4.0-alpha16" # x-release-please-version

src/courier/types/shared/recipient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Preferences(BaseModel):
2121

2222
class Recipient(BaseModel):
2323
account_id: Optional[str] = None
24-
"""Use `tenant_id` instead."""
24+
"""Deprecated - Use `tenant_id` instead."""
2525

2626
context: Optional[MessageContext] = None
2727
"""Context such as tenant_id to send the notification with."""

src/courier/types/shared/user_recipient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Preferences(BaseModel):
2121

2222
class UserRecipient(BaseModel):
2323
account_id: Optional[str] = None
24-
"""Use `tenant_id` instead."""
24+
"""Deprecated - Use `tenant_id` instead."""
2525

2626
context: Optional[MessageContext] = None
2727
"""Context such as tenant_id to send the notification with."""

src/courier/types/shared_params/recipient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Preferences(TypedDict, total=False):
2222

2323
class Recipient(TypedDict, total=False):
2424
account_id: Optional[str]
25-
"""Use `tenant_id` instead."""
25+
"""Deprecated - Use `tenant_id` instead."""
2626

2727
context: Optional[MessageContext]
2828
"""Context such as tenant_id to send the notification with."""

src/courier/types/shared_params/user_recipient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Preferences(TypedDict, total=False):
2222

2323
class UserRecipient(TypedDict, total=False):
2424
account_id: Optional[str]
25-
"""Use `tenant_id` instead."""
25+
"""Deprecated - Use `tenant_id` instead."""
2626

2727
context: Optional[MessageContext]
2828
"""Context such as tenant_id to send the notification with."""

0 commit comments

Comments
 (0)