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.51.0"
".": "4.52.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-619f2e4cc820442ae564e2345323abd65d5049b428c5780cf9f14c56002a2ba3.yml
openapi_spec_hash: 29de78582d8561745ff8f5f6c2474f1e
config_hash: 33dae93fe380b8187d9ac4cead6e4b8f
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx%2Ftelnyx-462166922656820a2c260496fa86ce259c51c8ad7aaa783e1975e16f05c08af7.yml
openapi_spec_hash: bc16f6bdab2570564f73ece9ec24f57c
config_hash: 86808d35d9648ffe4b87e3e5b858c17c
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 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)

### Features

* TELAPPS-ENGDESK-48951 add channels to conf record start ([6eee179](https://github.com/team-telnyx/telnyx-python/commit/6eee1798f5cdb7810d8d38dc589e75ac5c41166c))

## 4.51.0 (2026-02-26)

Full Changelog: [v4.50.0...v4.51.0](https://github.com/team-telnyx/telnyx-python/compare/v4.50.0...v4.51.0)
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.51.0"
version = "4.52.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.51.0" # x-release-please-version
__version__ = "4.52.0" # x-release-please-version
10 changes: 10 additions & 0 deletions src/telnyx/resources/conferences/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,6 +765,7 @@ 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 @@ -790,6 +791,9 @@ 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 @@ -819,6 +823,7 @@ 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 @@ -1951,6 +1956,7 @@ 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 @@ -1976,6 +1982,9 @@ 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 @@ -2005,6 +2014,7 @@ 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
6 changes: 6 additions & 0 deletions src/telnyx/types/conferences/action_record_start_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ class ActionRecordStartParams(TypedDict, total=False):
Can be either `mp3` or `wav`.
"""

channels: Literal["single", "dual"]
"""
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: str
"""Use this field to avoid duplicate commands.

Expand Down
2 changes: 2 additions & 0 deletions tests/api_resources/conferences/test_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,7 @@ def test_method_record_start_with_all_params(self, client: Telnyx) -> None:
action = client.conferences.actions.record_start(
id="id",
format="wav",
channels="dual",
command_id="891510ac-f3e4-11e8-af5b-de00688a4901",
custom_file_name="my_recording_file_name",
play_beep=True,
Expand Down Expand Up @@ -1623,6 +1624,7 @@ async def test_method_record_start_with_all_params(self, async_client: AsyncTeln
action = await async_client.conferences.actions.record_start(
id="id",
format="wav",
channels="dual",
command_id="891510ac-f3e4-11e8-af5b-de00688a4901",
custom_file_name="my_recording_file_name",
play_beep=True,
Expand Down