Skip to content

Commit a19e300

Browse files
release: 7.0.1 (#112)
* chore: update SDK settings * release: 7.0.1 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 551eb71 commit a19e300

10 files changed

Lines changed: 27 additions & 5 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-
".": "7.0.0"
2+
".": "7.0.1"
33
}

.stats.yml

Lines changed: 2 additions & 2 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-d643c34df4e6c0ba17b85adf379fddaf20ca14211e49fe9715eeb19e64d42556.yml
3-
openapi_spec_hash: 63b45d459907b1e30baeefcd3e552da7
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier%2Fcourier-33d5d7c18097451b2abe61ea5a694efd6fbff5dca21e62ffd59ea37ec0bd569b.yml
3+
openapi_spec_hash: 5da629173a97d334c5b2253d0a6e22b3
44
config_hash: 1dfe9dc0d55d828e116bd0f89061c3c5

CHANGELOG.md

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

3+
## 7.0.1 (2025-11-12)
4+
5+
Full Changelog: [v7.0.0...v7.0.1](https://github.com/trycourier/courier-python/compare/v7.0.0...v7.0.1)
6+
7+
### Chores
8+
9+
* update SDK settings ([7c0140c](https://github.com/trycourier/courier-python/commit/7c0140c957a23aa2f60911b7383537215251927d))
10+
311
## 7.0.0 (2025-11-12)
412

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

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 = "7.0.0"
3+
version = "7.0.1"
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__ = "7.0.0" # x-release-please-version
4+
__version__ = "7.0.1" # x-release-please-version

src/courier/types/shared/recipient.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ class Recipient(BaseModel):
3131
email: Optional[str] = None
3232
"""The user's email address."""
3333

34+
list_id: Optional[str] = None
35+
"""The id of the list to send the message to."""
36+
3437
locale: Optional[str] = None
3538
"""The user's preferred ISO 639-1 language code."""
3639

src/courier/types/shared/user_recipient.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ class UserRecipient(BaseModel):
3131
email: Optional[str] = None
3232
"""The user's email address."""
3333

34+
list_id: Optional[str] = None
35+
"""The id of the list to send the message to."""
36+
3437
locale: Optional[str] = None
3538
"""The user's preferred ISO 639-1 language code."""
3639

src/courier/types/shared_params/recipient.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ class Recipient(TypedDict, total=False):
3232
email: Optional[str]
3333
"""The user's email address."""
3434

35+
list_id: Optional[str]
36+
"""The id of the list to send the message to."""
37+
3538
locale: Optional[str]
3639
"""The user's preferred ISO 639-1 language code."""
3740

src/courier/types/shared_params/user_recipient.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ class UserRecipient(TypedDict, total=False):
3232
email: Optional[str]
3333
"""The user's email address."""
3434

35+
list_id: Optional[str]
36+
"""The id of the list to send the message to."""
37+
3538
locale: Optional[str]
3639
"""The user's preferred ISO 639-1 language code."""
3740

tests/api_resources/test_send.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ def test_method_message_with_all_params(self, client: Courier) -> None:
113113
"context": {"tenant_id": "tenant_id"},
114114
"data": {"foo": "bar"},
115115
"email": "email",
116+
"list_id": "list_id",
116117
"locale": "locale",
117118
"phone_number": "phone_number",
118119
"preferences": {
@@ -279,6 +280,7 @@ async def test_method_message_with_all_params(self, async_client: AsyncCourier)
279280
"context": {"tenant_id": "tenant_id"},
280281
"data": {"foo": "bar"},
281282
"email": "email",
283+
"list_id": "list_id",
282284
"locale": "locale",
283285
"phone_number": "phone_number",
284286
"preferences": {

0 commit comments

Comments
 (0)