From 18bfabebecf40a50391c21cb90e80048103088f6 Mon Sep 17 00:00:00 2001 From: Steven Pears Date: Wed, 14 Aug 2019 08:12:55 +0100 Subject: [PATCH 1/2] Add dynamic entity update into default list of directives --- Alexa.NET/Response/Converters/DirectiveConverter.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Alexa.NET/Response/Converters/DirectiveConverter.cs b/Alexa.NET/Response/Converters/DirectiveConverter.cs index 9887c5c..51eff3c 100644 --- a/Alexa.NET/Response/Converters/DirectiveConverter.cs +++ b/Alexa.NET/Response/Converters/DirectiveConverter.cs @@ -25,7 +25,8 @@ public class DirectiveConverter : JsonConverter { "AudioPlayer.Stop", () => new StopDirective() }, { "VideoApp.Launch", () => new VideoAppDirective() }, { "Connections.StartConnection", () => new StartConnectionDirective() }, - { "Tasks.CompleteTask",() => new CompleteTaskDirective()} + { "Tasks.CompleteTask",() => new CompleteTaskDirective()}, + { "Dialog.UpdateDynamicEntities", () => new DialogUpdateDynamicEntities() } }; public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) From 6ef44bdf6b7e0da0e0f874e18ce2be2d12b6ff7b Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Wed, 14 Aug 2019 13:08:09 -0700 Subject: [PATCH 2/2] Bump version + relnotes --- Alexa.NET/Alexa.NET.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Alexa.NET/Alexa.NET.csproj b/Alexa.NET/Alexa.NET.csproj index 1eaf86b..bb414eb 100644 --- a/Alexa.NET/Alexa.NET.csproj +++ b/Alexa.NET/Alexa.NET.csproj @@ -3,13 +3,13 @@ A simple .NET Core library for handling Alexa Skill request/responses. Alexa.NET - 1.8.0 + 1.8.1 Tim Heuer, Steven Pears netstandard2.0 Alexa.NET Alexa.NET amazon;alexa;echo;dot;echo dot;skills - 1.8.0 release makes this a .NET Standard 2 library; Bumping JSON.NET package version support as well. + Added dynamic entity update to directive list; 1.8.0 release makes this a .NET Standard 2 library; Bumping JSON.NET package version support as well. https://github.com/timheuer/alexa-skills-dotnet MIT https://github.com/timheuer/alexa-skills-dotnet