Skip to content
Open
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 @@
{
".": "7.19.2"
".": "7.20.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: 138
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-11e1931d767cef402bbed5a965746d1933ae72db0f41881860593a0b1424fd80.yml
openapi_spec_hash: 9def941805f233f8761c4bdae88f6137
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-1ba05406f99c844cf7b32fe80c399017d00c504563f211caf66dfbccf8dd146d.yml
openapi_spec_hash: be1b9b8a351560da21bbe3b53fd04905
config_hash: 6c3a754258f0f77e9032a90a478ab76d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 7.20.0 (2026-07-13)

Full Changelog: [v7.19.2...v7.20.0](https://github.com/trycourier/courier-python/compare/v7.19.2...v7.20.0)

### Features

* Merge pull request [#149](https://github.com/trycourier/courier-python/issues/149) from trycourier/geraldosilva/c-19201-notification-template-subscription-topic-id ([99b10ca](https://github.com/trycourier/courier-python/commit/99b10cad359b2377e6bb8bc797be42c93a8823b8))

## 7.19.2 (2026-07-10)

Full Changelog: [v7.19.1...v7.19.2](https://github.com/trycourier/courier-python/compare/v7.19.1...v7.19.2)
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 = "7.19.2"
version = "7.20.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__ = "7.19.2" # x-release-please-version
__version__ = "7.20.0" # x-release-please-version
6 changes: 6 additions & 0 deletions src/courier/types/notification_template_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ class NotificationTemplateSummary(BaseModel):

tags: List[str]

subscription_topic_id: Optional[str] = None
"""The linked subscription (preference) topic of the published version.

Omitted when no topic is linked or the template has never been published.
"""

updated: Optional[int] = None
"""Epoch milliseconds of last update."""

Expand Down