matterbridge 1.4.1 → 1.4.2

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.
Files changed (33) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/README.md +1 -2
  3. package/dist/cluster/AirQualityCluster.d.ts.map +1 -1
  4. package/dist/cluster/AirQualityCluster.js +1 -0
  5. package/dist/cluster/AirQualityCluster.js.map +1 -1
  6. package/dist/cluster/BridgedDeviceBasicInformationCluster.d.ts.map +1 -1
  7. package/dist/cluster/BridgedDeviceBasicInformationCluster.js +1 -0
  8. package/dist/cluster/BridgedDeviceBasicInformationCluster.js.map +1 -1
  9. package/dist/cluster/PowerTopologyCluster.d.ts.map +1 -1
  10. package/dist/cluster/PowerTopologyCluster.js +1 -1
  11. package/dist/cluster/PowerTopologyCluster.js.map +1 -1
  12. package/dist/cluster/TvocCluster.d.ts.map +1 -1
  13. package/dist/cluster/TvocCluster.js +1 -0
  14. package/dist/cluster/TvocCluster.js.map +1 -1
  15. package/dist/matterbridge.d.ts +3 -0
  16. package/dist/matterbridge.d.ts.map +1 -1
  17. package/dist/matterbridge.js +133 -25
  18. package/dist/matterbridge.js.map +1 -1
  19. package/dist/matterbridgeDevice.d.ts +65 -157
  20. package/dist/matterbridgeDevice.d.ts.map +1 -1
  21. package/dist/matterbridgeDevice.js +224 -26
  22. package/dist/matterbridgeDevice.js.map +1 -1
  23. package/dist/utils/utils.d.ts +57 -0
  24. package/dist/utils/utils.d.ts.map +1 -1
  25. package/dist/utils/utils.js +103 -0
  26. package/dist/utils/utils.js.map +1 -1
  27. package/frontend/build/asset-manifest.json +3 -3
  28. package/frontend/build/index.html +1 -1
  29. package/frontend/build/static/js/{main.fd6f85a1.js → main.dec34964.js} +3 -3
  30. package/frontend/build/static/js/main.dec34964.js.map +1 -0
  31. package/package.json +24 -24
  32. package/frontend/build/static/js/main.fd6f85a1.js.map +0 -1
  33. /package/frontend/build/static/js/{main.fd6f85a1.js.LICENSE.txt → main.dec34964.js.LICENSE.txt} +0 -0
@@ -45,9 +45,9 @@ interface MatterbridgeDeviceCommands {
45
45
  offWithEffect: MakeMandatory<ClusterServerHandlers<typeof OnOff.Complete>['offWithEffect']>;
46
46
  moveToLevel: MakeMandatory<ClusterServerHandlers<typeof LevelControl.Complete>['moveToLevel']>;
47
47
  moveToLevelWithOnOff: MakeMandatory<ClusterServerHandlers<typeof LevelControl.Complete>['moveToLevelWithOnOff']>;
48
- moveToColor: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['moveToHue']>;
49
- moveColor: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['moveToHue']>;
50
- stepColor: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['moveToHue']>;
48
+ moveToColor: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['moveToColor']>;
49
+ moveColor: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['moveColor']>;
50
+ stepColor: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['stepColor']>;
51
51
  moveToHue: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['moveToHue']>;
52
52
  moveHue: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['moveHue']>;
53
53
  stepHue: MakeMandatory<ClusterServerHandlers<typeof ColorControl.Complete>['stepHue']>;
@@ -274,6 +274,26 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
274
274
  * @returns {Endpoint | undefined} The child endpoint with the specified label, or undefined if not found.
275
275
  */
276
276
  getChildEndpointWithLabel(label: string): Endpoint | undefined;
277
+ /**
278
+ * Retrieves the value of the specified attribute from the given endpoint and cluster.
279
+ *
280
+ * @param {ClusterId} clusterId - The ID of the cluster to retrieve the attribute from.
281
+ * @param {string} attribute - The name of the attribute to retrieve.
282
+ * @param {AnsiLogger} [log] - Optional logger for error and info messages.
283
+ * @param {Endpoint} [endpoint] - Optional the child endpoint to retrieve the attribute from.
284
+ * @returns {any} The value of the attribute, or undefined if the attribute is not found.
285
+ */
286
+ getAttribute(clusterId: ClusterId, attribute: string, log?: AnsiLogger, endpoint?: Endpoint): any;
287
+ /**
288
+ * Sets the value of an attribute on a cluster server endpoint.
289
+ *
290
+ * @param {ClusterId} clusterId - The ID of the cluster.
291
+ * @param {string} attribute - The name of the attribute.
292
+ * @param {any} value - The value to set for the attribute.
293
+ * @param {AnsiLogger} [log] - (Optional) The logger to use for logging errors and information.
294
+ * @param {Endpoint} [endpoint] - (Optional) The endpoint to set the attribute on. If not provided, the attribute will be set on the current endpoint.
295
+ */
296
+ setAttribute(clusterId: ClusterId, attribute: string, value: any, log?: AnsiLogger, endpoint?: Endpoint): void;
277
297
  /**
278
298
  * Serializes the Matterbridge device into a serialized object.
279
299
  *
@@ -290,7 +310,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
290
310
  /**
291
311
  * Returns a default static EveHistoryClusterServer object with the specified voltage, current, power, and consumption values.
292
312
  * This shows up in HA as a static sensor!
293
- * @deprecated This method is deprecated and will be removed in a future version.
313
+ * @deprecated This method is deprecated and will be removed in a future version. Use MatterHistory.
294
314
  * @param voltage - The voltage value (default: 0).
295
315
  * @param current - The current value (default: 0).
296
316
  * @param power - The power value (default: 0).
@@ -396,7 +416,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
396
416
  /**
397
417
  * Create a default static EveHistoryClusterServer object with the specified voltage, current, power, and consumption values.
398
418
  * This shows up in HA as a static sensor!
399
- * @deprecated This method is deprecated and will be removed in a future version.
419
+ * @deprecated This method is deprecated and will be removed in a future version. Use MatterHistory.
400
420
  * @param voltage - The voltage value (default: 0).
401
421
  * @param current - The current value (default: 0).
402
422
  * @param power - The power value (default: 0).
@@ -406,7 +426,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
406
426
  createDefaultStaticEveHistoryClusterServer(voltage?: number, current?: number, power?: number, consumption?: number): void;
407
427
  /**
408
428
  * Creates a room Eve History Cluster Server.
409
- * @deprecated This method is deprecated and will be removed in a future version.
429
+ * @deprecated This method is deprecated and will be removed in a future version. Use MatterHistory.
410
430
  *
411
431
  * @param history - The MatterHistory object.
412
432
  * @param log - The AnsiLogger object.
@@ -414,7 +434,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
414
434
  createRoomEveHistoryClusterServer(history: MatterHistory, log: AnsiLogger): void;
415
435
  /**
416
436
  * Creates a Weather Eve History Cluster Server.
417
- * @deprecated This method is deprecated and will be removed in a future version.
437
+ * @deprecated This method is deprecated and will be removed in a future version. Use MatterHistory.
418
438
  *
419
439
  * @param history - The MatterHistory instance.
420
440
  * @param log - The AnsiLogger instance.
@@ -422,7 +442,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
422
442
  createWeatherEveHistoryClusterServer(history: MatterHistory, log: AnsiLogger): void;
423
443
  /**
424
444
  * Creates an Energy Eve History Cluster Server.
425
- * @deprecated This method is deprecated and will be removed in a future version.
445
+ * @deprecated This method is deprecated and will be removed in a future version. Use MatterHistory.
426
446
  *
427
447
  * @param history - The MatterHistory object.
428
448
  * @param log - The AnsiLogger object.
@@ -430,7 +450,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
430
450
  createEnergyEveHistoryClusterServer(history: MatterHistory, log: AnsiLogger): void;
431
451
  /**
432
452
  * Creates a Motion Eve History Cluster Server.
433
- * @deprecated This method is deprecated and will be removed in a future version.
453
+ * @deprecated This method is deprecated and will be removed in a future version. Use MatterHistory.
434
454
  *
435
455
  * @param history - The MatterHistory object.
436
456
  * @param log - The AnsiLogger object.
@@ -438,7 +458,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
438
458
  createMotionEveHistoryClusterServer(history: MatterHistory, log: AnsiLogger): void;
439
459
  /**
440
460
  * Creates a door EveHistoryCluster server.
441
- * @deprecated This method is deprecated and will be removed in a future version.
461
+ * @deprecated This method is deprecated and will be removed in a future version. Use MatterHistory.
442
462
  *
443
463
  * @param history - The MatterHistory instance.
444
464
  * @param log - The AnsiLogger instance.
@@ -882,136 +902,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
882
902
  * @param power - The active power value.
883
903
  * @param consumption - The total active power consumption value.
884
904
  */
885
- getDefaultElectricalMeasurementClusterServer(voltage?: number, current?: number, power?: number, consumption?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
886
- readonly measurementType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
887
- readonly dcVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
888
- readonly dcVoltageMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
889
- readonly dcVoltageMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
890
- readonly dcCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
891
- readonly dcCurrentMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
892
- readonly dcCurrentMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
893
- readonly dcPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
894
- readonly dcPowerMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
895
- readonly dcPowerMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
896
- readonly dcVoltageMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
897
- readonly dcVoltageDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
898
- readonly dcCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
899
- readonly dcCurrentDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
900
- readonly dcPowerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
901
- readonly dcPowerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
902
- readonly acFrequency: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
903
- readonly acFrequencyMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
904
- readonly acFrequencyMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
905
- readonly neutralCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
906
- readonly totalActivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
907
- readonly totalReactivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
908
- readonly totalApparentPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
909
- readonly measured1StHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
910
- readonly measured3RdHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
911
- readonly measured5ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
912
- readonly measured7ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
913
- readonly measured9ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
914
- readonly measured11ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
915
- readonly measuredPhase1StHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
916
- readonly measuredPhase3RdHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
917
- readonly measuredPhase5ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
918
- readonly measuredPhase7ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
919
- readonly measuredPhase9ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
920
- readonly measuredPhase11ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
921
- readonly acFrequencyMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
922
- readonly acFrequencyDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
923
- readonly powerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
924
- readonly powerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
925
- readonly harmonicCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
926
- readonly phaseHarmonicCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
927
- readonly instantaneousVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
928
- readonly instantaneousLineCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
929
- readonly instantaneousActiveCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
930
- readonly instantaneousReactiveCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
931
- readonly instantaneousPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
932
- readonly rmsVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
933
- readonly rmsVoltageMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
934
- readonly rmsVoltageMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
935
- readonly rmsCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
936
- readonly rmsCurrentMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
937
- readonly rmsCurrentMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
938
- readonly activePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
939
- readonly activePowerMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
940
- readonly activePowerMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
941
- readonly reactivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
942
- readonly apparentPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
943
- readonly acPowerFactor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
944
- readonly averageRmsVoltageMeasurementPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
945
- readonly averageRmsUnderVoltageCounter: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
946
- readonly rmsExtremeOverVoltagePeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
947
- readonly rmsExtremeUnderVoltagePeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
948
- readonly rmsVoltageSagPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
949
- readonly rmsVoltageSwellPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
950
- readonly acVoltageMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
951
- readonly acVoltageDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
952
- readonly acCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
953
- readonly acCurrentDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
954
- readonly acPowerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
955
- readonly acPowerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
956
- readonly dcOverloadAlarmsMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
957
- readonly dcVoltageOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
958
- readonly dcCurrentOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
959
- readonly acOverloadAlarmsMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
960
- readonly acVoltageOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
961
- readonly acCurrentOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
962
- readonly acPowerOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
963
- readonly acReactivePowerOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
964
- readonly averageRmsOverVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
965
- readonly averageRmsUnderVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
966
- readonly rmsExtremeOverVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
967
- readonly rmsExtremeUnderVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
968
- readonly rmsVoltageSag: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
969
- readonly rmsVoltageSwell: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
970
- readonly lineCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
971
- readonly activeCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
972
- readonly reactiveCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
973
- readonly rmsVoltagePhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
974
- readonly rmsVoltageMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
975
- readonly rmsVoltageMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
976
- readonly rmsCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
977
- readonly rmsCurrentMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
978
- readonly rmsCurrentMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
979
- readonly activePowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
980
- readonly activePowerMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
981
- readonly activePowerMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
982
- readonly reactivePowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
983
- readonly apparentPowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
984
- readonly powerFactorPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
985
- readonly averageRmsVoltageMeasurementPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
986
- readonly averageRmsOverVoltageCounterPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
987
- readonly averageRmsUnderVoltageCounterPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
988
- readonly rmsExtremeOverVoltagePeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
989
- readonly rmsExtremeUnderVoltagePeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
990
- readonly rmsVoltageSagPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
991
- readonly rmsVoltageSwellPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
992
- readonly lineCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
993
- readonly activeCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
994
- readonly reactiveCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
995
- readonly rmsVoltagePhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
996
- readonly rmsVoltageMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
997
- readonly rmsVoltageMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
998
- readonly rmsCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
999
- readonly rmsCurrentMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1000
- readonly rmsCurrentMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1001
- readonly activePowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1002
- readonly activePowerMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1003
- readonly activePowerMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1004
- readonly reactivePowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1005
- readonly apparentPowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1006
- readonly powerFactorPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1007
- readonly averageRmsVoltageMeasurementPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1008
- readonly averageRmsOverVoltageCounterPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1009
- readonly averageRmsUnderVoltageCounterPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1010
- readonly rmsExtremeOverVoltagePeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1011
- readonly rmsExtremeUnderVoltagePeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1012
- readonly rmsVoltageSagPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1013
- readonly rmsVoltageSwellPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1014
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
1015
905
  /**
1016
906
  * @deprecated This method is deprecated and will be removed in a future version.
1017
907
  * Creates a default Electrical Measurement Cluster Server.
@@ -1021,7 +911,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1021
911
  * @param power - The active power value.
1022
912
  * @param consumption - The total active power consumption value.
1023
913
  */
1024
- createDefaultElectricalMeasurementClusterServer(voltage?: number, current?: number, power?: number, consumption?: number): void;
1025
914
  /**
1026
915
  * Creates a default Dummy Thread Network Diagnostics Cluster server.
1027
916
  * @deprecated This method is deprecated and is only used for testing.
@@ -1403,6 +1292,23 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1403
1292
  * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1404
1293
  */
1405
1294
  createDefaultXYColorControlClusterServer(currentX?: number, currentY?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
1295
+ /**
1296
+ * Configures the color control cluster for a device.
1297
+ *
1298
+ * @param {boolean} hueSaturation - A boolean indicating whether the device supports hue and saturation control.
1299
+ * @param {boolean} xy - A boolean indicating whether the device supports XY control.
1300
+ * @param {boolean} colorTemperature - A boolean indicating whether the device supports color temperature control.
1301
+ * @param {ColorControl.ColorMode} colorMode - An optional parameter specifying the color mode of the device.
1302
+ * @param {Endpoint} endpoint - An optional parameter specifying the endpoint to configure. If not provided, the device endpoint will be used.
1303
+ */
1304
+ configureColorControlCluster(hueSaturation: boolean, xy: boolean, colorTemperature: boolean, colorMode?: ColorControl.ColorMode, endpoint?: Endpoint): void;
1305
+ /**
1306
+ * Configures the color control mode for the device.
1307
+ *
1308
+ * @param {ColorControl.ColorMode} colorMode - The color mode to set.
1309
+ * @param {Endpoint} endpoint - The optional endpoint to configure. If not provided, the method will configure the current endpoint.
1310
+ */
1311
+ configureColorControlMode(colorMode: ColorControl.ColorMode, endpoint?: Endpoint): void;
1406
1312
  /**
1407
1313
  * Get a default window covering cluster server.
1408
1314
  *
@@ -1410,19 +1316,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1410
1316
  */
1411
1317
  getDefaultWindowCoveringClusterServer(positionPercent100ths?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1412
1318
  readonly type: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.WindowCoveringType, any>;
1413
- readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema" /**
1414
- * Get a default BridgedDeviceBasicInformationClusterServer.
1415
- *
1416
- * @param deviceName - The name of the device.
1417
- * @param serialNumber - The serial number of the device.
1418
- * @param vendorId - The vendor ID of the device.
1419
- * @param vendorName - The name of the vendor.
1420
- * @param productName - The name of the product.
1421
- * @param softwareVersion - The software version of the device. Default is 1.
1422
- * @param softwareVersionString - The software version string of the device. Default is 'v.1.0.0'.
1423
- * @param hardwareVersion - The hardware version of the device. Default is 1.
1424
- * @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
1425
- */).TypeFromPartialBitSchema<{
1319
+ readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1426
1320
  operational: import("@project-chip/matter.js/schema").BitFlag;
1427
1321
  onlineReserved: import("@project-chip/matter.js/schema").BitFlag;
1428
1322
  liftMovementReversed: import("@project-chip/matter.js/schema").BitFlag;
@@ -1538,22 +1432,27 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1538
1432
  createDefaultWindowCoveringClusterServer(positionPercent100ths?: number): void;
1539
1433
  /**
1540
1434
  * Sets the window covering target position as the current position and stops the movement.
1435
+ * @param {Endpoint} endpoint - The endpoint on which to set the window covering (default the device endpoint).
1541
1436
  */
1542
1437
  setWindowCoveringTargetAsCurrentAndStopped(endpoint?: Endpoint): void;
1543
1438
  /**
1544
1439
  * Sets the current and target status of a window covering.
1545
- * @param current - The current position of the window covering.
1546
- * @param target - The target position of the window covering.
1547
- * @param status - The movement status of the window covering.
1440
+ * @param {number} current - The current position of the window covering.
1441
+ * @param {number} target - The target position of the window covering.
1442
+ * @param {WindowCovering.MovementStatus} status - The movement status of the window covering.
1443
+ * @param {Endpoint} endpoint - The endpoint on which to set the window covering (default the device endpoint).
1548
1444
  */
1549
1445
  setWindowCoveringCurrentTargetStatus(current: number, target: number, status: WindowCovering.MovementStatus, endpoint?: Endpoint): void;
1550
1446
  /**
1551
1447
  * Sets the status of the window covering.
1552
1448
  * @param {WindowCovering.MovementStatus} status - The movement status to set.
1449
+ * @param {Endpoint} endpoint - The endpoint on which to set the window covering (default the device endpoint).
1553
1450
  */
1554
1451
  setWindowCoveringStatus(status: WindowCovering.MovementStatus, endpoint?: Endpoint): void;
1555
1452
  /**
1556
1453
  * Retrieves the status of the window covering.
1454
+ * @param {Endpoint} endpoint - The endpoint on which to get the window covering (default the device endpoint).
1455
+ *
1557
1456
  * @returns The global operational status of the window covering.
1558
1457
  */
1559
1458
  getWindowCoveringStatus(endpoint?: Endpoint): WindowCovering.MovementStatus | undefined;
@@ -1561,6 +1460,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1561
1460
  * Sets the target and current position of the window covering.
1562
1461
  *
1563
1462
  * @param position - The position to set, specified as a number.
1463
+ * @param {Endpoint} endpoint - The endpoint on which to set the window covering (default the device endpoint).
1564
1464
  */
1565
1465
  setWindowCoveringTargetAndCurrentPosition(position: number, endpoint?: Endpoint): void;
1566
1466
  /**
@@ -1786,6 +1686,14 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1786
1686
  * This method adds a cluster server with default latching switch features and configuration.
1787
1687
  */
1788
1688
  createDefaultLatchingSwitchClusterServer(): void;
1689
+ /**
1690
+ * Triggers a switch event on the specified endpoint.
1691
+ *
1692
+ * @param {string} event - The type of event to trigger. Possible values are 'Single', 'Double', 'Long', 'Press', and 'Release'.
1693
+ * @param {Endpoint} endpoint - The endpoint on which to trigger the event (default the device endpoint).
1694
+ * @returns {void}
1695
+ */
1696
+ triggerSwitchEvent(event: 'Single' | 'Double' | 'Long' | 'Press' | 'Release', endpoint?: Endpoint, log?: AnsiLogger): void;
1789
1697
  /**
1790
1698
  * Retrieves the default mode select cluster server.
1791
1699
  *
@@ -1 +1 @@
1
- {"version":3,"file":"matterbridgeDevice.d.ts","sourceRoot":"","sources":["../src/matterbridgeDevice.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"matterbridgeDevice.d.ts","sourceRoot":"","sources":["../src/matterbridgeDevice.ts"],"names":[],"mappings":"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"}