diff --git a/CHANGELOG.md b/CHANGELOG.md index 6014f5b..37a722f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [7.45.0](https://github.com/plivo/plivo-go/tree/v7.45.0) (2023-12-14) +**Feature - Added params for GET and LIST Campaign APIs** +- Added params 'vertical', 'campaign_alias' for GET and LIST Campaign APIs + ## [7.44.0](https://github.com/plivo/plivo-go/tree/v7.44.0) (2023-11-20) **Feature - New params for GET and LIST Campaign API** - Added new params 'error_code', 'error_reason' for GET and LIST Campaign API diff --git a/baseclient.go b/baseclient.go index 63abc90..d2c44b9 100644 --- a/baseclient.go +++ b/baseclient.go @@ -13,7 +13,7 @@ import ( "github.com/google/go-querystring/query" ) -const sdkVersion = "7.44.0" +const sdkVersion = "7.45.0" const lookupBaseUrl = "lookup.plivo.com" diff --git a/campaign.go b/campaign.go index 17fc676..93861344 100644 --- a/campaign.go +++ b/campaign.go @@ -104,6 +104,8 @@ type Campaign struct { CampaignSource string `json:"campaign_source,omitempty"` ErrorCode string `json:"error_code,omitempty"` ErrorReason string `json:"error_reason,omitempty"` + Vertical string `json:"vertical,omitempty"` + CampaignAlias string `json:"campaign_alias,omitempty"` } type CampaignAttributes struct {