Skip to content

Commit

Permalink
Merge branch 'release/0.75.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Apr 8, 2024
2 parents dd5eb23 + 105d519 commit f1ee042
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Source/ZoomNet/IZoomClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,5 +122,10 @@ public interface IZoomClient
/// Gets the resource which allows you to access Zoom Phone API endpoints.
/// </summary>
IPhone Phone { get; }

/// <summary>
/// Gets the resource which allows you to manage SMS messages and sessions.
/// </summary>
ISms Sms { get; }
}
}
4 changes: 4 additions & 0 deletions Source/ZoomNet/ZoomClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ public static string Version
/// <inheritdoc/>
public IPhone Phone { get; private set; }

/// <inheritdoc/>
public ISms Sms { get; private set; }

#endregion

#region CTOR
Expand Down Expand Up @@ -275,6 +278,7 @@ private ZoomClient(IConnectionInfo connectionInfo, HttpClient httpClient, bool d
CallLogs = new CallLogs(_fluentClient);
Chatbot = new Chatbot(_fluentClient);
Phone = new Phone(_fluentClient);
Sms = new Sms(_fluentClient);
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Install tools.
#tool dotnet:?package=GitVersion.Tool&version=5.12.0
#tool dotnet:?package=coveralls.net&version=4.0.1
#tool nuget:https://f.feedz.io/jericho/jericho/nuget/?package=GitReleaseManager&version=0.17.0-collaborators0003
#tool nuget:https://f.feedz.io/jericho/jericho/nuget/?package=GitReleaseManager&version=0.17.0-collaborators0004
#tool nuget:?package=ReportGenerator&version=5.2.4
#tool nuget:?package=xunit.runner.console&version=2.7.0
#tool nuget:?package=CodecovUploader&version=0.7.2
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.201",
"version": "8.0.203",
"rollForward": "patch",
"allowPrerelease": false
}
Expand Down

0 comments on commit f1ee042

Please sign in to comment.