matterbridge-example-accessory-platform 2.0.6 → 2.0.7-dev-20260205-4f36f6f
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 +15 -1
- package/README.md +6 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/dist/module.d.ts +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|

|
|
8
8
|

|
|
9
9
|
[](https://codecov.io/gh/Luligu/matterbridge-example-accessory-platformr)
|
|
10
|
+
[](https://github.com/prettier/prettier)
|
|
11
|
+
[](https://github.com/eslint/eslint)
|
|
12
|
+
[](https://www.typescriptlang.org/)
|
|
13
|
+
[](https://nodejs.org/api/esm.html)
|
|
14
|
+
[](https://matterbridge.io)
|
|
10
15
|
|
|
11
16
|
[](https://www.npmjs.com/package/matterbridge)
|
|
12
17
|
[](https://www.npmjs.com/package/matter-history)
|
|
@@ -17,10 +22,19 @@
|
|
|
17
22
|
|
|
18
23
|
All notable changes to this project will be documented in this file.
|
|
19
24
|
|
|
20
|
-
If you like this project and find it useful, please consider giving it a star on GitHub
|
|
25
|
+
If you like this project and find it useful, please consider giving it a star on [GitHub](https://github.com/Luligu/matterbridge-example-accessory-platform) and sponsoring it.
|
|
21
26
|
|
|
22
27
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
|
|
23
28
|
|
|
29
|
+
## [2.0.7] - 2026-02-04
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- [package]: Updated dependencies.
|
|
34
|
+
- [package]: Updated package.
|
|
35
|
+
|
|
36
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
37
|
+
|
|
24
38
|
## [2.0.6] - 2026-02-01
|
|
25
39
|
|
|
26
40
|
### Changed
|
package/README.md
CHANGED
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|

|
|
8
8
|

|
|
9
9
|
[](https://codecov.io/gh/Luligu/matterbridge-example-accessory-platform)
|
|
10
|
+
[](https://github.com/prettier/prettier)
|
|
11
|
+
[](https://github.com/eslint/eslint)
|
|
12
|
+
[](https://www.typescriptlang.org/)
|
|
13
|
+
[](https://nodejs.org/api/esm.html)
|
|
14
|
+
[](https://matterbridge.io)
|
|
10
15
|
|
|
11
16
|
[](https://www.npmjs.com/package/matterbridge)
|
|
12
17
|
[](https://www.npmjs.com/package/matter-history)
|
|
@@ -23,9 +28,7 @@ If you want to write your plugin, the easiest way to start create a new plugin i
|
|
|
23
28
|
|
|
24
29
|
If you like this project and find it useful, please consider giving it a star on [GitHub](https://github.com/Luligu/matterbridge-example-accessory-platform) and sponsoring it.
|
|
25
30
|
|
|
26
|
-
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
27
|
-
<img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120">
|
|
28
|
-
</a>
|
|
31
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
|
|
29
32
|
|
|
30
33
|
## Prerequisites
|
|
31
34
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-example-accessory-platform",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7-dev-20260205-4f36f6f",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-example-accessory-platform",
|
|
9
|
-
"version": "2.0.
|
|
9
|
+
"version": "2.0.7-dev-20260205-4f36f6f",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"node-ansi-logger": "3.1.1",
|
package/package.json
CHANGED
package/dist/module.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { MatterbridgeAccessoryPlatform, PlatformConfig, MatterbridgeEndpoint, PlatformMatterbridge } from 'matterbridge';
|
|
2
|
-
import { AnsiLogger } from 'matterbridge/logger';
|
|
3
|
-
export default function initializePlugin(matterbridge: PlatformMatterbridge, log: AnsiLogger, config: PlatformConfig): ExampleMatterbridgeAccessoryPlatform;
|
|
4
|
-
export declare class ExampleMatterbridgeAccessoryPlatform extends MatterbridgeAccessoryPlatform {
|
|
5
|
-
cover?: MatterbridgeEndpoint;
|
|
6
|
-
coverInterval?: NodeJS.Timeout;
|
|
7
|
-
constructor(matterbridge: PlatformMatterbridge, log: AnsiLogger, config: PlatformConfig);
|
|
8
|
-
onStart(reason?: string): Promise<void>;
|
|
9
|
-
onConfigure(): Promise<void>;
|
|
10
|
-
onShutdown(reason?: string): Promise<void>;
|
|
11
|
-
}
|