File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## [ Unreleased] ( https://github.com/lpgera/dirigera/compare/v1.8.0...HEAD )
44
5- -
5+ - Update dependencies.
6+ - Add stricter typing for currently active adaptiveProfile of lights.
67
78## [ 1.8.0] ( https://github.com/lpgera/dirigera/compare/v1.7.0...v1.8.0 ) - 2026-01-05
89
Original file line number Diff line number Diff line change @@ -34,5 +34,8 @@ export interface Light extends Device {
3434 deviceType : 'light'
3535 attributes : LightAttributes
3636 isHidden : boolean
37- adaptiveProfile : { }
37+ adaptiveProfile : {
38+ id ?: string
39+ active ?: boolean
40+ }
3841}
Original file line number Diff line number Diff line change @@ -59,7 +59,10 @@ export const rgbLight: Light = {
5959 deviceSet : [ ] ,
6060 remoteLinks : [ '00000000-0000-0000-0000-000000000000' ] ,
6161 isHidden : false ,
62- adaptiveProfile : { } ,
62+ adaptiveProfile : {
63+ id : '00000000-0000-0000-0000-000000000000' ,
64+ active : true ,
65+ } ,
6366}
6467
6568export const colorTemperatureLight : Light = {
You can’t perform that action at this time.
0 commit comments