Skip to content

Commit

Permalink
VT-5229: MPC: Additional Prams as part of AddParticipant API (#161)
Browse files Browse the repository at this point in the history
* VT-5229: MPC: Additional Prams as part of AddParticipant API

* Update baseclient.go

---------

Co-authored-by: manjunath-plivo <85923934+manjunath-plivo@users.noreply.github.com>
  • Loading branch information
prashantp-plivo and manjunath-plivo authored Feb 15, 2023
1 parent 6bed2dc commit 73aa40f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [7.19.0](https://github.com/plivo/plivo-go/tree/v7.19.0) (2023-02-16)
**Feature - MPC AddParticipant API**
- Added two new param - agent_hold_music and customer_hold_music in AddParticipant API

## [7.18.0](https://github.com/plivo/plivo-go/tree/v7.18.0) (2023-01-25)
**Feature - Added New Param 'requester_ip' in Get Message and List Mssage APIs**
- Add `requester_ip` to the response for the [list all messages API](https://www.plivo.com/docs/sms/api/message/list-all-messages/) and the [get message details API](https://www.plivo.com/docs/sms/api/message#retrieve-a-message)
Expand Down
2 changes: 1 addition & 1 deletion baseclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/google/go-querystring/query"
)

const sdkVersion = "7.18.0"
const sdkVersion = "7.19.0"

const lookupBaseUrl = "lookup.plivo.com"

Expand Down
2 changes: 2 additions & 0 deletions multipartycall.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ type MultiPartyCallAddParticipantParams struct {
StopRecordingAudio string `json:"stop_recording_audio,omitempty" url:"stop_recording_audio,omitempty"`
StopRecordingAudioMethod string `json:"stop_recording_audio_method,omitempty" url:"stop_recording_audio_method,omitempty"`
RecordMinMemberCount int64 `json:"record_min_member_count,omitempty" url:"record_min_member_count,omitempty"`
AgentHoldMusic string `json:"agent_hold_music,omitempty" url:"agent_hold_music,omitempty"`
CustomerHoldMusic string `json:"customer_hold_music,omitempty" url:"customer_hold_music,omitempty"`
}

type MultiPartyCallListParams struct {
Expand Down

0 comments on commit 73aa40f

Please sign in to comment.