matterbridge-example-dynamic-platform 1.1.4 → 1.1.5
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 +16 -0
- package/dist/index.js +0 -10
- package/dist/platform.js +138 -231
- package/npm-shrinkwrap.json +35 -5
- package/package.json +1 -2
- package/dist/index.d.ts +0 -14
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/platform.d.ts +0 -49
- package/dist/platform.d.ts.map +0 -1
- package/dist/platform.js.map +0 -1
package/CHANGELOG.md
CHANGED
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
|
5
5
|
If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-example-dynamic-platform and sponsoring it.
|
6
6
|
|
7
|
+
## [1.1.5] - 2025-02-01
|
8
|
+
|
9
|
+
### Added
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
|
13
|
+
- [package]: Require matterbridge 2.1.0.
|
14
|
+
- [package]: Updated dependencies.
|
15
|
+
- [package]: Updated package.
|
16
|
+
|
17
|
+
### Fixed
|
18
|
+
|
19
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
20
|
+
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
|
21
|
+
</a>
|
22
|
+
|
7
23
|
## [1.1.4] - 2024-12-21
|
8
24
|
|
9
25
|
### Added
|
package/dist/index.js
CHANGED
@@ -1,14 +1,4 @@
|
|
1
1
|
import { ExampleMatterbridgeDynamicPlatform } from './platform.js';
|
2
|
-
/**
|
3
|
-
* This is the standard interface for Matterbridge plugins.
|
4
|
-
* Each plugin should export a default function that follows this signature.
|
5
|
-
*
|
6
|
-
* @param {Matterbridge} matterbridge - The Matterbridge instance.
|
7
|
-
* @param {AnsiLogger} log - The logger instance.
|
8
|
-
* @param {PlatformConfig} config - The platform configuration.
|
9
|
-
* @returns {ExampleMatterbridgeDynamicPlatform} The initialized platform.
|
10
|
-
*/
|
11
2
|
export default function initializePlugin(matterbridge, log, config) {
|
12
3
|
return new ExampleMatterbridgeDynamicPlatform(matterbridge, log, config);
|
13
4
|
}
|
14
|
-
//# sourceMappingURL=index.js.map
|