matterbridge-test 2.0.5 → 2.0.6-dev-20260201-6ae1224
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/matterbridge-test.schema.json +31 -12
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
|
@@ -42,36 +42,43 @@
|
|
|
42
42
|
"default": false
|
|
43
43
|
},
|
|
44
44
|
"noDevices": {
|
|
45
|
-
"
|
|
45
|
+
"title": "No devices",
|
|
46
|
+
"description": "Do not register any devices on startup",
|
|
46
47
|
"type": "boolean",
|
|
47
48
|
"default": false
|
|
48
49
|
},
|
|
49
50
|
"delayStart": {
|
|
50
|
-
"
|
|
51
|
+
"title": "Delay start",
|
|
52
|
+
"description": "Delay start by 20 seconds to simulate a slow startup",
|
|
51
53
|
"type": "boolean",
|
|
52
54
|
"default": false
|
|
53
55
|
},
|
|
54
56
|
"longDelayStart": {
|
|
55
|
-
"
|
|
57
|
+
"title": "Long delay start",
|
|
58
|
+
"description": "Delay start by 60 seconds to simulate a very slow startup",
|
|
56
59
|
"type": "boolean",
|
|
57
60
|
"default": false
|
|
58
61
|
},
|
|
59
62
|
"loadSwitches": {
|
|
63
|
+
"title": "Load switches",
|
|
60
64
|
"description": "Load a defined number of switches",
|
|
61
65
|
"type": "number",
|
|
62
66
|
"default": 1
|
|
63
67
|
},
|
|
64
68
|
"loadOutlets": {
|
|
69
|
+
"title": "Load outlets",
|
|
65
70
|
"description": "Load a defined number of outlets",
|
|
66
71
|
"type": "number",
|
|
67
72
|
"default": 1
|
|
68
73
|
},
|
|
69
74
|
"loadLights": {
|
|
75
|
+
"title": "Load lights",
|
|
70
76
|
"description": "Load a defined number of lights",
|
|
71
77
|
"type": "number",
|
|
72
78
|
"default": 1
|
|
73
79
|
},
|
|
74
80
|
"whiteList": {
|
|
81
|
+
"title": "White list",
|
|
75
82
|
"description": "Only the devices in the list will be exposed. If the list is empty, all the devices will be exposed.",
|
|
76
83
|
"type": "array",
|
|
77
84
|
"items": {
|
|
@@ -81,6 +88,7 @@
|
|
|
81
88
|
"selectFrom": "name"
|
|
82
89
|
},
|
|
83
90
|
"blackList": {
|
|
91
|
+
"title": "Black list",
|
|
84
92
|
"description": "The devices in the list will not be exposed. If the list is empty, no devices will be excluded.",
|
|
85
93
|
"type": "array",
|
|
86
94
|
"items": {
|
|
@@ -90,56 +98,67 @@
|
|
|
90
98
|
"selectFrom": "name"
|
|
91
99
|
},
|
|
92
100
|
"setUpdateInterval": {
|
|
93
|
-
"
|
|
101
|
+
"title": "Update interval",
|
|
102
|
+
"description": "Set an update interval in seconds to update the device states periodically",
|
|
94
103
|
"type": "number",
|
|
95
104
|
"default": 60
|
|
96
105
|
},
|
|
97
106
|
"enableElectrical": {
|
|
98
|
-
"
|
|
107
|
+
"title": "Add electrical measurements",
|
|
108
|
+
"description": "Add electrical measurements cluster to the devices",
|
|
99
109
|
"type": "boolean",
|
|
100
110
|
"default": true
|
|
101
111
|
},
|
|
102
112
|
"enablePowerSource": {
|
|
103
|
-
"
|
|
113
|
+
"title": "Add power source",
|
|
114
|
+
"description": "Add power source cluster to the devices",
|
|
104
115
|
"type": "boolean",
|
|
105
116
|
"default": true
|
|
106
117
|
},
|
|
107
118
|
"enableModeSelect": {
|
|
108
|
-
"
|
|
119
|
+
"title": "Add mode select",
|
|
120
|
+
"description": "Add mode select cluster to the devices",
|
|
109
121
|
"type": "boolean",
|
|
110
122
|
"default": true
|
|
111
123
|
},
|
|
112
124
|
"enableReachable": {
|
|
113
|
-
"
|
|
125
|
+
"title": "Enable reachable",
|
|
126
|
+
"description": "Change reachable attribute of the devices during the interval updates",
|
|
114
127
|
"type": "boolean",
|
|
115
128
|
"default": true
|
|
116
129
|
},
|
|
117
130
|
"throwLoad": {
|
|
118
|
-
"
|
|
131
|
+
"title": "Throw on load",
|
|
132
|
+
"description": "Throw on load to test Matterbridge handling",
|
|
119
133
|
"type": "boolean",
|
|
120
134
|
"default": false
|
|
121
135
|
},
|
|
122
136
|
"throwStart": {
|
|
123
|
-
"
|
|
137
|
+
"title": "Throw on start",
|
|
138
|
+
"description": "Throw on start to test Matterbridge handling",
|
|
124
139
|
"type": "boolean",
|
|
125
140
|
"default": false
|
|
126
141
|
},
|
|
127
142
|
"throwConfigure": {
|
|
128
|
-
"
|
|
143
|
+
"title": "Throw on configure",
|
|
144
|
+
"description": "Throw on configure to test Matterbridge handling",
|
|
129
145
|
"type": "boolean",
|
|
130
146
|
"default": false
|
|
131
147
|
},
|
|
132
148
|
"throwShutdown": {
|
|
133
|
-
"
|
|
149
|
+
"title": "Throw on shutdown",
|
|
150
|
+
"description": "Throw on shutdown to test Matterbridge handling",
|
|
134
151
|
"type": "boolean",
|
|
135
152
|
"default": false
|
|
136
153
|
},
|
|
137
154
|
"debug": {
|
|
155
|
+
"title": "Enable debug",
|
|
138
156
|
"description": "Enable the debug for the plugin",
|
|
139
157
|
"type": "boolean",
|
|
140
158
|
"default": false
|
|
141
159
|
},
|
|
142
160
|
"unregisterOnShutdown": {
|
|
161
|
+
"title": "Unregister on shutdown",
|
|
143
162
|
"description": "Unregister all devices on shutdown",
|
|
144
163
|
"type": "boolean",
|
|
145
164
|
"default": false
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-test",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6-dev-20260201-6ae1224",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-test",
|
|
9
|
-
"version": "2.0.
|
|
9
|
+
"version": "2.0.6-dev-20260201-6ae1224",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"node-ansi-logger": "3.1.1",
|