@matterbridge/core 3.9.4 → 3.9.5-dev-20260711-453683c
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/activatedCarbonFilterMonitoringServer.d.ts +1 -1
- package/dist/behaviors/booleanStateConfigurationServer.d.ts +2 -2
- package/dist/behaviors/colorControlServer.d.ts +9 -9
- package/dist/behaviors/deviceEnergyManagementServer.d.ts +4 -4
- package/dist/behaviors/doorLockServer.d.ts +17 -17
- package/dist/behaviors/fanControlServer.d.ts +2 -2
- package/dist/behaviors/hepaFilterMonitoringServer.d.ts +1 -1
- package/dist/behaviors/smokeCoAlarmServer.d.ts +1 -1
- package/dist/behaviors/thermostatServer.d.ts +10 -10
- package/dist/behaviors/valveConfigurationAndControlServer.d.ts +1 -1
- package/dist/behaviors/windowCoveringServer.d.ts +5 -5
- package/dist/clusters/closure-control.d.ts +1 -1
- package/dist/clusters/closure-dimension.d.ts +1 -1
- package/dist/clusters/soil-measurement.d.ts +1 -1
- package/dist/devices/closure.d.ts +6 -6
- package/dist/devices/closurePanel.d.ts +6 -6
- package/dist/devices/evse.d.ts +2 -2
- package/dist/devices/temperatureControl.d.ts +2 -2
- package/dist/jestutils/jestMatterTest.js +4 -4
- package/dist/jestutils/jestMatterbridgeTest.js +1 -1
- package/dist/matterbridgeEndpointHelpers.d.ts +21 -21
- package/package.json +9 -5
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ActivatedCarbonFilterMonitoringServer } from '@matter/node/behaviors/activated-carbon-filter-monitoring';
|
|
2
2
|
import type { ActivatedCarbonFilterMonitoring } from '@matter/types/clusters/activated-carbon-filter-monitoring';
|
|
3
3
|
declare const MatterbridgeActivatedCarbonFilterMonitoringServer_base: import("@matter/node").ClusterBehavior.Type<typeof ActivatedCarbonFilterMonitoringServer, import("@matter/types").ClusterType.WithSupportedFeatures<ActivatedCarbonFilterMonitoring, {
|
|
4
|
-
warning: false;
|
|
5
4
|
condition: true;
|
|
6
5
|
replacementProductList: false;
|
|
6
|
+
warning: false;
|
|
7
7
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "activatedCarbonFilterMonitoring">;
|
|
8
8
|
export declare class MatterbridgeActivatedCarbonFilterMonitoringServer extends MatterbridgeActivatedCarbonFilterMonitoringServer_base {
|
|
9
9
|
resetCondition(): Promise<void>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BooleanStateConfigurationServer } from '@matter/node/behaviors/boolean-state-configuration';
|
|
2
2
|
import { BooleanStateConfiguration } from '@matter/types/clusters/boolean-state-configuration';
|
|
3
3
|
declare const MatterbridgeBooleanStateConfigurationServer_base: import("@matter/node").ClusterBehavior.Type<typeof BooleanStateConfigurationServer, import("@matter/types").ClusterType.WithSupportedFeatures<BooleanStateConfiguration, {
|
|
4
|
-
visual: true;
|
|
5
|
-
audible: true;
|
|
6
4
|
alarmSuppress: false;
|
|
5
|
+
audible: true;
|
|
7
6
|
sensitivityLevel: true;
|
|
7
|
+
visual: true;
|
|
8
8
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "booleanStateConfiguration">;
|
|
9
9
|
export declare class MatterbridgeBooleanStateConfigurationServer extends MatterbridgeBooleanStateConfigurationServer_base {
|
|
10
10
|
enableDisableAlarm(request: BooleanStateConfiguration.EnableDisableAlarmRequest): Promise<void>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { ColorControlServer } from '@matter/node/behaviors/color-control';
|
|
2
2
|
import { ColorControl } from '@matter/types/clusters/color-control';
|
|
3
3
|
declare const MatterbridgeColorControlServer_base: import("@matter/node").ClusterBehavior.Type<typeof ColorControlServer, import("@matter/types").ClusterType.WithSupportedFeatures<ColorControl, {
|
|
4
|
-
hueSaturation: true;
|
|
5
|
-
enhancedHue: true;
|
|
6
4
|
colorLoop: false;
|
|
7
|
-
xy: true;
|
|
8
5
|
colorTemperature: true;
|
|
6
|
+
enhancedHue: true;
|
|
7
|
+
hueSaturation: true;
|
|
8
|
+
xy: true;
|
|
9
9
|
}>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/color-control").ColorControlBaseServer.Internal, "colorControl">;
|
|
10
10
|
export declare class MatterbridgeColorControlServer extends MatterbridgeColorControlServer_base {
|
|
11
11
|
moveToHue(request: ColorControl.MoveToHueRequest): Promise<void>;
|
|
@@ -17,17 +17,17 @@ export declare class MatterbridgeColorControlServer extends MatterbridgeColorCon
|
|
|
17
17
|
moveToColorTemperature(request: ColorControl.MoveToColorTemperatureRequest): Promise<void>;
|
|
18
18
|
}
|
|
19
19
|
declare const MatterbridgeEnhancedColorControlServer_base: import("@matter/node").ClusterBehavior.Type<typeof MatterbridgeColorControlServer, import("@matter/types").ClusterType.WithSupportedFeatures<import("@matter/types").ClusterType.WithSupportedFeatures<ColorControl, {
|
|
20
|
-
hueSaturation: true;
|
|
21
|
-
enhancedHue: true;
|
|
22
20
|
colorLoop: false;
|
|
23
|
-
xy: true;
|
|
24
21
|
colorTemperature: true;
|
|
25
|
-
}>, {
|
|
26
|
-
hueSaturation: true;
|
|
27
22
|
enhancedHue: true;
|
|
28
|
-
|
|
23
|
+
hueSaturation: true;
|
|
29
24
|
xy: true;
|
|
25
|
+
}>, {
|
|
26
|
+
colorLoop: false;
|
|
30
27
|
colorTemperature: true;
|
|
28
|
+
enhancedHue: true;
|
|
29
|
+
hueSaturation: true;
|
|
30
|
+
xy: true;
|
|
31
31
|
}>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/color-control").ColorControlBaseServer.Internal, "colorControl">;
|
|
32
32
|
export declare class MatterbridgeEnhancedColorControlServer extends MatterbridgeEnhancedColorControlServer_base {
|
|
33
33
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { DeviceEnergyManagementServer } from '@matter/node/behaviors/device-energy-management';
|
|
2
2
|
import { DeviceEnergyManagement } from '@matter/types/clusters/device-energy-management';
|
|
3
3
|
declare const MatterbridgeDeviceEnergyManagementServer_base: import("@matter/node").ClusterBehavior.Type<typeof DeviceEnergyManagementServer, import("@matter/types").ClusterType.WithSupportedFeatures<DeviceEnergyManagement, {
|
|
4
|
+
constraintBasedAdjustment: false;
|
|
5
|
+
forecastAdjustment: false;
|
|
6
|
+
pausable: false;
|
|
4
7
|
powerAdjustment: true;
|
|
5
8
|
powerForecastReporting: true;
|
|
6
|
-
stateForecastReporting: false;
|
|
7
9
|
startTimeAdjustment: false;
|
|
8
|
-
|
|
9
|
-
forecastAdjustment: false;
|
|
10
|
-
constraintBasedAdjustment: false;
|
|
10
|
+
stateForecastReporting: false;
|
|
11
11
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "deviceEnergyManagement">;
|
|
12
12
|
export declare class MatterbridgeDeviceEnergyManagementServer extends MatterbridgeDeviceEnergyManagementServer_base {
|
|
13
13
|
powerAdjustRequest(request: DeviceEnergyManagement.PowerAdjustRequest): Promise<void>;
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
import { DoorLockServer } from '@matter/node/behaviors/door-lock';
|
|
2
2
|
import { DoorLock } from '@matter/types/clusters/door-lock';
|
|
3
3
|
declare const MatterbridgeDoorLockServer_base: import("@matter/node").ClusterBehavior.Type<import("@matter/node").ClusterBehavior.Type<typeof DoorLockServer, import("@matter/types").ClusterType.WithSupportedFeatures<DoorLock, {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
weekDayAccessSchedules: false;
|
|
4
|
+
aliroBleuwb: false;
|
|
5
|
+
aliroProvisioning: false;
|
|
6
|
+
credentialOverTheAirAccess: false;
|
|
8
7
|
doorPositionSensor: false;
|
|
9
8
|
faceCredentials: false;
|
|
10
|
-
|
|
11
|
-
user: true;
|
|
12
|
-
yearDayAccessSchedules: false;
|
|
9
|
+
fingerCredentials: false;
|
|
13
10
|
holidaySchedules: false;
|
|
14
|
-
unbolting: false;
|
|
15
|
-
aliroProvisioning: false;
|
|
16
|
-
aliroBleuwb: false;
|
|
17
|
-
}>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/door-lock").DoorLockBaseServer.Internal, "doorLock">, import("@matter/types").ClusterType.WithEnabledAttributes<import("@matter/types").ClusterType.WithEnabledEvents<import("@matter/types").ClusterType.WithSupportedFeatures<DoorLock, {
|
|
18
11
|
pinCredential: true;
|
|
19
12
|
rfidCredential: false;
|
|
20
|
-
|
|
13
|
+
unbolting: false;
|
|
14
|
+
user: true;
|
|
21
15
|
weekDayAccessSchedules: false;
|
|
16
|
+
yearDayAccessSchedules: false;
|
|
17
|
+
}>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/door-lock").DoorLockBaseServer.Internal, "doorLock">, import("@matter/types").ClusterType.WithEnabledAttributes<import("@matter/types").ClusterType.WithEnabledEvents<import("@matter/types").ClusterType.WithSupportedFeatures<DoorLock, {
|
|
18
|
+
aliroBleuwb: false;
|
|
19
|
+
aliroProvisioning: false;
|
|
20
|
+
credentialOverTheAirAccess: false;
|
|
22
21
|
doorPositionSensor: false;
|
|
23
22
|
faceCredentials: false;
|
|
24
|
-
|
|
25
|
-
user: true;
|
|
26
|
-
yearDayAccessSchedules: false;
|
|
23
|
+
fingerCredentials: false;
|
|
27
24
|
holidaySchedules: false;
|
|
25
|
+
pinCredential: true;
|
|
26
|
+
rfidCredential: false;
|
|
28
27
|
unbolting: false;
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
user: true;
|
|
29
|
+
weekDayAccessSchedules: false;
|
|
30
|
+
yearDayAccessSchedules: false;
|
|
31
31
|
}>, "doorLockAlarm" | "lockOperation" | "lockOperationError">, never>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/door-lock").DoorLockBaseServer.Internal, "doorLock">;
|
|
32
32
|
export declare class MatterbridgeDoorLockServer extends MatterbridgeDoorLockServer_base {
|
|
33
33
|
initialize(): void;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { FanControlServer } from '@matter/node/behaviors/fan-control';
|
|
2
2
|
import { FanControl } from '@matter/types/clusters/fan-control';
|
|
3
3
|
declare const MatterbridgeFanControlServer_base: import("@matter/node").ClusterBehavior.Type<typeof FanControlServer, import("@matter/types").ClusterType.WithSupportedFeatures<FanControl, {
|
|
4
|
-
step: true;
|
|
5
4
|
airflowDirection: false;
|
|
6
|
-
multiSpeed: false;
|
|
7
5
|
auto: true;
|
|
6
|
+
multiSpeed: false;
|
|
8
7
|
rocking: false;
|
|
8
|
+
step: true;
|
|
9
9
|
wind: false;
|
|
10
10
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "fanControl">;
|
|
11
11
|
export declare class MatterbridgeFanControlServer extends MatterbridgeFanControlServer_base {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { HepaFilterMonitoringServer } from '@matter/node/behaviors/hepa-filter-monitoring';
|
|
2
2
|
import type { HepaFilterMonitoring } from '@matter/types/clusters/hepa-filter-monitoring';
|
|
3
3
|
declare const MatterbridgeHepaFilterMonitoringServer_base: import("@matter/node").ClusterBehavior.Type<typeof HepaFilterMonitoringServer, import("@matter/types").ClusterType.WithSupportedFeatures<HepaFilterMonitoring, {
|
|
4
|
-
warning: false;
|
|
5
4
|
condition: true;
|
|
6
5
|
replacementProductList: false;
|
|
6
|
+
warning: false;
|
|
7
7
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "hepaFilterMonitoring">;
|
|
8
8
|
export declare class MatterbridgeHepaFilterMonitoringServer extends MatterbridgeHepaFilterMonitoringServer_base {
|
|
9
9
|
resetCondition(): Promise<void>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { SmokeCoAlarmServer } from '@matter/node/behaviors/smoke-co-alarm';
|
|
2
2
|
import { SmokeCoAlarm } from '@matter/types/clusters/smoke-co-alarm';
|
|
3
3
|
declare const MatterbridgeSmokeCoAlarmServer_base: import("@matter/node").ClusterBehavior.Type<typeof SmokeCoAlarmServer, import("@matter/types").ClusterType.WithSupportedFeatures<SmokeCoAlarm, {
|
|
4
|
-
smokeAlarm: true;
|
|
5
4
|
coAlarm: true;
|
|
5
|
+
smokeAlarm: true;
|
|
6
6
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "smokeCoAlarm">;
|
|
7
7
|
export declare class MatterbridgeSmokeCoAlarmServer extends MatterbridgeSmokeCoAlarmServer_base {
|
|
8
8
|
selfTestRequest(): Promise<void>;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { ThermostatServer } from '@matter/node/behaviors/thermostat';
|
|
2
2
|
import { Thermostat } from '@matter/types/clusters/thermostat';
|
|
3
3
|
declare const MatterbridgeThermostatServer_base: import("@matter/node").ClusterBehavior.Type<typeof ThermostatServer, import("@matter/types").ClusterType.WithSupportedFeatures<Thermostat, {
|
|
4
|
-
occupancy: false;
|
|
5
|
-
presets: true;
|
|
6
|
-
heating: true;
|
|
7
|
-
cooling: true;
|
|
8
|
-
setback: false;
|
|
9
4
|
autoMode: true;
|
|
5
|
+
cooling: true;
|
|
6
|
+
heating: true;
|
|
10
7
|
localTemperatureNotExposed: false;
|
|
11
8
|
matterScheduleConfiguration: false;
|
|
9
|
+
occupancy: false;
|
|
10
|
+
presets: true;
|
|
11
|
+
setback: false;
|
|
12
12
|
}>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/thermostat").ThermostatBaseServer.Internal, "thermostat">;
|
|
13
13
|
export declare class MatterbridgeThermostatServer extends MatterbridgeThermostatServer_base {
|
|
14
14
|
initialize(): Promise<void>;
|
|
@@ -16,14 +16,14 @@ export declare class MatterbridgeThermostatServer extends MatterbridgeThermostat
|
|
|
16
16
|
setActivePresetRequest(request: Thermostat.SetActivePresetRequest): Promise<void>;
|
|
17
17
|
}
|
|
18
18
|
declare const MatterbridgePresetThermostatServer_base: import("@matter/node").ClusterBehavior.Type<typeof ThermostatServer, import("@matter/types").ClusterType.WithSupportedFeatures<Thermostat, {
|
|
19
|
-
occupancy: false;
|
|
20
|
-
presets: true;
|
|
21
|
-
heating: true;
|
|
22
|
-
cooling: true;
|
|
23
|
-
setback: false;
|
|
24
19
|
autoMode: true;
|
|
20
|
+
cooling: true;
|
|
21
|
+
heating: true;
|
|
25
22
|
localTemperatureNotExposed: false;
|
|
26
23
|
matterScheduleConfiguration: false;
|
|
24
|
+
occupancy: false;
|
|
25
|
+
presets: true;
|
|
26
|
+
setback: false;
|
|
27
27
|
}>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/thermostat").ThermostatBaseServer.Internal, "thermostat">;
|
|
28
28
|
export declare class MatterbridgePresetThermostatServer extends MatterbridgePresetThermostatServer_base {
|
|
29
29
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ValveConfigurationAndControlServer } from '@matter/node/behaviors/valve-configuration-and-control';
|
|
2
2
|
import { ValveConfigurationAndControl } from '@matter/types/clusters/valve-configuration-and-control';
|
|
3
3
|
declare const MatterbridgeValveConfigurationAndControlServer_base: import("@matter/node").ClusterBehavior.Type<typeof ValveConfigurationAndControlServer, import("@matter/types").ClusterType.WithSupportedFeatures<ValveConfigurationAndControl, {
|
|
4
|
-
timeSync: false;
|
|
5
4
|
level: true;
|
|
5
|
+
timeSync: false;
|
|
6
6
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "valveConfigurationAndControl">;
|
|
7
7
|
export declare class MatterbridgeValveConfigurationAndControlServer extends MatterbridgeValveConfigurationAndControlServer_base {
|
|
8
8
|
open(request: ValveConfigurationAndControl.OpenRequest): Promise<void>;
|
|
@@ -2,9 +2,9 @@ import { type WindowCoveringBaseServer, WindowCoveringServer } from '@matter/nod
|
|
|
2
2
|
import { WindowCovering } from '@matter/types/clusters/window-covering';
|
|
3
3
|
declare const MatterbridgeWindowCoveringServer_base: import("@matter/node").ClusterBehavior.Type<typeof WindowCoveringServer, import("@matter/types").ClusterType.WithSupportedFeatures<WindowCovering, {
|
|
4
4
|
lift: true;
|
|
5
|
-
tilt: true;
|
|
6
5
|
positionAwareLift: true;
|
|
7
6
|
positionAwareTilt: true;
|
|
7
|
+
tilt: true;
|
|
8
8
|
}>, import("@matter/types").ClusterType.Concrete, typeof WindowCoveringBaseServer.Internal, "windowCovering">;
|
|
9
9
|
export declare class MatterbridgeWindowCoveringServer extends MatterbridgeWindowCoveringServer_base {
|
|
10
10
|
protected internal: WindowCoveringBaseServer.Internal;
|
|
@@ -20,27 +20,27 @@ export declare class MatterbridgeWindowCoveringServer extends MatterbridgeWindow
|
|
|
20
20
|
}
|
|
21
21
|
declare const MatterbridgeLiftWindowCoveringServer_base: import("@matter/node").ClusterBehavior.Type<typeof MatterbridgeWindowCoveringServer, import("@matter/types").ClusterType.WithSupportedFeatures<import("@matter/types").ClusterType.WithSupportedFeatures<WindowCovering, {
|
|
22
22
|
lift: true;
|
|
23
|
-
tilt: true;
|
|
24
23
|
positionAwareLift: true;
|
|
25
24
|
positionAwareTilt: true;
|
|
25
|
+
tilt: true;
|
|
26
26
|
}>, {
|
|
27
27
|
lift: true;
|
|
28
|
-
tilt: false;
|
|
29
28
|
positionAwareLift: true;
|
|
30
29
|
positionAwareTilt: false;
|
|
30
|
+
tilt: false;
|
|
31
31
|
}>, import("@matter/types").ClusterType.Concrete, typeof WindowCoveringBaseServer.Internal, "windowCovering">;
|
|
32
32
|
export declare class MatterbridgeLiftWindowCoveringServer extends MatterbridgeLiftWindowCoveringServer_base {
|
|
33
33
|
}
|
|
34
34
|
declare const MatterbridgeLiftTiltWindowCoveringServer_base: import("@matter/node").ClusterBehavior.Type<typeof MatterbridgeWindowCoveringServer, import("@matter/types").ClusterType.WithSupportedFeatures<import("@matter/types").ClusterType.WithSupportedFeatures<WindowCovering, {
|
|
35
35
|
lift: true;
|
|
36
|
-
tilt: true;
|
|
37
36
|
positionAwareLift: true;
|
|
38
37
|
positionAwareTilt: true;
|
|
38
|
+
tilt: true;
|
|
39
39
|
}>, {
|
|
40
40
|
lift: true;
|
|
41
|
-
tilt: true;
|
|
42
41
|
positionAwareLift: true;
|
|
43
42
|
positionAwareTilt: true;
|
|
43
|
+
tilt: true;
|
|
44
44
|
}>, import("@matter/types").ClusterType.Concrete, typeof WindowCoveringBaseServer.Internal, "windowCovering">;
|
|
45
45
|
export declare class MatterbridgeLiftTiltWindowCoveringServer extends MatterbridgeLiftTiltWindowCoveringServer_base {
|
|
46
46
|
}
|
|
@@ -130,7 +130,7 @@ export declare namespace ClosureControl {
|
|
|
130
130
|
}
|
|
131
131
|
export declare const ClosureControl: ClusterType.Concrete & {
|
|
132
132
|
readonly id: ClusterId & 260;
|
|
133
|
-
readonly name:
|
|
133
|
+
readonly name: 'ClosureControl';
|
|
134
134
|
readonly revision: 1;
|
|
135
135
|
readonly schema: ClusterModel;
|
|
136
136
|
readonly attributes: ClusterType.AttributeObjects<ClosureControl.Attributes>;
|
|
@@ -148,7 +148,7 @@ export declare namespace ClosureDimension {
|
|
|
148
148
|
}
|
|
149
149
|
export declare const ClosureDimension: ClusterType.Concrete & {
|
|
150
150
|
readonly id: ClusterId & 261;
|
|
151
|
-
readonly name:
|
|
151
|
+
readonly name: 'ClosureDimension';
|
|
152
152
|
readonly revision: 1;
|
|
153
153
|
readonly schema: ClusterModel;
|
|
154
154
|
readonly attributes: ClusterType.AttributeObjects<ClosureDimension.Attributes>;
|
|
@@ -24,7 +24,7 @@ export declare namespace SoilMeasurement {
|
|
|
24
24
|
}
|
|
25
25
|
export declare const SoilMeasurement: ClusterType.Concrete & {
|
|
26
26
|
readonly id: ClusterId & 1072;
|
|
27
|
-
readonly name:
|
|
27
|
+
readonly name: 'SoilMeasurement';
|
|
28
28
|
readonly revision: 1;
|
|
29
29
|
readonly schema: ClusterModel;
|
|
30
30
|
readonly attributes: ClusterType.AttributeObjects<SoilMeasurement.Attributes>;
|
|
@@ -2,15 +2,15 @@ import { ClosureControlServer } from '@matter/node/behaviors/closure-control';
|
|
|
2
2
|
import { ClosureControl } from '@matter/types/clusters/closure-control';
|
|
3
3
|
import { MatterbridgeEndpoint } from '../matterbridgeEndpoint.js';
|
|
4
4
|
declare const MatterbridgeClosureControlServer_base: import("@matter/node").ClusterBehavior.Type<typeof ClosureControlServer, import("@matter/types").ClusterType.WithSupportedFeatures<ClosureControl, {
|
|
5
|
-
|
|
6
|
-
positioning: true;
|
|
7
|
-
motionLatching: true;
|
|
5
|
+
calibration: false;
|
|
8
6
|
instantaneous: false;
|
|
9
|
-
|
|
7
|
+
manuallyOperable: false;
|
|
8
|
+
motionLatching: true;
|
|
10
9
|
pedestrian: false;
|
|
11
|
-
|
|
10
|
+
positioning: true;
|
|
12
11
|
protection: false;
|
|
13
|
-
|
|
12
|
+
speed: true;
|
|
13
|
+
ventilation: false;
|
|
14
14
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "closureControl">;
|
|
15
15
|
export declare class MatterbridgeClosureControlServer extends MatterbridgeClosureControlServer_base {
|
|
16
16
|
moveTo: (request: ClosureControl.MoveToRequest) => Promise<void>;
|
|
@@ -2,14 +2,14 @@ import { ClosureDimensionServer } from '@matter/node/behaviors/closure-dimension
|
|
|
2
2
|
import { ClosureDimension } from '@matter/types/clusters/closure-dimension';
|
|
3
3
|
import { MatterbridgeEndpoint } from '../matterbridgeEndpoint.js';
|
|
4
4
|
declare const MatterbridgeClosureDimensionServer_base: import("@matter/node").ClusterBehavior.Type<typeof ClosureDimensionServer, import("@matter/types").ClusterType.WithSupportedFeatures<ClosureDimension, {
|
|
5
|
-
unit: false;
|
|
6
|
-
speed: true;
|
|
7
|
-
positioning: true;
|
|
8
|
-
motionLatching: true;
|
|
9
5
|
limitation: false;
|
|
10
|
-
translation: false;
|
|
11
|
-
rotation: false;
|
|
12
6
|
modulation: false;
|
|
7
|
+
motionLatching: true;
|
|
8
|
+
positioning: true;
|
|
9
|
+
rotation: false;
|
|
10
|
+
speed: true;
|
|
11
|
+
translation: false;
|
|
12
|
+
unit: false;
|
|
13
13
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "closureDimension">;
|
|
14
14
|
export declare class MatterbridgeClosureDimensionServer extends MatterbridgeClosureDimensionServer_base {
|
|
15
15
|
setTarget: (request: ClosureDimension.SetTargetRequest) => Promise<void>;
|
package/dist/devices/evse.d.ts
CHANGED
|
@@ -11,10 +11,10 @@ export declare class Evse extends MatterbridgeEndpoint {
|
|
|
11
11
|
createDefaultEnergyEvseModeClusterServer(currentMode?: number, supportedModes?: EnergyEvseMode.ModeOption[]): this;
|
|
12
12
|
}
|
|
13
13
|
declare const MatterbridgeEnergyEvseServer_base: import("@matter/node").ClusterBehavior.Type<typeof EnergyEvseServer, import("@matter/types").ClusterType.WithSupportedFeatures<EnergyEvse, {
|
|
14
|
-
rfid: false;
|
|
15
14
|
chargingPreferences: true;
|
|
16
|
-
soCReporting: false;
|
|
17
15
|
plugAndCharge: false;
|
|
16
|
+
rfid: false;
|
|
17
|
+
soCReporting: false;
|
|
18
18
|
v2X: false;
|
|
19
19
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "energyEvse">;
|
|
20
20
|
export declare class MatterbridgeEnergyEvseServer extends MatterbridgeEnergyEvseServer_base {
|
|
@@ -4,8 +4,8 @@ import type { MatterbridgeEndpoint } from '../matterbridgeEndpoint.js';
|
|
|
4
4
|
export declare function createLevelTemperatureControlClusterServer(endpoint: MatterbridgeEndpoint, selectedTemperatureLevel?: number, supportedTemperatureLevels?: string[]): MatterbridgeEndpoint;
|
|
5
5
|
export declare function createNumberTemperatureControlClusterServer(endpoint: MatterbridgeEndpoint, temperatureSetpoint?: number, minTemperature?: number, maxTemperature?: number, step?: number): MatterbridgeEndpoint;
|
|
6
6
|
declare const MatterbridgeLevelTemperatureControlServer_base: import("@matter/node").ClusterBehavior.Type<typeof TemperatureControlServer, import("@matter/types").ClusterType.WithSupportedFeatures<TemperatureControl, {
|
|
7
|
-
temperatureNumber: false;
|
|
8
7
|
temperatureLevel: true;
|
|
8
|
+
temperatureNumber: false;
|
|
9
9
|
temperatureStep: false;
|
|
10
10
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "temperatureControl">;
|
|
11
11
|
export declare class MatterbridgeLevelTemperatureControlServer extends MatterbridgeLevelTemperatureControlServer_base {
|
|
@@ -13,8 +13,8 @@ export declare class MatterbridgeLevelTemperatureControlServer extends Matterbri
|
|
|
13
13
|
setTemperature(request: TemperatureControl.SetTemperatureRequest): Promise<void>;
|
|
14
14
|
}
|
|
15
15
|
declare const MatterbridgeNumberTemperatureControlServer_base: import("@matter/node").ClusterBehavior.Type<typeof TemperatureControlServer, import("@matter/types").ClusterType.WithSupportedFeatures<TemperatureControl, {
|
|
16
|
-
temperatureNumber: true;
|
|
17
16
|
temperatureLevel: false;
|
|
17
|
+
temperatureNumber: true;
|
|
18
18
|
temperatureStep: true;
|
|
19
19
|
}>, import("@matter/types").ClusterType.Concrete, new () => {}, "temperatureControl">;
|
|
20
20
|
export declare class MatterbridgeNumberTemperatureControlServer extends MatterbridgeNumberTemperatureControlServer_base {
|
|
@@ -56,10 +56,10 @@ export function getPlatformMatterbridge() {
|
|
|
56
56
|
matterbridgePluginDirectory: path.join(HOMEDIR, 'Matterbridge'),
|
|
57
57
|
matterbridgeCertDirectory: path.join(HOMEDIR, '.mattercert'),
|
|
58
58
|
globalModulesDirectory: path.join(HOMEDIR, 'node_modules'),
|
|
59
|
-
matterbridgeVersion: '3.9.
|
|
60
|
-
matterbridgeLatestVersion: '3.9.
|
|
61
|
-
matterbridgeDevVersion: '3.9.
|
|
62
|
-
frontendVersion: '3.9.
|
|
59
|
+
matterbridgeVersion: '3.9.5',
|
|
60
|
+
matterbridgeLatestVersion: '3.9.5',
|
|
61
|
+
matterbridgeDevVersion: '3.9.5',
|
|
62
|
+
frontendVersion: '3.9.5',
|
|
63
63
|
bridgeMode: '',
|
|
64
64
|
restartMode: '',
|
|
65
65
|
virtualMode: 'mounted_switch',
|
|
@@ -109,7 +109,7 @@ export async function createMatterbridgeEnvironment() {
|
|
|
109
109
|
matterbridge = await Matterbridge.loadInstance(false);
|
|
110
110
|
expect(matterbridge).toBeDefined();
|
|
111
111
|
expect(matterbridge).toBeInstanceOf(Matterbridge);
|
|
112
|
-
matterbridge.matterbridgeVersion = '3.9.
|
|
112
|
+
matterbridge.matterbridgeVersion = '3.9.5';
|
|
113
113
|
matterbridge.bridgeMode = 'bridge';
|
|
114
114
|
matterbridge.rootDirectory = path.join(HOMEDIR);
|
|
115
115
|
matterbridge.homeDirectory = path.join(HOMEDIR);
|
|
@@ -62,67 +62,67 @@ export declare function setCluster(endpoint: MatterbridgeEndpoint, cluster: Beha
|
|
|
62
62
|
export declare function getCluster(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, log?: AnsiLogger): Record<string, boolean | number | bigint | string | object | undefined | null> | undefined;
|
|
63
63
|
export declare function triggerEvent(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, event: string, payload: Record<string, boolean | number | bigint | string | object | undefined | null>, log?: AnsiLogger): Promise<boolean>;
|
|
64
64
|
export declare function getDefaultPowerSourceWiredClusterServer(wiredCurrentType?: PowerSource.WiredCurrentType): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<PowerSource, {
|
|
65
|
-
wired: true;
|
|
66
65
|
battery: false;
|
|
67
66
|
rechargeable: false;
|
|
68
67
|
replaceable: false;
|
|
68
|
+
wired: true;
|
|
69
69
|
}>, typeof MatterbridgePowerSourceServer>>;
|
|
70
70
|
export declare function getDefaultPowerSourceBatteryClusterServer(batPercentRemaining?: null | number, batChargeLevel?: PowerSource.BatChargeLevel, batVoltage?: null | number, batReplaceability?: PowerSource.BatReplaceability): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<PowerSource, {
|
|
71
|
-
wired: false;
|
|
72
71
|
battery: true;
|
|
73
72
|
rechargeable: false;
|
|
74
73
|
replaceable: false;
|
|
74
|
+
wired: false;
|
|
75
75
|
}>, typeof MatterbridgePowerSourceServer>>;
|
|
76
76
|
export declare function getDefaultPowerSourceReplaceableBatteryClusterServer(batPercentRemaining?: number | null, batChargeLevel?: PowerSource.BatChargeLevel, batVoltage?: number | null, batReplacementDescription?: string, batQuantity?: number, batReplaceability?: PowerSource.BatReplaceability): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<PowerSource, {
|
|
77
|
-
wired: false;
|
|
78
77
|
battery: true;
|
|
79
78
|
rechargeable: false;
|
|
80
79
|
replaceable: true;
|
|
80
|
+
wired: false;
|
|
81
81
|
}>, typeof MatterbridgePowerSourceServer>>;
|
|
82
82
|
export declare function getDefaultPowerSourceRechargeableBatteryClusterServer(batPercentRemaining?: number | null, batChargeLevel?: PowerSource.BatChargeLevel, batVoltage?: number | null, batReplaceability?: PowerSource.BatReplaceability): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<PowerSource, {
|
|
83
|
-
wired: false;
|
|
84
83
|
battery: true;
|
|
85
84
|
rechargeable: true;
|
|
86
85
|
replaceable: false;
|
|
86
|
+
wired: false;
|
|
87
87
|
}>, typeof MatterbridgePowerSourceServer>>;
|
|
88
88
|
export declare function getDefaultElectricalEnergyMeasurementClusterServer(energyImported?: number | bigint | null, energyExported?: number | bigint | null): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<ElectricalEnergyMeasurement, {
|
|
89
|
-
|
|
90
|
-
exportedEnergy: true;
|
|
89
|
+
apparentEnergy: false;
|
|
91
90
|
cumulativeEnergy: true;
|
|
91
|
+
exportedEnergy: true;
|
|
92
|
+
importedEnergy: true;
|
|
92
93
|
periodicEnergy: false;
|
|
93
|
-
apparentEnergy: false;
|
|
94
94
|
reactiveEnergy: false;
|
|
95
95
|
}>, typeof ElectricalEnergyMeasurementServer>>;
|
|
96
96
|
export declare function getDefaultElectricalPowerMeasurementClusterServer(voltage?: number | bigint | null, current?: number | bigint | null, power?: number | bigint | null, frequency?: number | bigint | null): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<ElectricalPowerMeasurement, {
|
|
97
|
-
directCurrent: false;
|
|
98
97
|
alternatingCurrent: true;
|
|
99
|
-
|
|
98
|
+
directCurrent: false;
|
|
100
99
|
harmonics: false;
|
|
100
|
+
polyphasePower: false;
|
|
101
101
|
powerQuality: false;
|
|
102
102
|
}>, typeof ElectricalPowerMeasurementServer>>;
|
|
103
103
|
export declare function getApparentElectricalPowerMeasurementClusterServer(voltage?: number | bigint | null, apparentCurrent?: number | bigint | null, apparentPower?: number | bigint | null, frequency?: number | bigint | null): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<ElectricalPowerMeasurement, {
|
|
104
|
-
directCurrent: false;
|
|
105
104
|
alternatingCurrent: true;
|
|
106
|
-
|
|
105
|
+
directCurrent: false;
|
|
107
106
|
harmonics: false;
|
|
107
|
+
polyphasePower: false;
|
|
108
108
|
powerQuality: false;
|
|
109
109
|
}>, typeof ElectricalPowerMeasurementServer>>;
|
|
110
110
|
export declare function getDefaultDeviceEnergyManagementClusterServer(esaType?: DeviceEnergyManagement.EsaType, esaCanGenerate?: boolean, esaState?: DeviceEnergyManagement.EsaState, absMinPower?: number, absMaxPower?: number): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<ClusterType.WithSupportedFeatures<DeviceEnergyManagement, {
|
|
111
|
+
constraintBasedAdjustment: false;
|
|
112
|
+
forecastAdjustment: false;
|
|
113
|
+
pausable: false;
|
|
111
114
|
powerAdjustment: true;
|
|
112
115
|
powerForecastReporting: true;
|
|
113
|
-
stateForecastReporting: false;
|
|
114
116
|
startTimeAdjustment: false;
|
|
115
|
-
|
|
116
|
-
forecastAdjustment: false;
|
|
117
|
-
constraintBasedAdjustment: false;
|
|
117
|
+
stateForecastReporting: false;
|
|
118
118
|
}>, {
|
|
119
|
+
constraintBasedAdjustment: false;
|
|
120
|
+
forecastAdjustment: false;
|
|
121
|
+
pausable: false;
|
|
119
122
|
powerAdjustment: true;
|
|
120
123
|
powerForecastReporting: true;
|
|
121
|
-
stateForecastReporting: false;
|
|
122
124
|
startTimeAdjustment: false;
|
|
123
|
-
|
|
124
|
-
forecastAdjustment: false;
|
|
125
|
-
constraintBasedAdjustment: false;
|
|
125
|
+
stateForecastReporting: false;
|
|
126
126
|
}>, typeof MatterbridgeDeviceEnergyManagementServer>>;
|
|
127
127
|
export declare function getDefaultDeviceEnergyManagementModeClusterServer(currentMode?: number, supportedModes?: DeviceEnergyManagementMode.ModeOption[]): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<DeviceEnergyManagementMode, {
|
|
128
128
|
onOff: false;
|
|
@@ -134,13 +134,13 @@ export declare function getDefaultPressureMeasurementClusterServer(measuredValue
|
|
|
134
134
|
export declare function getDefaultIlluminanceMeasurementClusterServer(measuredValue?: number | null, minMeasuredValue?: number | null, maxMeasuredValue?: number | null): Partial<import("@matter/node").ClusterState.Type<IlluminanceMeasurement, typeof ClusterBehavior>>;
|
|
135
135
|
export declare function getDefaultFlowMeasurementClusterServer(measuredValue?: number | null, minMeasuredValue?: number | null, maxMeasuredValue?: number | null): Partial<import("@matter/node").ClusterState.Type<FlowMeasurement, typeof ClusterBehavior>>;
|
|
136
136
|
export declare function getDefaultOccupancySensingClusterServer(occupied?: boolean, holdTime?: number, holdTimeMin?: number, holdTimeMax?: number): Partial<import("@matter/node").ClusterState.Type<ClusterType.WithSupportedFeatures<OccupancySensing, {
|
|
137
|
+
activeInfrared: false;
|
|
137
138
|
other: false;
|
|
138
139
|
passiveInfrared: true;
|
|
139
|
-
ultrasonic: false;
|
|
140
140
|
physicalContact: false;
|
|
141
|
-
activeInfrared: false;
|
|
142
141
|
radar: false;
|
|
143
142
|
rfSensing: false;
|
|
143
|
+
ultrasonic: false;
|
|
144
144
|
vision: false;
|
|
145
145
|
}>, typeof OccupancySensingServer>>;
|
|
146
146
|
export declare function getDefaultSoilMeasurementClusterServer(soilMoistureMeasuredValue?: number | null, soilMoistureMeasurementLimits?: MeasurementAccuracy): Partial<import("@matter/node").ClusterState.Type<SoilMeasurement, typeof ClusterBehavior>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/core",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.5-dev-20260711-453683c",
|
|
4
4
|
"description": "Matterbridge core library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -128,12 +128,16 @@
|
|
|
128
128
|
"npm-shrinkwrap.json",
|
|
129
129
|
"CHANGELOG.md"
|
|
130
130
|
],
|
|
131
|
+
"automator": {
|
|
132
|
+
"skipPackageJson": true,
|
|
133
|
+
"skipTsconfig": true
|
|
134
|
+
},
|
|
131
135
|
"dependencies": {
|
|
132
136
|
"@matter/main": "0.17.4",
|
|
133
|
-
"@matterbridge/dgram": "3.9.
|
|
134
|
-
"@matterbridge/thread": "3.9.
|
|
135
|
-
"@matterbridge/types": "3.9.
|
|
136
|
-
"@matterbridge/utils": "3.9.
|
|
137
|
+
"@matterbridge/dgram": "3.9.5-dev-20260711-453683c",
|
|
138
|
+
"@matterbridge/thread": "3.9.5-dev-20260711-453683c",
|
|
139
|
+
"@matterbridge/types": "3.9.5-dev-20260711-453683c",
|
|
140
|
+
"@matterbridge/utils": "3.9.5-dev-20260711-453683c",
|
|
137
141
|
"escape-html": "1.0.3",
|
|
138
142
|
"express": "5.2.1",
|
|
139
143
|
"express-rate-limit": "8.5.2",
|