@matterbridge/core 3.7.8-dev-20260505-8558313 → 3.7.8-dev-20260506-bd78ae0
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/dist/behaviors/bindingServer.d.ts +2 -2
- package/dist/behaviors/bindingServer.js +2 -2
- package/dist/devices/batteryStorage.js +2 -2
- package/dist/devices/irrigationSystem.js +1 -1
- package/dist/jestutils/jestMatterRequest.d.ts +2 -2
- package/dist/jestutils/jestMatterRequest.js +1 -1
- package/dist/matterbridgeEndpointCommandHandler.d.ts +1 -1
- package/package.json +5 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BindingBehavior } from '@matter/
|
|
2
|
-
import { ClusterId } from '@matter/
|
|
1
|
+
import { BindingBehavior } from '@matter/node/behaviors/binding';
|
|
2
|
+
import { ClusterId } from '@matter/types';
|
|
3
3
|
export declare class MatterbridgeBindingServer extends BindingBehavior {
|
|
4
4
|
protected internal: MatterbridgeBindingServer.Internal;
|
|
5
5
|
state: MatterbridgeBindingServer.State;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BindingBehavior } from '@matter/
|
|
2
|
-
import { DescriptorServer } from '@matter/
|
|
1
|
+
import { BindingBehavior } from '@matter/node/behaviors/binding';
|
|
2
|
+
import { DescriptorServer } from '@matter/node/behaviors/descriptor';
|
|
3
3
|
import { MatterbridgeServer } from './matterbridgeServer.js';
|
|
4
4
|
export class MatterbridgeBindingServer extends BindingBehavior {
|
|
5
5
|
async initialize() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ElectricalPowerMeasurementServer } from '@matter/main/behaviors/electrical-power-measurement';
|
|
2
|
-
import { ElectricalPowerMeasurement } from '@matter/main/clusters/electrical-power-measurement';
|
|
3
1
|
import { PowerSourceTag } from '@matter/node';
|
|
2
|
+
import { ElectricalPowerMeasurementServer } from '@matter/node/behaviors/electrical-power-measurement';
|
|
4
3
|
import { DeviceEnergyManagement } from '@matter/types/clusters/device-energy-management';
|
|
4
|
+
import { ElectricalPowerMeasurement } from '@matter/types/clusters/electrical-power-measurement';
|
|
5
5
|
import { PowerSource } from '@matter/types/clusters/power-source';
|
|
6
6
|
import { batteryStorage, deviceEnergyManagement, electricalSensor, powerSource } from '../matterbridgeDeviceTypes.js';
|
|
7
7
|
import { MatterbridgeEndpoint } from '../matterbridgeEndpoint.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LocationTag } from '@matter/
|
|
1
|
+
import { LocationTag } from '@matter/node';
|
|
2
2
|
import { OperationalState } from '@matter/types/clusters/operational-state';
|
|
3
3
|
import { irrigationSystem, powerSource, waterValve } from '../matterbridgeDeviceTypes.js';
|
|
4
4
|
import { MatterbridgeEndpoint } from '../matterbridgeEndpoint.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ColorControl } from '@matter/
|
|
2
|
-
import { LevelControl } from '@matter/
|
|
1
|
+
import { ColorControl } from '@matter/types/clusters/color-control';
|
|
2
|
+
import { LevelControl } from '@matter/types/clusters/level-control';
|
|
3
3
|
export declare function getMoveToLevelRequest(level: number, transitionTime: number, executeIfOff: boolean): LevelControl.MoveToLevelRequest;
|
|
4
4
|
export declare function getMoveToColorTemperatureRequest(colorTemperatureMireds: number, transitionTime: number, executeIfOff: boolean): ColorControl.MoveToColorTemperatureRequest;
|
|
5
5
|
export declare function getMoveToHueRequest(hue: number, transitionTime: number, executeIfOff: boolean): ColorControl.MoveToHueRequest;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HandlerFunction } from '@matter/general';
|
|
2
|
-
import { ActionContext } from '@matter/
|
|
2
|
+
import { ActionContext } from '@matter/node';
|
|
3
3
|
import type { Attribute } from '@matter/types/cluster';
|
|
4
4
|
import { ActivatedCarbonFilterMonitoring } from '@matter/types/clusters/activated-carbon-filter-monitoring';
|
|
5
5
|
import { BooleanStateConfiguration } from '@matter/types/clusters/boolean-state-configuration';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/core",
|
|
3
|
-
"version": "3.7.8-dev-
|
|
3
|
+
"version": "3.7.8-dev-20260506-bd78ae0",
|
|
4
4
|
"description": "Matterbridge core library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -130,10 +130,10 @@
|
|
|
130
130
|
],
|
|
131
131
|
"dependencies": {
|
|
132
132
|
"@matter/main": "0.16.11",
|
|
133
|
-
"@matterbridge/dgram": "3.7.8-dev-
|
|
134
|
-
"@matterbridge/thread": "3.7.8-dev-
|
|
135
|
-
"@matterbridge/types": "3.7.8-dev-
|
|
136
|
-
"@matterbridge/utils": "3.7.8-dev-
|
|
133
|
+
"@matterbridge/dgram": "3.7.8-dev-20260506-bd78ae0",
|
|
134
|
+
"@matterbridge/thread": "3.7.8-dev-20260506-bd78ae0",
|
|
135
|
+
"@matterbridge/types": "3.7.8-dev-20260506-bd78ae0",
|
|
136
|
+
"@matterbridge/utils": "3.7.8-dev-20260506-bd78ae0",
|
|
137
137
|
"escape-html": "1.0.3",
|
|
138
138
|
"express": "5.2.1",
|
|
139
139
|
"express-rate-limit": "8.5.0",
|