matterbridge 1.5.10 → 1.6.0

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 (47) hide show
  1. package/CHANGELOG.md +23 -3
  2. package/README-SERVICE.md +1 -1
  3. package/README.md +7 -7
  4. package/dist/cluster/export.js +1 -1
  5. package/dist/cluster/export.js.map +1 -1
  6. package/dist/defaultConfigSchema.d.ts.map +1 -1
  7. package/dist/defaultConfigSchema.js +9 -1
  8. package/dist/defaultConfigSchema.js.map +1 -1
  9. package/dist/matterbridge.d.ts +72 -47
  10. package/dist/matterbridge.d.ts.map +1 -1
  11. package/dist/matterbridge.js +144 -118
  12. package/dist/matterbridge.js.map +1 -1
  13. package/dist/matterbridgeDevice.d.ts +137 -1029
  14. package/dist/matterbridgeDevice.d.ts.map +1 -1
  15. package/dist/matterbridgeDevice.js +55 -361
  16. package/dist/matterbridgeDevice.js.map +1 -1
  17. package/dist/matterbridgeEdge.d.ts +90 -0
  18. package/dist/matterbridgeEdge.d.ts.map +1 -0
  19. package/dist/matterbridgeEdge.js +555 -0
  20. package/dist/matterbridgeEdge.js.map +1 -0
  21. package/dist/matterbridgeEndpoint.d.ts +5195 -0
  22. package/dist/matterbridgeEndpoint.d.ts.map +1 -0
  23. package/dist/matterbridgeEndpoint.js +2196 -0
  24. package/dist/matterbridgeEndpoint.js.map +1 -0
  25. package/dist/matterbridgeTypes.d.ts +5 -0
  26. package/dist/matterbridgeTypes.d.ts.map +1 -1
  27. package/dist/matterbridgeTypes.js.map +1 -1
  28. package/dist/matterbridgeWebsocket.d.ts +49 -0
  29. package/dist/matterbridgeWebsocket.d.ts.map +1 -0
  30. package/dist/matterbridgeWebsocket.js +145 -0
  31. package/dist/matterbridgeWebsocket.js.map +1 -0
  32. package/dist/pluginManager.d.ts +134 -1
  33. package/dist/pluginManager.d.ts.map +1 -1
  34. package/dist/pluginManager.js +145 -12
  35. package/dist/pluginManager.js.map +1 -1
  36. package/frontend/build/asset-manifest.json +3 -3
  37. package/frontend/build/index.html +1 -1
  38. package/frontend/build/static/js/{main.96d6324b.js → main.045d08f7.js} +3 -3
  39. package/frontend/build/static/js/main.045d08f7.js.map +1 -0
  40. package/npm-shrinkwrap.json +813 -6207
  41. package/package.json +2 -78
  42. package/dist/history/export.d.ts +0 -2
  43. package/dist/history/export.d.ts.map +0 -1
  44. package/dist/history/export.js +0 -2
  45. package/dist/history/export.js.map +0 -1
  46. package/frontend/build/static/js/main.96d6324b.js.map +0 -1
  47. /package/frontend/build/static/js/{main.96d6324b.js.LICENSE.txt → main.045d08f7.js.LICENSE.txt} +0 -0
@@ -54,6 +54,7 @@ interface MatterbridgeDeviceCommands {
54
54
  unlockDoor: MakeMandatory<ClusterServerHandlers<typeof DoorLock.Complete>['unlockDoor']>;
55
55
  setpointRaiseLower: MakeMandatory<ClusterServerHandlers<typeof Thermostat.Complete>['setpointRaiseLower']>;
56
56
  changeToMode: MakeMandatory<ClusterServerHandlers<typeof DeviceEnergyManagementMode.Complete>['changeToMode']>;
57
+ step: MakeMandatory<ClusterServerHandlers<typeof FanControl.Complete>['step']>;
57
58
  suppressAlarm: MakeMandatory<ClusterServerHandlers<typeof BooleanStateConfiguration.Complete>['suppressAlarm']>;
58
59
  enableDisableAlarm: MakeMandatory<ClusterServerHandlers<typeof BooleanStateConfiguration.Complete>['enableDisableAlarm']>;
59
60
  selfTestRequest: MakeMandatory<ClusterServerHandlers<typeof SmokeCoAlarm.Complete>['selfTestRequest']>;
@@ -65,6 +66,7 @@ export declare const rainSensor: DeviceTypeDefinition;
65
66
  export declare const smokeCoAlarm: DeviceTypeDefinition;
66
67
  export declare const electricalSensor: DeviceTypeDefinition;
67
68
  export declare const deviceEnergyManagement: DeviceTypeDefinition;
69
+ export declare const bridge: DeviceTypeDefinition;
68
70
  export declare const powerSource: DeviceTypeDefinition;
69
71
  export declare const bridgedNode: DeviceTypeDefinition;
70
72
  export declare const genericSwitch: DeviceTypeDefinition;
@@ -120,73 +122,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
120
122
  * @returns {Promise<MatterbridgeDevice>} A Promise of MatterbridgeDevice instance.
121
123
  */
122
124
  static loadInstance(definition: DeviceTypeDefinition | AtLeastOne<DeviceTypeDefinition>, options?: EndpointOptions, debug?: boolean): Promise<MatterbridgeDevice>;
123
- /**
124
- * Create asyncronously a device with one or more device types and with the required cluster servers and the specified cluster servers.
125
- *
126
- * @param {DeviceTypeDefinition | AtLeastOne<DeviceTypeDefinition>} definition - The device types to add.
127
- * @param {EndpointOptions} [options={}] - The options for the device.
128
- * @param {ClusterId[]} clusterServerList - The list of cluster IDs to include.
129
- * @param {boolean} [debug=false] - The debug level for the device.
130
- * @returns {Promise<MatterbridgeDevice>} The MatterbridgeDevice instance.
131
- *
132
- static async createWithClusterServer(definition: DeviceTypeDefinition | AtLeastOne<DeviceTypeDefinition>, options: EndpointOptions = {}, clusterServerList: ClusterId[] = [], debug = false): Promise<MatterbridgeDevice> {
133
- const device = new MatterbridgeDevice(definition, options, debug);
134
- if (Array.isArray(definition)) {
135
- definition.forEach((deviceType) => {
136
- deviceType.requiredServerClusters.forEach((clusterId) => {
137
- if (!clusterServerList.includes(clusterId)) clusterServerList.push(clusterId);
138
- });
139
- });
140
- } else {
141
- definition.requiredServerClusters.forEach((clusterId) => {
142
- if (!clusterServerList.includes(clusterId)) clusterServerList.push(clusterId);
143
- });
144
- }
145
- device.log.debug(`createWithClusterServer:`);
146
- const deviceTypes = device.getDeviceTypes();
147
- deviceTypes.forEach((deviceType) => {
148
- device.log.debug(`- with deviceType: ${zb}${deviceType.code}${db}-${zb}${deviceType.name}${db}`);
149
- });
150
- clusterServerList.forEach((clusterId) => {
151
- device.log.debug(`- with cluster: ${hk}${clusterId}${db}-${hk}${getClusterNameById(clusterId)}${db}`);
152
- });
153
- device.addClusterServerFromList(device, clusterServerList);
154
- // TODO must by typed and tested
155
- Object.entries(options).forEach(([key, value]) => {
156
- if (key === 'basicInformation') {
157
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
158
- const basicInformation = value as any;
159
- device.createDefaultBasicInformationClusterServer(
160
- basicInformation.deviceName,
161
- basicInformation.serialNumber,
162
- basicInformation.vendorId,
163
- basicInformation.vendorName,
164
- basicInformation.productId,
165
- basicInformation.productName,
166
- basicInformation.softwareVersion,
167
- basicInformation.softwareVersionString,
168
- basicInformation.hardwareVersion,
169
- basicInformation.hardwareVersionString,
170
- );
171
- } else if (key === 'bridgedDeviceBasicInformation') {
172
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
173
- const bridgedDeviceBasicInformation = value as any;
174
- device.createDefaultBridgedDeviceBasicInformationClusterServer(
175
- bridgedDeviceBasicInformation.deviceName,
176
- bridgedDeviceBasicInformation.serialNumber,
177
- bridgedDeviceBasicInformation.vendorId,
178
- bridgedDeviceBasicInformation.vendorName,
179
- bridgedDeviceBasicInformation.productName,
180
- bridgedDeviceBasicInformation.softwareVersion,
181
- bridgedDeviceBasicInformation.softwareVersionString,
182
- bridgedDeviceBasicInformation.hardwareVersion,
183
- bridgedDeviceBasicInformation.hardwareVersionString,
184
- );
185
- }
186
- });
187
- return device;
188
- }
189
- */
190
125
  /**
191
126
  * Adds a device type to the list of device types of the MatterbridgeDevice endpoint.
192
127
  * If the device type is not already present in the list, it will be added.
@@ -243,41 +178,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
243
178
  * @returns {Endpoint | undefined} The child endpoint with the specified name, or undefined if not found.
244
179
  */
245
180
  getChildEndpointByName(endpointName: string): Endpoint | undefined;
246
- /**
247
- * Retrieves a child endpoint name.
248
- *
249
- * @param {Endpoint} child - The child endpoint to retrieve the name.
250
- * @returns {string | undefined} The child endpoint name, or undefined if not found.
251
- *
252
- * @deprecated This method is deprecated and will be removed in a future version. Use endpoint.uniqueStorageKey instead.
253
- */
254
- getChildEndpointName(child: Endpoint): string | undefined;
255
- /**
256
- * Sets the endpoint name for a child endpoint.
257
- *
258
- * @param {Endpoint} child - The child endpoint.
259
- * @param {string} endpointName - The name of the endpoint.
260
- *
261
- * @deprecated This method is deprecated and will be removed in a future version.
262
- */
263
- setChildEndpointName(child: Endpoint, endpointName: string): void;
264
- /**
265
- * Retrieves the label associated with the specified endpoint number.
266
- * @param {EndpointNumber | undefined} endpointNumber - The number of the endpoint.
267
- * @returns {string | undefined} The label associated with the endpoint number, or undefined if not found.
268
- *
269
- * @deprecated This method is deprecated and will be removed in a future version.
270
- */
271
- getEndpointLabel(endpointNumber: EndpointNumber | undefined): string | undefined;
272
- /**
273
- * Retrieves the child endpoint with the specified label.
274
- *
275
- * @param {string} label - The label of the child endpoint to retrieve.
276
- * @returns {Endpoint | undefined} The child endpoint with the specified label, or undefined if not found.
277
- *
278
- * @deprecated This method is deprecated and will be removed in a future version. Use getChildEndpointByName instead.
279
- */
280
- getChildEndpointWithLabel(label: string): Endpoint | undefined;
281
181
  /**
282
182
  * Retrieves the value of the specified attribute from the given endpoint and cluster.
283
183
  *
@@ -694,7 +594,11 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
694
594
  min: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
695
595
  max: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
696
596
  startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
697
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
597
+ endTimestamp: import("@project-chip/matter.js/tlv" /**
598
+ * Creates a default flow measurement cluster server.
599
+ *
600
+ * @param measuredValue - The measured value of the temperature.
601
+ */).OptionalFieldType<number>;
698
602
  minTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
699
603
  maxTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
700
604
  startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
@@ -891,20 +795,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
891
795
  }>>;
892
796
  }>, void, any>;
893
797
  readonly stop: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
894
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import(
895
- /**
896
- * Get a default color control cluster server.
897
- * @deprecated This method is deprecated and will be removed in a future version. Use getDefaultCompleteColorControlClusterServer.
898
- *
899
- * @param currentX - The current X value.
900
- * @param currentY - The current Y value.
901
- * @param currentHue - The current hue value.
902
- * @param currentSaturation - The current saturation value.
903
- * @param colorTemperatureMireds - The color temperature in mireds.
904
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
905
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
906
- */
907
- "@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
798
+ optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
908
799
  executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
909
800
  coupleColorTempToLevel: import("@project-chip/matter.js/schema").BitFlag;
910
801
  }>>;
@@ -1046,11 +937,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1046
937
  }>>;
1047
938
  }>, void, any>;
1048
939
  readonly step: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1049
- stepMode: import("@project-chip/matter.js/tlv" /**
1050
- * Creates a default occupancy sensing cluster server.
1051
- *
1052
- * @param occupied - A boolean indicating whether the occupancy is occupied or not. Default is false.
1053
- */).FieldType<LevelControl.StepMode>;
940
+ stepMode: import("@project-chip/matter.js/tlv").FieldType<LevelControl.StepMode>;
1054
941
  stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1055
942
  transitionTime: import("@project-chip/matter.js/tlv").FieldType<number | null>;
1056
943
  optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
@@ -1166,15 +1053,16 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1166
1053
  createDefaultLevelControlClusterServer(currentLevel?: number): void;
1167
1054
  /**
1168
1055
  * Get a default color control cluster server.
1169
- * @deprecated This method is deprecated and will be removed in a future version. Use getDefaultCompleteColorControlClusterServer.
1170
1056
  *
1057
+ * @param currentX - The current X value.
1058
+ * @param currentY - The current Y value.
1171
1059
  * @param currentHue - The current hue value.
1172
1060
  * @param currentSaturation - The current saturation value.
1173
1061
  * @param colorTemperatureMireds - The color temperature in mireds.
1174
1062
  * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1175
1063
  * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1176
1064
  */
1177
- getDefaultColorControlClusterServer(currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/cluster").ClusterComposer.Of<import("@project-chip/matter-node.js/cluster").ClusterType.Of<{
1065
+ getDefaultColorControlClusterServer(currentX?: number, currentY?: number, currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/cluster").ClusterComposer.Of<import("@project-chip/matter-node.js/cluster").ClusterType.Of<{
1178
1066
  readonly id: 768;
1179
1067
  readonly name: "ColorControl";
1180
1068
  readonly revision: 6;
@@ -1549,923 +1437,124 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1549
1437
  };
1550
1438
  };
1551
1439
  }];
1552
- }>, readonly [ColorControl.Feature.HueSaturation, ColorControl.Feature.ColorTemperature]>>;
1440
+ }>, readonly [ColorControl.Feature.Xy, ColorControl.Feature.HueSaturation, ColorControl.Feature.ColorTemperature]>>;
1553
1441
  /**
1554
1442
  * Creates a default color control cluster server.
1555
- * @deprecated This method is deprecated and will be removed in a future version. Use createDefaultCompleteColorControlClusterServer.
1556
1443
  *
1444
+ * @param currentX - The current X value.
1445
+ * @param currentY - The current Y value.
1557
1446
  * @param currentHue - The current hue value.
1558
1447
  * @param currentSaturation - The current saturation value.
1559
1448
  * @param colorTemperatureMireds - The color temperature in mireds.
1560
1449
  * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1561
1450
  * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1562
1451
  */
1563
- createDefaultColorControlClusterServer(currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
1452
+ createDefaultColorControlClusterServer(currentX?: number, currentY?: number, currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
1564
1453
  /**
1565
- * Get a default color control cluster server.
1566
- * @deprecated This method is deprecated and will be removed in a future version. Use getDefaultCompleteColorControlClusterServer.
1454
+ * Configures the color control cluster for a device.
1567
1455
  *
1568
- * @param currentX - The current X value.
1569
- * @param currentY - The current Y value.
1570
- * @param currentHue - The current hue value.
1571
- * @param currentSaturation - The current saturation value.
1572
- * @param colorTemperatureMireds - The color temperature in mireds.
1573
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1574
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1456
+ * @remark This method must be called only after creating the cluster with getDefaultCompleteColorControlClusterServer or createDefaultCompleteColorControlClusterServer
1457
+ * and before starting the matter server.
1458
+ *
1459
+ * @param {boolean} hueSaturation - A boolean indicating whether the device supports hue and saturation control.
1460
+ * @param {boolean} xy - A boolean indicating whether the device supports XY control.
1461
+ * @param {boolean} colorTemperature - A boolean indicating whether the device supports color temperature control.
1462
+ * @param {ColorControl.ColorMode} colorMode - An optional parameter specifying the color mode of the device.
1463
+ * @param {Endpoint} endpoint - An optional parameter specifying the endpoint to configure. If not provided, the device endpoint will be used.
1575
1464
  */
1576
- getDefaultXYColorControlClusterServer(currentX?: number, currentY?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/cluster").ClusterComposer.Of<import("@project-chip/matter-node.js/cluster").ClusterType.Of<{
1577
- readonly id: 768;
1578
- readonly name: "ColorControl";
1579
- readonly revision: 6;
1465
+ configureColorControlCluster(hueSaturation: boolean, xy: boolean, colorTemperature: boolean, colorMode?: ColorControl.ColorMode, endpoint?: Endpoint): void;
1466
+ /**
1467
+ * Configures the color control mode for the device.
1468
+ *
1469
+ * @param {ColorControl.ColorMode} colorMode - The color mode to set.
1470
+ * @param {Endpoint} endpoint - The optional endpoint to configure. If not provided, the method will configure the current endpoint.
1471
+ */
1472
+ configureColorControlMode(colorMode: ColorControl.ColorMode, endpoint?: Endpoint): void;
1473
+ /**
1474
+ * Get a default window covering cluster server.
1475
+ *
1476
+ * @param positionPercent100ths - The position percentage in 100ths (0-10000). Defaults to 0.
1477
+ */
1478
+ getDefaultWindowCoveringClusterServer(positionPercent100ths?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/cluster").ClusterComposer.Of<import("@project-chip/matter-node.js/cluster").ClusterType.Of<{
1479
+ readonly id: 258;
1480
+ readonly name: "WindowCovering";
1481
+ readonly revision: 5;
1580
1482
  readonly features: {
1581
- readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
1582
- readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
1583
- readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
1584
- readonly xy: import("@project-chip/matter.js/schema").BitFlag;
1585
- readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
1483
+ readonly lift: import("@project-chip/matter.js/schema").BitFlag;
1484
+ readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
1485
+ readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
1486
+ readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
1487
+ readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
1586
1488
  };
1587
1489
  readonly attributes: {
1588
- readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1589
- readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
1590
- readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
1591
- readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
1592
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1593
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1490
+ readonly type: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.WindowCoveringType, any>;
1491
+ readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1492
+ operational: import("@project-chip/matter.js/schema").BitFlag;
1493
+ onlineReserved: import("@project-chip/matter.js/schema").BitFlag;
1494
+ liftMovementReversed: import("@project-chip/matter.js/schema").BitFlag;
1495
+ liftPositionAware: import("@project-chip/matter.js/schema").BitFlag;
1496
+ tiltPositionAware: import("@project-chip/matter.js/schema").BitFlag;
1497
+ liftEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
1498
+ tiltEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
1594
1499
  }>, any>;
1595
- readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
1596
- readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1597
- readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1598
- readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1599
- readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1600
- readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1601
- readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1602
- readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1603
- readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1604
- readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1605
- readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1606
- readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1607
- readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1608
- readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1609
- readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1610
- readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1611
- readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1612
- readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1613
- readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1614
- readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1615
- readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1616
- readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1617
- readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1618
- readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1619
- readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1620
- readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1621
- readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1622
- readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1623
- readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1624
- readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1625
- readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
1626
- readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1627
- hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
1628
- enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
1629
- colorLoop: import("@project-chip/matter.js/schema").BitFlag;
1630
- xy: import("@project-chip/matter.js/schema").BitFlag;
1631
- colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
1500
+ readonly operationalStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1501
+ global: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1502
+ lift: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1503
+ tilt: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1504
+ }>, any>;
1505
+ readonly endProductType: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.EndProductType, any>;
1506
+ readonly mode: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1507
+ motorDirectionReversed: import("@project-chip/matter.js/schema").BitFlag;
1508
+ calibrationMode: import("@project-chip/matter.js/schema").BitFlag;
1509
+ maintenanceMode: import("@project-chip/matter.js/schema").BitFlag;
1510
+ ledFeedback: import("@project-chip/matter.js/schema").BitFlag;
1511
+ }>, any>;
1512
+ readonly safetyStatus: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1513
+ remoteLockout: import("@project-chip/matter.js/schema").BitFlag;
1514
+ tamperDetection: import("@project-chip/matter.js/schema").BitFlag;
1515
+ failedCommunication: import("@project-chip/matter.js/schema").BitFlag;
1516
+ positionFailure: import("@project-chip/matter.js/schema").BitFlag;
1517
+ thermalProtection: import("@project-chip/matter.js/schema").BitFlag;
1518
+ obstacleDetected: import("@project-chip/matter.js/schema").BitFlag;
1519
+ power: import("@project-chip/matter.js/schema").BitFlag;
1520
+ stopInput: import("@project-chip/matter.js/schema").BitFlag;
1521
+ motorJammed: import("@project-chip/matter.js/schema").BitFlag;
1522
+ hardwareFailure: import("@project-chip/matter.js/schema").BitFlag;
1523
+ manualOperation: import("@project-chip/matter.js/schema").BitFlag;
1524
+ protection: import("@project-chip/matter.js/schema").BitFlag;
1632
1525
  }>, any>;
1633
1526
  };
1527
+ readonly commands: {
1528
+ readonly upOrOpen: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
1529
+ readonly downOrClose: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
1530
+ readonly stopMotion: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
1531
+ };
1634
1532
  readonly extensions: readonly [{
1635
1533
  readonly flags: {
1636
- readonly hueSaturation: true;
1534
+ readonly lift: true;
1535
+ readonly positionAwareLift: true;
1536
+ readonly absolutePosition: true;
1637
1537
  };
1638
1538
  readonly component: {
1639
1539
  readonly attributes: {
1640
- readonly currentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1641
- readonly currentSaturation: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1642
- };
1643
- readonly commands: {
1644
- readonly moveToHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1645
- hue: import("@project-chip/matter.js/tlv").FieldType<number>;
1646
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Direction>;
1647
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1648
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1649
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1650
- }>>;
1651
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1652
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1653
- }>>;
1654
- }>, void, any>;
1655
- readonly moveHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1656
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
1657
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
1658
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1659
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1660
- }>>;
1661
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1662
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1663
- }>>;
1664
- }>, void, any>;
1665
- readonly stepHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1666
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
1667
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1668
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1669
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1670
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1671
- }>>;
1672
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1673
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1674
- }>>;
1675
- }>, void, any>;
1676
- readonly moveToSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1677
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
1678
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1679
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1680
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1681
- }>>;
1682
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1683
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1684
- }>>;
1685
- }>, void, any>;
1686
- readonly moveSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1687
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
1688
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
1689
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1690
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1691
- }>>;
1692
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1693
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1694
- }>>;
1695
- }>, void, any>;
1696
- readonly stepSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1697
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
1698
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1699
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1700
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1701
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1702
- }>>;
1703
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1704
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1705
- }>>;
1706
- }>, void, any>;
1707
- readonly moveToHueAndSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1708
- hue: import("@project-chip/matter.js/tlv").FieldType<number>;
1709
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
1710
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1711
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1712
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1713
- }>>;
1714
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1715
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1716
- }>>;
1717
- }>, void, any>;
1540
+ readonly physicalClosedLimitLift: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1541
+ readonly currentPositionLift: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1542
+ readonly installedOpenLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1543
+ readonly installedClosedLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1718
1544
  };
1719
1545
  };
1720
1546
  }, {
1721
1547
  readonly flags: {
1722
- readonly xy: true;
1548
+ readonly tilt: true;
1549
+ readonly positionAwareTilt: true;
1550
+ readonly absolutePosition: true;
1723
1551
  };
1724
1552
  readonly component: {
1725
1553
  readonly attributes: {
1726
- readonly currentX: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1727
- readonly currentY: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1728
- };
1729
- readonly commands: {
1730
- readonly moveToColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1731
- colorX: import("@project-chip/matter.js/tlv").FieldType<number>;
1732
- colorY: import("@project-chip/matter.js/tlv").FieldType<number>;
1733
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1734
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1735
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1736
- }>>;
1737
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1738
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1739
- }>>;
1740
- }>, void, any>;
1741
- readonly moveColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1742
- rateX: import("@project-chip/matter.js/tlv").FieldType<number>;
1743
- rateY: import("@project-chip/matter.js/tlv").FieldType<number>;
1744
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1745
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1746
- }>>;
1747
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1748
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1749
- }>>;
1750
- }>, void, any>;
1751
- readonly stepColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1752
- stepX: import("@project-chip/matter.js/tlv").FieldType<number>;
1753
- stepY: import("@project-chip/matter.js/tlv").FieldType<number>;
1754
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1755
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1756
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1757
- }>>;
1758
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1759
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1760
- }>>;
1761
- }>, void, any>;
1762
- };
1763
- };
1764
- }, {
1765
- readonly flags: {
1766
- readonly colorTemperature: true;
1767
- };
1768
- readonly component: {
1769
- readonly attributes: {
1770
- readonly colorTemperatureMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1771
- readonly colorTempPhysicalMinMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1772
- readonly colorTempPhysicalMaxMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1773
- readonly coupleColorTempToLevelMinMireds: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1774
- readonly startUpColorTemperatureMireds: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1775
- };
1776
- readonly commands: {
1777
- readonly moveToColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1778
- colorTemperatureMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
1779
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1780
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1781
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1782
- }>>;
1783
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1784
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1785
- }>>;
1786
- }>, void, any>;
1787
- readonly moveColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1788
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
1789
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
1790
- colorTemperatureMinimumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
1791
- colorTemperatureMaximumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
1792
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1793
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1794
- }>>;
1795
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1796
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1797
- }>>;
1798
- }>, void, any>;
1799
- readonly stepColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1800
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
1801
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1802
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1803
- colorTemperatureMinimumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
1804
- colorTemperatureMaximumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
1805
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1806
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1807
- }>>;
1808
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1809
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1810
- }>>;
1811
- }>, void, any>;
1812
- };
1813
- };
1814
- }, {
1815
- readonly flags: {
1816
- readonly enhancedHue: true;
1817
- };
1818
- readonly component: {
1819
- readonly attributes: {
1820
- readonly enhancedCurrentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1821
- };
1822
- readonly commands: {
1823
- readonly enhancedMoveToHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1824
- enhancedHue: import("@project-chip/matter.js/tlv").FieldType<number>;
1825
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Direction>;
1826
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1827
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1828
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1829
- }>>;
1830
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1831
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1832
- }>>;
1833
- }>, void, any>;
1834
- readonly enhancedMoveHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1835
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
1836
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
1837
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1838
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1839
- }>>;
1840
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1841
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1842
- }>>;
1843
- }>, void, any>;
1844
- readonly enhancedStepHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1845
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
1846
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1847
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1848
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1849
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1850
- }>>;
1851
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1852
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1853
- }>>;
1854
- }>, void, any>;
1855
- readonly enhancedMoveToHueAndSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1856
- enhancedHue: import("@project-chip/matter.js/tlv").FieldType<number>;
1857
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
1858
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1859
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1860
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1861
- }>>;
1862
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1863
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1864
- }>>;
1865
- }>, void, any>;
1866
- };
1867
- };
1868
- }, {
1869
- readonly flags: {
1870
- readonly colorLoop: true;
1871
- };
1872
- readonly component: {
1873
- readonly attributes: {
1874
- readonly colorLoopActive: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorLoopActive, any>;
1875
- readonly colorLoopDirection: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorLoopDirection, any>;
1876
- readonly colorLoopTime: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1877
- readonly colorLoopStartEnhancedHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1878
- readonly colorLoopStoredEnhancedHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1879
- };
1880
- readonly commands: {
1881
- readonly colorLoopSet: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1882
- updateFlags: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1883
- updateAction: import("@project-chip/matter.js/schema").BitFlag;
1884
- updateDirection: import("@project-chip/matter.js/schema").BitFlag;
1885
- updateTime: import("@project-chip/matter.js/schema").BitFlag;
1886
- updateStartHue: import("@project-chip/matter.js/schema").BitFlag;
1887
- reserved: import("@project-chip/matter.js/schema").BitField;
1888
- }>>;
1889
- action: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Action>;
1890
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.ColorLoopSetDirection>;
1891
- time: import("@project-chip/matter.js/tlv").FieldType<number>;
1892
- startHue: import("@project-chip/matter.js/tlv").FieldType<number>;
1893
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1894
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1895
- }>>;
1896
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1897
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1898
- }>>;
1899
- }>, void, any>;
1900
- };
1901
- };
1902
- }, {
1903
- readonly flags: {
1904
- readonly hueSaturation: true;
1905
- };
1906
- readonly component: {
1907
- readonly commands: {
1908
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1909
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1910
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1911
- }>>;
1912
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1913
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1914
- }>>;
1915
- }>, void, any>;
1916
- };
1917
- };
1918
- }, {
1919
- readonly flags: {
1920
- readonly xy: true;
1921
- };
1922
- readonly component: {
1923
- readonly commands: {
1924
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1925
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1926
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1927
- }>>;
1928
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1929
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1930
- }>>;
1931
- }>, void, any>;
1932
- };
1933
- };
1934
- }, {
1935
- readonly flags: {
1936
- readonly colorTemperature: true;
1937
- };
1938
- readonly component: {
1939
- readonly commands: {
1940
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1941
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1942
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1943
- }>>;
1944
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1945
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1946
- }>>;
1947
- }>, void, any>;
1948
- };
1949
- };
1950
- }];
1951
- }>, readonly [ColorControl.Feature.Xy, ColorControl.Feature.HueSaturation, ColorControl.Feature.ColorTemperature]>>;
1952
- /**
1953
- * Creates a default color control cluster server.
1954
- * @deprecated This method is deprecated and will be removed in a future version. Use createDefaultCompleteColorControlClusterServer.
1955
- *
1956
- * @param currentX - The current X value.
1957
- * @param currentY - The current Y value.
1958
- * @param currentHue - The current hue value.
1959
- * @param currentSaturation - The current saturation value.
1960
- * @param colorTemperatureMireds - The color temperature in mireds.
1961
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1962
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1963
- */
1964
- createDefaultXYColorControlClusterServer(currentX?: number, currentY?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
1965
- /**
1966
- * Get a default color control cluster server.
1967
- *
1968
- * @param currentX - The current X value.
1969
- * @param currentY - The current Y value.
1970
- * @param currentHue - The current hue value.
1971
- * @param currentSaturation - The current saturation value.
1972
- * @param colorTemperatureMireds - The color temperature in mireds.
1973
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1974
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1975
- */
1976
- getDefaultCompleteColorControlClusterServer(currentX?: number, currentY?: number, currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/cluster").ClusterComposer.Of<import("@project-chip/matter-node.js/cluster").ClusterType.Of<{
1977
- readonly id: 768;
1978
- readonly name: "ColorControl";
1979
- readonly revision: 6;
1980
- readonly features: {
1981
- readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
1982
- readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
1983
- readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
1984
- readonly xy: import("@project-chip/matter.js/schema").BitFlag;
1985
- readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
1986
- };
1987
- readonly attributes: {
1988
- readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1989
- readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
1990
- readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
1991
- readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
1992
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1993
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1994
- }>, any>;
1995
- readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
1996
- readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1997
- readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1998
- readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1999
- readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2000
- readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2001
- readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
2002
- readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2003
- readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2004
- readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
2005
- readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2006
- readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2007
- readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
2008
- readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2009
- readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2010
- readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
2011
- readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2012
- readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2013
- readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
2014
- readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2015
- readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2016
- readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2017
- readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2018
- readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2019
- readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2020
- readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2021
- readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2022
- readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2023
- readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2024
- readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2025
- readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
2026
- readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2027
- hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
2028
- enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
2029
- colorLoop: import("@project-chip/matter.js/schema").BitFlag;
2030
- xy: import("@project-chip/matter.js/schema").BitFlag;
2031
- colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
2032
- }>, any>;
2033
- };
2034
- readonly extensions: readonly [{
2035
- readonly flags: {
2036
- readonly hueSaturation: true;
2037
- };
2038
- readonly component: {
2039
- readonly attributes: {
2040
- readonly currentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2041
- readonly currentSaturation: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2042
- };
2043
- readonly commands: {
2044
- readonly moveToHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2045
- hue: import("@project-chip/matter.js/tlv").FieldType<number>;
2046
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Direction>;
2047
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2048
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2049
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2050
- }>>;
2051
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2052
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2053
- }>>;
2054
- }>, void, any>;
2055
- readonly moveHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2056
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
2057
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
2058
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2059
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2060
- }>>;
2061
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2062
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2063
- }>>;
2064
- }>, void, any>;
2065
- readonly stepHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2066
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
2067
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
2068
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2069
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2070
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2071
- }>>;
2072
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2073
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2074
- }>>;
2075
- }>, void, any>;
2076
- readonly moveToSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2077
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
2078
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2079
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2080
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2081
- }>>;
2082
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2083
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2084
- }>>;
2085
- }>, void, any>;
2086
- readonly moveSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2087
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
2088
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
2089
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2090
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2091
- }>>;
2092
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2093
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2094
- }>>;
2095
- }>, void, any>;
2096
- readonly stepSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2097
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
2098
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
2099
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2100
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2101
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2102
- }>>;
2103
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2104
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2105
- }>>;
2106
- }>, void, any>;
2107
- readonly moveToHueAndSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2108
- hue: import("@project-chip/matter.js/tlv").FieldType<number>;
2109
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
2110
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2111
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2112
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2113
- }>>;
2114
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2115
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2116
- }>>;
2117
- }>, void, any>;
2118
- };
2119
- };
2120
- }, {
2121
- readonly flags: {
2122
- readonly xy: true;
2123
- };
2124
- readonly component: {
2125
- readonly attributes: {
2126
- readonly currentX: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2127
- readonly currentY: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2128
- };
2129
- readonly commands: {
2130
- readonly moveToColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2131
- colorX: import("@project-chip/matter.js/tlv").FieldType<number>;
2132
- colorY: import("@project-chip/matter.js/tlv").FieldType<number>;
2133
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2134
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2135
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2136
- }>>;
2137
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2138
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2139
- }>>;
2140
- }>, void, any>;
2141
- readonly moveColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2142
- rateX: import("@project-chip/matter.js/tlv").FieldType<number>;
2143
- rateY: import("@project-chip/matter.js/tlv").FieldType<number>;
2144
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2145
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2146
- }>>;
2147
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2148
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2149
- }>>;
2150
- }>, void, any>;
2151
- readonly stepColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2152
- stepX: import("@project-chip/matter.js/tlv").FieldType<number>;
2153
- stepY: import("@project-chip/matter.js/tlv").FieldType<number>;
2154
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2155
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2156
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2157
- }>>;
2158
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2159
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2160
- }>>;
2161
- }>, void, any>;
2162
- };
2163
- };
2164
- }, {
2165
- readonly flags: {
2166
- readonly colorTemperature: true;
2167
- };
2168
- readonly component: {
2169
- readonly attributes: {
2170
- readonly colorTemperatureMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2171
- readonly colorTempPhysicalMinMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2172
- readonly colorTempPhysicalMaxMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2173
- readonly coupleColorTempToLevelMinMireds: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2174
- readonly startUpColorTemperatureMireds: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2175
- };
2176
- readonly commands: {
2177
- readonly moveToColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2178
- colorTemperatureMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
2179
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2180
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2181
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2182
- }>>;
2183
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2184
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2185
- }>>;
2186
- }>, void, any>;
2187
- readonly moveColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2188
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
2189
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
2190
- colorTemperatureMinimumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
2191
- colorTemperatureMaximumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
2192
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2193
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2194
- }>>;
2195
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2196
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2197
- }>>;
2198
- }>, void, any>;
2199
- readonly stepColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2200
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
2201
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
2202
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2203
- colorTemperatureMinimumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
2204
- colorTemperatureMaximumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
2205
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2206
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2207
- }>>;
2208
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2209
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2210
- }>>;
2211
- }>, void, any>;
2212
- };
2213
- };
2214
- }, {
2215
- readonly flags: {
2216
- readonly enhancedHue: true;
2217
- };
2218
- readonly component: {
2219
- readonly attributes: {
2220
- readonly enhancedCurrentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2221
- };
2222
- readonly commands: {
2223
- readonly enhancedMoveToHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2224
- enhancedHue: import("@project-chip/matter.js/tlv").FieldType<number>;
2225
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Direction>;
2226
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2227
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2228
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2229
- }>>;
2230
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2231
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2232
- }>>;
2233
- }>, void, any>;
2234
- readonly enhancedMoveHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2235
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
2236
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
2237
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2238
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2239
- }>>;
2240
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2241
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2242
- }>>;
2243
- }>, void, any>;
2244
- readonly enhancedStepHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2245
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
2246
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
2247
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2248
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2249
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2250
- }>>;
2251
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2252
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2253
- }>>;
2254
- }>, void, any>;
2255
- readonly enhancedMoveToHueAndSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2256
- enhancedHue: import("@project-chip/matter.js/tlv").FieldType<number>;
2257
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
2258
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2259
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2260
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2261
- }>>;
2262
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2263
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2264
- }>>;
2265
- }>, void, any>;
2266
- };
2267
- };
2268
- }, {
2269
- readonly flags: {
2270
- readonly colorLoop: true;
2271
- };
2272
- readonly component: {
2273
- readonly attributes: {
2274
- readonly colorLoopActive: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorLoopActive, any>;
2275
- readonly colorLoopDirection: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorLoopDirection, any>;
2276
- readonly colorLoopTime: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2277
- readonly colorLoopStartEnhancedHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2278
- readonly colorLoopStoredEnhancedHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2279
- };
2280
- readonly commands: {
2281
- readonly colorLoopSet: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2282
- updateFlags: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2283
- updateAction: import("@project-chip/matter.js/schema").BitFlag;
2284
- updateDirection: import("@project-chip/matter.js/schema").BitFlag;
2285
- updateTime: import("@project-chip/matter.js/schema").BitFlag;
2286
- updateStartHue: import("@project-chip/matter.js/schema").BitFlag;
2287
- reserved: import("@project-chip/matter.js/schema").BitField;
2288
- }>>;
2289
- action: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Action>;
2290
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.ColorLoopSetDirection>;
2291
- time: import("@project-chip/matter.js/tlv").FieldType<number>;
2292
- startHue: import("@project-chip/matter.js/tlv").FieldType<number>;
2293
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2294
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2295
- }>>;
2296
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2297
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2298
- }>>;
2299
- }>, void, any>;
2300
- };
2301
- };
2302
- }, {
2303
- readonly flags: {
2304
- readonly hueSaturation: true;
2305
- };
2306
- readonly component: {
2307
- readonly commands: {
2308
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2309
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2310
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2311
- }>>;
2312
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2313
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2314
- }>>;
2315
- }>, void, any>;
2316
- };
2317
- };
2318
- }, {
2319
- readonly flags: {
2320
- readonly xy: true;
2321
- };
2322
- readonly component: {
2323
- readonly commands: {
2324
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2325
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2326
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2327
- }>>;
2328
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2329
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2330
- }>>;
2331
- }>, void, any>;
2332
- };
2333
- };
2334
- }, {
2335
- readonly flags: {
2336
- readonly colorTemperature: true;
2337
- };
2338
- readonly component: {
2339
- readonly commands: {
2340
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2341
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2342
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2343
- }>>;
2344
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2345
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2346
- }>>;
2347
- }>, void, any>;
2348
- };
2349
- };
2350
- }];
2351
- }>, readonly [ColorControl.Feature.Xy, ColorControl.Feature.HueSaturation, ColorControl.Feature.ColorTemperature]>>;
2352
- /**
2353
- * Creates a default color control cluster server.
2354
- *
2355
- * @param currentX - The current X value.
2356
- * @param currentY - The current Y value.
2357
- * @param currentHue - The current hue value.
2358
- * @param currentSaturation - The current saturation value.
2359
- * @param colorTemperatureMireds - The color temperature in mireds.
2360
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
2361
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
2362
- */
2363
- createDefaultCompleteColorControlClusterServer(currentX?: number, currentY?: number, currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
2364
- /**
2365
- * Configures the color control cluster for a device.
2366
- *
2367
- * @remark This method must be called only after creating the cluster with getDefaultCompleteColorControlClusterServer or createDefaultCompleteColorControlClusterServer
2368
- * and before starting the matter server.
2369
- *
2370
- * @param {boolean} hueSaturation - A boolean indicating whether the device supports hue and saturation control.
2371
- * @param {boolean} xy - A boolean indicating whether the device supports XY control.
2372
- * @param {boolean} colorTemperature - A boolean indicating whether the device supports color temperature control.
2373
- * @param {ColorControl.ColorMode} colorMode - An optional parameter specifying the color mode of the device.
2374
- * @param {Endpoint} endpoint - An optional parameter specifying the endpoint to configure. If not provided, the device endpoint will be used.
2375
- */
2376
- configureColorControlCluster(hueSaturation: boolean, xy: boolean, colorTemperature: boolean, colorMode?: ColorControl.ColorMode, endpoint?: Endpoint): void;
2377
- /**
2378
- * Configures the color control mode for the device.
2379
- *
2380
- * @param {ColorControl.ColorMode} colorMode - The color mode to set.
2381
- * @param {Endpoint} endpoint - The optional endpoint to configure. If not provided, the method will configure the current endpoint.
2382
- */
2383
- configureColorControlMode(colorMode: ColorControl.ColorMode, endpoint?: Endpoint): void;
2384
- /**
2385
- * Get a default window covering cluster server.
2386
- *
2387
- * @param positionPercent100ths - The position percentage in 100ths (0-10000). Defaults to 0.
2388
- */
2389
- getDefaultWindowCoveringClusterServer(positionPercent100ths?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/cluster").ClusterComposer.Of<import("@project-chip/matter-node.js/cluster").ClusterType.Of<{
2390
- readonly id: 258;
2391
- readonly name: "WindowCovering";
2392
- readonly revision: 5;
2393
- readonly features: {
2394
- readonly lift: import("@project-chip/matter.js/schema").BitFlag;
2395
- readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
2396
- readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
2397
- readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
2398
- readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
2399
- };
2400
- readonly attributes: {
2401
- readonly type: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.WindowCoveringType, any>;
2402
- readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2403
- operational: import("@project-chip/matter.js/schema").BitFlag;
2404
- onlineReserved: import("@project-chip/matter.js/schema").BitFlag;
2405
- liftMovementReversed: import("@project-chip/matter.js/schema").BitFlag;
2406
- liftPositionAware: import("@project-chip/matter.js/schema").BitFlag;
2407
- tiltPositionAware: import("@project-chip/matter.js/schema").BitFlag;
2408
- liftEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
2409
- tiltEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
2410
- }>, any>;
2411
- readonly operationalStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2412
- global: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
2413
- lift: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
2414
- tilt: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
2415
- }>, any>;
2416
- readonly endProductType: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.EndProductType, any>;
2417
- readonly mode: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2418
- motorDirectionReversed: import("@project-chip/matter.js/schema").BitFlag;
2419
- calibrationMode: import("@project-chip/matter.js/schema").BitFlag;
2420
- maintenanceMode: import("@project-chip/matter.js/schema").BitFlag;
2421
- ledFeedback: import("@project-chip/matter.js/schema").BitFlag;
2422
- }>, any>;
2423
- readonly safetyStatus: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2424
- remoteLockout: import("@project-chip/matter.js/schema").BitFlag;
2425
- tamperDetection: import("@project-chip/matter.js/schema").BitFlag;
2426
- failedCommunication: import("@project-chip/matter.js/schema").BitFlag;
2427
- positionFailure: import("@project-chip/matter.js/schema").BitFlag;
2428
- thermalProtection: import("@project-chip/matter.js/schema").BitFlag;
2429
- obstacleDetected: import("@project-chip/matter.js/schema").BitFlag;
2430
- power: import("@project-chip/matter.js/schema").BitFlag;
2431
- stopInput: import("@project-chip/matter.js/schema").BitFlag;
2432
- motorJammed: import("@project-chip/matter.js/schema").BitFlag;
2433
- hardwareFailure: import("@project-chip/matter.js/schema").BitFlag;
2434
- manualOperation: import("@project-chip/matter.js/schema").BitFlag;
2435
- protection: import("@project-chip/matter.js/schema").BitFlag;
2436
- }>, any>;
2437
- };
2438
- readonly commands: {
2439
- readonly upOrOpen: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
2440
- readonly downOrClose: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
2441
- readonly stopMotion: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
2442
- };
2443
- readonly extensions: readonly [{
2444
- readonly flags: {
2445
- readonly lift: true;
2446
- readonly positionAwareLift: true;
2447
- readonly absolutePosition: true;
2448
- };
2449
- readonly component: {
2450
- readonly attributes: {
2451
- readonly physicalClosedLimitLift: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2452
- readonly currentPositionLift: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2453
- readonly installedOpenLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2454
- readonly installedClosedLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2455
- };
2456
- };
2457
- }, {
2458
- readonly flags: {
2459
- readonly tilt: true;
2460
- readonly positionAwareTilt: true;
2461
- readonly absolutePosition: true;
2462
- };
2463
- readonly component: {
2464
- readonly attributes: {
2465
- readonly physicalClosedLimitTilt: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2466
- readonly currentPositionTilt: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2467
- readonly installedOpenLimitTilt: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2468
- readonly installedClosedLimitTilt: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1554
+ readonly physicalClosedLimitTilt: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1555
+ readonly currentPositionTilt: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1556
+ readonly installedOpenLimitTilt: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1557
+ readonly installedClosedLimitTilt: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2469
1558
  };
2470
1559
  };
2471
1560
  }, {
@@ -2686,7 +1775,14 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
2686
1775
  };
2687
1776
  readonly component: {
2688
1777
  readonly events: {
2689
- readonly initialPress: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1778
+ readonly initialPress: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv" /**
1779
+ * Creates a unique identifier based on the provided parameters.
1780
+ * @param param1 - The first parameter.
1781
+ * @param param2 - The second parameter.
1782
+ * @param param3 - The third parameter.
1783
+ * @param param4 - The fourth parameter.
1784
+ * @returns A unique identifier generated using the MD5 hash algorithm.
1785
+ */).TypeFromFields<{
2690
1786
  newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
2691
1787
  }>, any>;
2692
1788
  };
@@ -2824,7 +1920,14 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
2824
1920
  };
2825
1921
  readonly component: {
2826
1922
  readonly events: {
2827
- readonly initialPress: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1923
+ readonly initialPress: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv" /**
1924
+ * Creates a unique identifier based on the provided parameters.
1925
+ * @param param1 - The first parameter.
1926
+ * @param param2 - The second parameter.
1927
+ * @param param3 - The third parameter.
1928
+ * @param param4 - The fourth parameter.
1929
+ * @returns A unique identifier generated using the MD5 hash algorithm.
1930
+ */).TypeFromFields<{
2828
1931
  newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
2829
1932
  }>, any>;
2830
1933
  };
@@ -2916,8 +2019,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
2916
2019
  /**
2917
2020
  * Retrieves the default mode select cluster server.
2918
2021
  *
2919
- * @deprecated This method is currently under development and should not be used.
2920
- *
2921
2022
  * @param description - The description of the cluster server.
2922
2023
  * @param supportedModes - The supported modes for the cluster server.
2923
2024
  * @param currentMode - The current mode of the cluster server. Defaults to 0.
@@ -2931,11 +2032,9 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
2931
2032
  * @remarks
2932
2033
  * This method adds a cluster server for a mode select cluster with default settings.
2933
2034
  *
2934
- * @deprecated This method is currently under development and should not be used.
2935
- *
2936
2035
  * @param endpoint - The endpoint to add the cluster server to. Defaults to `this` if not provided.
2937
2036
  */
2938
- createDefaultModeSelectClusterServer(endpoint?: Endpoint): void;
2037
+ createDefaultModeSelectClusterServer(description: string, supportedModes: ModeSelect.ModeOption[], currentMode?: number, startUpMode?: number, endpoint?: Endpoint): void;
2939
2038
  /**
2940
2039
  * Get a default occupancy sensing cluster server.
2941
2040
  *
@@ -3726,12 +2825,17 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
3726
2825
  /**
3727
2826
  * Get a default thermostat cluster server with the specified parameters.
3728
2827
  *
3729
- * @param localTemperature - The local temperature value in degrees Celsius. Defaults to 23.
3730
- * @param occupiedHeatingSetpoint - The occupied heating setpoint value in degrees Celsius. Defaults to 21.
3731
- * @param occupiedCoolingSetpoint - The occupied cooling setpoint value in degrees Celsius. Defaults to 25.
3732
- * @param minSetpointDeadBand - The minimum setpoint dead band value.
2828
+ * @param {number} [localTemperature=23] - The local temperature value in degrees Celsius. Defaults to 23°.
2829
+ * @param {number} [occupiedHeatingSetpoint=21] - The occupied heating setpoint value in degrees Celsius. Defaults to 21°.
2830
+ * @param {number} [occupiedCoolingSetpoint=25] - The occupied cooling setpoint value in degrees Celsius. Defaults to 25°.
2831
+ * @param {number} [minSetpointDeadBand=1] - The minimum setpoint dead band value. Defaults to 1°.
2832
+ * @param {number} [minHeatSetpointLimit=0] - The minimum heat setpoint limit value. Defaults to 0°.
2833
+ * @param {number} [maxHeatSetpointLimit=50] - The maximum heat setpoint limit value. Defaults to 50°.
2834
+ * @param {number} [minCoolSetpointLimit=0] - The minimum cool setpoint limit value. Defaults to 0°.
2835
+ * @param {number} [maxCoolSetpointLimit=50] - The maximum cool setpoint limit value. Defaults to 50°.
2836
+ * @returns {ThermostatClusterServer} A default thermostat cluster server configured with the specified parameters.
3733
2837
  */
3734
- getDefaultThermostatClusterServer(localTemperature?: number, occupiedHeatingSetpoint?: number, occupiedCoolingSetpoint?: number, minSetpointDeadBand?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/cluster").ClusterComposer.Of<import("@project-chip/matter-node.js/cluster").ClusterType.Of<{
2838
+ getDefaultThermostatClusterServer(localTemperature?: number, occupiedHeatingSetpoint?: number, occupiedCoolingSetpoint?: number, minSetpointDeadBand?: number, minHeatSetpointLimit?: number, maxHeatSetpointLimit?: number, minCoolSetpointLimit?: number, maxCoolSetpointLimit?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/cluster").ClusterComposer.Of<import("@project-chip/matter-node.js/cluster").ClusterType.Of<{
3735
2839
  readonly id: 513;
3736
2840
  readonly name: "Thermostat";
3737
2841
  readonly revision: 6;
@@ -3992,12 +3096,16 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
3992
3096
  /**
3993
3097
  * Creates and adds a default thermostat cluster server to the device.
3994
3098
  *
3995
- * @param localTemperature - The local temperature value.
3996
- * @param occupiedHeatingSetpoint - The occupied heating setpoint value.
3997
- * @param occupiedCoolingSetpoint - The occupied cooling setpoint value.
3998
- * @param minSetpointDeadBand - The minimum setpoint dead band value.
3099
+ * @param {number} [localTemperature=23] - The local temperature value in degrees Celsius. Defaults to 23°.
3100
+ * @param {number} [occupiedHeatingSetpoint=21] - The occupied heating setpoint value in degrees Celsius. Defaults to 21°.
3101
+ * @param {number} [occupiedCoolingSetpoint=25] - The occupied cooling setpoint value in degrees Celsius. Defaults to 25°.
3102
+ * @param {number} [minSetpointDeadBand=1] - The minimum setpoint dead band value. Defaults to 1°.
3103
+ * @param {number} [minHeatSetpointLimit=0] - The minimum heat setpoint limit value. Defaults to 0°.
3104
+ * @param {number} [maxHeatSetpointLimit=50] - The maximum heat setpoint limit value. Defaults to 50°.
3105
+ * @param {number} [minCoolSetpointLimit=0] - The minimum cool setpoint limit value. Defaults to 0°.
3106
+ * @param {number} [maxCoolSetpointLimit=50] - The maximum cool setpoint limit value. Defaults to 50°.
3999
3107
  */
4000
- createDefaultThermostatClusterServer(localTemperature?: number, occupiedHeatingSetpoint?: number, occupiedCoolingSetpoint?: number, minSetpointDeadBand?: number): void;
3108
+ createDefaultThermostatClusterServer(localTemperature?: number, occupiedHeatingSetpoint?: number, occupiedCoolingSetpoint?: number, minSetpointDeadBand?: number, minHeatSetpointLimit?: number, maxHeatSetpointLimit?: number, minCoolSetpointLimit?: number, maxCoolSetpointLimit?: number): void;
4001
3109
  /**
4002
3110
  * Get a default dummy time sync cluster server. Only needed to create a thermostat.
4003
3111
  */
@@ -5260,7 +4368,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
5260
4368
  };
5261
4369
  };
5262
4370
  }];
5263
- }>, readonly [FanControl.Feature.MultiSpeed, FanControl.Feature.Auto]>>;
4371
+ }>, readonly [FanControl.Feature.MultiSpeed, FanControl.Feature.Auto, FanControl.Feature.Step]>>;
5264
4372
  /**
5265
4373
  * Create the default fan control cluster server rev 2.
5266
4374
  *