chore(netd): bump 25.5.0 -> 25.6.0
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-02-16 11:38:19 -05:00
parent 2e5c0e66e8
commit eb90c002ea
5 changed files with 114 additions and 114 deletions

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Generated using NetDaemon CodeGenerator nd-codegen v25.5.0.0 // Generated using NetDaemon CodeGenerator nd-codegen v25.6.0.0
// At: 2025-02-08T19:34:21.0625138-05:00 // At: 2025-02-16T10:56:36.9825827-05:00
// //
// *** Make sure the version of the codegen tool and your nugets NetDaemon.* have the same version.*** // *** Make sure the version of the codegen tool and your nugets NetDaemon.* have the same version.***
// You can use following command to keep it up to date with the latest version: // You can use following command to keep it up to date with the latest version:
@ -1064,7 +1064,7 @@ public partial record LightAttributes
public object? DoNotDisturb { get; init; } public object? DoNotDisturb { get; init; }
[JsonPropertyName("linkquality")] [JsonPropertyName("linkquality")]
public object? Linkquality { get; init; } public double? Linkquality { get; init; }
} }
public partial record MediaPlayerEntity : Entity<MediaPlayerEntity, EntityState<MediaPlayerAttributes>, MediaPlayerAttributes>, IMediaPlayerEntityCore public partial record MediaPlayerEntity : Entity<MediaPlayerEntity, EntityState<MediaPlayerAttributes>, MediaPlayerAttributes>, IMediaPlayerEntityCore
@ -1729,7 +1729,7 @@ public partial record SelectAttributes
public object? DoNotDisturb { get; init; } public object? DoNotDisturb { get; init; }
[JsonPropertyName("linkquality")] [JsonPropertyName("linkquality")]
public object? Linkquality { get; init; } public double? Linkquality { get; init; }
} }
public partial record SensorEntity : Entity<SensorEntity, EntityState<SensorAttributes>, SensorAttributes>, ISensorEntityCore public partial record SensorEntity : Entity<SensorEntity, EntityState<SensorAttributes>, SensorAttributes>, ISensorEntityCore
@ -2009,7 +2009,7 @@ public partial record SwitchAttributes
public object? DoNotDisturb { get; init; } public object? DoNotDisturb { get; init; }
[JsonPropertyName("linkquality")] [JsonPropertyName("linkquality")]
public object? Linkquality { get; init; } public double? Linkquality { get; init; }
} }
public partial record TimerEntity : Entity<TimerEntity, EntityState<TimerAttributes>, TimerAttributes>, ITimerEntityCore public partial record TimerEntity : Entity<TimerEntity, EntityState<TimerAttributes>, TimerAttributes>, ITimerEntityCore
@ -3924,14 +3924,14 @@ public partial class LightServices
_haContext = haContext; _haContext = haContext;
} }
///<summary>Toggles one or more lights, from on to off, or, off to on, based on their current state.</summary> ///<summary>Toggles one or more lights, from on to off, or off to on, based on their current state.</summary>
///<param name="target">The target for this service call</param> ///<param name="target">The target for this service call</param>
public void Toggle(ServiceTarget target, LightToggleParameters data) public void Toggle(ServiceTarget target, LightToggleParameters data)
{ {
_haContext.CallService("light", "toggle", target, data); _haContext.CallService("light", "toggle", target, data);
} }
///<summary>Toggles one or more lights, from on to off, or, off to on, based on their current state.</summary> ///<summary>Toggles one or more lights, from on to off, or off to on, based on their current state.</summary>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param> ///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param>
///<param name="kelvin">Color temperature in Kelvin.</param> ///<param name="kelvin">Color temperature in Kelvin.</param>
@ -3952,14 +3952,14 @@ public partial class LightServices
_haContext.CallService("light", "toggle", target, new LightToggleParameters { Transition = transition, RgbColor = rgbColor, Kelvin = kelvin, BrightnessPct = brightnessPct, Effect = effect, RgbwColor = rgbwColor, RgbwwColor = rgbwwColor, ColorName = colorName, HsColor = hsColor, XyColor = xyColor, ColorTemp = colorTemp, Brightness = brightness, White = white, Profile = profile, Flash = flash }); _haContext.CallService("light", "toggle", target, new LightToggleParameters { Transition = transition, RgbColor = rgbColor, Kelvin = kelvin, BrightnessPct = brightnessPct, Effect = effect, RgbwColor = rgbwColor, RgbwwColor = rgbwwColor, ColorName = colorName, HsColor = hsColor, XyColor = xyColor, ColorTemp = colorTemp, Brightness = brightness, White = white, Profile = profile, Flash = flash });
} }
///<summary>Turn off one or more lights.</summary> ///<summary>Turns off one or more lights.</summary>
///<param name="target">The target for this service call</param> ///<param name="target">The target for this service call</param>
public void TurnOff(ServiceTarget target, LightTurnOffParameters data) public void TurnOff(ServiceTarget target, LightTurnOffParameters data)
{ {
_haContext.CallService("light", "turn_off", target, data); _haContext.CallService("light", "turn_off", target, data);
} }
///<summary>Turn off one or more lights.</summary> ///<summary>Turns off one or more lights.</summary>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="flash"></param> ///<param name="flash"></param>
public void TurnOff(ServiceTarget target, double? transition = null, object? flash = null) public void TurnOff(ServiceTarget target, double? transition = null, object? flash = null)
@ -3967,14 +3967,14 @@ public partial class LightServices
_haContext.CallService("light", "turn_off", target, new LightTurnOffParameters { Transition = transition, Flash = flash }); _haContext.CallService("light", "turn_off", target, new LightTurnOffParameters { Transition = transition, Flash = flash });
} }
///<summary>Turn on one or more lights and adjust properties of the light, even when they are turned on already.</summary> ///<summary>Turns on one or more lights and adjusts their properties, even when they are turned on already.</summary>
///<param name="target">The target for this service call</param> ///<param name="target">The target for this service call</param>
public void TurnOn(ServiceTarget target, LightTurnOnParameters data) public void TurnOn(ServiceTarget target, LightTurnOnParameters data)
{ {
_haContext.CallService("light", "turn_on", target, data); _haContext.CallService("light", "turn_on", target, data);
} }
///<summary>Turn on one or more lights and adjust properties of the light, even when they are turned on already.</summary> ///<summary>Turns on one or more lights and adjusts their properties, even when they are turned on already.</summary>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param> ///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param>
///<param name="kelvin">Color temperature in Kelvin.</param> ///<param name="kelvin">Color temperature in Kelvin.</param>
@ -11863,19 +11863,19 @@ public static class InputTextEntityExtensionMethods
public static class LightEntityExtensionMethods public static class LightEntityExtensionMethods
{ {
///<summary>Toggles one or more lights, from on to off, or, off to on, based on their current state.</summary> ///<summary>Toggles one or more lights, from on to off, or off to on, based on their current state.</summary>
public static void Toggle(this ILightEntityCore target, LightToggleParameters data) public static void Toggle(this ILightEntityCore target, LightToggleParameters data)
{ {
target.CallService("toggle", data); target.CallService("toggle", data);
} }
///<summary>Toggles one or more lights, from on to off, or, off to on, based on their current state.</summary> ///<summary>Toggles one or more lights, from on to off, or off to on, based on their current state.</summary>
public static void Toggle(this IEnumerable<ILightEntityCore> target, LightToggleParameters data) public static void Toggle(this IEnumerable<ILightEntityCore> target, LightToggleParameters data)
{ {
target.CallService("toggle", data); target.CallService("toggle", data);
} }
///<summary>Toggles one or more lights, from on to off, or, off to on, based on their current state.</summary> ///<summary>Toggles one or more lights, from on to off, or off to on, based on their current state.</summary>
///<param name="target">The ILightEntityCore to call this service for</param> ///<param name="target">The ILightEntityCore to call this service for</param>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param> ///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param>
@ -11897,7 +11897,7 @@ public static class LightEntityExtensionMethods
target.CallService("toggle", new LightToggleParameters { Transition = transition, RgbColor = rgbColor, Kelvin = kelvin, BrightnessPct = brightnessPct, Effect = effect, RgbwColor = rgbwColor, RgbwwColor = rgbwwColor, ColorName = colorName, HsColor = hsColor, XyColor = xyColor, ColorTemp = colorTemp, Brightness = brightness, White = white, Profile = profile, Flash = flash }); target.CallService("toggle", new LightToggleParameters { Transition = transition, RgbColor = rgbColor, Kelvin = kelvin, BrightnessPct = brightnessPct, Effect = effect, RgbwColor = rgbwColor, RgbwwColor = rgbwwColor, ColorName = colorName, HsColor = hsColor, XyColor = xyColor, ColorTemp = colorTemp, Brightness = brightness, White = white, Profile = profile, Flash = flash });
} }
///<summary>Toggles one or more lights, from on to off, or, off to on, based on their current state.</summary> ///<summary>Toggles one or more lights, from on to off, or off to on, based on their current state.</summary>
///<param name="target">The IEnumerable&lt;ILightEntityCore&gt; to call this service for</param> ///<param name="target">The IEnumerable&lt;ILightEntityCore&gt; to call this service for</param>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param> ///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param>
@ -11919,19 +11919,19 @@ public static class LightEntityExtensionMethods
target.CallService("toggle", new LightToggleParameters { Transition = transition, RgbColor = rgbColor, Kelvin = kelvin, BrightnessPct = brightnessPct, Effect = effect, RgbwColor = rgbwColor, RgbwwColor = rgbwwColor, ColorName = colorName, HsColor = hsColor, XyColor = xyColor, ColorTemp = colorTemp, Brightness = brightness, White = white, Profile = profile, Flash = flash }); target.CallService("toggle", new LightToggleParameters { Transition = transition, RgbColor = rgbColor, Kelvin = kelvin, BrightnessPct = brightnessPct, Effect = effect, RgbwColor = rgbwColor, RgbwwColor = rgbwwColor, ColorName = colorName, HsColor = hsColor, XyColor = xyColor, ColorTemp = colorTemp, Brightness = brightness, White = white, Profile = profile, Flash = flash });
} }
///<summary>Turn off one or more lights.</summary> ///<summary>Turns off one or more lights.</summary>
public static void TurnOff(this ILightEntityCore target, LightTurnOffParameters data) public static void TurnOff(this ILightEntityCore target, LightTurnOffParameters data)
{ {
target.CallService("turn_off", data); target.CallService("turn_off", data);
} }
///<summary>Turn off one or more lights.</summary> ///<summary>Turns off one or more lights.</summary>
public static void TurnOff(this IEnumerable<ILightEntityCore> target, LightTurnOffParameters data) public static void TurnOff(this IEnumerable<ILightEntityCore> target, LightTurnOffParameters data)
{ {
target.CallService("turn_off", data); target.CallService("turn_off", data);
} }
///<summary>Turn off one or more lights.</summary> ///<summary>Turns off one or more lights.</summary>
///<param name="target">The ILightEntityCore to call this service for</param> ///<param name="target">The ILightEntityCore to call this service for</param>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="flash"></param> ///<param name="flash"></param>
@ -11940,7 +11940,7 @@ public static class LightEntityExtensionMethods
target.CallService("turn_off", new LightTurnOffParameters { Transition = transition, Flash = flash }); target.CallService("turn_off", new LightTurnOffParameters { Transition = transition, Flash = flash });
} }
///<summary>Turn off one or more lights.</summary> ///<summary>Turns off one or more lights.</summary>
///<param name="target">The IEnumerable&lt;ILightEntityCore&gt; to call this service for</param> ///<param name="target">The IEnumerable&lt;ILightEntityCore&gt; to call this service for</param>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="flash"></param> ///<param name="flash"></param>
@ -11949,19 +11949,19 @@ public static class LightEntityExtensionMethods
target.CallService("turn_off", new LightTurnOffParameters { Transition = transition, Flash = flash }); target.CallService("turn_off", new LightTurnOffParameters { Transition = transition, Flash = flash });
} }
///<summary>Turn on one or more lights and adjust properties of the light, even when they are turned on already.</summary> ///<summary>Turns on one or more lights and adjusts their properties, even when they are turned on already.</summary>
public static void TurnOn(this ILightEntityCore target, LightTurnOnParameters data) public static void TurnOn(this ILightEntityCore target, LightTurnOnParameters data)
{ {
target.CallService("turn_on", data); target.CallService("turn_on", data);
} }
///<summary>Turn on one or more lights and adjust properties of the light, even when they are turned on already.</summary> ///<summary>Turns on one or more lights and adjusts their properties, even when they are turned on already.</summary>
public static void TurnOn(this IEnumerable<ILightEntityCore> target, LightTurnOnParameters data) public static void TurnOn(this IEnumerable<ILightEntityCore> target, LightTurnOnParameters data)
{ {
target.CallService("turn_on", data); target.CallService("turn_on", data);
} }
///<summary>Turn on one or more lights and adjust properties of the light, even when they are turned on already.</summary> ///<summary>Turns on one or more lights and adjusts their properties, even when they are turned on already.</summary>
///<param name="target">The ILightEntityCore to call this service for</param> ///<param name="target">The ILightEntityCore to call this service for</param>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param> ///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param>
@ -11985,7 +11985,7 @@ public static class LightEntityExtensionMethods
target.CallService("turn_on", new LightTurnOnParameters { Transition = transition, RgbColor = rgbColor, Kelvin = kelvin, BrightnessPct = brightnessPct, BrightnessStepPct = brightnessStepPct, Effect = effect, RgbwColor = rgbwColor, RgbwwColor = rgbwwColor, ColorName = colorName, HsColor = hsColor, XyColor = xyColor, ColorTemp = colorTemp, Brightness = brightness, BrightnessStep = brightnessStep, White = white, Profile = profile, Flash = flash }); target.CallService("turn_on", new LightTurnOnParameters { Transition = transition, RgbColor = rgbColor, Kelvin = kelvin, BrightnessPct = brightnessPct, BrightnessStepPct = brightnessStepPct, Effect = effect, RgbwColor = rgbwColor, RgbwwColor = rgbwwColor, ColorName = colorName, HsColor = hsColor, XyColor = xyColor, ColorTemp = colorTemp, Brightness = brightness, BrightnessStep = brightnessStep, White = white, Profile = profile, Flash = flash });
} }
///<summary>Turn on one or more lights and adjust properties of the light, even when they are turned on already.</summary> ///<summary>Turns on one or more lights and adjusts their properties, even when they are turned on already.</summary>
///<param name="target">The IEnumerable&lt;ILightEntityCore&gt; to call this service for</param> ///<param name="target">The IEnumerable&lt;ILightEntityCore&gt; to call this service for</param>
///<param name="transition">Duration it takes to get to next state.</param> ///<param name="transition">Duration it takes to get to next state.</param>
///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param> ///<param name="rgbColor">The color in RGB format. A list of three integers between 0 and 255 representing the values of red, green, and blue. eg: [255, 100, 100]</param>

View file

@ -26,13 +26,13 @@
}, },
{ {
"pname": "Microsoft.Extensions.Configuration", "pname": "Microsoft.Extensions.Configuration",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-QKWRIGi8RaZjheuW9gMouXa3oaL/nMwlmg28/xxEvgs=" "hash": "sha256-AUNaLhYTcHUkqKGhSL7QgrifV9JkjKhNQ4Ws8UtZhlM="
}, },
{ {
"pname": "Microsoft.Extensions.Configuration.Abstractions", "pname": "Microsoft.Extensions.Configuration.Abstractions",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-r3iWP+kwKo4Aib8SGo91kKWR5WusLrbFHUAw5uKQeNA=" "hash": "sha256-icRtfbi0nDRUYDErtKYx0z6A1gWo5xdswsSM6o4ozxc="
}, },
{ {
"pname": "Microsoft.Extensions.Configuration.Binder", "pname": "Microsoft.Extensions.Configuration.Binder",
@ -41,38 +41,38 @@
}, },
{ {
"pname": "Microsoft.Extensions.Configuration.Binder", "pname": "Microsoft.Extensions.Configuration.Binder",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-uq6i0gTobSTqaNm/0XZuv8GGjFpnvgwXnCCPWl9FP9g=" "hash": "sha256-lYWUfvSnpp9M4N4wIfFnMlB+8K79g9uUa1NXsgnxs0k="
}, },
{ {
"pname": "Microsoft.Extensions.Configuration.CommandLine", "pname": "Microsoft.Extensions.Configuration.CommandLine",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-QkQzJUxI04NikPn4xA8ZzzbVmrgCiabbmx+vwX6e/S0=" "hash": "sha256-qsEwiAO/n2+k8Q8/AftqdSlvvQWDx7WKb+9VlP8Nuxw="
}, },
{ {
"pname": "Microsoft.Extensions.Configuration.EnvironmentVariables", "pname": "Microsoft.Extensions.Configuration.EnvironmentVariables",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-NS38eSGrEMQf1CgwwcLtmjMNmcLB6ssOWwU4EZw2zBk=" "hash": "sha256-XgSdv8+zh2vXmhP+a31/+Y+mNLwQwLflfCiEtDemea0="
}, },
{ {
"pname": "Microsoft.Extensions.Configuration.FileExtensions", "pname": "Microsoft.Extensions.Configuration.FileExtensions",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-xEgobzCPSB+8NbAcjOjES1oYKBdwk5hVdfENL2XPWbk=" "hash": "sha256-eeZbwf2lcV74mjXtOX8q0MxvP4QzEYyHXr1EGFS/orU="
}, },
{ {
"pname": "Microsoft.Extensions.Configuration.Json", "pname": "Microsoft.Extensions.Configuration.Json",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-8mqWcbJk8FOonELQPaxmAQAkVEz8OrHqn/4sl8SDigM=" "hash": "sha256-7/ewyjh0gXu798fYcJxOCkdaAPIzrJ8reuTzqz93IJ0="
}, },
{ {
"pname": "Microsoft.Extensions.Configuration.UserSecrets", "pname": "Microsoft.Extensions.Configuration.UserSecrets",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-Jmol3YMKqsnXdsG5w7p4Ejgx5BsvT0q9fCfKZJv3chw=" "hash": "sha256-0OmAQn8gIqTPN4s0NkcidXivjq5LsEGiNVxmp3qxGoo="
}, },
{ {
"pname": "Microsoft.Extensions.DependencyInjection", "pname": "Microsoft.Extensions.DependencyInjection",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-Kt9fczXVeOIlvwuxXdQDKRfIZKClay0ESGUIAJpYiOw=" "hash": "sha256-jNQVj2Xo7wzVdNDu27bLbYCVUOF8yDVrFtC3cZ9OsXo="
}, },
{ {
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions", "pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
@ -81,8 +81,8 @@
}, },
{ {
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions", "pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-2tWVTPHsw1NG2zO0zsxvi1GybryqeE1V00ZRE66YZB4=" "hash": "sha256-WoTLgw/OlXhgN54Szip0Zpne7i/YTXwZ1ZLCPcHV6QM="
}, },
{ {
"pname": "Microsoft.Extensions.DependencyModel", "pname": "Microsoft.Extensions.DependencyModel",
@ -91,33 +91,33 @@
}, },
{ {
"pname": "Microsoft.Extensions.Diagnostics", "pname": "Microsoft.Extensions.Diagnostics",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-WOuWbkV9IxXnIN2xpqeoovoD3rbMpwAXSJlYKSI4dUI=" "hash": "sha256-ImTZ6PZyKEdq1XvqYT5DPr6cG0BSTrsrO7rTDuy29fc="
}, },
{ {
"pname": "Microsoft.Extensions.Diagnostics.Abstractions", "pname": "Microsoft.Extensions.Diagnostics.Abstractions",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-/JkeyAQ//lfuHrWbq8ZFrHZiLvIXSnBj0MG0rU8eggQ=" "hash": "sha256-JTJ8LCW3aYUO86OPgXRQthtDTUMikOfILExgeOF8CX4="
}, },
{ {
"pname": "Microsoft.Extensions.FileProviders.Abstractions", "pname": "Microsoft.Extensions.FileProviders.Abstractions",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-ZVnTUbr2eIVFHdtTG9H1kR4DzgpDiMFzRcNx0brHf3o=" "hash": "sha256-RmVshMCWW1/RE/Wk8AeT4r6uZ+XFuwDFYzdxYKSm440="
}, },
{ {
"pname": "Microsoft.Extensions.FileProviders.Physical", "pname": "Microsoft.Extensions.FileProviders.Physical",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-GKyzSDYPl5Y0AAHufaULu8BLKWQU1ofAUJt4YENVaXU=" "hash": "sha256-vQBgVLW813wOnJ1+943ArDWReok6p0jAl7fhwvyFtL8="
}, },
{ {
"pname": "Microsoft.Extensions.FileSystemGlobbing", "pname": "Microsoft.Extensions.FileSystemGlobbing",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-eoJViA7yWsT9gD/oY5WJHaEWHDibek6uClj8woyteHM=" "hash": "sha256-oH6X8SQjqi5Q2HLRILcUr9iPqnC1Ky5m5GbYYCKCxag="
}, },
{ {
"pname": "Microsoft.Extensions.Hosting", "pname": "Microsoft.Extensions.Hosting",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-UNizJvAtGdigct+mb7yqrJdyCCGxLUGJPjmUrx7D3U4=" "hash": "sha256-eI9ckarRX0UCX+mBsEBYdvHZrmN86bXyTRvbH4gU9JM="
}, },
{ {
"pname": "Microsoft.Extensions.Hosting.Abstractions", "pname": "Microsoft.Extensions.Hosting.Abstractions",
@ -126,13 +126,13 @@
}, },
{ {
"pname": "Microsoft.Extensions.Hosting.Abstractions", "pname": "Microsoft.Extensions.Hosting.Abstractions",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-5uQbKBcKy1mIhyo6M6ROG+wccZBEcbELLre6P4w+qGE=" "hash": "sha256-PUCam4g5g84qIqfPA9sVBNVPA26rWFq7js9nHF3WLZc="
}, },
{ {
"pname": "Microsoft.Extensions.Http", "pname": "Microsoft.Extensions.Http",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-MvQon3jJ/wIhXCLFuI2s0tW4+bh0jUAu6H5I5R8WjaQ=" "hash": "sha256-TL1TPa3xgD1d6Ix4/Iifyw1tov3Ew/BQy4bxaj7FRZU="
}, },
{ {
"pname": "Microsoft.Extensions.Logging", "pname": "Microsoft.Extensions.Logging",
@ -141,8 +141,8 @@
}, },
{ {
"pname": "Microsoft.Extensions.Logging", "pname": "Microsoft.Extensions.Logging",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-IjszwetJ/r1NvwVyh+/SlavabNt9UXf3ZSGP9gGwnkk=" "hash": "sha256-vPCb4ZoiwZUSGJIOhYiLwcZLnsd0ZZhny6KQkT88nI0="
}, },
{ {
"pname": "Microsoft.Extensions.Logging.Abstractions", "pname": "Microsoft.Extensions.Logging.Abstractions",
@ -151,93 +151,93 @@
}, },
{ {
"pname": "Microsoft.Extensions.Logging.Abstractions", "pname": "Microsoft.Extensions.Logging.Abstractions",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-aFZeUno9yLLbvtrj53gA7oD41vxZZYkrJhlOghpMEjo=" "hash": "sha256-mCxeuc+37XY0bmZR+z4p1hrZUdTZEg+FRcs/m6dAQDU="
}, },
{ {
"pname": "Microsoft.Extensions.Logging.Configuration", "pname": "Microsoft.Extensions.Logging.Configuration",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-O7LaPjMs2PslVj/BUcXb1LeKFRClJZ6AsxlpdKxnng4=" "hash": "sha256-SeNQ8us2cZ8xbJx8TK7xm3IxQR95EanSfMYhqvP2pWU="
}, },
{ {
"pname": "Microsoft.Extensions.Logging.Console", "pname": "Microsoft.Extensions.Logging.Console",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-COhAJd3zGq0689VQxkpYPBE2hASy79F8ElIj4KqbYn0=" "hash": "sha256-yD30lW3ax4JHmZ9QIp1b0ELrXiwykP5KHF/feJGweyE="
}, },
{ {
"pname": "Microsoft.Extensions.Logging.Debug", "pname": "Microsoft.Extensions.Logging.Debug",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-+f+A1cWW56ZTikb1g+ch3JVkzO5oOqCyUsmZNSurchA=" "hash": "sha256-0WP9jFTsbXCIhYx/2IFL69mv2+K3Ld7C4QvwY00iOD0="
}, },
{ {
"pname": "Microsoft.Extensions.Logging.EventLog", "pname": "Microsoft.Extensions.Logging.EventLog",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-21XUesJlrhrbQmYLFfctcd9abNySjwzGoBCU8hwkz0k=" "hash": "sha256-e4q/Z6xLq2HzQiKI7npagyEZdkfUe+FbIz3Tg+hPH9g="
}, },
{ {
"pname": "Microsoft.Extensions.Logging.EventSource", "pname": "Microsoft.Extensions.Logging.EventSource",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-i+XXxnCyaE0q4JRaasfS2MdsdEEKS1NnrmiIc8TU+1U=" "hash": "sha256-W7yidllNOKxTvgIUqjJ3h55PAIR/XREfbuH+8TUhD0o="
}, },
{ {
"pname": "Microsoft.Extensions.Options", "pname": "Microsoft.Extensions.Options",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-wOKd/0+kRK3WrGA2HmS/KNYUTUwXHmTAD5IsClTFA10=" "hash": "sha256-y2jZfcWx/H6Sx7wklA248r6kPjZmzTTLGxW8ZxrzNLM="
}, },
{ {
"pname": "Microsoft.Extensions.Options.ConfigurationExtensions", "pname": "Microsoft.Extensions.Options.ConfigurationExtensions",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-pzc49CPyBlSoyflWvW6J+xqk2RXEVfPczcDiR0Aj9xA=" "hash": "sha256-xOYLRlXDI4gMEoQ+J+sQBNRT2RPDNrSCZkob7qBiV10="
}, },
{ {
"pname": "Microsoft.Extensions.Primitives", "pname": "Microsoft.Extensions.Primitives",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-tdbtoC7eQGW5yh66FWCJQqmFJkNJD+9e6DDKTs7YAjs=" "hash": "sha256-zy/YNMaY47o6yNv2WuYiAJEjtoOF8jlWgsWHqXeSm4s="
}, },
{ {
"pname": "NetDaemon.AppModel", "pname": "NetDaemon.AppModel",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-UcB3g8/tbjHf/OKuJ2lyq6H3jXC6KqeZayHmGA0SiDw=" "hash": "sha256-s1x6Sxlrdrl7mApbAgUN7uPIl8uxBC+rEJ6B1f/MZrI="
}, },
{ {
"pname": "NetDaemon.AppModel.SourceDeployedApps", "pname": "NetDaemon.AppModel.SourceDeployedApps",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-RXJAaasG7g+s0GUUbrH4sFLtr7f7st+IIRgQc4MkM58=" "hash": "sha256-9ndhuXTcP7QcoKB6i6KCs7B6G7u+zx22cc3ICF/jurs="
}, },
{ {
"pname": "NetDaemon.Client", "pname": "NetDaemon.Client",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-xWNVOPihlcSwlBIlUOg7+6qoRC7nz1/lWGv58j0ZSSI=" "hash": "sha256-dnkcHED/O9C638EDLu09uwXBpjIAxeu7bVmbqIoM1Sg="
}, },
{ {
"pname": "NetDaemon.Extensions.Logging", "pname": "NetDaemon.Extensions.Logging",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-E7pTcnlpb+w1cR0PUnREhThAYx/CI0+ThJ4JsDYYR4M=" "hash": "sha256-h2f1+IJcp/J2+OGFMZ4M6LJnQWP1wZXTLstbjiWjXLM="
}, },
{ {
"pname": "NetDaemon.Extensions.Scheduling", "pname": "NetDaemon.Extensions.Scheduling",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-M+zHunJ7Yaux0PxitN8YRxRxD21zYSFSX3NuYWc53Tk=" "hash": "sha256-l5iPUZ4QL14oPlwWGkPwEffLkUkRwopafmUPm0F7Cu4="
}, },
{ {
"pname": "NetDaemon.Extensions.Tts", "pname": "NetDaemon.Extensions.Tts",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-h4W34ORzGzqlfgydiE637EjLZU2Cw5JAkU/DVMZMGJw=" "hash": "sha256-3N9QDa9wVr2UYtoXieoE09xPw82/eUfm7T1QsVFmYxQ="
}, },
{ {
"pname": "NetDaemon.HassModel", "pname": "NetDaemon.HassModel",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-EWtHLUp75Sd6SKEcFmg/I/GmAZVD4bnATqhwxdGeOEs=" "hash": "sha256-AFWIN8phZNp1X0uhSFHwEGyZ3/sARyOw0Sk7V6KZCDA="
}, },
{ {
"pname": "NetDaemon.HassModel.Integration", "pname": "NetDaemon.HassModel.Integration",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-xGv+d9PIh7aZZEsjycuPhREkBHVS8Okzg8uIQTLYjiM=" "hash": "sha256-Llc5Ju6n7M6kySWd0L9yW/ZqHFWxKC/q5qLk1BGvlLk="
}, },
{ {
"pname": "NetDaemon.Runtime", "pname": "NetDaemon.Runtime",
"version": "25.5.0", "version": "25.6.0",
"hash": "sha256-FzRhzbToO8IRoQWTOCXz8Oz4kyL2Puab9ygDz7IBbcU=" "hash": "sha256-+c21vjc4kkx/8pvNVe7s2REoImXbcEZLUNPMpJqcWh4="
}, },
{ {
"pname": "Serilog", "pname": "Serilog",
@ -296,13 +296,13 @@
}, },
{ {
"pname": "System.Diagnostics.EventLog", "pname": "System.Diagnostics.EventLog",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-pqqZyEm/9Gsp1zT5WJeVX47S2MvoiGGgG1S2Ud/aIqo=" "hash": "sha256-IoiQbH8To9UqzYgJzYpFbuiRV3KGU85y4ccPTyttP/w="
}, },
{ {
"pname": "System.IO.Pipelines", "pname": "System.IO.Pipelines",
"version": "9.0.1", "version": "9.0.2",
"hash": "sha256-CnmDanknCGbNnoDjgZw62M/Grg8IMTJDa8x3P07UR2A=" "hash": "sha256-uxM7J0Q/dzEsD0NGcVBsOmdHiOEawZ5GNUKBwpdiPyE="
}, },
{ {
"pname": "System.Reactive", "pname": "System.Reactive",

View file

@ -1,8 +1,8 @@
pkgs: pkgs:
pkgs.dockerTools.pullImage rec { pkgs.dockerTools.pullImage rec {
imageName = "netdaemon/netdaemon5"; imageName = "netdaemon/netdaemon5";
imageDigest = "sha256:cfc7a39feee300e77bd6ecc798c15f046b8d222ce251a3c57697069db78841f8"; imageDigest = "sha256:4d655d76f2eabe8958d297a6d04a7f78b3e4165dfa800a0e45b5bca78fe770f2";
hash = "sha256-AzzlLiyM0OOtVSEObAxEn8D8+/RKaND/bwvrfUchiTs="; hash = "sha256-DZodCQHzAcHX7BGXGlQ4VZg3AOv7mlSyC3hwT1zavHo=";
finalImageName = imageName; finalImageName = imageName;
finalImageTag = "25.5.0"; finalImageTag = "25.6.0";
} }

View file

@ -24,15 +24,15 @@
</Target> </Target>
<ItemGroup> <ItemGroup>
<PackageReference Include="NetDaemon.AppModel" Version="25.5.0" /> <PackageReference Include="NetDaemon.AppModel" Version="25.6.0" />
<PackageReference Include="NetDaemon.AppModel.SourceDeployedApps" Version="25.5.0" /> <PackageReference Include="NetDaemon.AppModel.SourceDeployedApps" Version="25.6.0" />
<PackageReference Include="NetDaemon.Runtime" Version="25.5.0" /> <PackageReference Include="NetDaemon.Runtime" Version="25.6.0" />
<PackageReference Include="NetDaemon.HassModel" Version="25.5.0" /> <PackageReference Include="NetDaemon.HassModel" Version="25.6.0" />
<PackageReference Include="NetDaemon.HassModel.Integration" Version="25.5.0" /> <PackageReference Include="NetDaemon.HassModel.Integration" Version="25.6.0" />
<PackageReference Include="NetDaemon.Client" Version="25.5.0" /> <PackageReference Include="NetDaemon.Client" Version="25.6.0" />
<PackageReference Include="NetDaemon.Extensions.Scheduling" Version="25.5.0" /> <PackageReference Include="NetDaemon.Extensions.Scheduling" Version="25.6.0" />
<PackageReference Include="NetDaemon.Extensions.Logging" Version="25.5.0" /> <PackageReference Include="NetDaemon.Extensions.Logging" Version="25.6.0" />
<PackageReference Include="NetDaemon.Extensions.Tts" Version="25.5.0" /> <PackageReference Include="NetDaemon.Extensions.Tts" Version="25.6.0" />
<PackageReference Include="FuzzySharp" Version="2.0.2" /> <PackageReference Include="FuzzySharp" Version="2.0.2" />
</ItemGroup> </ItemGroup>
</Project> </Project>