matterbridge-eve-door 2.0.3-dev-20260117-5913603 → 2.0.3-dev-20260118-c1bd8a5
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/dist/module.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -20,7 +20,7 @@ export class EveDoorPlatform extends MatterbridgeAccessoryPlatform {
|
|
|
20
20
|
this.history = new MatterHistory(this.log, 'Eve door', { filePath: this.matterbridge.matterbridgeDirectory, enableDebug: this.config.debug });
|
|
21
21
|
this.door = new MatterbridgeEndpoint([contactSensor, powerSource], { id: 'Eve door', mode: this.matterbridge.bridgeMode === 'bridge' ? 'server' : undefined }, this.config.debug);
|
|
22
22
|
this.door.createDefaultIdentifyClusterServer();
|
|
23
|
-
this.door.createDefaultBasicInformationClusterServer('Eve door', '0x88030475', 4874, 'Eve Systems', 77, 'Eve Door 20EBN9901', 1144, '1.2.8');
|
|
23
|
+
this.door.createDefaultBasicInformationClusterServer('Eve door' + (this.matterbridge.bridgeMode === 'bridge' ? ' server' : ''), '0x88030475', 4874, 'Eve Systems', 77, 'Eve Door 20EBN9901', 1144, '1.2.8');
|
|
24
24
|
this.door.createDefaultBooleanStateClusterServer(true);
|
|
25
25
|
this.door.createDefaultPowerSourceReplaceableBatteryClusterServer(75, PowerSource.BatChargeLevel.Ok, 3000, 'CR2450', 1);
|
|
26
26
|
this.history.createDoorEveHistoryClusterServer(this.door, this.log);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-eve-door",
|
|
3
|
-
"version": "2.0.3-dev-
|
|
3
|
+
"version": "2.0.3-dev-20260118-c1bd8a5",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-eve-door",
|
|
9
|
-
"version": "2.0.3-dev-
|
|
9
|
+
"version": "2.0.3-dev-20260118-c1bd8a5",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"matter-history": "1.2.0",
|
package/package.json
CHANGED