Skip to content

Commit f07a244

Browse files
committed
[Librarian] Regenerated @ 7e2caf2ef38bb07afedbc8ba24e3a235c57337ad 2deb312512e85217931fbc99141b334a5d6beaaf
1 parent fcdc07c commit f07a244

File tree

29 files changed

+392
-2857
lines changed

29 files changed

+392
-2857
lines changed

CHANGES.md

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

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

6+
[2024-04-01] Version 9.0.3
7+
--------------------------
8+
**Api**
9+
- Add property `queue_time` to conference participant resource
10+
- Update RiskCheck documentation
11+
- Correct call filtering by start and end time documentation, clarifying that times are UTC.
12+
13+
**Flex**
14+
- Adding optional parameter to `plugins`
15+
16+
**Media**
17+
- Remove API: MediaProcessor
18+
19+
**Messaging**
20+
- Remove Sending-Window due to test failure
21+
- Add Sending-Window as a response property to Messaging Services, gated by a beta feature flag
22+
23+
**Numbers**
24+
- Correct valid_until_date field to be visible in Bundles resource
25+
- Adding port_in_status field to the Port In resource and phone_number_status and sid fields to the Port In Phone Number resource
26+
27+
**Oauth**
28+
- Modified token endpoint response
29+
- Added refresh_token and scope as optional parameter to token endpoint
30+
31+
**Trusthub**
32+
- Add update inquiry endpoint in compliance_registration.
33+
- Add new field in themeSetId in compliance_registration.
34+
35+
**Voice**
36+
- Correct call filtering by start and end time documentation, clarifying that times are UTC.
37+
38+
**Twiml**
39+
- Add support for new Google voices (Q1 2024) for `Say` verb - gu-IN voices
40+
- Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb - Niamh (en-IE) and Sofie (da-DK) voices
41+
42+
643
[2024-03-15] Version 9.0.2
744
--------------------------
845
**Oauth**

twilio/rest/__init__.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
from twilio.rest.intelligence import Intelligence
2828
from twilio.rest.ip_messaging import IpMessaging
2929
from twilio.rest.lookups import Lookups
30-
from twilio.rest.media import Media
3130
from twilio.rest.preview_messaging import PreviewMessaging
3231
from twilio.rest.messaging import Messaging
3332
from twilio.rest.microvisor import Microvisor
@@ -136,7 +135,6 @@ def __init__(
136135
self._intelligence: Optional["Intelligence"] = None
137136
self._ip_messaging: Optional["IpMessaging"] = None
138137
self._lookups: Optional["Lookups"] = None
139-
self._media: Optional["Media"] = None
140138
self._preview_messaging: Optional["PreviewMessaging"] = None
141139
self._messaging: Optional["Messaging"] = None
142140
self._microvisor: Optional["Microvisor"] = None
@@ -329,19 +327,6 @@ def lookups(self) -> "Lookups":
329327
self._lookups = Lookups(self)
330328
return self._lookups
331329

332-
@property
333-
def media(self) -> "Media":
334-
"""
335-
Access the Media Twilio Domain
336-
337-
:returns: Media Twilio Domain
338-
"""
339-
if self._media is None:
340-
from twilio.rest.media import Media
341-
342-
self._media = Media(self)
343-
return self._media
344-
345330
@property
346331
def preview_messaging(self) -> "PreviewMessaging":
347332
"""

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

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

twilio/rest/api/v2010/account/conference/participant.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ class Status(object):
4646
:ivar hold: Whether the participant is on hold. Can be `true` or `false`.
4747
:ivar start_conference_on_enter: Whether the conference starts when the participant joins the conference, if it has not already started. Can be: `true` or `false` and the default is `true`. If `false` and the conference has not started, the participant is muted and hears background music until another participant starts the conference.
4848
:ivar status:
49+
:ivar queue_time: The wait time in milliseconds before participant's call is placed. Only available in the response to a create participant request.
4950
:ivar uri: The URI of the resource, relative to `https://api.twilio.com`.
5051
"""
5152

@@ -80,6 +81,7 @@ def __init__(
8081
"start_conference_on_enter"
8182
)
8283
self.status: Optional["ParticipantInstance.Status"] = payload.get("status")
84+
self.queue_time: Optional[str] = payload.get("queue_time")
8385
self.uri: Optional[str] = payload.get("uri")
8486

8587
self._solution = {

0 commit comments

Comments
 (0)