Skip to content

Commit c067c99

Browse files
authored
Merge pull request #357 from plivo/VT-9004
VT-9004: symbo.ai | toggling the beep sound played during 'Update Par…
2 parents 09a063a + 0669e6e commit c067c99

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
4+
## [v4.73.0](https://github.com/plivo/plivo-node/tree/v4.73.0) (2025-06-20)
5+
**Feature - New Param added for MPC - Update participant state API.**
6+
- Support `disable_state_change_sound` in MPC - Update participant state API.
7+
38
## [v4.72.0](https://github.com/plivo/plivo-node/tree/v4.72.0) (2025-06-16)
49
**Bug Fix - sendDigits validation issue**
510
- Fixed `isRequired` validator to properly handle falsy values including the number `0`, resolving "Missing mandatory field: digits" error when sending digit "0"
@@ -11,6 +16,7 @@
1116
- Fixed memory leak in retryWrapper interceptors that accumulated over time causing CPU spikes and performance degradation.
1217
- Improved resource cleanup in voice request handling to maintain stable memory usage and eliminate need for server restarts
1318

19+
1420
## [v4.70.0](https://github.com/plivo/plivo-node/tree/v4.70.0) (2025-04-30)
1521
**Feature - New Param added for Start Recording API.**
1622
- Support `record_channel_type` in Start Recording API and `recordChannelType` in Record XML.

lib/resources/multiPartyCall.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,11 @@ export class MultiPartyCallParticipant extends PlivoSecondaryResource{
441441
if(params.hold){
442442
validParam('hold', params.hold, [Boolean, String], false)
443443
}
444+
445+
if(params.disableStateChangeSound){
446+
validParam('disableStateChangeSound', params.disableStateChangeSound, [Boolean, String], false)
447+
}
448+
444449
params.isVoiceRequest = 'true';
445450
return super.executeAction(this.id, this.secondaryId, 'POST', params)
446451
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plivo",
3-
"version": "4.72.0",
3+
"version": "4.73.0",
44
"description": "A Node.js SDK to make voice calls and send SMS using Plivo and to generate Plivo XML",
55
"homepage": "https://github.com/plivo/plivo-node",
66
"files": [

0 commit comments

Comments
 (0)