@matterbridge/core 3.7.3-dev-20260408-abfa6ac → 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 CHANGED
@@ -7,10 +7,10 @@
7
7
  ![Node.js CI](https://github.com/Luligu/matterbridge/actions/workflows/build.yml/badge.svg)
8
8
  ![CodeQL](https://github.com/Luligu/matterbridge/actions/workflows/codeql.yml/badge.svg)
9
9
  [![codecov](https://codecov.io/gh/Luligu/matterbridge/branch/main/graph/badge.svg)](https://codecov.io/gh/Luligu/matterbridge)
10
- [![styled with prettier](https://img.shields.io/badge/styled_with-Prettier-f8bc45.svg?logo=prettier)](https://github.com/prettier/prettier)
11
- [![linted with eslint](https://img.shields.io/badge/linted_with-ES_Lint-4B32C3.svg?logo=eslint)](https://github.com/eslint/eslint)
10
+ [![styled with prettier](https://img.shields.io/badge/styled_with-Prettier-f8bc45.svg?logo=prettier)](https://prettier.io/)
11
+ [![linted with eslint](https://img.shields.io/badge/linted_with-ES_Lint-4B32C3.svg?logo=eslint)](https://eslint.org/)
12
12
  [![TypeScript](https://img.shields.io/badge/TypeScript-3178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
13
- [![ESM](https://img.shields.io/badge/ESM-Node.js-339933?logo=node.js&logoColor=white)](https://nodejs.org/api/esm.html)
13
+ [![ESM](https://img.shields.io/badge/ESM-Node.js-339933?logo=node.js&logoColor=white)](https://nodejs.org/)
14
14
  [![matterbridge.io](https://img.shields.io/badge/matterbridge.io-online-brightgreen)](https://matterbridge.io)
15
15
 
16
16
  [![powered by](https://img.shields.io/badge/powered%20by-matter--history-blue)](https://www.npmjs.com/package/matter-history)
@@ -819,7 +819,7 @@ export function getDefaultDeviceEnergyManagementModeClusterServer(currentMode, s
819
819
  mode: 3,
820
820
  modeTags: [{ value: DeviceEnergyManagementMode.ModeTag.GridOptimization }, { value: DeviceEnergyManagementMode.ModeTag.LocalOptimization }],
821
821
  },
822
- { label: 'Grid Energy Managemen', mode: 4, modeTags: [{ value: DeviceEnergyManagementMode.ModeTag.GridOptimization }] },
822
+ { label: 'Grid Energy Management', mode: 4, modeTags: [{ value: DeviceEnergyManagementMode.ModeTag.GridOptimization }] },
823
823
  {
824
824
  label: 'Full Energy Management',
825
825
  mode: 5,
@@ -3,7 +3,7 @@ import type { ApiSelectDevice, ApiSelectEntity, PlatformConfig, PlatformMatterbr
3
3
  import { AnsiLogger, LogLevel } from 'node-ansi-logger';
4
4
  import { NodeStorage } from 'node-persist-manager';
5
5
  import { MatterbridgeEndpoint } from './matterbridgeEndpoint.js';
6
- export type { PlatformConfig, PlatformConfigValue, PlatformMatterbridge, PlatformSchema, PlatformSchemaValue } from '@matterbridge/types';
6
+ export type { BasePlatformConfig, PlatformConfig, PlatformConfigValue, PlatformMatterbridge, PlatformSchema, PlatformSchemaValue } from '@matterbridge/types';
7
7
  export declare function isMatterbridgePlatform(value: unknown): value is MatterbridgePlatform;
8
8
  export declare function assertMatterbridgePlatform(value: unknown, context?: string): asserts value is MatterbridgePlatform;
9
9
  export declare class MatterbridgePlatform {
@@ -68,6 +68,7 @@ export class MatterbridgePlatform {
68
68
  this.matterbridge = matterbridge;
69
69
  this.log = log;
70
70
  this.config = config;
71
+ this.name = config.name;
71
72
  this.#server = new BroadcastServer('platform', this.log);
72
73
  Object.defineProperty(this, MATTERBRIDGE_PLATFORM_BRAND, {
73
74
  value: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matterbridge/core",
3
- "version": "3.7.3-dev-20260408-abfa6ac",
3
+ "version": "3.7.3-dev-20260409-47ebca7",
4
4
  "description": "Matterbridge core library",
5
5
  "author": "https://github.com/Luligu",
6
6
  "homepage": "https://matterbridge.io/",
@@ -126,10 +126,10 @@
126
126
  ],
127
127
  "dependencies": {
128
128
  "@matter/main": "0.16.10",
129
- "@matterbridge/dgram": "3.7.3-dev-20260408-abfa6ac",
130
- "@matterbridge/thread": "3.7.3-dev-20260408-abfa6ac",
131
- "@matterbridge/types": "3.7.3-dev-20260408-abfa6ac",
132
- "@matterbridge/utils": "3.7.3-dev-20260408-abfa6ac",
129
+ "@matterbridge/dgram": "3.7.3-dev-20260409-47ebca7",
130
+ "@matterbridge/thread": "3.7.3-dev-20260409-47ebca7",
131
+ "@matterbridge/types": "3.7.3-dev-20260409-47ebca7",
132
+ "@matterbridge/utils": "3.7.3-dev-20260409-47ebca7",
133
133
  "escape-html": "1.0.3",
134
134
  "express": "5.2.1",
135
135
  "express-rate-limit": "8.3.2",