Skip to content

Commit

Permalink
added send digits and preanswer param (#210)
Browse files Browse the repository at this point in the history
* added send digits and preanswer param

* added the changelog

* changelog

---------

Co-authored-by: Manjunatha Shanbhog <manjunatha.shanbhog@ip-192-168-29-196.ap-south-1.compute.internal>
  • Loading branch information
PuneetAgrawal-plivo and Manjunatha Shanbhog authored Jul 1, 2024
1 parent c96ec72 commit b545682
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [7.50.1](https://github.com/plivo/plivo-go/tree/v7.50.1) (2024-07-01)
- Added Send digits and send on preanswer attribute in add participant

## [7.50.0](https://github.com/plivo/plivo-go/tree/v7.50.0) (2024-06-20)
- Improving outbound templated message capabilities

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.50.0"
const sdkVersion = "7.50.1"

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 @@ -71,6 +71,8 @@ type MultiPartyCallAddParticipantParams struct {
AgentHoldMusic string `json:"agent_hold_music,omitempty" url:"agent_hold_music,omitempty"`
CustomerHoldMusic string `json:"customer_hold_music,omitempty" url:"customer_hold_music,omitempty"`
CreateMpcWithSingleParticipant *bool `json:"create_mpc_with_single_participant,omitempty" url:"create_mpc_with_single_participant,omitempty"`
SendDigits string `json:"send_digits,omitempty" url:"send_digits,omitempty"`
SendOnPreanswer bool `json:"send_on_preanswer,omitempty" url:"send_on_preanswer,omitempty"`
}

type MultiPartyCallListParams struct {
Expand Down

0 comments on commit b545682

Please sign in to comment.