matterbridge-test 1.2.0 → 1.2.1
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 +17 -1
- package/matterbridge-test.config.json +21 -0
- package/matterbridge-test.schema.json +5 -5
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -23,7 +23,23 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
23
23
|
<img src="bmc-button.svg" alt="Buy me a coffee" width="120">
|
|
24
24
|
</a>
|
|
25
25
|
|
|
26
|
-
## [1.2.
|
|
26
|
+
## [1.2.1] - 2025-07-29
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
- [server]: Added 'server' mode when running in 'bridge' mode.
|
|
31
|
+
- [config]: Added default config file.
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- [package]: Updated package to Automator v. 2.0.3.
|
|
36
|
+
- [package]: Updated dependencies.
|
|
37
|
+
|
|
38
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
39
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
40
|
+
</a>
|
|
41
|
+
|
|
42
|
+
## [1.2.0] - 2025-06-25
|
|
27
43
|
|
|
28
44
|
### Added
|
|
29
45
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "matterbridge-test",
|
|
3
|
+
"type": "DynamicPlatform",
|
|
4
|
+
"noDevices": false,
|
|
5
|
+
"delayStart": false,
|
|
6
|
+
"longDelayStart": false,
|
|
7
|
+
"loadSwitches": 1,
|
|
8
|
+
"loadOutlets": 1,
|
|
9
|
+
"loadLights": 1,
|
|
10
|
+
"setUpdateInterval": 60,
|
|
11
|
+
"enableElectrical": true,
|
|
12
|
+
"enablePowerSource": true,
|
|
13
|
+
"enableModeSelect": true,
|
|
14
|
+
"enableReachable": true,
|
|
15
|
+
"throwLoad": false,
|
|
16
|
+
"throwStart": false,
|
|
17
|
+
"throwConfigure": false,
|
|
18
|
+
"throwShutdown": false,
|
|
19
|
+
"debug": false,
|
|
20
|
+
"unregisterOnShutdown": false
|
|
21
|
+
}
|
|
@@ -74,27 +74,27 @@
|
|
|
74
74
|
"setUpdateInterval": {
|
|
75
75
|
"description": "Set an update interval in seconds",
|
|
76
76
|
"type": "number",
|
|
77
|
-
"default":
|
|
77
|
+
"default": 60
|
|
78
78
|
},
|
|
79
79
|
"enableElectrical": {
|
|
80
80
|
"description": "Add electrical measurements to the devices",
|
|
81
81
|
"type": "boolean",
|
|
82
|
-
"default":
|
|
82
|
+
"default": true
|
|
83
83
|
},
|
|
84
84
|
"enablePowerSource": {
|
|
85
85
|
"description": "Add power source to the devices",
|
|
86
86
|
"type": "boolean",
|
|
87
|
-
"default":
|
|
87
|
+
"default": true
|
|
88
88
|
},
|
|
89
89
|
"enableModeSelect": {
|
|
90
90
|
"description": "Add mode select to the devices",
|
|
91
91
|
"type": "boolean",
|
|
92
|
-
"default":
|
|
92
|
+
"default": true
|
|
93
93
|
},
|
|
94
94
|
"enableReachable": {
|
|
95
95
|
"description": "Change reachable",
|
|
96
96
|
"type": "boolean",
|
|
97
|
-
"default":
|
|
97
|
+
"default": true
|
|
98
98
|
},
|
|
99
99
|
"throwLoad": {
|
|
100
100
|
"description": "Throw on load",
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-test",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-test",
|
|
9
|
-
"version": "1.2.
|
|
9
|
+
"version": "1.2.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"node-ansi-logger": "3.1.1",
|