matterbridge 3.2.7-dev-20250913-9d0d095 → 3.2.7-dev-20250914-f9e5ea7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/dist/matterbridgeEndpoint.js +6 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -668,6 +668,12 @@ export class MatterbridgeEndpoint extends Endpoint {
|
|
|
668
668
|
return this;
|
|
669
669
|
}
|
|
670
670
|
async configureColorControlMode(colorMode) {
|
|
671
|
+
if (isValidNumber(colorMode, ColorControl.ColorMode.CurrentHueAndCurrentSaturation, ColorControl.ColorMode.ColorTemperatureMireds)) {
|
|
672
|
+
await this.setAttribute(ColorControl.Cluster.id, 'colorMode', colorMode, this.log);
|
|
673
|
+
await this.setAttribute(ColorControl.Cluster.id, 'enhancedColorMode', colorMode, this.log);
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
async configureEnhancedColorControlMode(colorMode) {
|
|
671
677
|
if (isValidNumber(colorMode, ColorControl.EnhancedColorMode.CurrentHueAndCurrentSaturation, ColorControl.EnhancedColorMode.EnhancedCurrentHueAndCurrentSaturation)) {
|
|
672
678
|
await this.setAttribute(ColorControl.Cluster.id, 'colorMode', colorMode === ColorControl.EnhancedColorMode.EnhancedCurrentHueAndCurrentSaturation ? ColorControl.ColorMode.CurrentHueAndCurrentSaturation : colorMode, this.log);
|
|
673
679
|
await this.setAttribute(ColorControl.Cluster.id, 'enhancedColorMode', colorMode, this.log);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.2.7-dev-
|
|
3
|
+
"version": "3.2.7-dev-20250914-f9e5ea7",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.2.7-dev-
|
|
9
|
+
"version": "3.2.7-dev-20250914-f9e5ea7",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.3",
|
package/package.json
CHANGED