Skip to content

Commit

Permalink
updated version details
Browse files Browse the repository at this point in the history
  • Loading branch information
renoldthomas-plivo committed Dec 14, 2023
2 parents 1c4a846 + 28c3229 commit 3beca44
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
**Feature - added two fields vertical and campaign_alias**
- Added response fields `vertical and campaign_alias`for LIST / GET Campaign APIs

## [5.41.1](https://github.com/plivo/plivo-dotnet/tree/v5.41.1) (2023-12-13)
**Support from_number and to_number filters for List Message**
- Supporting from_number and to_number params for List Message filtering

## [5.41.0](https://github.com/plivo/plivo-dotnet/tree/v5.41.0) (2023-11-29)
**Feature - new response field error_code and error_reason**
- Added new response field `error_code and error_reason`for LIST / GET Campaign APIs
Expand Down
1 change: 1 addition & 0 deletions src/Plivo/Plivo.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>
* 5.42.0 Added Params `vertical`, `campaign_alias` for GET and LIST Campaigns.
* 5.41.1 Support Params `from_number` and `to_number` for LIST Message.
* 5.41.0 Added New Params `error_code`, `error_reason` for GET and LIST Campaign.
* 5.40.0 Added New Params `registration_status`.
* 5.39.0 API support for verifying, updating, getting and deleting caller IDs.
Expand Down
12 changes: 12 additions & 0 deletions src/Plivo/Resource/Message/MessageInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,8 @@ public async Task<ListResponse<MMSMedia>> ListMediaAsync(string messageUuid)
/// <param name="subaccount">Subaccount.</param>
/// <param name="limit">Limit.</param>
/// <param name="offset">Offset.</param>
/// <param name="from_number">FromNumber.</param>
/// <param name="to_number">ToNumber.</param>
/// <param name="message_state">MessageState.</param>
/// <param name="message_type">MessageType.</param>
/// <param name="message_direction">MessageDirection.</param>
Expand All @@ -599,6 +601,8 @@ public MessageListResponse<Message> List(
string subaccount = null,
uint? limit = null,
uint? offset = null,
string from_number = null,
string to_number = null,
string message_state = null,
string message_type = null,
string message_direction = null,
Expand Down Expand Up @@ -628,6 +632,8 @@ public MessageListResponse<Message> List(
subaccount,
limit,
offset,
from_number,
to_number,
message_state,
message_type,
message_direction,
Expand Down Expand Up @@ -661,6 +667,8 @@ public MessageListResponse<Message> List(
/// <param name="subaccount">Subaccount.</param>
/// <param name="limit">Limit.</param>
/// <param name="offset">Offset.</param>
/// <param name="from_number">FromNumber.</param>
/// <param name="to_number">ToNumber.</param>
/// <param name="message_state">MessageState.</param>
/// <param name="message_type">MessageType.</param>
/// <param name="message_direction">MessageDirection.</param>
Expand All @@ -680,6 +688,8 @@ public async Task<MessageListResponse<Message>> ListAsync(
string subaccount = null,
uint? limit = null,
uint? offset = null,
string from_number = null,
string to_number = null,
string message_state = null,
string message_type = null,
string message_direction = null,
Expand Down Expand Up @@ -709,6 +719,8 @@ public async Task<MessageListResponse<Message>> ListAsync(
subaccount,
limit,
offset,
from_number,
to_number,
message_state,
message_type,
message_direction,
Expand Down

0 comments on commit 3beca44

Please sign in to comment.