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 @@
{
".": "4.157.0"
".": "4.157.1"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 1083
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx/telnyx-18cb682ab4086dc7bc6e802d4d992394d5dfd0cb26465f7df57cfc5be2780d4a.yml
openapi_spec_hash: 96f0a823b2cd6639e0aa1622e7324d26
config_hash: f3e5cb29b9b02a4e4dd3cce53e2edcec
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx/telnyx-3cbda50884567d9ea27460c32fd4e640e7d208daf4e3d2e0ffac5bbdeb02587c.yml
openapi_spec_hash: fb6b042cb58bf6d29dd78c17286cd6ca
config_hash: 830c6ce703bd53137afc173a8f571e3d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 4.157.1 (2026-06-18)

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

### Chores

* update example date in audit-logs for pipeline sync ([23cc26d](https://github.com/team-telnyx/telnyx-python/commit/23cc26daf9652c80ff42b23641a56bdf5e457ad8))

## 4.157.0 (2026-06-18)

Full Changelog: [v4.156.0...v4.157.0](https://github.com/team-telnyx/telnyx-python/compare/v4.156.0...v4.157.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.157.0"
version = "4.157.1"
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.157.0" # x-release-please-version
__version__ = "4.157.1" # x-release-please-version
8 changes: 4 additions & 4 deletions tests/api_resources/test_audit_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def test_method_list(self, client: Telnyx) -> None:
def test_method_list_with_all_params(self, client: Telnyx) -> None:
audit_event = client.audit_events.list(
filter={
"created_after": parse_datetime("2021-01-01T00:00:00Z"),
"created_before": parse_datetime("2021-01-01T00:00:00Z"),
"created_after": parse_datetime("2021-01-02T00:00:00Z"),
"created_before": parse_datetime("2021-01-02T00:00:00Z"),
},
page_number=0,
page_size=0,
Expand Down Expand Up @@ -78,8 +78,8 @@ async def test_method_list(self, async_client: AsyncTelnyx) -> None:
async def test_method_list_with_all_params(self, async_client: AsyncTelnyx) -> None:
audit_event = await async_client.audit_events.list(
filter={
"created_after": parse_datetime("2021-01-01T00:00:00Z"),
"created_before": parse_datetime("2021-01-01T00:00:00Z"),
"created_after": parse_datetime("2021-01-02T00:00:00Z"),
"created_before": parse_datetime("2021-01-02T00:00:00Z"),
},
page_number=0,
page_size=0,
Expand Down
Loading