matterbridge-eve-motion 1.3.0 → 1.3.1-dev-20250730-879c8ea
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 +15 -0
- package/dist/platform.js +2 -2
- package/npm-shrinkwrap.json +14 -13
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,21 @@
|
|
|
17
17
|
|
|
18
18
|
All notable changes to this project will be documented in this file.
|
|
19
19
|
|
|
20
|
+
## [1.3.1] - 2025-07-29
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- [server]: Added 'server' mode when running in 'bridge' mode.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- [package]: Updated package to Automator v. 2.0.3.
|
|
29
|
+
- [package]: Updated dependencies.
|
|
30
|
+
|
|
31
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
32
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
33
|
+
</a>
|
|
34
|
+
|
|
20
35
|
## [1.3.0] - 2025-06-26
|
|
21
36
|
|
|
22
37
|
### Added
|
package/dist/platform.js
CHANGED
|
@@ -15,8 +15,8 @@ export class EveMotionPlatform extends MatterbridgeAccessoryPlatform {
|
|
|
15
15
|
}
|
|
16
16
|
async onStart(reason) {
|
|
17
17
|
this.log.info('onStart called with reason:', reason ?? 'none');
|
|
18
|
-
this.history = new MatterHistory(this.log, 'Eve motion', { filePath: this.matterbridge.matterbridgeDirectory });
|
|
19
|
-
this.motion = new MatterbridgeEndpoint([occupancySensor, lightSensor, powerSource], { uniqueStorageKey: 'Eve motion' }, this.config.debug);
|
|
18
|
+
this.history = new MatterHistory(this.log, 'Eve motion', { filePath: this.matterbridge.matterbridgeDirectory, enableDebug: this.config.debug });
|
|
19
|
+
this.motion = new MatterbridgeEndpoint([occupancySensor, lightSensor, powerSource], { uniqueStorageKey: 'Eve motion', mode: this.matterbridge.bridgeMode === 'bridge' ? 'server' : undefined }, this.config.debug);
|
|
20
20
|
this.motion.createDefaultIdentifyClusterServer();
|
|
21
21
|
this.motion.createDefaultBasicInformationClusterServer('Eve motion', '0x85483499', 4874, 'Eve Systems', 89, 'Eve Motion 20EBY9901', 6650, '3.2.1');
|
|
22
22
|
this.motion.createDefaultOccupancySensingClusterServer(false);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-eve-motion",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1-dev-20250730-879c8ea",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-eve-motion",
|
|
9
|
-
"version": "1.3.
|
|
9
|
+
"version": "1.3.1-dev-20250730-879c8ea",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"matter-history": "1.1.
|
|
12
|
+
"matter-history": "1.1.19",
|
|
13
13
|
"node-ansi-logger": "3.1.1",
|
|
14
14
|
"node-persist-manager": "2.0.0"
|
|
15
15
|
},
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"node_modules/matter-history": {
|
|
25
|
-
"version": "1.1.
|
|
26
|
-
"resolved": "https://registry.npmjs.org/matter-history/-/matter-history-1.1.
|
|
27
|
-
"integrity": "sha512-
|
|
25
|
+
"version": "1.1.19",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/matter-history/-/matter-history-1.1.19.tgz",
|
|
27
|
+
"integrity": "sha512-hyDTdR+BYsVPgOhu5xQ/k7XEvlsBy/EhbDFYOMwGfZATw8J1zl07XmBGk5MRJ7nDsNeAg3IEbfyWhyS0Sde/5g==",
|
|
28
28
|
"hasShrinkwrap": true,
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"moment": "2.30.1",
|
|
32
|
-
"node-ansi-logger": "3.
|
|
32
|
+
"node-ansi-logger": "3.1.1"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=22.0.0 <23.0.0"
|
|
35
|
+
"node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
36
36
|
},
|
|
37
37
|
"funding": {
|
|
38
38
|
"type": "buymeacoffee",
|
|
@@ -49,12 +49,13 @@
|
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"node_modules/matter-history/node_modules/node-ansi-logger": {
|
|
52
|
-
"version": "3.
|
|
53
|
-
"resolved": "https://registry.npmjs.org/node-ansi-logger/-/node-ansi-logger-3.
|
|
54
|
-
"integrity": "sha512-
|
|
55
|
-
"
|
|
52
|
+
"version": "3.1.1",
|
|
53
|
+
"resolved": "https://registry.npmjs.org/node-ansi-logger/-/node-ansi-logger-3.1.1.tgz",
|
|
54
|
+
"integrity": "sha512-tFeCSxwiRg5XaNda5nC27alzraZP76nLtUk1JDZqb9byhW4WYaSGL7/lmxFHEI16gypQDMEYljuF+wcG+cPPHw==",
|
|
55
|
+
"hasShrinkwrap": true,
|
|
56
|
+
"license": "Apache-2.0",
|
|
56
57
|
"engines": {
|
|
57
|
-
"node": ">=18.0.0"
|
|
58
|
+
"node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
58
59
|
},
|
|
59
60
|
"funding": {
|
|
60
61
|
"type": "buymeacoffee",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-eve-motion",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1-dev-20250730-879c8ea",
|
|
4
4
|
"description": "Matterbridge eve motion with history",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"matter-history": "1.1.
|
|
35
|
+
"matter-history": "1.1.19",
|
|
36
36
|
"node-ansi-logger": "3.1.1",
|
|
37
37
|
"node-persist-manager": "2.0.0"
|
|
38
38
|
}
|