Skip to content

Commit

Permalink
Merge pull request #269 from plivo/VT-7705
Browse files Browse the repository at this point in the history
filterParamAdded
  • Loading branch information
sandeep-plivo authored Jun 3, 2024
2 parents 3b02cde + 371a8c8 commit a5dedf8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [4.54.1](https://github.com/plivo/plivo-python/tree/v4.54.1) (2024-05-28)
**Feature - Adding Filtering support for List Application API**
- Added new filter param `app_name` in list application API

## [4.54.0](https://github.com/plivo/plivo-python/tree/v4.54.0) (2024-05-20)
**Feature - Adding support for location whatsapp messages**
- Added new param `location` to [send message API](https://www.plivo.com/docs/sms/api/message#send-a-message) to support location `whatsapp` messages
Expand Down
2 changes: 1 addition & 1 deletion plivo/resources/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def get(self, app_id, callback_url=None, callback_method=None):
callback_url=[optional(is_url())],
callback_method=[optional(of_type(six.text_type))],
)
def list(self, subaccount=None, limit=20, offset=0, callback_url=None, callback_method=None):
def list(self, subaccount=None, limit=20, offset=0, callback_url=None, callback_method=None, app_name=None):
if subaccount:
if isinstance(subaccount, Subaccount):
subaccount = subaccount.id
Expand Down
2 changes: 1 addition & 1 deletion plivo/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '4.54.0'
__version__ = '4.54.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='plivo',
version='4.54.0',
version='4.54.1',
description='A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML',
long_description=long_description,
url='https://github.com/plivo/plivo-python',
Expand Down

0 comments on commit a5dedf8

Please sign in to comment.