matterbridge 1.4.3 → 1.5.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 +47 -0
- package/README-ADVANCED.md +197 -0
- package/README-DEV.md +167 -0
- package/README.md +26 -318
- package/dist/cluster/export.d.ts +23 -0
- package/dist/cluster/export.d.ts.map +1 -0
- package/dist/cluster/export.js +23 -0
- package/dist/cluster/export.js.map +1 -0
- package/dist/index.d.ts +0 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/matterbridge.d.ts +4 -1
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +149 -100
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +190 -114
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +379 -189
- package/dist/matterbridgeDevice.js.map +1 -1
- package/dist/matterbridgeTypes.d.ts +2 -0
- package/dist/matterbridgeTypes.d.ts.map +1 -1
- package/dist/pluginManager.d.ts.map +1 -1
- package/dist/pluginManager.js +13 -3
- package/dist/pluginManager.js.map +1 -1
- package/dist/utils/utils.d.ts +22 -3
- package/dist/utils/utils.d.ts.map +1 -1
- package/dist/utils/utils.js +106 -42
- package/dist/utils/utils.js.map +1 -1
- package/frontend/build/asset-manifest.json +5 -5
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/js/453.abd36b29.chunk.js +2 -0
- package/frontend/build/static/js/{453.d855a71b.chunk.js.map → 453.abd36b29.chunk.js.map} +1 -1
- package/frontend/build/static/js/main.4c5271fd.js +3 -0
- package/frontend/build/static/js/main.4c5271fd.js.map +1 -0
- package/package.json +16 -15
- package/frontend/build/static/js/453.d855a71b.chunk.js +0 -2
- package/frontend/build/static/js/main.e76dd8f6.js +0 -3
- package/frontend/build/static/js/main.e76dd8f6.js.map +0 -1
- /package/frontend/build/static/js/{main.e76dd8f6.js.LICENSE.txt → main.4c5271fd.js.LICENSE.txt} +0 -0
package/README.md
CHANGED
|
@@ -46,13 +46,11 @@ A special thank to Apollon77 for his incredible work.
|
|
|
46
46
|
|
|
47
47
|
Follow these steps to install Matterbridge:
|
|
48
48
|
|
|
49
|
-
on Windows:
|
|
50
|
-
|
|
51
49
|
```
|
|
52
50
|
npm install -g matterbridge
|
|
53
51
|
```
|
|
54
52
|
|
|
55
|
-
on Linux
|
|
53
|
+
on Linux you may need the necessary permissions:
|
|
56
54
|
|
|
57
55
|
```
|
|
58
56
|
sudo npm install -g matterbridge
|
|
@@ -64,7 +62,7 @@ Test the installation with:
|
|
|
64
62
|
matterbridge -bridge
|
|
65
63
|
```
|
|
66
64
|
|
|
67
|
-
Now it is possible to open the frontend at the link provided in the log (
|
|
65
|
+
Now it is possible to open the frontend at the link provided in the log (e.g. http://MATTERBIDGE-IPV4-ADDRESS:8283)
|
|
68
66
|
|
|
69
67
|
## Usage
|
|
70
68
|
|
|
@@ -92,7 +90,7 @@ matterbridge -help
|
|
|
92
90
|
|
|
93
91
|
## Frontend
|
|
94
92
|
|
|
95
|
-
Matterbridge has a frontend available on http://
|
|
93
|
+
Matterbridge has a frontend available on http://MATTERBIDGE-IPV4-ADDRESS:8283 and http://[MATTERBIDGE-IPV6-ADDRESS]:8283
|
|
96
94
|
|
|
97
95
|
You can change the default port by adding the frontend parameter when you run it.
|
|
98
96
|
|
|
@@ -106,33 +104,43 @@ matterbridge -bridge -frontend [port number]
|
|
|
106
104
|
matterbridge -childbridge -frontend [port number]
|
|
107
105
|
```
|
|
108
106
|
|
|
107
|
+
From the frontend you can do all operations in an easy way.
|
|
108
|
+
|
|
109
109
|
Home page:
|
|
110
110
|

|
|
111
111
|
|
|
112
112
|
Devices page:
|
|
113
|
-
|
|
113
|
+
[See the screenshot here](https://github.com/Luligu/matterbridge/blob/main/screenshot/Screenshot%20devices.jpg)
|
|
114
114
|
|
|
115
115
|
Logs page:
|
|
116
|
-
|
|
116
|
+
[See the screenshot here](https://github.com/Luligu/matterbridge/blob/main/screenshot/Screenshot%20logs.jpg)
|
|
117
117
|
|
|
118
118
|
Config editor:
|
|
119
|
-
|
|
119
|
+
[See the screenshot here](https://github.com/Luligu/matterbridge/blob/main/screenshot/Screenshot%20config%20editor.jpg)
|
|
120
|
+
|
|
121
|
+
## Advanced configurations
|
|
122
|
+
|
|
123
|
+
[Advanced configurations](https://github.com/Luligu/matterbridge/blob/main/README-ADVANCED.md)
|
|
124
|
+
|
|
125
|
+
## Development
|
|
126
|
+
|
|
127
|
+
[Development](https://github.com/Luligu/matterbridge/blob/main/README-DEV.md)
|
|
120
128
|
|
|
121
129
|
## Plugins
|
|
122
130
|
|
|
123
131
|
### Production-level plugins
|
|
124
132
|
|
|
125
|
-
[zigbee2mqtt](https://github.com/Luligu/matterbridge-zigbee2mqtt)
|
|
133
|
+
[zigbee2mqtt plugin](https://github.com/Luligu/matterbridge-zigbee2mqtt)
|
|
126
134
|
|
|
127
135
|
Matterbridge zigbee2mqtt is a matterbridge production-level plugin that expose all zigbee2mqtt devices and groups to Matter.
|
|
128
136
|
|
|
129
137
|
No hub or dedicated hardware needed.
|
|
130
138
|
|
|
131
|
-
[somy-tahoma](https://github.com/Luligu/matterbridge-somfy-tahoma)
|
|
139
|
+
[somy-tahoma plugin](https://github.com/Luligu/matterbridge-somfy-tahoma)
|
|
132
140
|
|
|
133
141
|
Matterbridge Somfy Tahoma is a matterbridge production-level plugin that expose all Somfy Tahoma devices to Matter.
|
|
134
142
|
|
|
135
|
-
[shelly](https://github.com/Luligu/matterbridge-shelly)
|
|
143
|
+
[shelly plugin](https://github.com/Luligu/matterbridge-shelly)
|
|
136
144
|
|
|
137
145
|
Matterbridge shelly allows you to expose Shelly Gen 1, Gen 2, and Gen 3 devices to Matter.
|
|
138
146
|
|
|
@@ -187,7 +195,7 @@ The history works in both bridge and childbridge mode.
|
|
|
187
195
|
|
|
188
196
|
The Eve app only shows the history when the plugins run like an AccessoryPlatform in childbridge mode (this means the plugin is paired directly).
|
|
189
197
|
|
|
190
|
-
## How to install and register a production-level plugin (from npm)
|
|
198
|
+
## How to install and register a production-level plugin from a terminal (from npm)
|
|
191
199
|
|
|
192
200
|
To install i.e. https://github.com/Luligu/matterbridge-zigbee2mqtt
|
|
193
201
|
|
|
@@ -207,56 +215,25 @@ sudo npm install -g matterbridge-zigbee2mqtt
|
|
|
207
215
|
matterbridge -add matterbridge-zigbee2mqtt
|
|
208
216
|
```
|
|
209
217
|
|
|
210
|
-
## How to
|
|
211
|
-
|
|
212
|
-
To install i.e. https://github.com/Luligu/matterbridge-example-accessory-platform
|
|
213
|
-
|
|
214
|
-
On windows:
|
|
215
|
-
|
|
216
|
-
```
|
|
217
|
-
cd $HOME\Matterbridge
|
|
218
|
-
```
|
|
219
|
-
|
|
220
|
-
On linux:
|
|
221
|
-
|
|
222
|
-
```
|
|
223
|
-
cd ~/Matterbridge
|
|
224
|
-
```
|
|
225
|
-
|
|
226
|
-
then clone the plugin
|
|
227
|
-
|
|
228
|
-
```
|
|
229
|
-
git clone https://github.com/Luligu/matterbridge-example-accessory-platform
|
|
230
|
-
cd matterbridge-example-accessory-platform
|
|
231
|
-
npm install
|
|
232
|
-
npm run build
|
|
233
|
-
```
|
|
234
|
-
|
|
235
|
-
then add the plugin to Matterbridge
|
|
236
|
-
|
|
237
|
-
```
|
|
238
|
-
matterbridge -add .\
|
|
239
|
-
```
|
|
240
|
-
|
|
241
|
-
## How to add a plugin to Matterbridge
|
|
218
|
+
## How to add a plugin to Matterbridge from a terminal
|
|
242
219
|
|
|
243
220
|
```
|
|
244
221
|
matterbridge -add [plugin path or plugin name]
|
|
245
222
|
```
|
|
246
223
|
|
|
247
|
-
## How to remove a plugin from Matterbridge
|
|
224
|
+
## How to remove a plugin from Matterbridge from a terminal
|
|
248
225
|
|
|
249
226
|
```
|
|
250
227
|
matterbridge -remove [plugin path or plugin name]
|
|
251
228
|
```
|
|
252
229
|
|
|
253
|
-
## How to disable a registered plugin
|
|
230
|
+
## How to disable a registered plugin from a terminal
|
|
254
231
|
|
|
255
232
|
```
|
|
256
233
|
matterbridge -disable [plugin path or plugin name]
|
|
257
234
|
```
|
|
258
235
|
|
|
259
|
-
## How to enable a registered plugin
|
|
236
|
+
## How to enable a registered plugin from a terminal
|
|
260
237
|
|
|
261
238
|
```
|
|
262
239
|
matterbridge -enable [plugin path or plugin name]
|
|
@@ -282,249 +259,6 @@ matterbridge -factoryreset
|
|
|
282
259
|
|
|
283
260
|
This will reset the internal storages. All commissioning informations will be lost. All plugins will be unregistered.
|
|
284
261
|
|
|
285
|
-
## How to create your plugin
|
|
286
|
-
|
|
287
|
-
The easiest way is to clone:
|
|
288
|
-
|
|
289
|
-
- https://github.com/Luligu/matterbridge-example-accessory-platform if you want to create an Accessory Platform Plugin.
|
|
290
|
-
|
|
291
|
-
- https://github.com/Luligu/matterbridge-example-dynamic-platform if you want to create a Dynamic Platform Plugin.
|
|
292
|
-
|
|
293
|
-
Then change the name (keep matterbridge- at the beginning of the name), version, description and author in the package.json.
|
|
294
|
-
|
|
295
|
-
Add your plugin logic in platform.ts.
|
|
296
|
-
|
|
297
|
-
## MatterbridgeDynamicPlatform and MatterbridgeAccessoryPlatform api
|
|
298
|
-
|
|
299
|
-
### public name: string
|
|
300
|
-
|
|
301
|
-
The plugin name.
|
|
302
|
-
|
|
303
|
-
### public type: string
|
|
304
|
-
|
|
305
|
-
The plugin platform type.
|
|
306
|
-
|
|
307
|
-
### public config: object
|
|
308
|
-
|
|
309
|
-
The plugin config (loaded before the platform constructor is called and saved after onShutdown() is called).
|
|
310
|
-
Here you can store your plugin configuration (see matterbridge-zigbee2mqtt for example)
|
|
311
|
-
|
|
312
|
-
### async onStart(reason?: string)
|
|
313
|
-
|
|
314
|
-
The method onStart() is where you have to create your MatterbridgeDevice and add all needed clusters and command handlers.
|
|
315
|
-
|
|
316
|
-
The MatterbridgeDevice class has the create cluster methods already done and all command handlers needed (see plugin examples).
|
|
317
|
-
|
|
318
|
-
The method is called when Matterbridge load the plugin.
|
|
319
|
-
|
|
320
|
-
### async onConfigure()
|
|
321
|
-
|
|
322
|
-
The method onConfigure() is where you can configure or initialize your device.
|
|
323
|
-
|
|
324
|
-
The method is called when the platform is commissioned.
|
|
325
|
-
|
|
326
|
-
### async onShutdown(reason?: string)
|
|
327
|
-
|
|
328
|
-
The method onShutdown() is where you have to eventually cleanup some resources.
|
|
329
|
-
|
|
330
|
-
The method is called when Matterbridge is shutting down.
|
|
331
|
-
|
|
332
|
-
### async registerDevice(device: MatterbridgeDevice)
|
|
333
|
-
|
|
334
|
-
After you created your device, add it to the platform.
|
|
335
|
-
|
|
336
|
-
### async unregisterDevice(device: MatterbridgeDevice)
|
|
337
|
-
|
|
338
|
-
You can unregister one or more device.
|
|
339
|
-
|
|
340
|
-
### async unregisterAllDevices()
|
|
341
|
-
|
|
342
|
-
You can unregister all devices you added.
|
|
343
|
-
|
|
344
|
-
It can be useful to call this method from onShutdown() if you don't want to keep all the devices during development.
|
|
345
|
-
|
|
346
|
-
## MatterbridgeDevice api
|
|
347
|
-
|
|
348
|
-
# Advanced configuration
|
|
349
|
-
|
|
350
|
-
## Run matterbridge as a daemon with systemctl (Linux only)
|
|
351
|
-
|
|
352
|
-
Create a systemctl configuration file for Matterbridge
|
|
353
|
-
|
|
354
|
-
```
|
|
355
|
-
sudo nano /etc/systemd/system/matterbridge.service
|
|
356
|
-
```
|
|
357
|
-
|
|
358
|
-
Add the following to this file, replacing twice (!) USER with your user name (e.g. WorkingDirectory=/home/pi/Matterbridge and User=pi):
|
|
359
|
-
|
|
360
|
-
ExecStart on some linux distribution can also be ExecStart==/usr/bin/matterbridge -bridge -service
|
|
361
|
-
|
|
362
|
-
```
|
|
363
|
-
[Unit]
|
|
364
|
-
Description=matterbridge
|
|
365
|
-
After=network-online.target
|
|
366
|
-
|
|
367
|
-
[Service]
|
|
368
|
-
Type=simple
|
|
369
|
-
ExecStart=matterbridge -bridge -service
|
|
370
|
-
WorkingDirectory=/home/<USER>/Matterbridge
|
|
371
|
-
StandardOutput=inherit
|
|
372
|
-
StandardError=inherit
|
|
373
|
-
Restart=always
|
|
374
|
-
RestartSec=10s
|
|
375
|
-
TimeoutStopSec=30s
|
|
376
|
-
User=<USER>
|
|
377
|
-
|
|
378
|
-
[Install]
|
|
379
|
-
WantedBy=multi-user.target
|
|
380
|
-
```
|
|
381
|
-
|
|
382
|
-
If you modify it after, then run:
|
|
383
|
-
|
|
384
|
-
```
|
|
385
|
-
sudo systemctl daemon-reload
|
|
386
|
-
```
|
|
387
|
-
|
|
388
|
-
### Start Matterbridge
|
|
389
|
-
|
|
390
|
-
```
|
|
391
|
-
sudo systemctl start matterbridge
|
|
392
|
-
```
|
|
393
|
-
|
|
394
|
-
### Stop Matterbridge
|
|
395
|
-
|
|
396
|
-
```
|
|
397
|
-
sudo systemctl stop matterbridge
|
|
398
|
-
```
|
|
399
|
-
|
|
400
|
-
### Show Matterbridge status
|
|
401
|
-
|
|
402
|
-
```
|
|
403
|
-
sudo systemctl status matterbridge.service
|
|
404
|
-
```
|
|
405
|
-
|
|
406
|
-
### View the log of Matterbridge in real time (this will show the log with colors)
|
|
407
|
-
|
|
408
|
-
```
|
|
409
|
-
sudo journalctl -u matterbridge.service -f --output cat
|
|
410
|
-
```
|
|
411
|
-
|
|
412
|
-
### Delete the logs older then 3 days (all of them not only the ones of Matterbridge!)
|
|
413
|
-
|
|
414
|
-
```
|
|
415
|
-
sudo journalctl --vacuum-time=3d
|
|
416
|
-
```
|
|
417
|
-
|
|
418
|
-
### Enable Matterbridge to start automatically on boot
|
|
419
|
-
|
|
420
|
-
```
|
|
421
|
-
sudo systemctl enable matterbridge.service
|
|
422
|
-
```
|
|
423
|
-
|
|
424
|
-
### Disable Matterbridge from starting automatically on boot
|
|
425
|
-
|
|
426
|
-
```
|
|
427
|
-
sudo systemctl disable matterbridge.service
|
|
428
|
-
```
|
|
429
|
-
|
|
430
|
-
## Run matterbridge with docker
|
|
431
|
-
|
|
432
|
-
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.
|
|
433
|
-
|
|
434
|
-
### First create the Matterbridge directories
|
|
435
|
-
|
|
436
|
-
This will create the required directories if they don't exist
|
|
437
|
-
|
|
438
|
-
```
|
|
439
|
-
cd ~
|
|
440
|
-
mkdir -p ./Matterbridge
|
|
441
|
-
mkdir -p ./.matterbridge
|
|
442
|
-
sudo chown -R $USER:$USER ./Matterbridge ./.matterbridge
|
|
443
|
-
```
|
|
444
|
-
|
|
445
|
-
### Run the Docker container and start it
|
|
446
|
-
|
|
447
|
-
The container has full access to the host network (needed for mdns).
|
|
448
|
-
|
|
449
|
-
```
|
|
450
|
-
docker run --name matterbridge \
|
|
451
|
-
-v ${HOME}/Matterbridge:/root/Matterbridge \
|
|
452
|
-
-v ${HOME}/.matterbridge:/root/.matterbridge \
|
|
453
|
-
--network host --restart always -d luligu/matterbridge:latest
|
|
454
|
-
```
|
|
455
|
-
|
|
456
|
-
### Run with docker compose
|
|
457
|
-
|
|
458
|
-
The docker-compose.yml file is available in the docker directory of the package
|
|
459
|
-
|
|
460
|
-
```
|
|
461
|
-
services:
|
|
462
|
-
matterbridge:
|
|
463
|
-
container_name: matterbridge
|
|
464
|
-
image: luligu/matterbridge:latest # Matterbridge image with the latest tag
|
|
465
|
-
network_mode: host # Ensures the Matter mdns works
|
|
466
|
-
restart: always # Ensures the container always restarts automatically
|
|
467
|
-
volumes:
|
|
468
|
-
- "${HOME}/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
|
|
469
|
-
- "${HOME}/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
|
|
470
|
-
```
|
|
471
|
-
|
|
472
|
-
copy it in the home directory or edit the existing one to add the matterbridge service.
|
|
473
|
-
|
|
474
|
-
Then start docker compose with:
|
|
475
|
-
|
|
476
|
-
```
|
|
477
|
-
docker compose up -d
|
|
478
|
-
```
|
|
479
|
-
|
|
480
|
-
### Stop with docker compose
|
|
481
|
-
|
|
482
|
-
```
|
|
483
|
-
docker compose down
|
|
484
|
-
```
|
|
485
|
-
|
|
486
|
-
### Update with docker compose
|
|
487
|
-
|
|
488
|
-
```
|
|
489
|
-
docker compose pull
|
|
490
|
-
```
|
|
491
|
-
|
|
492
|
-
### Inspect the container
|
|
493
|
-
|
|
494
|
-
```
|
|
495
|
-
docker container inspect matterbridge
|
|
496
|
-
```
|
|
497
|
-
|
|
498
|
-
### Start the Docker container
|
|
499
|
-
|
|
500
|
-
```
|
|
501
|
-
docker start matterbridge
|
|
502
|
-
```
|
|
503
|
-
|
|
504
|
-
### Stop the Docker container
|
|
505
|
-
|
|
506
|
-
```
|
|
507
|
-
docker stop matterbridge
|
|
508
|
-
```
|
|
509
|
-
|
|
510
|
-
### Restart the Docker container
|
|
511
|
-
|
|
512
|
-
```
|
|
513
|
-
docker restart matterbridge
|
|
514
|
-
```
|
|
515
|
-
|
|
516
|
-
### Shows the logs
|
|
517
|
-
|
|
518
|
-
```
|
|
519
|
-
docker logs matterbridge
|
|
520
|
-
```
|
|
521
|
-
|
|
522
|
-
### Shows the logs real time (tail)
|
|
523
|
-
|
|
524
|
-
```
|
|
525
|
-
docker logs --tail 1000 -f matterbridge
|
|
526
|
-
```
|
|
527
|
-
|
|
528
262
|
# Known general issues
|
|
529
263
|
|
|
530
264
|
## Session XYZ does not exist
|
|
@@ -537,13 +271,7 @@ In this context, the message is not indicative of a problem.
|
|
|
537
271
|
|
|
538
272
|
The HomePods, being a WiFi devices, sometimes pruduce message trasmission errors. The Apple TV with network cable is more reliable (but also more expensive).
|
|
539
273
|
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
### DoorLock issue
|
|
543
|
-
|
|
544
|
-
The DoorLock cluster in the Home app takes a while to get online. The Home app shows no response for 1 or 2 seconds but then the accessory goes online. With the Eve app or the Controller app this issue is not present.
|
|
545
|
-
|
|
546
|
-
Solved with the version 17.5 of the HomePod/AppleTV.
|
|
274
|
+
All issues have been solved from the version 17.5 of the HomePod/AppleTV. Now they are stable.
|
|
547
275
|
|
|
548
276
|
## Home Assistant
|
|
549
277
|
|
|
@@ -563,7 +291,6 @@ HA also support electrical measurements from EveHistoryCluster (used in Matterbr
|
|
|
563
291
|
|
|
564
292
|
- If HA doesn't show all devices, reload the Matter Server Integration or reboot HA
|
|
565
293
|
- Home Assistant doesn't seem to always react when a device is removed from the bridge: they remain in HA unavailable forever...
|
|
566
|
-
- Version 6.1.2 is stable.
|
|
567
294
|
- Use Apple Home when you have to choose the controller type even if you pair Matterbridge directly with HA.
|
|
568
295
|
|
|
569
296
|
## Google Home
|
|
@@ -596,7 +323,7 @@ No issues reported so far.
|
|
|
596
323
|
|
|
597
324
|
Supports also:
|
|
598
325
|
|
|
599
|
-
- air Quality Sensor
|
|
326
|
+
- air Quality Sensor (Matter 1.2)
|
|
600
327
|
- smoke Co Alarm
|
|
601
328
|
|
|
602
329
|
## eWeLink
|
|
@@ -609,25 +336,6 @@ eWeLink needs the standard port 5540 for commissioning.
|
|
|
609
336
|
|
|
610
337
|
Check the matter.js readme.
|
|
611
338
|
|
|
612
|
-
# Contribution Guidelines
|
|
613
|
-
|
|
614
|
-
Thank you for your interest in contributing to my project!
|
|
615
|
-
|
|
616
|
-
I warmly welcome contributions to this project! Whether it's reporting bugs, proposing new features, updating documentation, or writing code, your help is greatly appreciated.
|
|
617
|
-
|
|
618
|
-
## Getting Started
|
|
619
|
-
|
|
620
|
-
- Fork this repository to your own GitHub account and clone it to your local device.
|
|
621
|
-
- Make the necessary changes and test them out
|
|
622
|
-
- Commit your changes and push to your forked repository
|
|
623
|
-
|
|
624
|
-
## Submitting Changes
|
|
625
|
-
|
|
626
|
-
- Create a new pull request against the dev from my repository and I'll be glad to check it out
|
|
627
|
-
- Be sure to follow the existing code style
|
|
628
|
-
- Add unit tests for any new or changed functionality if possible
|
|
629
|
-
- In your pull request, do describe what your changes do and how they work
|
|
630
|
-
|
|
631
339
|
## Code of Conduct
|
|
632
340
|
|
|
633
341
|
We believe in a welcoming and respectful community for all. Please make sure to follow our [Code of Conduct](LINK_TO_CODE_OF_CONDUCT) in all your interactions with the project.
|
|
@@ -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';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,8BAA8B,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;
|
|
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"}
|
package/dist/matterbridge.d.ts
CHANGED
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
* See the License for the specific language governing permissions and
|
|
21
21
|
* limitations under the License. *
|
|
22
22
|
*/
|
|
23
|
-
import { AnsiLogger } from 'node-ansi-logger';
|
|
24
23
|
import EventEmitter from 'events';
|
|
24
|
+
import { AnsiLogger } from 'node-ansi-logger';
|
|
25
25
|
import { MatterbridgeDevice } from './matterbridgeDevice.js';
|
|
26
26
|
import { MatterbridgeInformation, SanitizedExposedFabricInformation, SanitizedSessionInformation, SystemInformation } from './matterbridgeTypes.js';
|
|
27
27
|
/**
|
|
@@ -37,6 +37,8 @@ export declare class Matterbridge extends EventEmitter {
|
|
|
37
37
|
globalModulesDirectory: string;
|
|
38
38
|
matterbridgeVersion: string;
|
|
39
39
|
matterbridgeLatestVersion: string;
|
|
40
|
+
matterbridgeQrPairingCode: string | undefined;
|
|
41
|
+
matterbridgeManualPairingCode: string | undefined;
|
|
40
42
|
matterbridgeFabricInformations: SanitizedExposedFabricInformation[];
|
|
41
43
|
matterbridgeSessionInformations: SanitizedSessionInformation[];
|
|
42
44
|
matterbridgePaired: boolean;
|
|
@@ -57,6 +59,7 @@ export declare class Matterbridge extends EventEmitter {
|
|
|
57
59
|
private hasCleanupStarted;
|
|
58
60
|
private initialized;
|
|
59
61
|
private execRunningCount;
|
|
62
|
+
private startMatterInterval;
|
|
60
63
|
private cleanupTimeout1;
|
|
61
64
|
private cleanupTimeout2;
|
|
62
65
|
private checkUpdateInterval;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"matterbridge.d.ts","sourceRoot":"","sources":["../src/matterbridge.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;
|
|
1
|
+
{"version":3,"file":"matterbridge.d.ts","sourceRoot":"","sources":["../src/matterbridge.ts"],"names":[],"mappings":"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"}
|