Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
## [4.55.6](https://github.com/plivo/plivo-python/tree/v4.55.6) (2024-09-10)
**Feature - Adding few optional parameters to the existing machine detection params**
- Added six new optional machine detection params `machine_detection_maximum_speech_length`,`machine_detection_initial_silence`,`machine_detection_maximum_words`,`machine_detection_initial_greeting`,`machine_detection_silence`,`machine_detection_answer_time`

## [4.55.5](https://github.com/plivo/plivo-python/tree/v4.55.5) (2024-09-10)
**Feature - Adding validations for AudioStream XML creation**
- Added Validations for AudioStream XML creation
Expand Down
6 changes: 6 additions & 0 deletions plivo/resources/calls.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,12 @@ def create(self,
machine_detection_time=5000,
machine_detection_url=None,
machine_detection_method='POST',
machine_detection_maximum_speech_length=None,
machine_detection_initial_silence=None,
machine_detection_maximum_words=None,
machine_detection_initial_greeting=None,
machine_detection_silence=None,
machine_detection_answer_time=None,
sip_headers=None,
ring_timeout=120,
parent_call_uuid=None,
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.55.5'
__version__ = '4.55.6'
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.55.5',
version='4.55.6',
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