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 @@
{
".": "7.15.0"
".": "7.16.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 120
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-cf10f3428ad9b9f636939a9305e80dd49118fea2c3f86cf61bf2b95367469e0f.yml
openapi_spec_hash: a61356bb015cec773770d2b61cabaa58
config_hash: 86b472590f1c27b5a74499744b30c2ee
configured_endpoints: 123
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-f54bd32a07b6d85cfda75812728f86aa295b0f3fb662ead7670179f809195896.yml
openapi_spec_hash: 0a283754d97445ef84d50720ba47081a
config_hash: 3536872b17998fc451577505e15afb3d
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 7.16.0 (2026-06-23)

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

### Features

* **journeys:** add content + locale endpoints to journey-scoped templates ([dea52d4](https://github.com/trycourier/courier-python/commit/dea52d47c6dc1cc708f3bbe675903948ebbc9a3c))


### Documentation

* **journeys:** clarify checksum usage + re-trigger docs sync for journey content endpoints ([0d36476](https://github.com/trycourier/courier-python/commit/0d364764936d55679839613c82d26f59d1cd9580))

## 7.15.0 (2026-06-17)

Full Changelog: [v7.14.0...v7.15.0](https://github.com/trycourier/courier-python/compare/v7.14.0...v7.15.0)
Expand Down
3 changes: 3 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,10 @@ Methods:
- <code title="delete /journeys/{templateId}/templates/{notificationId}">client.journeys.templates.<a href="./src/courier/resources/journeys/templates.py">archive</a>(notification_id, \*, template_id) -> None</code>
- <code title="get /journeys/{templateId}/templates/{notificationId}/versions">client.journeys.templates.<a href="./src/courier/resources/journeys/templates.py">list_versions</a>(notification_id, \*, template_id) -> <a href="./src/courier/types/notification_template_version_list_response.py">NotificationTemplateVersionListResponse</a></code>
- <code title="post /journeys/{templateId}/templates/{notificationId}/publish">client.journeys.templates.<a href="./src/courier/resources/journeys/templates.py">publish</a>(notification_id, \*, template_id, \*\*<a href="src/courier/types/journeys/template_publish_params.py">params</a>) -> None</code>
- <code title="put /journeys/{templateId}/templates/{notificationId}/content">client.journeys.templates.<a href="./src/courier/resources/journeys/templates.py">put_content</a>(notification_id, \*, template_id, \*\*<a href="src/courier/types/journeys/template_put_content_params.py">params</a>) -> <a href="./src/courier/types/notification_content_mutation_response.py">NotificationContentMutationResponse</a></code>
- <code title="put /journeys/{templateId}/templates/{notificationId}/locales/{localeId}">client.journeys.templates.<a href="./src/courier/resources/journeys/templates.py">put_locale</a>(locale_id, \*, template_id, notification_id, \*\*<a href="src/courier/types/journeys/template_put_locale_params.py">params</a>) -> <a href="./src/courier/types/notification_content_mutation_response.py">NotificationContentMutationResponse</a></code>
- <code title="put /journeys/{templateId}/templates/{notificationId}">client.journeys.templates.<a href="./src/courier/resources/journeys/templates.py">replace</a>(notification_id, \*, template_id, \*\*<a href="src/courier/types/journeys/template_replace_params.py">params</a>) -> <a href="./src/courier/types/journey_template_get_response.py">JourneyTemplateGetResponse</a></code>
- <code title="get /journeys/{templateId}/templates/{notificationId}/content">client.journeys.templates.<a href="./src/courier/resources/journeys/templates.py">retrieve_content</a>(notification_id, \*, template_id, \*\*<a href="src/courier/types/journeys/template_retrieve_content_params.py">params</a>) -> <a href="./src/courier/types/notification_content_get_response.py">NotificationContentGetResponse</a></code>

# Brands

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.15.0"
version = "7.16.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.15.0" # x-release-please-version
__version__ = "7.16.0" # x-release-please-version
Loading