Skip to content

Commit

Permalink
Merge pull request #279 from plivo/verify-dtmf
Browse files Browse the repository at this point in the history
dtmf param support for verify
  • Loading branch information
narayana-plivo authored Oct 10, 2024
2 parents ec2abdc + bf488c1 commit 1fe49b2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Change Log
## [4.56.1](https://github.com/plivo/plivo-python/tree/v4.56.1) (2024-10-10)
**Feature - Dtmf param in Create, Get and List Session**
- Support for the `dtmf` parameter in voice verify session request
- Added support for `dtmf` in GET and LIST verify session.

## [4.56.0](https://github.com/plivo/plivo-python/tree/v4.56.0) (2024-09-30)
**Feature - Adding new param support for Number Masking session with single party **
- Added `create_session_with_single_party`, `virtual_number_cooloff_period` and `force_pin_authentication` attributes in Masking Session
Expand Down
3 changes: 2 additions & 1 deletion plivo/resources/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def create(self,
locale=None,
brand_name=None,
app_hash=None,
code_length=None):
code_length=None,
dtmf=None):
if recipient is None:
raise ValidationError('destination number is required')
return self.client.request('POST', ('Verify', 'Session', ),
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.56.0'
__version__ = '4.56.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.56.0',
version='4.56.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 1fe49b2

Please sign in to comment.