matterbridge 1.5.0 → 1.5.2

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +33 -2
  2. package/README-DEV.md +2 -2
  3. package/{README-ADVANCED.md → README-DOCKER.md} +1 -82
  4. package/README-SERVICE.md +96 -0
  5. package/README.md +56 -19
  6. package/dist/cluster/export.d.ts +23 -0
  7. package/dist/cluster/export.d.ts.map +1 -0
  8. package/dist/cluster/export.js +23 -0
  9. package/dist/cluster/export.js.map +1 -0
  10. package/dist/index.d.ts +0 -3
  11. package/dist/index.d.ts.map +1 -1
  12. package/dist/index.js +2 -0
  13. package/dist/index.js.map +1 -1
  14. package/dist/matterbridge.d.ts +2 -2
  15. package/dist/matterbridge.d.ts.map +1 -1
  16. package/dist/matterbridge.js +28 -13
  17. package/dist/matterbridge.js.map +1 -1
  18. package/dist/matterbridgeDevice.d.ts +190 -114
  19. package/dist/matterbridgeDevice.d.ts.map +1 -1
  20. package/dist/matterbridgeDevice.js +379 -189
  21. package/dist/matterbridgeDevice.js.map +1 -1
  22. package/dist/matterbridgeTypes.d.ts +2 -0
  23. package/dist/matterbridgeTypes.d.ts.map +1 -1
  24. package/dist/pluginManager.d.ts.map +1 -1
  25. package/dist/pluginManager.js +16 -0
  26. package/dist/pluginManager.js.map +1 -1
  27. package/dist/utils/utils.d.ts +1 -6
  28. package/dist/utils/utils.d.ts.map +1 -1
  29. package/dist/utils/utils.js +22 -29
  30. package/dist/utils/utils.js.map +1 -1
  31. package/frontend/build/asset-manifest.json +6 -6
  32. package/frontend/build/index.html +1 -1
  33. package/frontend/build/static/css/main.1cf003ae.css +2 -0
  34. package/frontend/build/static/css/main.1cf003ae.css.map +1 -0
  35. package/frontend/build/static/js/main.cfcfbb06.js +3 -0
  36. package/frontend/build/static/js/main.cfcfbb06.js.map +1 -0
  37. package/package.json +16 -17
  38. package/frontend/build/static/css/main.ee3183e2.css +0 -2
  39. package/frontend/build/static/css/main.ee3183e2.css.map +0 -1
  40. package/frontend/build/static/js/main.4c5271fd.js +0 -3
  41. package/frontend/build/static/js/main.4c5271fd.js.map +0 -1
  42. /package/frontend/build/static/js/{main.4c5271fd.js.LICENSE.txt → main.cfcfbb06.js.LICENSE.txt} +0 -0
package/CHANGELOG.md CHANGED
@@ -4,8 +4,6 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge and sponsoring it.
6
6
 
7
- ## [1.5.0] - 2024-08-27
8
-
9
7
  ### Breaking Changes
10
8
 
11
9
  - [-bridge -childbridge]: You don't need anymore to add the parmeter -bridge or -childbridge on the command line or systemctl configuration or docker command: the default is bridge mode and if no parameter is added, Matterbridge uses the settings from the frontend that are saved.
@@ -18,6 +16,39 @@ If you like this project and find it useful, please consider giving it a star on
18
16
 
19
17
  - please read this [Development guide lines](https://github.com/Luligu/matterbridge/blob/main/README-DEV.md)
20
18
 
19
+ ## [1.5.2] - 2024-08-30
20
+
21
+ ### Added
22
+
23
+ - [frontend]: Added a confirmation message for removing and disabling plugins.
24
+ - [matterbridge cli]: Added the parameter `-sudo` to force the use of sudo when installing or updating a package (this is useful when the internal logic is not working in your setup).
25
+ - [matterbridge cli]: Added the parameter `-nosudo` to force not using sudo when installing or updating a package (this is useful when the internal logic is not working in your setup).
26
+
27
+ ### Changed
28
+
29
+ - [package]: Update dependencies.
30
+ - [spawn]: Modified the install or update function to add more info in the log.
31
+
32
+ <a href="https://www.buymeacoffee.com/luligugithub">
33
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
34
+ </a>
35
+
36
+ ## [1.5.1] - 2024-08-28
37
+
38
+ ### Added
39
+
40
+ ### Changed
41
+
42
+ - [matterbridgeDevice]: refactor WindowCovering cluster (removed AbsolutePosition).
43
+ - [matterbridge]: Removed deprecated methods.
44
+ - [package]: Update dependencies.
45
+
46
+ <a href="https://www.buymeacoffee.com/luligugithub">
47
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
48
+ </a>
49
+
50
+ ## [1.5.0] - 2024-08-27
51
+
21
52
  ### Added
22
53
 
23
54
  - [frontend]: Added menu item "Update".
package/README-DEV.md CHANGED
@@ -20,7 +20,7 @@ Matterbridge export from:
20
20
 
21
21
  "matterbridge"
22
22
  - Matterbridge and MatterbridgeDevice class.
23
- - All relevant matter-node.js or matter.js classes and functions.
23
+ - All relevant matter-node.js or matter.js clusters, classes and functions.
24
24
 
25
25
  "matterbridge/cluster"
26
26
  - All clusters not present in matter.js or modified.
@@ -39,11 +39,11 @@ Matterbridge export from:
39
39
 
40
40
  # **********
41
41
  A plugin will never ever install and import from matter-node.js or matter.js directly cause this leads to a second instance of matter.js that causes instability and unpredictable errors like "The only instance is Enpoint".
42
+ # **********
42
43
 
43
44
  In the next releases I will remove the duplicated exports so please update your plugins.
44
45
 
45
46
  I will also add some error messages when a plugin has wrong imports.
46
- # **********
47
47
 
48
48
  ## Guidelines on the migration to matter.js V8
49
49
 
@@ -14,88 +14,7 @@
14
14
 
15
15
  # Advanced configuration
16
16
 
17
- ## Run matterbridge as a daemon with systemctl (Linux only)
18
-
19
- Create a systemctl configuration file for Matterbridge
20
-
21
- ```
22
- sudo nano /etc/systemd/system/matterbridge.service
23
- ```
24
-
25
- Add the following to this file, replacing twice (!) USER with your user name (e.g. WorkingDirectory=/home/pi/Matterbridge and User=pi):
26
-
27
- You may need to adapt the configuration to your setup:
28
- - execStart on some linux distribution can also be ExecStart==/usr/bin/matterbridge -service
29
-
30
- ```
31
- [Unit]
32
- Description=matterbridge
33
- After=network-online.target
34
-
35
- [Service]
36
- Type=simple
37
- ExecStart=matterbridge -service
38
- WorkingDirectory=/home/<USER>/Matterbridge
39
- StandardOutput=inherit
40
- StandardError=inherit
41
- Restart=always
42
- RestartSec=10s
43
- TimeoutStopSec=30s
44
- User=<USER>
45
-
46
- [Install]
47
- WantedBy=multi-user.target
48
- ```
49
-
50
- If you modify it after, then run:
51
-
52
- ```
53
- sudo systemctl daemon-reload
54
- ```
55
-
56
- ### Start Matterbridge
57
-
58
- ```
59
- sudo systemctl start matterbridge
60
- ```
61
-
62
- ### Stop Matterbridge
63
-
64
- ```
65
- sudo systemctl stop matterbridge
66
- ```
67
-
68
- ### Show Matterbridge status
69
-
70
- ```
71
- sudo systemctl status matterbridge.service
72
- ```
73
-
74
- ### View the log of Matterbridge in real time (this will show the log with colors)
75
-
76
- ```
77
- sudo journalctl -u matterbridge.service -f --output cat
78
- ```
79
-
80
- ### Delete the logs older then 3 days (all of them not only the ones of Matterbridge!)
81
-
82
- ```
83
- sudo journalctl --vacuum-time=3d
84
- ```
85
-
86
- ### Enable Matterbridge to start automatically on boot
87
-
88
- ```
89
- sudo systemctl enable matterbridge.service
90
- ```
91
-
92
- ### Disable Matterbridge from starting automatically on boot
93
-
94
- ```
95
- sudo systemctl disable matterbridge.service
96
- ```
97
-
98
- ## Run matterbridge with docker
17
+ ## Run matterbridge with docker and docker compose
99
18
 
100
19
  The Matterbridge Docker image, which includes a manifest list for the linux/amd64, linux/arm64 and linux/arm/v7 architectures, is published on Docker Hub.
101
20
 
@@ -0,0 +1,96 @@
1
+ # <img src="https://github.com/Luligu/matterbridge/blob/main/frontend/public/matterbridge%2064x64.png" alt="Matterbridge Logo" width="64px" height="64px">&nbsp;&nbsp;&nbsp;Matterbridge
2
+
3
+ [![npm version](https://img.shields.io/npm/v/matterbridge.svg)](https://www.npmjs.com/package/matterbridge)
4
+ [![npm downloads](https://img.shields.io/npm/dt/matterbridge.svg)](https://www.npmjs.com/package/matterbridge)
5
+ [![Docker Version](https://img.shields.io/docker/v/luligu/matterbridge?label=docker%20version&sort=semver)](https://hub.docker.com/r/luligu/matterbridge)
6
+ [![Docker Pulls](https://img.shields.io/docker/pulls/luligu/matterbridge.svg)](https://hub.docker.com/r/luligu/matterbridge)
7
+ ![Node.js CI](https://github.com/Luligu/matterbridge/actions/workflows/build.yml/badge.svg)
8
+
9
+ [![power by](https://img.shields.io/badge/powered%20by-matter--history-blue)](https://www.npmjs.com/package/matter-history)
10
+ [![power by](https://img.shields.io/badge/powered%20by-node--ansi--logger-blue)](https://www.npmjs.com/package/node-ansi-logger)
11
+ [![power by](https://img.shields.io/badge/powered%20by-node--persist--manager-blue)](https://www.npmjs.com/package/node-persist-manager)
12
+
13
+ ---
14
+
15
+ # Advanced configuration
16
+
17
+ ## Run matterbridge as a daemon with systemctl (Linux only)
18
+
19
+ Create a systemctl configuration file for Matterbridge
20
+
21
+ ```
22
+ sudo nano /etc/systemd/system/matterbridge.service
23
+ ```
24
+
25
+ Add the following to this file, replacing twice (!) USER with your user name (e.g. WorkingDirectory=/home/pi/Matterbridge and User=pi):
26
+
27
+ You may need to adapt the configuration to your setup:
28
+ - execStart on some linux distribution can also be ExecStart==/usr/bin/matterbridge -service
29
+
30
+ ```
31
+ [Unit]
32
+ Description=matterbridge
33
+ After=network-online.target
34
+
35
+ [Service]
36
+ Type=simple
37
+ ExecStart=matterbridge -service
38
+ WorkingDirectory=/home/<USER>/Matterbridge
39
+ StandardOutput=inherit
40
+ StandardError=inherit
41
+ Restart=always
42
+ RestartSec=10s
43
+ TimeoutStopSec=30s
44
+ User=<USER>
45
+
46
+ [Install]
47
+ WantedBy=multi-user.target
48
+ ```
49
+
50
+ If you modify it after, then run:
51
+
52
+ ```
53
+ sudo systemctl daemon-reload
54
+ ```
55
+
56
+ ### Start Matterbridge
57
+
58
+ ```
59
+ sudo systemctl start matterbridge
60
+ ```
61
+
62
+ ### Stop Matterbridge
63
+
64
+ ```
65
+ sudo systemctl stop matterbridge
66
+ ```
67
+
68
+ ### Show Matterbridge status
69
+
70
+ ```
71
+ sudo systemctl status matterbridge.service
72
+ ```
73
+
74
+ ### View the log of Matterbridge in real time (this will show the log with colors)
75
+
76
+ ```
77
+ sudo journalctl -u matterbridge.service -f --output cat
78
+ ```
79
+
80
+ ### Delete the logs older then 3 days (all of them not only the ones of Matterbridge!)
81
+
82
+ ```
83
+ sudo journalctl --vacuum-time=3d
84
+ ```
85
+
86
+ ### Enable Matterbridge to start automatically on boot
87
+
88
+ ```
89
+ sudo systemctl enable matterbridge.service
90
+ ```
91
+
92
+ ### Disable Matterbridge from starting automatically on boot
93
+
94
+ ```
95
+ sudo systemctl disable matterbridge.service
96
+ ```
package/README.md CHANGED
@@ -42,6 +42,10 @@ The project is build on top of https://github.com/project-chip/matter.js.
42
42
 
43
43
  A special thank to Apollon77 for his incredible work.
44
44
 
45
+ ## Prerequisites
46
+
47
+ To run Matterbridge, you need either a [Node.js](https://nodejs.org/en/download/package-manager) environment or [Docker](https://docs.docker.com/get-started/get-docker/) installed on your system.
48
+
45
49
  ## Installation
46
50
 
47
51
  Follow these steps to install Matterbridge:
@@ -62,7 +66,7 @@ Test the installation with:
62
66
  matterbridge -bridge
63
67
  ```
64
68
 
65
- Now it is possible to open the frontend at the link provided in the log (e.g. http://<MATTERBIDGE-IP>:8283)
69
+ Now it is possible to open the frontend at the link provided in the log (e.g. http://MATTERBIDGE-IPV4-ADDRESS:8283)
66
70
 
67
71
  ## Usage
68
72
 
@@ -90,7 +94,7 @@ matterbridge -help
90
94
 
91
95
  ## Frontend
92
96
 
93
- Matterbridge has a frontend available on http://<MATTERBIDGE-IP>:8283
97
+ Matterbridge has a frontend available on http://MATTERBIDGE-IPV4-ADDRESS:8283 and http://[MATTERBIDGE-IPV6-ADDRESS]:8283
94
98
 
95
99
  You can change the default port by adding the frontend parameter when you run it.
96
100
 
@@ -120,7 +124,13 @@ Config editor:
120
124
 
121
125
  ## Advanced configurations
122
126
 
123
- [Advanced configurations](https://github.com/Luligu/matterbridge/blob/main/README-ADVANCED.md)
127
+ ### Run matterbridge as a daemon with systemctl (Linux only)
128
+
129
+ [Advanced configurations](https://github.com/Luligu/matterbridge/blob/main/README-SERVICE.md)
130
+
131
+ ### Run matterbridge with docker and docker compose
132
+
133
+ [Advanced configurations](https://github.com/Luligu/matterbridge/blob/main/README-DOCKER.md)
124
134
 
125
135
  ## Development
126
136
 
@@ -128,32 +138,54 @@ Config editor:
128
138
 
129
139
  ## Plugins
130
140
 
131
- ### Production-level plugins
141
+ ### Shelly
142
+
143
+ <a href="https://github.com/Luligu/matterbridge-shelly">
144
+ <img src="https://github.com/Luligu/matterbridge/blob/dev/screenshot/Shelly.png" alt="Shelly plugin logo" width="100" />
145
+ </a>
146
+
147
+ Matterbridge shelly plugin allows you to expose all Shelly Gen 1, Gen 2, Gen 3 and BLU devices to Matter.
148
+
149
+ Features:
150
+
151
+ - Shellies are automatically discovered using mDNS.
152
+ - Shelly wifi battery-powered devices are supported.
153
+ - Shelly wifi battery-powered devices with sleep_mode are supported.
154
+ - Shelly BLU devices are supported through local devices configured as ble gateway.
155
+ - Discovered shellies are stored in local storage for quick loading on startup.
156
+ - The components exposed are Light (with brightness and RGB color), Switch, Relay, Roller, Cover, PowerMeter, Temperature, Humidity and Input.
157
+ - All components expose the electrical measurements with the EveHistory cluster (displayed on HA), waiting for the controllers to upgrade to the Matter 1.3 specs.
158
+ - Shellies are controlled locally, eliminating the need for cloud or MQTT (which can both be disabled).
159
+ - Shelly Gen 1 devices are controlled using the CoIoT protocol (see the note below).
160
+ - Shelly Gen 2 and Gen 3 devices are controlled using WebSocket.
161
+ - The Matter device takes the name configured in the Shelly device's web page.
162
+ - If the device has a firmware update available, a message is displayed.
163
+ - If the device's CoIoT protocol is not correctly configured, a message is displayed.
164
+ - If the device cover/roller component is not calibrated, a message is displayed.
165
+ - A 10-minute timer checks if the device has reported within that time frame, and fetch un update.
166
+
167
+
168
+
169
+ ### Zigbee2MQTT
132
170
 
133
- [zigbee2mqtt plugin](https://github.com/Luligu/matterbridge-zigbee2mqtt)
171
+ <a href="https://github.com/Luligu/matterbridge-zigbee2mqtt">
172
+ <img src="https://github.com/Luligu/matterbridge/blob/dev/screenshot/Zigbee2MQTT.png" alt="Zigbee2MQTT plugin logo" width="100" />
173
+ </a>
134
174
 
135
175
  Matterbridge zigbee2mqtt is a matterbridge production-level plugin that expose all zigbee2mqtt devices and groups to Matter.
136
176
 
137
177
  No hub or dedicated hardware needed.
138
178
 
139
- [somy-tahoma plugin](https://github.com/Luligu/matterbridge-somfy-tahoma)
140
179
 
141
- Matterbridge Somfy Tahoma is a matterbridge production-level plugin that expose all Somfy Tahoma devices to Matter.
142
180
 
143
- [shelly plugin](https://github.com/Luligu/matterbridge-shelly)
181
+ ### Somfy tahoma
144
182
 
145
- Matterbridge shelly allows you to expose Shelly Gen 1, Gen 2, and Gen 3 devices to Matter.
183
+ <a href="https://github.com/Luligu/matterbridge-somfy-tahoma">
184
+ <img src="https://github.com/Luligu/matterbridge/blob/dev/screenshot/Somfy.png" alt="Somfy plugin logo" width="100" />
185
+ </a>
146
186
 
147
- Features:
187
+ Matterbridge Somfy Tahoma is a matterbridge production-level plugin that expose the Somfy Tahoma screen devices to Matter.
148
188
 
149
- - Shellies are automatically discovered using mDNS.
150
- - Discovered shellies are stored in local storage for quick loading on startup.
151
- - In this first release, the components exposed are lights (with brightness), switches, rollers and meters.
152
- - Shellies are controlled locally, eliminating the need for cloud or MQTT (which can be disabled).
153
- - Shelly Gen 1 devices are controlled using the CoIoT protocol (see the note below).
154
- - Shelly Gen 2 and Gen 3 devices are controlled using WebSocket.
155
- - The Matter device takes the name configured in the Shelly device's web page.
156
- - A 10-minute timer checks if the device has reported in that time.
157
189
 
158
190
  ### Accessory platform example
159
191
 
@@ -195,7 +227,12 @@ The history works in both bridge and childbridge mode.
195
227
 
196
228
  The Eve app only shows the history when the plugins run like an AccessoryPlatform in childbridge mode (this means the plugin is paired directly).
197
229
 
198
- ## How to install and register a production-level plugin from a terminal (from npm)
230
+ ## How to install and add a plugin with the frontend (best option)
231
+
232
+ Just open the frontend on the link provided in the log, select a plugin and click install.
233
+
234
+
235
+ ## How to install and add a plugin manually from a terminal (from npm)
199
236
 
200
237
  To install i.e. https://github.com/Luligu/matterbridge-zigbee2mqtt
201
238
 
@@ -0,0 +1,23 @@
1
+ export * from './AirQualityCluster.js';
2
+ export * from './BooleanStateConfigurationCluster.js';
3
+ export * from './CarbonDioxideConcentrationMeasurementCluster.js';
4
+ export * from './CarbonMonoxideConcentrationMeasurementCluster.js';
5
+ export * from './ConcentrationMeasurementCluster.js';
6
+ export * from './DeviceEnergyManagementCluster.js';
7
+ export * from './DeviceEnergyManagementModeCluster.js';
8
+ export * from './ElectricalEnergyMeasurementCluster.js';
9
+ export * from './ElectricalPowerMeasurementCluster.js';
10
+ export * from './FormaldehydeConcentrationMeasurementCluster.js';
11
+ export * from './MeasurementAccuracy.js';
12
+ export * from './MeasurementAccuracyRange.js';
13
+ export * from './MeasurementType.js';
14
+ export * from './NitrogenDioxideConcentrationMeasurementCluster.js';
15
+ export * from './OzoneConcentrationMeasurementCluster.js';
16
+ export * from './Pm10ConcentrationMeasurementCluster.js';
17
+ export * from './Pm1ConcentrationMeasurementCluster.js';
18
+ export * from './Pm25ConcentrationMeasurementCluster.js';
19
+ export * from './PowerTopologyCluster.js';
20
+ export * from './RadonConcentrationMeasurementCluster.js';
21
+ export * from './SmokeCoAlarmCluster.js';
22
+ export * from './TvocCluster.js';
23
+ //# sourceMappingURL=export.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"export.d.ts","sourceRoot":"","sources":["../../src/cluster/export.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,uCAAuC,CAAC;AACtD,cAAc,mDAAmD,CAAC;AAClE,cAAc,oDAAoD,CAAC;AACnE,cAAc,sCAAsC,CAAC;AACrD,cAAc,oCAAoC,CAAC;AACnD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AACjE,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sBAAsB,CAAC;AACrC,cAAc,qDAAqD,CAAC;AACpE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0CAA0C,CAAC;AACzD,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC"}
@@ -0,0 +1,23 @@
1
+ export * from './AirQualityCluster.js';
2
+ export * from './BooleanStateConfigurationCluster.js';
3
+ export * from './CarbonDioxideConcentrationMeasurementCluster.js';
4
+ export * from './CarbonMonoxideConcentrationMeasurementCluster.js';
5
+ export * from './ConcentrationMeasurementCluster.js';
6
+ export * from './DeviceEnergyManagementCluster.js';
7
+ export * from './DeviceEnergyManagementModeCluster.js';
8
+ export * from './ElectricalEnergyMeasurementCluster.js';
9
+ export * from './ElectricalPowerMeasurementCluster.js';
10
+ export * from './FormaldehydeConcentrationMeasurementCluster.js';
11
+ export * from './MeasurementAccuracy.js';
12
+ export * from './MeasurementAccuracyRange.js';
13
+ export * from './MeasurementType.js';
14
+ export * from './NitrogenDioxideConcentrationMeasurementCluster.js';
15
+ export * from './OzoneConcentrationMeasurementCluster.js';
16
+ export * from './Pm10ConcentrationMeasurementCluster.js';
17
+ export * from './Pm1ConcentrationMeasurementCluster.js';
18
+ export * from './Pm25ConcentrationMeasurementCluster.js';
19
+ export * from './PowerTopologyCluster.js';
20
+ export * from './RadonConcentrationMeasurementCluster.js';
21
+ export * from './SmokeCoAlarmCluster.js';
22
+ export * from './TvocCluster.js';
23
+ //# sourceMappingURL=export.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"export.js","sourceRoot":"","sources":["../../src/cluster/export.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,uCAAuC,CAAC;AACtD,cAAc,mDAAmD,CAAC;AAClE,cAAc,oDAAoD,CAAC;AACnE,cAAc,sCAAsC,CAAC;AACrD,cAAc,oCAAoC,CAAC;AACnD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AACjE,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sBAAsB,CAAC;AACrC,cAAc,qDAAqD,CAAC;AACpE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0CAA0C,CAAC;AACzD,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC"}
package/dist/index.d.ts CHANGED
@@ -34,9 +34,6 @@ export * from './matterbridgePlatform.js';
34
34
  export * from './matterbridgeAccessoryPlatform.js';
35
35
  export * from './matterbridgeDynamicPlatform.js';
36
36
  export * from './matterbridgeTypes.js';
37
- export * from 'matter-history';
38
- export * from './utils/utils.js';
39
- export * from './utils/colorUtils.js';
40
37
  export * from './cluster/AirQualityCluster.js';
41
38
  export * from './cluster/BooleanStateConfigurationCluster.js';
42
39
  export * from './cluster/CarbonDioxideConcentrationMeasurementCluster.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,8BAA8B,CAAC;AAGtC,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAE5C,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wBAAwB,CAAC;AAGvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,iDAAiD,CAAC;AAChE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,0DAA0D,CAAC;AACzE,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,kDAAkD,CAAC;AACjE,cAAc,mCAAmC,CAAC;AAClD,cAAc,mDAAmD,CAAC;AAClE,cAAc,kCAAkC,CAAC;AACjD,cAAc,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,8BAA8B,CAAC;AAItC,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAE5C,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wBAAwB,CAAC;AAUvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,iDAAiD,CAAC;AAChE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,0DAA0D,CAAC;AACzE,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,kDAAkD,CAAC;AACjE,cAAc,mCAAmC,CAAC;AAClD,cAAc,mDAAmD,CAAC;AAClE,cAAc,kCAAkC,CAAC;AACjD,cAAc,0BAA0B,CAAC"}
package/dist/index.js CHANGED
@@ -36,9 +36,11 @@ export * from './matterbridgeAccessoryPlatform.js';
36
36
  export * from './matterbridgeDynamicPlatform.js';
37
37
  export * from './matterbridgeTypes.js';
38
38
  // TODO Remove in august 2024
39
+ /*
39
40
  export * from 'matter-history';
40
41
  export * from './utils/utils.js';
41
42
  export * from './utils/colorUtils.js';
43
+ */
42
44
  // TODO Refactor all plugins to import from matterbridge/cluster and remove in september 2024
43
45
  export * from './cluster/AirQualityCluster.js';
44
46
  export * from './cluster/BooleanStateConfigurationCluster.js';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,8BAA8B,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAE5C,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wBAAwB,CAAC;AAEvC,6BAA6B;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AAEtC,6FAA6F;AAC7F,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,iDAAiD,CAAC;AAChE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,0DAA0D,CAAC;AACzE,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,kDAAkD,CAAC;AACjE,cAAc,mCAAmC,CAAC;AAClD,cAAc,mDAAmD,CAAC;AAClE,cAAc,kCAAkC,CAAC;AACjD,cAAc,0BAA0B,CAAC;AAEzC,MAAM,GAAG,GAAG,YAAY,CAAC;AACzB,MAAM,EAAE,GAAG,gBAAgB,CAAC;AAC5B,MAAM,EAAE,GAAG,cAAc,CAAC;AAE1B,KAAK,UAAU,IAAI;IACjB,sCAAsC;IACtC,IAAI,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAAE,OAAO,CAAC,GAAG,CAAC,GAAG,GAAG,0CAA0C,GAAG,EAAE,CAAC,CAAC;IACxG,MAAM,YAAY,CAAC,YAAY,EAAE,CAAC;IAClC,sCAAsC;IACtC,IAAI,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAAE,OAAO,CAAC,GAAG,CAAC,GAAG,GAAG,0CAA0C,GAAG,EAAE,CAAC,CAAC;AAC1G,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACrB,sCAAsC;IACtC,OAAO,CAAC,KAAK,CAAC,EAAE,GAAG,wDAAwD,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;AAC3F,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,8BAA8B,CAAC;AAEtC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAE5C,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wBAAwB,CAAC;AAEvC,6BAA6B;AAC7B;;;;EAIE;AAEF,6FAA6F;AAC7F,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,iDAAiD,CAAC;AAChE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,0DAA0D,CAAC;AACzE,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,kDAAkD,CAAC;AACjE,cAAc,mCAAmC,CAAC;AAClD,cAAc,mDAAmD,CAAC;AAClE,cAAc,kCAAkC,CAAC;AACjD,cAAc,0BAA0B,CAAC;AAEzC,MAAM,GAAG,GAAG,YAAY,CAAC;AACzB,MAAM,EAAE,GAAG,gBAAgB,CAAC;AAC5B,MAAM,EAAE,GAAG,cAAc,CAAC;AAE1B,KAAK,UAAU,IAAI;IACjB,sCAAsC;IACtC,IAAI,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAAE,OAAO,CAAC,GAAG,CAAC,GAAG,GAAG,0CAA0C,GAAG,EAAE,CAAC,CAAC;IACxG,MAAM,YAAY,CAAC,YAAY,EAAE,CAAC;IAClC,sCAAsC;IACtC,IAAI,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAAE,OAAO,CAAC,GAAG,CAAC,GAAG,GAAG,0CAA0C,GAAG,EAAE,CAAC,CAAC;AAC1G,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACrB,sCAAsC;IACtC,OAAO,CAAC,KAAK,CAAC,EAAE,GAAG,wDAAwD,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;AAC3F,CAAC,CAAC,CAAC"}
@@ -4,9 +4,9 @@
4
4
  * @file matterbridge.ts
5
5
  * @author Luca Liguori
6
6
  * @date 2023-12-29
7
- * @version 1.4.0
7
+ * @version 1.5.2
8
8
  *
9
- * Copyright 2023, 2024 Luca Liguori.
9
+ * Copyright 2023, 2024, 2025 Luca Liguori.
10
10
  *
11
11
  * Licensed under the Apache License, Version 2.0 (the "License");
12
12
  * you may not use this file except in compliance with the License.
@@ -1 +1 @@
1
- {"version":3,"file":"matterbridge.d.ts","sourceRoot":"","sources":["../src/matterbridge.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"matterbridge.d.ts","sourceRoot":"","sources":["../src/matterbridge.ts"],"names":[],"mappings":"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"}