Skip to content

Commit ec8c1d8

Browse files
committed
[Librarian] Regenerated @ b71b4c3e1a369dfb33fc0093ed77cf8197b688e1 ac3dbbbf62954c6cabed90c810a559a5c275883e
1 parent 6af1ded commit ec8c1d8

10 files changed

Lines changed: 745 additions & 67 deletions

File tree

CHANGES.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6+
[2026-02-05] Version 9.10.1
7+
---------------------------
8+
**Library - Fix**
9+
- [PR #907](https://github.com/twilio/twilio-python/pull/907): Regional API domain processing. Thanks to [@manisha1997](https://github.com/manisha1997)!
10+
11+
**Twiml**
12+
- Add `recording_configuration` attribute to `<Recording>` noun
13+
14+
**Api**
15+
- Clarify the behavior of date filters with the Calls API
16+
- Added Phone Number `type` property to `/IncomingPhoneNumbers` resource
17+
18+
**Memory**
19+
- ## 2026-01-23
20+
- No path changes (updated metadata only)
21+
- ## 2026-01-22
22+
- No path changes (updated metadata only)
23+
- ## 2026-01-22
24+
- **Modified 1 path(s)**:
25+
- `/v1/Stores/{storeId}/Profiles/{profileId}` (added delete)
26+
27+
628
[2026-01-22] Version 9.10.0
729
---------------------------
830
**Library - Feature**

tests/unit/rest/test_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import unittest
2-
import warnings
32

43
import aiounittest
54

twilio/base/client_base.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
import platform
3-
import warnings
43
from typing import Dict, List, MutableMapping, Optional, Tuple
54
from urllib.parse import urlparse, urlunparse
65

@@ -46,7 +45,7 @@ def __init__(
4645
""" :type : str """
4746
self.password = password or environment.get("TWILIO_AUTH_TOKEN")
4847
""" :type : str """
49-
self.edge = ( edge or environment.get("TWILIO_EDGE"))
48+
self.edge = edge or environment.get("TWILIO_EDGE")
5049
""" :type : str """
5150
self.region = region or environment.get("TWILIO_REGION")
5251
""" :type : str """

twilio/rest/api/v2010/account/call/__init__.py

Lines changed: 48 additions & 48 deletions
Large diffs are not rendered by default.

twilio/rest/api/v2010/account/incoming_phone_number/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ class VoiceReceiveMode(object):
8888
:ivar emergency_address_status:
8989
:ivar bundle_sid: The SID of the Bundle resource that you associate with the phone number. Some regions require a Bundle to meet local Regulations.
9090
:ivar status:
91+
:ivar type: The phone number type.
9192
"""
9293

9394
def __init__(
@@ -149,6 +150,7 @@ def __init__(
149150
] = payload.get("emergency_address_status")
150151
self.bundle_sid: Optional[str] = payload.get("bundle_sid")
151152
self.status: Optional[str] = payload.get("status")
153+
self.type: Optional[str] = payload.get("type")
152154

153155
self._solution = {
154156
"account_sid": account_sid,

twilio/rest/flex_api/v1/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from twilio.rest.flex_api.v1.assessments import AssessmentsList
1919
from twilio.rest.flex_api.v1.channel import ChannelList
2020
from twilio.rest.flex_api.v1.configuration import ConfigurationList
21+
from twilio.rest.flex_api.v1.create_flex_instance import CreateFlexInstanceList
2122
from twilio.rest.flex_api.v1.flex_flow import FlexFlowList
2223
from twilio.rest.flex_api.v1.insights_assessments_comment import (
2324
InsightsAssessmentsCommentList,
@@ -64,6 +65,7 @@ def __init__(self, domain: Domain):
6465
self._assessments: Optional[AssessmentsList] = None
6566
self._channel: Optional[ChannelList] = None
6667
self._configuration: Optional[ConfigurationList] = None
68+
self._create_flex_instance: Optional[CreateFlexInstanceList] = None
6769
self._flex_flow: Optional[FlexFlowList] = None
6870
self._insights_assessments_comment: Optional[InsightsAssessmentsCommentList] = (
6971
None
@@ -113,6 +115,12 @@ def configuration(self) -> ConfigurationList:
113115
self._configuration = ConfigurationList(self)
114116
return self._configuration
115117

118+
@property
119+
def create_flex_instance(self) -> CreateFlexInstanceList:
120+
if self._create_flex_instance is None:
121+
self._create_flex_instance = CreateFlexInstanceList(self)
122+
return self._create_flex_instance
123+
116124
@property
117125
def flex_flow(self) -> FlexFlowList:
118126
if self._flex_flow is None:

0 commit comments

Comments
 (0)