matterbridge 3.0.1-dev-20250504-3bfa000 → 3.0.1-dev-20250505-cbd2c6e
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.
|
@@ -123,7 +123,7 @@ export class MatterbridgeServerDevice {
|
|
|
123
123
|
this.commandHandler.executeHandler('setpointRaiseLower', { request: { mode, amount }, attributes: {}, endpoint: { number: this.endpointNumber, uniqueStorageKey: this.endpointId } });
|
|
124
124
|
}
|
|
125
125
|
open({ openDuration, targetLevel }) {
|
|
126
|
-
this.log.info(`Opening valve (endpoint ${this.endpointId}.${this.endpointNumber})`);
|
|
126
|
+
this.log.info(`Opening valve to ${targetLevel}% (endpoint ${this.endpointId}.${this.endpointNumber})`);
|
|
127
127
|
this.commandHandler.executeHandler('open', { request: { openDuration, targetLevel }, attributes: {}, endpoint: { number: this.endpointNumber, uniqueStorageKey: this.endpointId } });
|
|
128
128
|
}
|
|
129
129
|
close() {
|
|
@@ -131,7 +131,7 @@ export class MatterbridgeServerDevice {
|
|
|
131
131
|
this.commandHandler.executeHandler('close', { request: {}, attributes: {}, endpoint: { number: this.endpointNumber, uniqueStorageKey: this.endpointId } });
|
|
132
132
|
}
|
|
133
133
|
changeToMode({ newMode }) {
|
|
134
|
-
this.log.info(`Changing mode to ${newMode}`);
|
|
134
|
+
this.log.info(`Changing mode to ${newMode} (endpoint ${this.endpointId}.${this.endpointNumber})`);
|
|
135
135
|
this.commandHandler.executeHandler('changeToMode', { request: { newMode }, attributes: {}, endpoint: { number: this.endpointNumber, uniqueStorageKey: this.endpointId } });
|
|
136
136
|
}
|
|
137
137
|
selfTestRequest() {
|
|
@@ -139,7 +139,7 @@ export class MatterbridgeServerDevice {
|
|
|
139
139
|
this.commandHandler.executeHandler('selfTestRequest', { request: {}, attributes: {}, endpoint: { number: this.endpointNumber, uniqueStorageKey: this.endpointId } });
|
|
140
140
|
}
|
|
141
141
|
enableDisableAlarm({ alarmsToEnableDisable }) {
|
|
142
|
-
this.log.info(`Enabling/disabling alarm ${alarmsToEnableDisable}`);
|
|
142
|
+
this.log.info(`Enabling/disabling alarm ${alarmsToEnableDisable} (endpoint ${this.endpointId}.${this.endpointNumber})`);
|
|
143
143
|
this.commandHandler.executeHandler('enableDisableAlarm', { request: { alarmsToEnableDisable }, attributes: {}, endpoint: { number: this.endpointNumber, uniqueStorageKey: this.endpointId } });
|
|
144
144
|
}
|
|
145
145
|
pause() {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.0.1-dev-
|
|
3
|
+
"version": "3.0.1-dev-20250505-cbd2c6e",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.0.1-dev-
|
|
9
|
+
"version": "3.0.1-dev-20250505-cbd2c6e",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.13.0",
|
package/package.json
CHANGED