matterbridge 3.7.2-dev-20260331-ac050d8 → 3.7.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.
- package/CHANGELOG.md +2 -2
- package/README-DEV.md +19 -6
- package/apps/frontend/build/assets/index.js +1 -1
- package/apps/frontend/npm-shrinkwrap.json +9 -9
- package/package.json +14 -15
package/CHANGELOG.md
CHANGED
|
@@ -53,14 +53,14 @@ These classes will run as threads in the next releases:
|
|
|
53
53
|
- all plugins in bridge mode;
|
|
54
54
|
- each plugin in childbridge mode;
|
|
55
55
|
|
|
56
|
-
## [3.7.2] -
|
|
56
|
+
## [3.7.2] - 2026-04-02
|
|
57
57
|
|
|
58
58
|
### Dev Breaking Changes
|
|
59
59
|
|
|
60
60
|
- [triggerEvent]: The overloads of `triggerEvent()` method that take Behavior.Type or ClusterType are now typed.
|
|
61
61
|
- [behaviors]: The matterbridge behaviors are exported from matterbridge/behaviors.
|
|
62
62
|
- [endpoint]: Remove createPinDoorLockClusterServer() endpoint helper because of the doorLock device type requirements (8.1.6).
|
|
63
|
-
- [endpoint]: Refactor MatterbridgeDoorLockServer beahavior with autoRelockTime attribute and unlockWithTimeout
|
|
63
|
+
- [endpoint]: Refactor MatterbridgeDoorLockServer beahavior with autoRelockTime attribute and unlockWithTimeout, setUser, getUser, clearUser, setCredential, getCredentialStatus and clearCredential commands.
|
|
64
64
|
|
|
65
65
|
### Dev news
|
|
66
66
|
|
package/README-DEV.md
CHANGED
|
@@ -482,21 +482,34 @@ Each plugin has a minimal default schema file injected by Matterbridge when it i
|
|
|
482
482
|
type: 'object',
|
|
483
483
|
properties: {
|
|
484
484
|
name: {
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
485
|
+
'title': 'Plugin Name',
|
|
486
|
+
'description': 'Plugin name',
|
|
487
|
+
'type': 'string',
|
|
488
|
+
'readOnly': true,
|
|
489
|
+
'ui:widget': 'hidden',
|
|
488
490
|
},
|
|
489
491
|
type: {
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
492
|
+
'title': 'Plugin Type',
|
|
493
|
+
'description': 'Plugin type',
|
|
494
|
+
'type': 'string',
|
|
495
|
+
'readOnly': true,
|
|
496
|
+
'ui:widget': 'hidden',
|
|
497
|
+
},
|
|
498
|
+
version: {
|
|
499
|
+
'title': 'Plugin Version',
|
|
500
|
+
'description': 'Plugin version',
|
|
501
|
+
'type': 'string',
|
|
502
|
+
'readOnly': true,
|
|
503
|
+
'ui:widget': 'hidden',
|
|
493
504
|
},
|
|
494
505
|
debug: {
|
|
506
|
+
title: 'Enable Debug',
|
|
495
507
|
description: 'Enable the debug for the plugin (development only)',
|
|
496
508
|
type: 'boolean',
|
|
497
509
|
default: false,
|
|
498
510
|
},
|
|
499
511
|
unregisterOnShutdown: {
|
|
512
|
+
title: 'Unregister On Shutdown',
|
|
500
513
|
description: 'Unregister all devices on shutdown (development only)',
|
|
501
514
|
type: 'boolean',
|
|
502
515
|
default: false,
|