matterbridge-example-dynamic-platform 3.0.4-dev-20260902-044750d → 3.0.4-dev-20260905-cd9c2f3
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 +9 -0
- package/dist/module.js +0 -8
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -35,6 +35,15 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
35
35
|
|
|
36
36
|
- [matterbridge]: Require matterbridge v.3.10.8 with matter v.1.6.0.
|
|
37
37
|
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
- [package]: Upgrade package.
|
|
41
|
+
- [package]: Update dependencies.
|
|
42
|
+
- [package]: Bump `@types/node` to v.26.4.1.
|
|
43
|
+
- [package]: Bump `@vitest/coverage-v8` and `vitest` to v.5.0.0.
|
|
44
|
+
- [package]: Bump `oxfmt` to v.0.66.0.
|
|
45
|
+
- [package]: Bump `oxlint` to v.1.81.0.
|
|
46
|
+
|
|
38
47
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
39
48
|
|
|
40
49
|
## [3.0.3] - 2026-08-30
|
package/dist/module.js
CHANGED
|
@@ -2101,12 +2101,8 @@ export class ExampleMatterbridgeDynamicPlatform extends MatterbridgeDynamicPlatf
|
|
|
2101
2101
|
}
|
|
2102
2102
|
if (this.phase === 1)
|
|
2103
2103
|
await this.refrigerator.setDoorOpenState(true);
|
|
2104
|
-
if (this.phase === 2)
|
|
2105
|
-
await this.refrigerator.triggerDoorOpenState(true);
|
|
2106
2104
|
if (this.phase === 4)
|
|
2107
2105
|
await this.refrigerator.setDoorOpenState(false);
|
|
2108
|
-
if (this.phase === 4)
|
|
2109
|
-
await this.refrigerator.triggerDoorOpenState(false);
|
|
2110
2106
|
if (this.phase === 5) {
|
|
2111
2107
|
const refrigerator = this.refrigerator.getChildEndpointById('RefrigeratorTop');
|
|
2112
2108
|
await this.refrigerator.setAttribute('RefrigeratorAndTemperatureControlledCabinetMode', 'currentMode', 2, this.refrigerator.log);
|
|
@@ -2119,12 +2115,8 @@ export class ExampleMatterbridgeDynamicPlatform extends MatterbridgeDynamicPlatf
|
|
|
2119
2115
|
}
|
|
2120
2116
|
if (this.phase === 6)
|
|
2121
2117
|
await this.refrigerator.setDoorOpenState(true);
|
|
2122
|
-
if (this.phase === 7)
|
|
2123
|
-
await this.refrigerator.triggerDoorOpenState(true);
|
|
2124
2118
|
if (this.phase === 9)
|
|
2125
2119
|
await this.refrigerator.setDoorOpenState(false);
|
|
2126
|
-
if (this.phase === 9)
|
|
2127
|
-
await this.refrigerator.triggerDoorOpenState(false);
|
|
2128
2120
|
}
|
|
2129
2121
|
this.phase += 1;
|
|
2130
2122
|
this.phase = this.phase >= 10 ? 0 : this.phase;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-example-dynamic-platform",
|
|
3
|
-
"version": "3.0.4-dev-
|
|
3
|
+
"version": "3.0.4-dev-20260905-cd9c2f3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-example-dynamic-platform",
|
|
9
|
-
"version": "3.0.4-dev-
|
|
9
|
+
"version": "3.0.4-dev-20260905-cd9c2f3",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"node-ansi-logger": "3.3.1",
|
package/package.json
CHANGED