Skip to content

Commit 75cf591

Browse files
Merge pull request #280 from plivo/VT-7705
filterParamAdded
2 parents 0c10b33 + c7aeb7c commit 75cf591

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [5.47.1](https://github.com/plivo/plivo-dotnet/tree/v5.46.1) (2024-05-28)
4+
**Feature - Adding filter support for List Application API**
5+
- Added new filer param `appName` in list application API
6+
37
## [5.47.0](https://github.com/plivo/plivo-dotnet/tree/v5.47.0) (2024-05-28)
48
**Feature - Number Masking Feature Added**
59
- Number Masking APIs added to create, update, delete and list sessions

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ You can install this SDK either by referencing the .dll file or using NuGet.
1212
Use the following line to install the latest SDK using the NuGet CLI.
1313

1414
```
15-
PM> Install-Package Plivo -Version 5.47.0
15+
PM> Install-Package Plivo -Version 5.47.1
1616
```
1717

1818
You can also use the .NET CLI to install this package as follows
1919

2020
```
21-
> dotnet add package Plivo --version 5.47.0
21+
> dotnet add package Plivo --version 5.47.1
2222
```
2323

2424
## Getting started

Diff for: src/Plivo/Plivo.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.0;netstandard1.3</TargetFrameworks>
4-
<ReleaseVersion>5.47.0</ReleaseVersion>
4+
<ReleaseVersion>5.47.1</ReleaseVersion>
55
<Version />
66
<Authors>Plivo SDKs Team</Authors>
77
<Owners>Plivo Inc.</Owners>

Diff for: src/Plivo/Plivo.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<summary>A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</summary>
55
<description>A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</description>
66
<id>Plivo</id>
7-
<version>5.47.0</version>
7+
<version>5.47.1</version>
88
<title>Plivo</title>
99
<authors>Plivo SDKs Team</authors>
1010
<owners>Plivo, Inc.</owners>

Diff for: src/Plivo/Resource/Application/ApplicationInterface.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,12 +209,12 @@ public async Task<AsyncResponse> GetAsync(string appId, string callbackUrl = nul
209209
/// <param name="limit">Limit.</param>
210210
/// <param name="offset">Offset.</param>
211211
public ListResponse<Application> List(
212-
string subaccount = null, uint? limit = null, uint? offset = null)
212+
string subaccount = null, string appName = null, uint? limit = null, uint? offset = null)
213213
{
214214
var mandatoryParams = new List<string> { "" };
215215
bool isVoiceRequest = true;
216216
var data = CreateData(
217-
mandatoryParams, new { subaccount, limit, offset, isVoiceRequest });
217+
mandatoryParams, new { subaccount, appName, limit, offset, isVoiceRequest });
218218

219219
return ExecuteWithExceptionUnwrap(() =>
220220
{

Diff for: src/Plivo/Version.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Version
1010
/// <summary>
1111
/// DotNet SDK version
1212
/// </summary>
13-
public const string SdkVersion = "5.47.0";
13+
public const string SdkVersion = "5.47.1";
1414
/// <summary>
1515
/// Plivo API version
1616
/// </summary>

Diff for: version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.47.0",
2+
"version": "5.47.1",
33
"publicReleaseRefSpec": [
44
"^refs/heads/master$",
55
"^refs/heads/v\\d+(?:\\.\\d+)?$"

0 commit comments

Comments
 (0)