matterbridge 3.2.3-dev-20250816-3639b16 → 3.2.3-dev-20250820-d283e3d
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/README-DEV.md +1 -1
- package/dist/devices/export.js +1 -1
- package/npm-shrinkwrap.json +8 -8
- package/package.json +1 -4
package/README-DEV.md
CHANGED
|
@@ -424,5 +424,5 @@ I warmly welcome contributions to this project! Whether it's reporting bugs, pro
|
|
|
424
424
|
|
|
425
425
|
- Create a new pull request against the dev from my repository and I'll be glad to check it out
|
|
426
426
|
- Be sure to follow the existing code style
|
|
427
|
-
- Add unit tests for any new or changed functionality if possible
|
|
427
|
+
- Add unit tests for any new or changed functionality if possible cause Matterbridge has a 100% test coverage.
|
|
428
428
|
- In your pull request, do describe what your changes do and how they work
|
package/dist/devices/export.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './roboticVacuumCleaner.js';
|
|
1
2
|
export * from './laundryWasher.js';
|
|
2
3
|
export * from './laundryDryer.js';
|
|
3
4
|
export * from './extractorHood.js';
|
|
@@ -11,4 +12,3 @@ export * from './evse.js';
|
|
|
11
12
|
export * from './solarPower.js';
|
|
12
13
|
export * from './batteryStorage.js';
|
|
13
14
|
export * from './heatPump.js';
|
|
14
|
-
export * from './roboticVacuumCleaner.js';
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.2.3-dev-
|
|
3
|
+
"version": "3.2.3-dev-20250820-d283e3d",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.2.3-dev-
|
|
9
|
+
"version": "3.2.3-dev-20250820-d283e3d",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.3",
|
|
@@ -153,9 +153,9 @@
|
|
|
153
153
|
}
|
|
154
154
|
},
|
|
155
155
|
"node_modules/@noble/curves": {
|
|
156
|
-
"version": "1.9.
|
|
157
|
-
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.
|
|
158
|
-
"integrity": "sha512-
|
|
156
|
+
"version": "1.9.7",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.7.tgz",
|
|
158
|
+
"integrity": "sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==",
|
|
159
159
|
"license": "MIT",
|
|
160
160
|
"dependencies": {
|
|
161
161
|
"@noble/hashes": "1.8.0"
|
|
@@ -215,9 +215,9 @@
|
|
|
215
215
|
}
|
|
216
216
|
},
|
|
217
217
|
"node_modules/ansi-regex": {
|
|
218
|
-
"version": "6.
|
|
219
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.
|
|
220
|
-
"integrity": "sha512-
|
|
218
|
+
"version": "6.2.0",
|
|
219
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.0.tgz",
|
|
220
|
+
"integrity": "sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==",
|
|
221
221
|
"license": "MIT",
|
|
222
222
|
"engines": {
|
|
223
223
|
"node": ">=12"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.2.3-dev-
|
|
3
|
+
"version": "3.2.3-dev-20250820-d283e3d",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -98,9 +98,6 @@
|
|
|
98
98
|
"types": "./dist/matter/types.d.ts"
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
|
-
"overrides": {
|
|
102
|
-
"typescript": "5.9.2"
|
|
103
|
-
},
|
|
104
101
|
"dependencies": {
|
|
105
102
|
"@matter/main": "0.15.3",
|
|
106
103
|
"archiver": "7.0.1",
|