Skip to content

Commit 1fe49b2

Browse files
Merge pull request #279 from plivo/verify-dtmf
dtmf param support for verify
2 parents ec2abdc + bf488c1 commit 1fe49b2

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Change Log
2+
## [4.56.1](https://github.com/plivo/plivo-python/tree/v4.56.1) (2024-10-10)
3+
**Feature - Dtmf param in Create, Get and List Session**
4+
- Support for the `dtmf` parameter in voice verify session request
5+
- Added support for `dtmf` in GET and LIST verify session.
6+
27
## [4.56.0](https://github.com/plivo/plivo-python/tree/v4.56.0) (2024-09-30)
38
**Feature - Adding new param support for Number Masking session with single party **
49
- Added `create_session_with_single_party`, `virtual_number_cooloff_period` and `force_pin_authentication` attributes in Masking Session

plivo/resources/verify.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ def create(self,
3838
locale=None,
3939
brand_name=None,
4040
app_hash=None,
41-
code_length=None):
41+
code_length=None,
42+
dtmf=None):
4243
if recipient is None:
4344
raise ValidationError('destination number is required')
4445
return self.client.request('POST', ('Verify', 'Session', ),

plivo/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '4.56.0'
2+
__version__ = '4.56.1'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='plivo',
13-
version='4.56.0',
13+
version='4.56.1',
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',

0 commit comments

Comments
 (0)