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 @@
{
".": "4.52.0"
".": "4.53.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 946
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx%2Ftelnyx-462166922656820a2c260496fa86ce259c51c8ad7aaa783e1975e16f05c08af7.yml
openapi_spec_hash: bc16f6bdab2570564f73ece9ec24f57c
config_hash: 86808d35d9648ffe4b87e3e5b858c17c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx%2Ftelnyx-e5b44768a2da327dbb88d2a4f97653388c6489365db2e873d1225d48280c1530.yml
openapi_spec_hash: 515f3d122ed486daa3f9a90a252908c8
config_hash: 147ed46e6f2c0900ee7716ce4dddb8e2
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 4.53.0 (2026-02-26)

Full Changelog: [v4.52.0...v4.53.0](https://github.com/team-telnyx/telnyx-python/compare/v4.52.0...v4.53.0)

### Features

* **api:** manual updates ([f14db77](https://github.com/team-telnyx/telnyx-python/commit/f14db77cd98183ca8919771c2ba9d01c7f9dacfc))

## 4.52.0 (2026-02-26)

Full Changelog: [v4.51.0...v4.52.0](https://github.com/team-telnyx/telnyx-python/compare/v4.51.0...v4.52.0)
Expand Down
2 changes: 1 addition & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4464,8 +4464,8 @@ from telnyx.types import TextToSpeechListVoicesResponse

Methods:

- <code title="post /text-to-speech/speech">client.text_to_speech.<a href="./src/telnyx/resources/text_to_speech.py">generate_speech</a>(\*\*<a href="src/telnyx/types/text_to_speech_generate_speech_params.py">params</a>) -> BinaryAPIResponse</code>
- <code title="get /text-to-speech/voices">client.text_to_speech.<a href="./src/telnyx/resources/text_to_speech.py">list_voices</a>(\*\*<a href="src/telnyx/types/text_to_speech_list_voices_params.py">params</a>) -> <a href="./src/telnyx/types/text_to_speech_list_voices_response.py">TextToSpeechListVoicesResponse</a></code>
- <code title="get /text-to-speech/speech">client.text_to_speech.<a href="./src/telnyx/resources/text_to_speech.py">stream</a>(\*\*<a href="src/telnyx/types/text_to_speech_stream_params.py">params</a>) -> None</code>

# UsageReports

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 = "telnyx"
version = "4.52.0"
version = "4.53.0"
description = "Telnyx API SDK for global Voice, SMS, MMS, WhatsApp, Fax, Wireless IoT, SIP Trunking, and Call Control."
dynamic = ["readme"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/telnyx/_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__ = "telnyx"
__version__ = "4.52.0" # x-release-please-version
__version__ = "4.53.0" # x-release-please-version
10 changes: 0 additions & 10 deletions src/telnyx/resources/conferences/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,6 @@ def record_start(
id: str,
*,
format: Literal["wav", "mp3"],
channels: Literal["single", "dual"] | Omit = omit,
command_id: str | Omit = omit,
custom_file_name: str | Omit = omit,
play_beep: bool | Omit = omit,
Expand All @@ -791,9 +790,6 @@ def record_start(
format: The audio file format used when storing the conference recording. Can be either
`mp3` or `wav`.

channels: When `dual`, final audio file will be stereo recorded with the conference
creator on the first channel, and the rest on the second channel.

command_id: Use this field to avoid duplicate commands. Telnyx will ignore any command with
the same `command_id` for the same `conference_id`.

Expand Down Expand Up @@ -823,7 +819,6 @@ def record_start(
body=maybe_transform(
{
"format": format,
"channels": channels,
"command_id": command_id,
"custom_file_name": custom_file_name,
"play_beep": play_beep,
Expand Down Expand Up @@ -1956,7 +1951,6 @@ async def record_start(
id: str,
*,
format: Literal["wav", "mp3"],
channels: Literal["single", "dual"] | Omit = omit,
command_id: str | Omit = omit,
custom_file_name: str | Omit = omit,
play_beep: bool | Omit = omit,
Expand All @@ -1982,9 +1976,6 @@ async def record_start(
format: The audio file format used when storing the conference recording. Can be either
`mp3` or `wav`.

channels: When `dual`, final audio file will be stereo recorded with the conference
creator on the first channel, and the rest on the second channel.

command_id: Use this field to avoid duplicate commands. Telnyx will ignore any command with
the same `command_id` for the same `conference_id`.

Expand Down Expand Up @@ -2014,7 +2005,6 @@ async def record_start(
body=await async_maybe_transform(
{
"format": format,
"channels": channels,
"command_id": command_id,
"custom_file_name": custom_file_name,
"play_beep": play_beep,
Expand Down
Loading