@matterbridge/types 3.7.3-dev-20260409-c008978 → 3.7.3-dev-20260409-47ebca7
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.md +3 -3
- package/dist/matterbridgePlatformTypes.d.ts +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|

|
|
8
8
|

|
|
9
9
|
[](https://codecov.io/gh/Luligu/matterbridge)
|
|
10
|
-
[](https://
|
|
11
|
-
[](https://
|
|
10
|
+
[](https://prettier.io/)
|
|
11
|
+
[](https://eslint.org/)
|
|
12
12
|
[](https://www.typescriptlang.org/)
|
|
13
|
-
[](https://nodejs.org/
|
|
13
|
+
[](https://nodejs.org/)
|
|
14
14
|
[](https://matterbridge.io)
|
|
15
15
|
|
|
16
16
|
[](https://www.npmjs.com/package/matter-history)
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import type { VendorId } from '@matter/main/types';
|
|
2
2
|
import type { SystemInformation } from './matterbridgeTypes.js';
|
|
3
3
|
export type PlatformConfigValue = string | number | boolean | bigint | object | undefined | null;
|
|
4
|
-
export type
|
|
4
|
+
export type BasePlatformConfig = {
|
|
5
5
|
name: string;
|
|
6
6
|
type: string;
|
|
7
7
|
version: string;
|
|
8
8
|
debug: boolean;
|
|
9
9
|
unregisterOnShutdown: boolean;
|
|
10
|
-
}
|
|
10
|
+
};
|
|
11
|
+
export type PlatformConfig = BasePlatformConfig & Record<string, PlatformConfigValue>;
|
|
11
12
|
export type PlatformSchemaValue = string | number | boolean | bigint | object | undefined | null;
|
|
12
13
|
export type PlatformSchema = Record<string, PlatformSchemaValue>;
|
|
13
14
|
export type PlatformMatterbridge = {
|
package/package.json
CHANGED