diff --git a/CHANGELOG.md b/CHANGELOG.md index 006277f..46bd6a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [7.6.1](https://github.com/plivo/plivo-go/tree/v7.6.1) (2022-02-22) +**Features - ListParticipants** +- Parameter added as member_address in response and mock + ## [7.6.0](https://github.com/plivo/plivo-go/tree/v7.6.0) (2022-01-27) **Features - MPCStartRecording** - Parameter name change from statusCallBack to recordingCallback diff --git a/baseclient.go b/baseclient.go index 4329684..9e57eac 100644 --- a/baseclient.go +++ b/baseclient.go @@ -13,7 +13,7 @@ import ( "github.com/google/go-querystring/query" ) -const sdkVersion = "7.6.0" +const sdkVersion = "7.6.1" const lookupBaseUrl = "lookup.plivo.com" diff --git a/fixtures/mPCListParticipantsResponse.json b/fixtures/mPCListParticipantsResponse.json index 9df7118..cbe5b09 100644 --- a/fixtures/mPCListParticipantsResponse.json +++ b/fixtures/mPCListParticipantsResponse.json @@ -19,6 +19,7 @@ "exit_time": null, "hold": false, "join_time": "2020-06-03 14:07:22+00:00", + "member_address": "sip:ajaydjv902035012689385@phone-qa.voice.plivodev.com", "member_id": "209", "mpc_uuid": "b1e37275-b8e2-42cd-ae63-fffcc54a50b5", "mute": false, diff --git a/multipartycall.go b/multipartycall.go index a52d03e..d6bf71f 100644 --- a/multipartycall.go +++ b/multipartycall.go @@ -175,6 +175,7 @@ type MultiPartyCallParticipant struct { ExitTime string `json:"exit_time,omitempty" url:"exit_time,omitempty"` Hold bool `json:"hold,omitempty" url:"hold,omitempty"` JoinTime string `json:"join_time,omitempty" url:"join_time,omitempty"` + MemberAddress string `json:"member_address,omitempty" url:"member_address,omitempty"` MemberId string `json:"member_id,omitempty" url:"member_id,omitempty"` MpcUuid string `json:"mpc_uuid,omitempty" url:"mpc_uuid,omitempty"` Mute bool `json:"mute,omitempty" url:"mute,omitempty"`