Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating to 1.1.0-prerelease.581 #63

Merged
merged 1 commit into from
May 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Samples/BetaSamples/RemoteMediaSamples/IncidentBot/Bot/Bot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ public Bot(BotOptions options, IGraphLogger graphLogger)
Uri = new Uri(audioBaseUri, "audio/responder-transfering.wav").ToString(),
ResourceId = Guid.NewGuid().ToString(),
},
Loop = 1,
};

this.MediaMap[NotificationPromptName] = new MediaPrompt
Expand All @@ -108,7 +107,6 @@ public Bot(BotOptions options, IGraphLogger graphLogger)
Uri = new Uri(audioBaseUri, "audio/responder-notification.wav").ToString(),
ResourceId = Guid.NewGuid().ToString(),
},
Loop = 1,
};

this.MediaMap[BotIncomingPromptName] = new MediaPrompt
Expand All @@ -118,7 +116,6 @@ public Bot(BotOptions options, IGraphLogger graphLogger)
Uri = new Uri(audioBaseUri, "audio/bot-incoming.wav").ToString(),
ResourceId = Guid.NewGuid().ToString(),
},
Loop = 1,
};

this.MediaMap[BotEndpointIncomingPromptName] = new MediaPrompt
Expand All @@ -128,7 +125,6 @@ public Bot(BotOptions options, IGraphLogger graphLogger)
Uri = new Uri(audioBaseUri, "audio/bot-endpoint-incoming.wav").ToString(),
ResourceId = Guid.NewGuid().ToString(),
},
Loop = 1,
};

this.OnlineMeetings = new OnlineMeetingHelper(authProvider, options.PlaceCallEndpointUrl);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<PackageReference Include="Microsoft.AspNetCore.Mvc.WebApiCompatShim" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="2.1.1" />
<PackageReference Include="Microsoft.Graph.Communications.Calls" Version="1.1.0-prerelease.452" />
<PackageReference Include="Microsoft.Graph.Communications.Calls" Version="1.1.0-prerelease.581" />
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.9.0" />
<ProjectReference Include="..\..\..\Common\Sample.Common\Sample.Common.csproj" />
<Reference Include="System.Net.Http" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Import Project="$(MSBuildThisFileDirectory)..\..\..\Graph.props" />

<ItemGroup>
<PackageReference Include="Microsoft.Graph.Communications.Core.Calls" Version="1.1.0-prerelease.452" />
<PackageReference Include="Microsoft.Graph.Communications.Core.Calls" Version="1.1.0-prerelease.581" />
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="3.19.8" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions Samples/Common/Sample.Common/Sample.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.6" />
<PackageReference Include="Microsoft.Graph.Communications.Core.Calls" Version="1.1.0-prerelease.452" />
<PackageReference Include="Microsoft.Graph.Communications.Client" Version="1.1.0-prerelease.452" />
<PackageReference Include="Microsoft.Graph.Communications.Core.Calls" Version="1.1.0-prerelease.581" />
<PackageReference Include="Microsoft.Graph.Communications.Client" Version="1.1.0-prerelease.581" />
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="3.19.8" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="5.2.4" />
<Reference Include="System.Data" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.6" />
<PackageReference Include="Microsoft.AspNet.WebApi.Owin" Version="5.2.6" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.Graph.Communications.Calls.Media" Version="1.1.0-prerelease.452" />
<PackageReference Include="Microsoft.Graph.Communications.Calls.Media" Version="1.1.0-prerelease.581" />
<PackageReference Include="Microsoft.Owin" Version="4.0.0" />
<PackageReference Include="Microsoft.Owin.Hosting" Version="4.0.0" />
<PackageReference Include="Microsoft.Skype.Bots.Media" Version="1.12.1.6-alpha" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!-- Although Bots.Media is implicitly imported by Calls.Media, this library requires an explicit reference for
some scripts included within the nuget package. -->
<PackageReference Include="Microsoft.Skype.Bots.Media" Version="1.12.1.6-alpha" />
<PackageReference Include="Microsoft.Graph.Communications.Calls.Media" Version="1.1.0-prerelease.452" />
<PackageReference Include="Microsoft.Graph.Communications.Calls.Media" Version="1.1.0-prerelease.581" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ This changelog covers what's changed in Microsoft Graph Communications SDK and i
## May 2019

- Updated Media library 1.12.1.6-alpha
- Updated Communications libraries 1.1.0-prerelease.452
- Updated Communications libraries 1.1.0-prerelease.581

### Communications 1.1.0-prerelease.452 Changes
### Communications 1.1.0-prerelease.581 Changes

The Communications SDKs are now decoupled the `Microsoft.Graph` SDK.  New nugets have been released to as version `1.1.0-prerelease.*` to signal breaking changes due to objects being moved to Microsoft.Graph. 

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/Testing.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ <h4 id="update-signaling">Update Signaling</h4>
<div class="IMPORTANT"><h5>Important</h5><p>Your local instance must be listening to http traffic on the signaling port. The requests made by Graph Platform will reach the bot as localhost http traffic when End to End encryption is not setup.</p>
</div>
<h4 id="update-media">Update Media</h4>
<p>Update your <code>MediaPlatformSettings</code> to the following.</p>
<p>Update your <a class="xref" href="../bot_media/Microsoft.Skype.Bots.Media.MediaPlatformSettings.html">MediaPlatformSettings</a> to the following.</p>
<pre><code>var mediaPlatform = new MediaPlatformSettings
{
ApplicationId = &lt;Your application id&gt;
Expand Down
11 changes: 2 additions & 9 deletions docs/calls/Microsoft.Graph.Communications.Calls.ICall.html
Original file line number Diff line number Diff line change
Expand Up @@ -347,14 +347,14 @@ <h5 class="returns">Returns</h5>
</tbody>
</table>
<a id="Microsoft_Graph_Communications_Calls_ICall_CancelMediaProcessingAsync_" data-uid="Microsoft.Graph.Communications.Calls.ICall.CancelMediaProcessingAsync*"></a>
<h4 id="Microsoft_Graph_Communications_Calls_ICall_CancelMediaProcessingAsync_System_Boolean_System_Threading_CancellationToken_" data-uid="Microsoft.Graph.Communications.Calls.ICall.CancelMediaProcessingAsync(System.Boolean,System.Threading.CancellationToken)">CancelMediaProcessingAsync(Boolean, CancellationToken)</h4>
<h4 id="Microsoft_Graph_Communications_Calls_ICall_CancelMediaProcessingAsync_System_Threading_CancellationToken_" data-uid="Microsoft.Graph.Communications.Calls.ICall.CancelMediaProcessingAsync(System.Threading.CancellationToken)">CancelMediaProcessingAsync(CancellationToken)</h4>
<div class="markdown level1 summary"><p>Performs the CancelMediaProcessing operation. This cancels all or one of
the ongoing media operations.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Task CancelMediaProcessingAsync(bool all = true, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
<pre><code class="lang-csharp hljs">Task CancelMediaProcessingAsync(CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -366,13 +366,6 @@ <h5 class="parameters">Parameters</h5>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.boolean">Boolean</a></td>
<td><span class="parametername">all</span></td>
<td><p>When true, cancels all the media operations, otherwise
cancel the current one.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.cancellationtoken">CancellationToken</a></td>
<td><span class="parametername">cancellationToken</span></td>
Expand Down
46 changes: 0 additions & 46 deletions docs/calls/Microsoft.Graph.Communications.Calls.IParticipant.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,52 +167,6 @@ <h5 class="returns">Returns</h5>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a></td>
<td><p>The <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> that completes after the request has been sent.
The mute notification will come in on IParticipant.OnUpdated</p>
</td>
</tr>
</tbody>
</table>
<a id="Microsoft_Graph_Communications_Calls_IParticipant_UnmuteAsync_" data-uid="Microsoft.Graph.Communications.Calls.IParticipant.UnmuteAsync*"></a>
<h4 id="Microsoft_Graph_Communications_Calls_IParticipant_UnmuteAsync_System_Threading_CancellationToken_" data-uid="Microsoft.Graph.Communications.Calls.IParticipant.UnmuteAsync(System.Threading.CancellationToken)">UnmuteAsync(CancellationToken)</h4>
<div class="markdown level1 summary"><p>Performs the unmute operation asynchronously.
This works only when the unmute participant is my participant.
The service will reject any requests for other participants.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Task UnmuteAsync(CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.cancellationtoken">CancellationToken</a></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The cancellation token.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a></td>
<td><p>The <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> that completes after the request has been sent.
The unmute notification will come in on IParticipant.OnUpdated</p>
</td>
</tr>
</tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,55 +106,6 @@ <h5 id="Microsoft_Graph_Communications_Calls_IParticipantCollection_syntax">Synt
</div>
<h3 id="methods">Methods
</h3>
<a id="Microsoft_Graph_Communications_Calls_IParticipantCollection_ConfigureMixerAsync_" data-uid="Microsoft.Graph.Communications.Calls.IParticipantCollection.ConfigureMixerAsync*"></a>
<h4 id="Microsoft_Graph_Communications_Calls_IParticipantCollection_ConfigureMixerAsync_System_Collections_Generic_IEnumerable_Microsoft_Graph_ParticipantMixerLevel__System_Threading_CancellationToken_" data-uid="Microsoft.Graph.Communications.Calls.IParticipantCollection.ConfigureMixerAsync(System.Collections.Generic.IEnumerable{Microsoft.Graph.ParticipantMixerLevel},System.Threading.CancellationToken)">ConfigureMixerAsync(IEnumerable&lt;ParticipantMixerLevel&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Configures the mixer level for the call asynchronously.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Task ConfigureMixerAsync(IEnumerable&lt;ParticipantMixerLevel&gt; participantMixerLevels, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable</a>&lt;<a class="xref" href="../core_calls/Microsoft.Graph.ParticipantMixerLevel.html">ParticipantMixerLevel</a>&gt;</td>
<td><span class="parametername">participantMixerLevels</span></td>
<td><p>The list of participant mixer levels.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.cancellationtoken">CancellationToken</a></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The cancellation token.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a></td>
<td><p>The <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> that completes after the request has been sent.</p>
</td>
</tr>
</tbody>
</table>
<a id="Microsoft_Graph_Communications_Calls_IParticipantCollection_InviteAsync_" data-uid="Microsoft.Graph.Communications.Calls.IParticipantCollection.InviteAsync*"></a>
<h4 id="Microsoft_Graph_Communications_Calls_IParticipantCollection_InviteAsync_System_Collections_Generic_IEnumerable_Microsoft_Graph_InvitationParticipantInfo__System_Threading_CancellationToken_" data-uid="Microsoft.Graph.Communications.Calls.IParticipantCollection.InviteAsync(System.Collections.Generic.IEnumerable{Microsoft.Graph.InvitationParticipantInfo},System.Threading.CancellationToken)">InviteAsync(IEnumerable&lt;InvitationParticipantInfo&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Invites a list of participants given their identities.</p>
Expand Down Expand Up @@ -252,57 +203,6 @@ <h5 class="returns">Returns</h5>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a></td>
<td><p>The <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> that completes after the request has been sent.
The mute notifications will come in on IParticipant.OnUpdated</p>
</td>
</tr>
</tbody>
</table>
<a id="Microsoft_Graph_Communications_Calls_IParticipantCollection_UnmuteAllAsync_" data-uid="Microsoft.Graph.Communications.Calls.IParticipantCollection.UnmuteAllAsync*"></a>
<h4 id="Microsoft_Graph_Communications_Calls_IParticipantCollection_UnmuteAllAsync_System_Collections_Generic_IEnumerable_System_String__System_Threading_CancellationToken_" data-uid="Microsoft.Graph.Communications.Calls.IParticipantCollection.UnmuteAllAsync(System.Collections.Generic.IEnumerable{System.String},System.Threading.CancellationToken)">UnmuteAllAsync(IEnumerable&lt;String&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Unmute all the specified participants in a call. If none are provided,
all the participants are unmuted including the bot.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Task UnmuteAllAsync(IEnumerable&lt;string&gt; participantIds = null, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable</a>&lt;<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.string">String</a>&gt;</td>
<td><span class="parametername">participantIds</span></td>
<td><p>The list of participant ids.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.cancellationtoken">CancellationToken</a></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The cancellation token.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a></td>
<td><p>The <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> that completes after the request has been sent.
The unmute notifications will come in on IParticipant.OnUpdated</p>
</td>
</tr>
</tbody>
Expand All @@ -311,9 +211,6 @@ <h3 id="extensionmethods">Extension Methods</h3>
<div>
<a class="xref" href="Microsoft.Graph.Communications.Calls.ParticipantExtensions.html#Microsoft_Graph_Communications_Calls_ParticipantExtensions_InviteAsync_Microsoft_Graph_Communications_Calls_IParticipantCollection_Microsoft_Graph_IdentitySet_System_String_System_String_System_Threading_CancellationToken_">ParticipantExtensions.InviteAsync(IParticipantCollection, IdentitySet, String, String, CancellationToken)</a>
</div>
<div>
<a class="xref" href="Microsoft.Graph.Communications.Calls.ParticipantExtensions.html#Microsoft_Graph_Communications_Calls_ParticipantExtensions_ConfigureMixerAsync_Microsoft_Graph_Communications_Calls_IParticipantCollection_Microsoft_Graph_Participant_Microsoft_Graph_AudioDuckingConfiguration_System_Nullable_System_Boolean__System_Collections_Generic_IEnumerable_Microsoft_Graph_AudioSourceLevel__System_Threading_CancellationToken_">ParticipantExtensions.ConfigureMixerAsync(IParticipantCollection, Participant, AudioDuckingConfiguration, Nullable&lt;Boolean&gt;, IEnumerable&lt;AudioSourceLevel&gt;, CancellationToken)</a>
</div>
</article>
</div>

Expand Down
Loading