From 0aea847d43b771023aac2df81328b284be20af5a Mon Sep 17 00:00:00 2001 From: renoldthomas-plivo Date: Wed, 13 Dec 2023 16:04:26 +0530 Subject: [PATCH 1/2] missing params added in interface --- src/Plivo/Resource/Message/MessageInterface.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Plivo/Resource/Message/MessageInterface.cs b/src/Plivo/Resource/Message/MessageInterface.cs index f6d68a54..e0b8d333 100755 --- a/src/Plivo/Resource/Message/MessageInterface.cs +++ b/src/Plivo/Resource/Message/MessageInterface.cs @@ -580,6 +580,8 @@ public async Task> ListMediaAsync(string messageUuid) /// Subaccount. /// Limit. /// Offset. + /// FromNumber. + /// ToNumber. /// MessageState. /// MessageType. /// MessageDirection. @@ -599,6 +601,8 @@ public MessageListResponse 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, @@ -628,6 +632,8 @@ public MessageListResponse List( subaccount, limit, offset, + from_number, + to_number, message_state, message_type, message_direction, @@ -661,6 +667,8 @@ public MessageListResponse List( /// Subaccount. /// Limit. /// Offset. + /// FromNumber. + /// ToNumber. /// MessageState. /// MessageType. /// MessageDirection. @@ -680,6 +688,8 @@ public async Task> 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, @@ -709,6 +719,8 @@ public async Task> ListAsync( subaccount, limit, offset, + from_number, + to_number, message_state, message_type, message_direction, From 374dfe2781277c202c6d672d2670be60ddaa0448 Mon Sep 17 00:00:00 2001 From: renoldthomas-plivo Date: Wed, 13 Dec 2023 16:42:26 +0530 Subject: [PATCH 2/2] updated patch version --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- src/Plivo/Plivo.csproj | 2 +- src/Plivo/Plivo.nuspec | 3 ++- src/Plivo/Version.cs | 2 +- version.json | 2 +- 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64a102ca..9be6cba8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [5.41.0](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 diff --git a/README.md b/README.md index 8dff308d..58dcbe03 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ You can install this SDK either by referencing the .dll file or using NuGet. Use the following line to install the latest SDK using the NuGet CLI. ``` -PM> Install-Package Plivo -Version 5.41.0 +PM> Install-Package Plivo -Version 5.41.1 ``` You can also use the .NET CLI to install this package as follows ``` -> dotnet add package Plivo --version 5.41.0 +> dotnet add package Plivo --version 5.41.1 ``` ## Getting started diff --git a/src/Plivo/Plivo.csproj b/src/Plivo/Plivo.csproj index 7e1b3aad..91f9ec3a 100644 --- a/src/Plivo/Plivo.csproj +++ b/src/Plivo/Plivo.csproj @@ -1,7 +1,7 @@ netstandard2.0;netstandard1.3 - 5.41.0 + 5.41.1 Plivo SDKs Team Plivo Inc. diff --git a/src/Plivo/Plivo.nuspec b/src/Plivo/Plivo.nuspec index 9fd23f3d..9af313a0 100644 --- a/src/Plivo/Plivo.nuspec +++ b/src/Plivo/Plivo.nuspec @@ -4,7 +4,7 @@ A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML Plivo - 5.41.0 + 5.41.1 Plivo Plivo SDKs Team Plivo, Inc. @@ -12,6 +12,7 @@ http://github.com/plivo/plivo-dotnet false + * 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. diff --git a/src/Plivo/Version.cs b/src/Plivo/Version.cs index aa5165c7..b16791a1 100644 --- a/src/Plivo/Version.cs +++ b/src/Plivo/Version.cs @@ -10,7 +10,7 @@ public class Version /// /// DotNet SDK version /// - public const string SdkVersion = "5.41.0"; + public const string SdkVersion = "5.41.1"; /// /// Plivo API version /// diff --git a/version.json b/version.json index bba672aa..20580afd 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "version": "5.41.0", + "version": "5.41.1", "publicReleaseRefSpec": [ "^refs/heads/master$", "^refs/heads/v\\d+(?:\\.\\d+)?$"