File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 4.15.0] ( https://github.com/plivo/plivo-python/tree/v4.15.0 ) (2020-11-17)
4+ - Add number_priority support for Powerpack API.
5+
36## [ 4.14.0] ( https://github.com/plivo/plivo-python/tree/v4.14.0 ) (2020-11-05)
47- Add Regulatory Compliance API Support.
58
Original file line number Diff line number Diff line change @@ -330,13 +330,15 @@ class Powerpacks(PlivoResourceInterface):
330330 sticky_sender = [optional (of_type_exact (bool ))],
331331 local_connect = [optional (of_type_exact (bool ))],
332332 application_type = [optional (of_type (six .text_type ))],
333- application_id = [optional (of_type (six .text_type ))])
333+ application_id = [optional (of_type (six .text_type ))],
334+ number_priority = [optional (of_type_exact (list ))])
334335 def create (self ,
335336 name ,
336337 sticky_sender = True ,
337338 local_connect = True ,
338339 application_type = '' ,
339- application_id = '' ):
340+ application_id = '' ,
341+ number_priority = []):
340342 if (name is None ):
341343 raise ValidationError (
342344 'name parameter is invalid'
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
2- __version__ = '4.14 .0'
2+ __version__ = '4.15 .0'
Original file line number Diff line number Diff line change 1010
1111setup (
1212 name = 'plivo' ,
13- version = '4.14 .0' ,
13+ version = '4.15 .0' ,
1414 description = 'A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML' ,
1515 long_description = long_description ,
1616 url = 'https://github.com/plivo/plivo-python' ,
You can’t perform that action at this time.
0 commit comments