matterbridge 1.2.15 → 1.2.17
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 +39 -0
- package/dist/AirQualityCluster.d.ts.map +1 -1
- package/dist/AirQualityCluster.js.map +1 -1
- package/dist/BridgedDeviceBasicInformationCluster.d.ts +1 -1
- package/dist/BridgedDeviceBasicInformationCluster.d.ts.map +1 -1
- package/dist/BridgedDeviceBasicInformationCluster.js +1 -1
- package/dist/BridgedDeviceBasicInformationCluster.js.map +1 -1
- package/dist/TvocCluster.d.ts.map +1 -1
- package/dist/TvocCluster.js.map +1 -1
- package/dist/cli.js +8 -5
- package/dist/cli.js.map +1 -1
- package/dist/defaultConfigSchema.d.ts +2 -0
- package/dist/defaultConfigSchema.d.ts.map +1 -1
- package/dist/defaultConfigSchema.js +74 -0
- package/dist/defaultConfigSchema.js.map +1 -1
- package/dist/matterbridge.d.ts +21 -6
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +187 -213
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeController.js +1 -1
- package/dist/matterbridgeController.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +49 -75
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +103 -67
- package/dist/matterbridgeDevice.js.map +1 -1
- package/dist/utils.d.ts +19 -1
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +104 -35
- package/dist/utils.js.map +1 -1
- package/frontend/build/asset-manifest.json +3 -3
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/js/main.eab44937.js +3 -0
- package/frontend/build/static/js/main.eab44937.js.map +1 -0
- package/package.json +11 -11
- package/frontend/build/static/js/main.5886e61b.js +0 -3
- package/frontend/build/static/js/main.5886e61b.js.map +0 -1
- /package/frontend/build/static/js/{main.5886e61b.js.LICENSE.txt → main.eab44937.js.LICENSE.txt} +0 -0
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
* See the License for the specific language governing permissions and
|
|
21
21
|
* limitations under the License. *
|
|
22
22
|
*/
|
|
23
|
-
import { ClusterServerHandlers, ColorControl, DoorLock, Identify, LevelControl, OccupancySensing, OnOff, PowerSource, Thermostat, TimeSync, WindowCovering } from '@project-chip/matter-node.js/cluster';
|
|
23
|
+
import { ClusterServerHandlers, ColorControl, DoorLock, Identify, LevelControl, ModeSelect, OccupancySensing, OnOff, PowerSource, Thermostat, TimeSync, WindowCovering } from '@project-chip/matter-node.js/cluster';
|
|
24
24
|
import { ClusterId, EndpointNumber, VendorId } from '@project-chip/matter-node.js/datatype';
|
|
25
25
|
import { Device, DeviceTypeDefinition, Endpoint, EndpointOptions } from '@project-chip/matter-node.js/device';
|
|
26
26
|
import { AtLeastOne } from '@project-chip/matter-node.js/util';
|
|
@@ -29,7 +29,7 @@ import { AirQuality } from './AirQualityCluster.js';
|
|
|
29
29
|
import { AnsiLogger } from 'node-ansi-logger';
|
|
30
30
|
import { TvocMeasurement } from './TvocCluster.js';
|
|
31
31
|
type MakeMandatory<T> = Exclude<T, undefined>;
|
|
32
|
-
|
|
32
|
+
interface MatterbridgeDeviceCommands {
|
|
33
33
|
identify: MakeMandatory<ClusterServerHandlers<typeof Identify.Complete>['identify']>;
|
|
34
34
|
on: MakeMandatory<ClusterServerHandlers<typeof OnOff.Complete>['on']>;
|
|
35
35
|
off: MakeMandatory<ClusterServerHandlers<typeof OnOff.Complete>['off']>;
|
|
@@ -52,7 +52,7 @@ type MatterbridgeDeviceCommands = {
|
|
|
52
52
|
lockDoor: MakeMandatory<ClusterServerHandlers<typeof DoorLock.Complete>['lockDoor']>;
|
|
53
53
|
unlockDoor: MakeMandatory<ClusterServerHandlers<typeof DoorLock.Complete>['unlockDoor']>;
|
|
54
54
|
setpointRaiseLower: MakeMandatory<ClusterServerHandlers<typeof Thermostat.Complete>['setpointRaiseLower']>;
|
|
55
|
-
}
|
|
55
|
+
}
|
|
56
56
|
export declare const onOffSwitch: DeviceTypeDefinition;
|
|
57
57
|
export declare const dimmableSwitch: DeviceTypeDefinition;
|
|
58
58
|
export declare const colorTemperatureSwitch: DeviceTypeDefinition;
|
|
@@ -114,6 +114,14 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
114
114
|
* @returns {Endpoint} - The child endpoint that was added.
|
|
115
115
|
*/
|
|
116
116
|
addChildDeviceTypeWithClusterServer(endpointName: string, deviceTypes: AtLeastOne<DeviceTypeDefinition>, includeServerList: ClusterId[]): Endpoint;
|
|
117
|
+
/**
|
|
118
|
+
* Adds cluster servers to the specified endpoint based on the provided server list.
|
|
119
|
+
*
|
|
120
|
+
* @param {Endpoint} endpoint - The endpoint to add cluster servers to.
|
|
121
|
+
* @param {ClusterId[]} includeServerList - The list of cluster IDs to include.
|
|
122
|
+
* @returns void
|
|
123
|
+
*/
|
|
124
|
+
addClusterServerFromList(endpoint: Endpoint, includeServerList: ClusterId[]): void;
|
|
117
125
|
/**
|
|
118
126
|
* Retrieves a child endpoint by its name.
|
|
119
127
|
*
|
|
@@ -141,7 +149,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
141
149
|
* @param pluginName - The name of the plugin.
|
|
142
150
|
* @returns The serialized Matterbridge device object.
|
|
143
151
|
*/
|
|
144
|
-
serialize(pluginName: string): SerializedMatterbridgeDevice;
|
|
152
|
+
serialize(pluginName: string): SerializedMatterbridgeDevice | undefined;
|
|
145
153
|
/**
|
|
146
154
|
* Returns a default static EveHistoryClusterServer object with the specified voltage, current, power, and consumption values.
|
|
147
155
|
* This shows up in HA as a static sensor!
|
|
@@ -536,12 +544,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
536
544
|
readonly acVoltageDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
537
545
|
readonly acCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
538
546
|
readonly acCurrentDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
539
|
-
readonly acPowerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
540
|
-
* Represents a Matterbridge device.
|
|
541
|
-
* @constructor
|
|
542
|
-
* @param {DeviceTypeDefinition} definition - The definition of the device.
|
|
543
|
-
* @param {EndpointOptions} [options={}] - The options for the device.
|
|
544
|
-
*/
|
|
547
|
+
readonly acPowerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
545
548
|
readonly acPowerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
546
549
|
readonly dcOverloadAlarmsMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
547
550
|
readonly dcVoltageOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
@@ -742,12 +745,12 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
742
745
|
readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
743
746
|
readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
744
747
|
readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
|
|
745
|
-
readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
748
|
+
readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
749
|
+
hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
750
|
+
enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
|
|
751
|
+
colorLoop: import("@project-chip/matter.js/schema").BitFlag;
|
|
749
752
|
xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
750
|
-
|
|
753
|
+
colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
751
754
|
}>, any>;
|
|
752
755
|
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
753
756
|
readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -809,12 +812,12 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
809
812
|
readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
810
813
|
readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
811
814
|
readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
|
|
812
|
-
readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
815
|
+
readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
816
|
+
hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
817
|
+
enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
|
|
818
|
+
colorLoop: import("@project-chip/matter.js/schema").BitFlag;
|
|
816
819
|
xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
817
|
-
|
|
820
|
+
colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
818
821
|
}>, any>;
|
|
819
822
|
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
820
823
|
readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -883,11 +886,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
883
886
|
}>, any>;
|
|
884
887
|
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
885
888
|
readonly lift: import("@project-chip/matter.js/schema").BitFlag;
|
|
886
|
-
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
887
|
-
* Sets the target and current position of the window covering.
|
|
888
|
-
*
|
|
889
|
-
* @param position - The position to set, specified as a number.
|
|
890
|
-
*/
|
|
889
|
+
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
891
890
|
readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
|
|
892
891
|
readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
|
|
893
892
|
readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -904,11 +903,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
904
903
|
readonly currentPositionLiftPercent100ths: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
905
904
|
}, "type" | "configStatus" | "operationalStatus" | "endProductType" | "mode" | "safetyStatus" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
906
905
|
readonly lift: import("@project-chip/matter.js/schema").BitFlag;
|
|
907
|
-
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
908
|
-
* Sets the target and current position of the window covering.
|
|
909
|
-
*
|
|
910
|
-
* @param position - The position to set, specified as a number.
|
|
911
|
-
*/
|
|
906
|
+
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
912
907
|
readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
|
|
913
908
|
readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
|
|
914
909
|
readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -951,21 +946,13 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
951
946
|
}>, any>;
|
|
952
947
|
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
953
948
|
readonly lift: import("@project-chip/matter.js/schema").BitFlag;
|
|
954
|
-
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
955
|
-
* Sets the target and current position of the window covering.
|
|
956
|
-
*
|
|
957
|
-
* @param position - The position to set, specified as a number.
|
|
958
|
-
*/
|
|
949
|
+
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
959
950
|
readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
|
|
960
951
|
readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
|
|
961
952
|
readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
962
953
|
}>>, "physicalClosedLimitLift" | "currentPositionLift" | "numberOfActuationsLift" | "currentPositionLiftPercentage" | "targetPositionLiftPercent100ths" | "currentPositionLiftPercent100ths" | "installedOpenLimitLift" | "installedClosedLimitLift" | "type" | "configStatus" | "operationalStatus" | "endProductType" | "mode" | "safetyStatus" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
963
954
|
readonly lift: import("@project-chip/matter.js/schema").BitFlag;
|
|
964
|
-
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
965
|
-
* Sets the target and current position of the window covering.
|
|
966
|
-
*
|
|
967
|
-
* @param position - The position to set, specified as a number.
|
|
968
|
-
*/
|
|
955
|
+
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
969
956
|
readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
|
|
970
957
|
readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
|
|
971
958
|
readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -979,30 +966,30 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
979
966
|
/**
|
|
980
967
|
* Sets the window covering target position as the current position and stops the movement.
|
|
981
968
|
*/
|
|
982
|
-
setWindowCoveringTargetAsCurrentAndStopped(): void;
|
|
969
|
+
setWindowCoveringTargetAsCurrentAndStopped(endpoint?: Endpoint): void;
|
|
983
970
|
/**
|
|
984
971
|
* Sets the current and target status of a window covering.
|
|
985
972
|
* @param current - The current position of the window covering.
|
|
986
973
|
* @param target - The target position of the window covering.
|
|
987
974
|
* @param status - The movement status of the window covering.
|
|
988
975
|
*/
|
|
989
|
-
setWindowCoveringCurrentTargetStatus(current: number, target: number, status: WindowCovering.MovementStatus): void;
|
|
976
|
+
setWindowCoveringCurrentTargetStatus(current: number, target: number, status: WindowCovering.MovementStatus, endpoint?: Endpoint): void;
|
|
990
977
|
/**
|
|
991
978
|
* Sets the status of the window covering.
|
|
992
979
|
* @param {WindowCovering.MovementStatus} status - The movement status to set.
|
|
993
980
|
*/
|
|
994
|
-
setWindowCoveringStatus(status: WindowCovering.MovementStatus): void;
|
|
981
|
+
setWindowCoveringStatus(status: WindowCovering.MovementStatus, endpoint?: Endpoint): void;
|
|
995
982
|
/**
|
|
996
983
|
* Retrieves the status of the window covering.
|
|
997
984
|
* @returns The global operational status of the window covering.
|
|
998
985
|
*/
|
|
999
|
-
getWindowCoveringStatus(): WindowCovering.MovementStatus | undefined;
|
|
986
|
+
getWindowCoveringStatus(endpoint?: Endpoint): WindowCovering.MovementStatus | undefined;
|
|
1000
987
|
/**
|
|
1001
988
|
* Sets the target and current position of the window covering.
|
|
1002
989
|
*
|
|
1003
990
|
* @param position - The position to set, specified as a number.
|
|
1004
991
|
*/
|
|
1005
|
-
setWindowCoveringTargetAndCurrentPosition(position: number): void;
|
|
992
|
+
setWindowCoveringTargetAndCurrentPosition(position: number, endpoint?: Endpoint): void;
|
|
1006
993
|
/**
|
|
1007
994
|
* Get a default door lock cluster server.
|
|
1008
995
|
*
|
|
@@ -1172,6 +1159,23 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
1172
1159
|
* This method adds a cluster server with default switch features and configurations.
|
|
1173
1160
|
*/
|
|
1174
1161
|
createDefaultSwitchClusterServer(): void;
|
|
1162
|
+
getDefaultModeSelectClusterServer(description: string, supportedModes: ModeSelect.ModeOptionStruct[], currentMode?: number, startUpMode?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
1163
|
+
readonly description: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
|
|
1164
|
+
readonly standardNamespace: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
|
|
1165
|
+
readonly supportedModes: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1166
|
+
label: import("@project-chip/matter.js/tlv").FieldType<string>;
|
|
1167
|
+
mode: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1168
|
+
semanticTags: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1169
|
+
mfgCode: import("@project-chip/matter.js/tlv").FieldType<VendorId | null>;
|
|
1170
|
+
value: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1171
|
+
}>[]>;
|
|
1172
|
+
}>[], any>;
|
|
1173
|
+
readonly currentMode: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
1174
|
+
readonly startUpMode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
1175
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1176
|
+
readonly onOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
1177
|
+
}>>, {}>;
|
|
1178
|
+
createDefaultModeSelectClusterServer(endpoint?: Endpoint): void;
|
|
1175
1179
|
/**
|
|
1176
1180
|
* Get a default occupancy sensing cluster server.
|
|
1177
1181
|
*
|
|
@@ -1405,12 +1409,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
1405
1409
|
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
|
|
1406
1410
|
readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
|
|
1407
1411
|
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1408
|
-
/**
|
|
1409
|
-
* Adds a device type to the list of device types.
|
|
1410
|
-
* If the device type is not already present in the list, it will be added.
|
|
1411
|
-
*
|
|
1412
|
-
* @param {DeviceTypeDefinition} deviceType - The device type to add.
|
|
1413
|
-
*/
|
|
1414
1412
|
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1415
1413
|
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1416
1414
|
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -1418,12 +1416,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
1418
1416
|
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1419
1417
|
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1420
1418
|
}>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1421
|
-
/**
|
|
1422
|
-
* Adds a device type to the list of device types.
|
|
1423
|
-
* If the device type is not already present in the list, it will be added.
|
|
1424
|
-
*
|
|
1425
|
-
* @param {DeviceTypeDefinition} deviceType - The device type to add.
|
|
1426
|
-
*/
|
|
1427
1419
|
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1428
1420
|
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1429
1421
|
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -1443,12 +1435,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
1443
1435
|
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
|
|
1444
1436
|
readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
|
|
1445
1437
|
}, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1446
|
-
/**
|
|
1447
|
-
* Adds a device type to the list of device types.
|
|
1448
|
-
* If the device type is not already present in the list, it will be added.
|
|
1449
|
-
*
|
|
1450
|
-
* @param {DeviceTypeDefinition} deviceType - The device type to add.
|
|
1451
|
-
*/
|
|
1452
1438
|
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1453
1439
|
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1454
1440
|
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -1468,12 +1454,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
1468
1454
|
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
|
|
1469
1455
|
readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
|
|
1470
1456
|
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1471
|
-
/**
|
|
1472
|
-
* Adds a device type to the list of device types.
|
|
1473
|
-
* If the device type is not already present in the list, it will be added.
|
|
1474
|
-
*
|
|
1475
|
-
* @param {DeviceTypeDefinition} deviceType - The device type to add.
|
|
1476
|
-
*/
|
|
1477
1457
|
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1478
1458
|
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1479
1459
|
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -1481,12 +1461,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
1481
1461
|
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1482
1462
|
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1483
1463
|
}>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1484
|
-
/**
|
|
1485
|
-
* Adds a device type to the list of device types.
|
|
1486
|
-
* If the device type is not already present in the list, it will be added.
|
|
1487
|
-
*
|
|
1488
|
-
* @param {DeviceTypeDefinition} deviceType - The device type to add.
|
|
1489
|
-
*/
|
|
1490
1464
|
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1491
1465
|
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1492
1466
|
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"matterbridgeDevice.d.ts","sourceRoot":"","sources":["../src/matterbridgeDevice.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"matterbridgeDevice.d.ts","sourceRoot":"","sources":["../src/matterbridgeDevice.ts"],"names":[],"mappings":"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"}
|