Skip to content

Commit 09318f2

Browse files
committed
[Librarian] Regenerated @ 6e3b90a45885c596ade6b11ff7100254b15c9403 c02f66cc96e7008d6c3af5dfc5e821cde7813901
1 parent 2e9d66f commit 09318f2

29 files changed

Lines changed: 6019 additions & 260 deletions

CHANGES.md

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

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

6+
[2026-03-24] Version 9.10.4
7+
---------------------------
8+
**Data-ingress**
9+
- # API Changes
10+
- ## 2026-03-23
11+
- Added stage-us1 to supportedRealms for all endpoints
12+
- ## 2026-03-20
13+
- **Content updates**:
14+
- Removed estimatedCompletionTime from `LongRunningOperationResponse`
15+
- Moved operationId from `LongRunningOperationResponse` to headers
16+
- ## 2026-03-18
17+
- **Added 1 new path(s)**:
18+
- `/v1/ControlPlane/Operations/{OperationId}` (GetControlPlaneOperationStatus)
19+
- ## 2026-03-11
20+
- Minor updates (formatting, metadata)
21+
- ## 2026-03-11
22+
- Minor updates (formatting, metadata)
23+
- ## 2026-03-11
24+
- Minor updates (formatting, metadata)
25+
- ## 2026-03-11
26+
- Minor updates (formatting, metadata)
27+
- ## 2026-03-11
28+
- Minor updates (formatting, metadata)
29+
- ## 2026-03-05
30+
- Initial release with 10 paths and 22 operations
31+
32+
**Memory**
33+
- ## 2026-03-19
34+
- **Added 1 new path(s)**:
35+
- `/v1/ControlPlane/Operations/{operationId}` (FetchOperation)
36+
- ## 2026-03-11
37+
- Minor updates (formatting, metadata)
38+
39+
640
[2026-03-10] Version 9.10.3
741
---------------------------
842
**Twiml**

twilio/rest/__init__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
from twilio.rest.conversations import Conversations
2424
from twilio.rest.events import Events
2525
from twilio.rest.flex_api import FlexApi
26+
from twilio.rest.flex_api import FlexApi
2627
from twilio.rest.frontline_api import FrontlineApi
2728
from twilio.rest.preview_iam import PreviewIam
2829
from twilio.rest.iam import Iam
@@ -137,6 +138,7 @@ def __init__(
137138
self._conversations: Optional["Conversations"] = None
138139
self._events: Optional["Events"] = None
139140
self._flex_api: Optional["FlexApi"] = None
141+
self._flex_api: Optional["FlexApi"] = None
140142
self._frontline_api: Optional["FrontlineApi"] = None
141143
self._preview_iam: Optional["PreviewIam"] = None
142144
self._iam: Optional["Iam"] = None
@@ -285,6 +287,19 @@ def flex_api(self) -> "FlexApi":
285287
self._flex_api = FlexApi(self)
286288
return self._flex_api
287289

290+
@property
291+
def flex_api(self) -> "FlexApi":
292+
"""
293+
Access the FlexApi Twilio Domain
294+
295+
:returns: FlexApi Twilio Domain
296+
"""
297+
if self._flex_api is None:
298+
from twilio.rest.flex_api import FlexApi
299+
300+
self._flex_api = FlexApi(self)
301+
return self._flex_api
302+
288303
@property
289304
def frontline_api(self) -> "FrontlineApi":
290305
"""

0 commit comments

Comments
 (0)