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.88.1"
".": "4.89.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 1021
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx%2Ftelnyx-0b9015a8636f4f4d10c219373b6c30a7def5ce4688050c5beb74541555d9c578.yml
openapi_spec_hash: bcc3b2810ae32dc662a54dc15354c159
config_hash: 3d48f88565ab68c8ce590b4a5bab4bd4
config_hash: 3bceea9ab50abd7166b7737dc195920c
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 4.89.0 (2026-03-30)

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

### Features

* **lib:** add Speech-to-Text WebSocket streaming support ([b7e059a](https://github.com/team-telnyx/telnyx-python/commit/b7e059ab7d86a982f8773a420867f827fde2ca51))


### Bug Fixes

* resolve pyright strict mode type errors ([3283d71](https://github.com/team-telnyx/telnyx-python/commit/3283d71d81d515147e7c2b96acf541f38ae34f9c))
* resolve ruff import sorting errors ([f210455](https://github.com/team-telnyx/telnyx-python/commit/f2104551e00dedd2db3bab6596e58591efd899ef))

## 4.88.1 (2026-03-28)

Full Changelog: [v4.88.0...v4.88.1](https://github.com/team-telnyx/telnyx-python/compare/v4.88.0...v4.88.1)
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.88.1"
version = "4.89.0"
description = "The official Python library for the telnyx API"
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.88.1" # x-release-please-version
__version__ = "4.89.0" # x-release-please-version
24 changes: 24 additions & 0 deletions src/telnyx/lib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"""
Custom utilities for the Telnyx SDK.

This package provides additional functionality that extends the core SDK,
including WebSocket support for real-time streaming APIs.
"""

from telnyx.lib.speech_to_text_ws import (
SttWord,
SttEvent,
SpeechToTextWS,
AsyncSpeechToTextWS,
SpeechToTextWSError,
SpeechToTextStreamParams,
)

__all__ = [
"SpeechToTextStreamParams",
"SttEvent",
"SttWord",
"SpeechToTextWS",
"AsyncSpeechToTextWS",
"SpeechToTextWSError",
]
Loading
Loading