File tree Expand file tree Collapse file tree 15 files changed +55
-32
lines changed Expand file tree Collapse file tree 15 files changed +55
-32
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,19 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+ [ 2018-06-21] Version 6.14.6
7
+ ----------------------------
8
+ ** Library**
9
+ - PR #429 : Do not use ElementTree.__ nonzero__ ; add test for mixed content. Thanks to @ekarson !
10
+
11
+ ** Api**
12
+ - Add Fraud Lookups category to usage records
13
+
14
+ ** Video**
15
+ - Allow user to set ` ContentDisposition ` when obtaining media URLs for Room Recordings and Compositions
16
+ - Add Composition Settings resource
17
+
18
+
6
19
[ 2018-06-19] Version 6.14.5
7
20
----------------------------
8
21
** Library**
Original file line number Diff line number Diff line change @@ -351,6 +351,7 @@ class Category(object):
351
351
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
352
352
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
353
353
CPS = "cps"
354
+ FRAUD_LOOKUPS = "fraud-lookups"
354
355
GROUP_ROOMS = "group-rooms"
355
356
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
356
357
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ class Category(object):
237
237
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
238
238
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
239
239
CPS = "cps"
240
+ FRAUD_LOOKUPS = "fraud-lookups"
240
241
GROUP_ROOMS = "group-rooms"
241
242
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
242
243
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ class Category(object):
237
237
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
238
238
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
239
239
CPS = "cps"
240
+ FRAUD_LOOKUPS = "fraud-lookups"
240
241
GROUP_ROOMS = "group-rooms"
241
242
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
242
243
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ class Category(object):
237
237
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
238
238
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
239
239
CPS = "cps"
240
+ FRAUD_LOOKUPS = "fraud-lookups"
240
241
GROUP_ROOMS = "group-rooms"
241
242
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
242
243
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ class Category(object):
237
237
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
238
238
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
239
239
CPS = "cps"
240
+ FRAUD_LOOKUPS = "fraud-lookups"
240
241
GROUP_ROOMS = "group-rooms"
241
242
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
242
243
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ class Category(object):
237
237
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
238
238
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
239
239
CPS = "cps"
240
+ FRAUD_LOOKUPS = "fraud-lookups"
240
241
GROUP_ROOMS = "group-rooms"
241
242
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
242
243
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ class Category(object):
237
237
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
238
238
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
239
239
CPS = "cps"
240
+ FRAUD_LOOKUPS = "fraud-lookups"
240
241
GROUP_ROOMS = "group-rooms"
241
242
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
242
243
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ class Category(object):
237
237
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
238
238
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
239
239
CPS = "cps"
240
+ FRAUD_LOOKUPS = "fraud-lookups"
240
241
GROUP_ROOMS = "group-rooms"
241
242
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
242
243
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ class Category(object):
237
237
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
238
238
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
239
239
CPS = "cps"
240
+ FRAUD_LOOKUPS = "fraud-lookups"
240
241
GROUP_ROOMS = "group-rooms"
241
242
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
242
243
GROUP_ROOMS_ENCRYPTED_MEDIA_RECORDED = "group-rooms-encrypted-media-recorded"
Original file line number Diff line number Diff line change @@ -377,6 +377,7 @@ class UsageCategory(object):
377
377
CONVERSATIONS_EVENTS = "conversations-events"
378
378
CONVERSATIONS_PARTICIPANT_EVENTS = "conversations-participant-events"
379
379
CONVERSATIONS_PARTICIPANTS = "conversations-participants"
380
+ FRAUD_LOOKUPS = "fraud-lookups"
380
381
CPS = "cps"
381
382
GROUP_ROOMS = "group-rooms"
382
383
GROUP_ROOMS_DATA_TRACK = "group-rooms-data-track"
Original file line number Diff line number Diff line change @@ -180,18 +180,18 @@ def hosted_number_orders(self):
180
180
return self .hosted_numbers .hosted_number_orders
181
181
182
182
@property
183
- def installed_add_ons (self ):
183
+ def available_add_ons (self ):
184
184
"""
185
- :rtype: twilio.rest.preview.marketplace.installed_add_on.InstalledAddOnList
185
+ :rtype: twilio.rest.preview.marketplace.available_add_on.AvailableAddOnList
186
186
"""
187
- return self .marketplace .installed_add_ons
187
+ return self .marketplace .available_add_ons
188
188
189
189
@property
190
- def available_add_ons (self ):
190
+ def installed_add_ons (self ):
191
191
"""
192
- :rtype: twilio.rest.preview.marketplace.available_add_on.AvailableAddOnList
192
+ :rtype: twilio.rest.preview.marketplace.installed_add_on.InstalledAddOnList
193
193
"""
194
- return self .marketplace .available_add_ons
194
+ return self .marketplace .installed_add_ons
195
195
196
196
@property
197
197
def services (self ):
Original file line number Diff line number Diff line change @@ -22,17 +22,8 @@ def __init__(self, domain):
22
22
"""
23
23
super (Marketplace , self ).__init__ (domain )
24
24
self .version = 'marketplace'
25
- self ._installed_add_ons = None
26
25
self ._available_add_ons = None
27
-
28
- @property
29
- def installed_add_ons (self ):
30
- """
31
- :rtype: twilio.rest.preview.marketplace.installed_add_on.InstalledAddOnList
32
- """
33
- if self ._installed_add_ons is None :
34
- self ._installed_add_ons = InstalledAddOnList (self )
35
- return self ._installed_add_ons
26
+ self ._installed_add_ons = None
36
27
37
28
@property
38
29
def available_add_ons (self ):
@@ -43,6 +34,15 @@ def available_add_ons(self):
43
34
self ._available_add_ons = AvailableAddOnList (self )
44
35
return self ._available_add_ons
45
36
37
+ @property
38
+ def installed_add_ons (self ):
39
+ """
40
+ :rtype: twilio.rest.preview.marketplace.installed_add_on.InstalledAddOnList
41
+ """
42
+ if self ._installed_add_ons is None :
43
+ self ._installed_add_ons = InstalledAddOnList (self )
44
+ return self ._installed_add_ons
45
+
46
46
def __repr__ (self ):
47
47
"""
48
48
Provide a friendly representation
Original file line number Diff line number Diff line change @@ -37,18 +37,18 @@ def v1(self):
37
37
return self ._v1
38
38
39
39
@property
40
- def recordings (self ):
40
+ def compositions (self ):
41
41
"""
42
- :rtype: twilio.rest.video.v1.recording.RecordingList
42
+ :rtype: twilio.rest.video.v1.composition.CompositionList
43
43
"""
44
- return self .v1 .recordings
44
+ return self .v1 .compositions
4
F438
5
45
46
46
@property
47
- def compositions (self ):
47
+ def recordings (self ):
48
48
"""
49
- :rtype: twilio.rest.video.v1.composition.CompositionList
49
+ :rtype: twilio.rest.video.v1.recording.RecordingList
50
50
"""
51
- return self .v1 .compositions
51
+ return self .v1 .recordings
52
52
53
53
@property
54
54
def rooms (self ):
Original file line number Diff line number Diff line change @@ -23,19 +23,10 @@ def __init__(self, domain):
23
23
"""
24
24
super (V1 , self ).__init__ (domain )
25
25
self .version = 'v1'
26
- self ._recordings = None
27
26
self ._compositions = None
27
+ self ._recordings = None
28
28
self ._rooms = None
29
29
30
- @property
31
- def recordings (self ):
32
- """
33
- :rtype: twilio.rest.video.v1.recording.RecordingList
34
- """
35
- if self ._recordings is None :
36
- self ._recordings = RecordingList (self )
37
- return self ._recordings
38
-
39
30
@property
40
31
def compositions (self ):
41
32
"""
@@ -45,6 +36,15 @@ def compositions(self):
45
36
self ._compositions = CompositionList (self )
46
37
return self ._compositions
47
38
39
+ @property
40
+ def recordings (self ):
41
+ """
42
+ :rtype: twilio.rest.video.v1.recording.RecordingList
43
+ """
44
+ if self ._recordings is None :
45
+ self ._recordings = RecordingList (self )
46
+ return self ._recordings
47
+
48
48
@property
49
49
def rooms (self ):
50
50
"""
You can’t perform that action at this time.
0 commit comments