matterbridge 1.5.9 → 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 (51) hide show
  1. package/CHANGELOG.md +36 -3
  2. package/README-DEV.md +10 -6
  3. package/README-PODMAN.md +2 -0
  4. package/README-SERVICE.md +44 -6
  5. package/README.md +53 -7
  6. package/dist/cluster/export.js +1 -1
  7. package/dist/cluster/export.js.map +1 -1
  8. package/dist/defaultConfigSchema.d.ts.map +1 -1
  9. package/dist/defaultConfigSchema.js +9 -1
  10. package/dist/defaultConfigSchema.js.map +1 -1
  11. package/dist/matterbridge.d.ts +72 -48
  12. package/dist/matterbridge.d.ts.map +1 -1
  13. package/dist/matterbridge.js +174 -173
  14. package/dist/matterbridge.js.map +1 -1
  15. package/dist/matterbridgeDevice.d.ts +140 -1042
  16. package/dist/matterbridgeDevice.d.ts.map +1 -1
  17. package/dist/matterbridgeDevice.js +57 -363
  18. package/dist/matterbridgeDevice.js.map +1 -1
  19. package/dist/matterbridgeEdge.d.ts +90 -0
  20. package/dist/matterbridgeEdge.d.ts.map +1 -0
  21. package/dist/matterbridgeEdge.js +555 -0
  22. package/dist/matterbridgeEdge.js.map +1 -0
  23. package/dist/matterbridgeEndpoint.d.ts +5195 -0
  24. package/dist/matterbridgeEndpoint.d.ts.map +1 -0
  25. package/dist/matterbridgeEndpoint.js +2196 -0
  26. package/dist/matterbridgeEndpoint.js.map +1 -0
  27. package/dist/matterbridgeTypes.d.ts +6 -5
  28. package/dist/matterbridgeTypes.d.ts.map +1 -1
  29. package/dist/matterbridgeTypes.js +1 -1
  30. package/dist/matterbridgeTypes.js.map +1 -1
  31. package/dist/matterbridgeWebsocket.d.ts +49 -0
  32. package/dist/matterbridgeWebsocket.d.ts.map +1 -0
  33. package/dist/matterbridgeWebsocket.js +145 -0
  34. package/dist/matterbridgeWebsocket.js.map +1 -0
  35. package/dist/pluginManager.d.ts +134 -1
  36. package/dist/pluginManager.d.ts.map +1 -1
  37. package/dist/pluginManager.js +167 -14
  38. package/dist/pluginManager.js.map +1 -1
  39. package/frontend/build/asset-manifest.json +3 -3
  40. package/frontend/build/index.html +1 -1
  41. package/frontend/build/static/js/{main.96d6324b.js → main.045d08f7.js} +3 -3
  42. package/frontend/build/static/js/main.045d08f7.js.map +1 -0
  43. package/npm-shrinkwrap.json +838 -6222
  44. package/package.json +3 -78
  45. package/CODEOWNERS +0 -1
  46. package/dist/history/export.d.ts +0 -2
  47. package/dist/history/export.d.ts.map +0 -1
  48. package/dist/history/export.js +0 -2
  49. package/dist/history/export.js.map +0 -1
  50. package/frontend/build/static/js/main.96d6324b.js.map +0 -1
  51. /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
  *
@@ -315,7 +215,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
315
215
  * @param pluginName - The name of the plugin.
316
216
  * @returns The serialized Matterbridge device object.
317
217
  */
318
- serialize(pluginName: string): SerializedMatterbridgeDevice | undefined;
218
+ serialize(): SerializedMatterbridgeDevice | undefined;
319
219
  /**
320
220
  * Deserializes the device into a serialized object.
321
221
  *
@@ -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>;
@@ -1081,11 +985,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1081
985
  }>, void, any>;
1082
986
  readonly stepWithOnOff: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1083
987
  stepMode: import("@project-chip/matter.js/tlv").FieldType<LevelControl.StepMode>;
1084
- stepSize: import("@project-chip/matter.js/tlv" /**
1085
- * Creates a default power source wired cluster server.
1086
- *
1087
- * @param wiredCurrentType - The type of wired current (default: PowerSource.WiredCurrentType.Ac)
1088
- */).FieldType<number>;
988
+ stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1089
989
  transitionTime: import("@project-chip/matter.js/tlv").FieldType<number | null>;
1090
990
  optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1091
991
  executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
@@ -1153,15 +1053,16 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1153
1053
  createDefaultLevelControlClusterServer(currentLevel?: number): void;
1154
1054
  /**
1155
1055
  * Get a default color control cluster server.
1156
- * @deprecated This method is deprecated and will be removed in a future version. Use getDefaultCompleteColorControlClusterServer.
1157
1056
  *
1057
+ * @param currentX - The current X value.
1058
+ * @param currentY - The current Y value.
1158
1059
  * @param currentHue - The current hue value.
1159
1060
  * @param currentSaturation - The current saturation value.
1160
1061
  * @param colorTemperatureMireds - The color temperature in mireds.
1161
1062
  * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1162
1063
  * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1163
1064
  */
1164
- 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<{
1165
1066
  readonly id: 768;
1166
1067
  readonly name: "ColorControl";
1167
1068
  readonly revision: 6;
@@ -1536,923 +1437,124 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
1536
1437
  };
1537
1438
  };
1538
1439
  }];
1539
- }>, readonly [ColorControl.Feature.HueSaturation, ColorControl.Feature.ColorTemperature]>>;
1440
+ }>, readonly [ColorControl.Feature.Xy, ColorControl.Feature.HueSaturation, ColorControl.Feature.ColorTemperature]>>;
1540
1441
  /**
1541
1442
  * Creates a default color control cluster server.
1542
- * @deprecated This method is deprecated and will be removed in a future version. Use createDefaultCompleteColorControlClusterServer.
1543
1443
  *
1444
+ * @param currentX - The current X value.
1445
+ * @param currentY - The current Y value.
1544
1446
  * @param currentHue - The current hue value.
1545
1447
  * @param currentSaturation - The current saturation value.
1546
1448
  * @param colorTemperatureMireds - The color temperature in mireds.
1547
1449
  * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1548
1450
  * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1549
1451
  */
1550
- 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;
1551
1453
  /**
1552
- * Get a default color control cluster server.
1553
- * @deprecated This method is deprecated and will be removed in a future version. Use getDefaultCompleteColorControlClusterServer.
1454
+ * Configures the color control cluster for a device.
1554
1455
  *
1555
- * @param currentX - The current X value.
1556
- * @param currentY - The current Y value.
1557
- * @param currentHue - The current hue value.
1558
- * @param currentSaturation - The current saturation value.
1559
- * @param colorTemperatureMireds - The color temperature in mireds.
1560
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1561
- * @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.
1562
1464
  */
1563
- 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<{
1564
- readonly id: 768;
1565
- readonly name: "ColorControl";
1566
- 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;
1567
1482
  readonly features: {
1568
- readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
1569
- readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
1570
- readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
1571
- readonly xy: import("@project-chip/matter.js/schema").BitFlag;
1572
- 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;
1573
1488
  };
1574
1489
  readonly attributes: {
1575
- readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1576
- readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
1577
- readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
1578
- readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
1579
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1580
- 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;
1581
1499
  }>, any>;
1582
- readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
1583
- readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1584
- readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1585
- readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1586
- readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1587
- readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1588
- readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1589
- readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1590
- readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1591
- readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1592
- readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1593
- readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1594
- readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1595
- readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1596
- readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1597
- readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1598
- readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1599
- readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1600
- readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1601
- readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1602
- readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1603
- readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1604
- readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1605
- readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1606
- readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1607
- readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1608
- readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1609
- readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1610
- readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1611
- readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1612
- readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
1613
- readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1614
- hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
1615
- enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
1616
- colorLoop: import("@project-chip/matter.js/schema").BitFlag;
1617
- xy: import("@project-chip/matter.js/schema").BitFlag;
1618
- 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;
1619
1525
  }>, any>;
1620
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
+ };
1621
1532
  readonly extensions: readonly [{
1622
1533
  readonly flags: {
1623
- readonly hueSaturation: true;
1534
+ readonly lift: true;
1535
+ readonly positionAwareLift: true;
1536
+ readonly absolutePosition: true;
1624
1537
  };
1625
1538
  readonly component: {
1626
1539
  readonly attributes: {
1627
- readonly currentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1628
- readonly currentSaturation: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1629
- };
1630
- readonly commands: {
1631
- readonly moveToHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1632
- hue: import("@project-chip/matter.js/tlv").FieldType<number>;
1633
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Direction>;
1634
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1635
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1636
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1637
- }>>;
1638
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1639
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1640
- }>>;
1641
- }>, void, any>;
1642
- readonly moveHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1643
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
1644
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
1645
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1646
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1647
- }>>;
1648
- optionsOverride: 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
- }>, void, any>;
1652
- readonly stepHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1653
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
1654
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1655
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1656
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1657
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1658
- }>>;
1659
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1660
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1661
- }>>;
1662
- }>, void, any>;
1663
- readonly moveToSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1664
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
1665
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1666
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1667
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1668
- }>>;
1669
- optionsOverride: 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
- }>, void, any>;
1673
- readonly moveSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1674
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
1675
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
1676
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1677
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1678
- }>>;
1679
- optionsOverride: 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
- }>, void, any>;
1683
- readonly stepSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1684
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
1685
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1686
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1687
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1688
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1689
- }>>;
1690
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1691
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1692
- }>>;
1693
- }>, void, any>;
1694
- readonly moveToHueAndSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1695
- hue: import("@project-chip/matter.js/tlv").FieldType<number>;
1696
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
1697
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1698
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1699
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1700
- }>>;
1701
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1702
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1703
- }>>;
1704
- }>, 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>;
1705
1544
  };
1706
1545
  };
1707
1546
  }, {
1708
1547
  readonly flags: {
1709
- readonly xy: true;
1548
+ readonly tilt: true;
1549
+ readonly positionAwareTilt: true;
1550
+ readonly absolutePosition: true;
1710
1551
  };
1711
1552
  readonly component: {
1712
1553
  readonly attributes: {
1713
- readonly currentX: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1714
- readonly currentY: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1715
- };
1716
- readonly commands: {
1717
- readonly moveToColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1718
- colorX: import("@project-chip/matter.js/tlv").FieldType<number>;
1719
- colorY: import("@project-chip/matter.js/tlv").FieldType<number>;
1720
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1721
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1722
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1723
- }>>;
1724
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1725
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1726
- }>>;
1727
- }>, void, any>;
1728
- readonly moveColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1729
- rateX: import("@project-chip/matter.js/tlv").FieldType<number>;
1730
- rateY: import("@project-chip/matter.js/tlv").FieldType<number>;
1731
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1732
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1733
- }>>;
1734
- optionsOverride: 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
- }>, void, any>;
1738
- readonly stepColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1739
- stepX: import("@project-chip/matter.js/tlv").FieldType<number>;
1740
- stepY: import("@project-chip/matter.js/tlv").FieldType<number>;
1741
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1742
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1743
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1744
- }>>;
1745
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1746
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1747
- }>>;
1748
- }>, void, any>;
1749
- };
1750
- };
1751
- }, {
1752
- readonly flags: {
1753
- readonly colorTemperature: true;
1754
- };
1755
- readonly component: {
1756
- readonly attributes: {
1757
- readonly colorTemperatureMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1758
- readonly colorTempPhysicalMinMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1759
- readonly colorTempPhysicalMaxMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1760
- readonly coupleColorTempToLevelMinMireds: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1761
- readonly startUpColorTemperatureMireds: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1762
- };
1763
- readonly commands: {
1764
- readonly moveToColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1765
- colorTemperatureMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
1766
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1767
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1768
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1769
- }>>;
1770
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1771
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1772
- }>>;
1773
- }>, void, any>;
1774
- readonly moveColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1775
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
1776
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
1777
- colorTemperatureMinimumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
1778
- colorTemperatureMaximumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
1779
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1780
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1781
- }>>;
1782
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1783
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1784
- }>>;
1785
- }>, void, any>;
1786
- readonly stepColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1787
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
1788
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1789
- transitionTime: 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
- };
1800
- };
1801
- }, {
1802
- readonly flags: {
1803
- readonly enhancedHue: true;
1804
- };
1805
- readonly component: {
1806
- readonly attributes: {
1807
- readonly enhancedCurrentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1808
- };
1809
- readonly commands: {
1810
- readonly enhancedMoveToHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1811
- enhancedHue: import("@project-chip/matter.js/tlv").FieldType<number>;
1812
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Direction>;
1813
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1814
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1815
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1816
- }>>;
1817
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1818
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1819
- }>>;
1820
- }>, void, any>;
1821
- readonly enhancedMoveHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1822
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
1823
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
1824
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1825
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1826
- }>>;
1827
- optionsOverride: 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
- }>, void, any>;
1831
- readonly enhancedStepHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1832
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
1833
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
1834
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1835
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1836
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1837
- }>>;
1838
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1839
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1840
- }>>;
1841
- }>, void, any>;
1842
- readonly enhancedMoveToHueAndSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1843
- enhancedHue: import("@project-chip/matter.js/tlv").FieldType<number>;
1844
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
1845
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
1846
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1847
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1848
- }>>;
1849
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1850
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1851
- }>>;
1852
- }>, void, any>;
1853
- };
1854
- };
1855
- }, {
1856
- readonly flags: {
1857
- readonly colorLoop: true;
1858
- };
1859
- readonly component: {
1860
- readonly attributes: {
1861
- readonly colorLoopActive: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorLoopActive, any>;
1862
- readonly colorLoopDirection: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorLoopDirection, any>;
1863
- readonly colorLoopTime: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1864
- readonly colorLoopStartEnhancedHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1865
- readonly colorLoopStoredEnhancedHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1866
- };
1867
- readonly commands: {
1868
- readonly colorLoopSet: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1869
- updateFlags: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1870
- updateAction: import("@project-chip/matter.js/schema").BitFlag;
1871
- updateDirection: import("@project-chip/matter.js/schema").BitFlag;
1872
- updateTime: import("@project-chip/matter.js/schema").BitFlag;
1873
- updateStartHue: import("@project-chip/matter.js/schema").BitFlag;
1874
- reserved: import("@project-chip/matter.js/schema").BitField;
1875
- }>>;
1876
- action: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Action>;
1877
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.ColorLoopSetDirection>;
1878
- time: import("@project-chip/matter.js/tlv").FieldType<number>;
1879
- startHue: import("@project-chip/matter.js/tlv").FieldType<number>;
1880
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1881
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1882
- }>>;
1883
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1884
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1885
- }>>;
1886
- }>, void, any>;
1887
- };
1888
- };
1889
- }, {
1890
- readonly flags: {
1891
- readonly hueSaturation: true;
1892
- };
1893
- readonly component: {
1894
- readonly commands: {
1895
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1896
- optionsMask: 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
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1900
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1901
- }>>;
1902
- }>, void, any>;
1903
- };
1904
- };
1905
- }, {
1906
- readonly flags: {
1907
- readonly xy: true;
1908
- };
1909
- readonly component: {
1910
- readonly commands: {
1911
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1912
- optionsMask: 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
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1916
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1917
- }>>;
1918
- }>, void, any>;
1919
- };
1920
- };
1921
- }, {
1922
- readonly flags: {
1923
- readonly colorTemperature: true;
1924
- };
1925
- readonly component: {
1926
- readonly commands: {
1927
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
1928
- optionsMask: 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
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1932
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1933
- }>>;
1934
- }>, void, any>;
1935
- };
1936
- };
1937
- }];
1938
- }>, readonly [ColorControl.Feature.Xy, ColorControl.Feature.HueSaturation, ColorControl.Feature.ColorTemperature]>>;
1939
- /**
1940
- * Creates a default color control cluster server.
1941
- * @deprecated This method is deprecated and will be removed in a future version. Use createDefaultCompleteColorControlClusterServer.
1942
- *
1943
- * @param currentX - The current X value.
1944
- * @param currentY - The current Y value.
1945
- * @param currentHue - The current hue value.
1946
- * @param currentSaturation - The current saturation value.
1947
- * @param colorTemperatureMireds - The color temperature in mireds.
1948
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1949
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1950
- */
1951
- createDefaultXYColorControlClusterServer(currentX?: number, currentY?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
1952
- /**
1953
- * Get a default color control cluster server.
1954
- *
1955
- * @param currentX - The current X value.
1956
- * @param currentY - The current Y value.
1957
- * @param currentHue - The current hue value.
1958
- * @param currentSaturation - The current saturation value.
1959
- * @param colorTemperatureMireds - The color temperature in mireds.
1960
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1961
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1962
- */
1963
- 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<{
1964
- readonly id: 768;
1965
- readonly name: "ColorControl";
1966
- readonly revision: 6;
1967
- readonly features: {
1968
- readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
1969
- readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
1970
- readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
1971
- readonly xy: import("@project-chip/matter.js/schema").BitFlag;
1972
- readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
1973
- };
1974
- readonly attributes: {
1975
- readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1976
- readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
1977
- readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
1978
- readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
1979
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
1980
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
1981
- }>, any>;
1982
- readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
1983
- readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1984
- readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1985
- readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1986
- readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1987
- readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1988
- readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1989
- readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1990
- readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1991
- readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1992
- readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1993
- readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1994
- readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1995
- readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1996
- readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1997
- readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1998
- readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1999
- readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2000
- readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
2001
- readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2002
- readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2003
- readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2004
- readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2005
- readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2006
- readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2007
- readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2008
- readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2009
- readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2010
- readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2011
- readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2012
- readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
2013
- readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2014
- hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
2015
- enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
2016
- colorLoop: import("@project-chip/matter.js/schema").BitFlag;
2017
- xy: import("@project-chip/matter.js/schema").BitFlag;
2018
- colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
2019
- }>, any>;
2020
- };
2021
- readonly extensions: readonly [{
2022
- readonly flags: {
2023
- readonly hueSaturation: true;
2024
- };
2025
- readonly component: {
2026
- readonly attributes: {
2027
- readonly currentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2028
- readonly currentSaturation: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2029
- };
2030
- readonly commands: {
2031
- readonly moveToHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2032
- hue: import("@project-chip/matter.js/tlv").FieldType<number>;
2033
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Direction>;
2034
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2035
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2036
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2037
- }>>;
2038
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2039
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2040
- }>>;
2041
- }>, void, any>;
2042
- readonly moveHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2043
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
2044
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
2045
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2046
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2047
- }>>;
2048
- optionsOverride: 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
- }>, void, any>;
2052
- readonly stepHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2053
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
2054
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
2055
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2056
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2057
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2058
- }>>;
2059
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2060
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2061
- }>>;
2062
- }>, void, any>;
2063
- readonly moveToSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2064
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
2065
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2066
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2067
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2068
- }>>;
2069
- optionsOverride: 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
- }>, void, any>;
2073
- readonly moveSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2074
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
2075
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
2076
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2077
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2078
- }>>;
2079
- optionsOverride: 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
- }>, void, any>;
2083
- readonly stepSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2084
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
2085
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
2086
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2087
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2088
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2089
- }>>;
2090
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2091
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2092
- }>>;
2093
- }>, void, any>;
2094
- readonly moveToHueAndSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2095
- hue: import("@project-chip/matter.js/tlv").FieldType<number>;
2096
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
2097
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2098
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2099
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2100
- }>>;
2101
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2102
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2103
- }>>;
2104
- }>, void, any>;
2105
- };
2106
- };
2107
- }, {
2108
- readonly flags: {
2109
- readonly xy: true;
2110
- };
2111
- readonly component: {
2112
- readonly attributes: {
2113
- readonly currentX: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2114
- readonly currentY: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2115
- };
2116
- readonly commands: {
2117
- readonly moveToColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2118
- colorX: import("@project-chip/matter.js/tlv").FieldType<number>;
2119
- colorY: import("@project-chip/matter.js/tlv").FieldType<number>;
2120
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2121
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2122
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2123
- }>>;
2124
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2125
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2126
- }>>;
2127
- }>, void, any>;
2128
- readonly moveColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2129
- rateX: import("@project-chip/matter.js/tlv").FieldType<number>;
2130
- rateY: import("@project-chip/matter.js/tlv").FieldType<number>;
2131
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2132
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2133
- }>>;
2134
- optionsOverride: 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
- }>, void, any>;
2138
- readonly stepColor: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2139
- stepX: import("@project-chip/matter.js/tlv").FieldType<number>;
2140
- stepY: import("@project-chip/matter.js/tlv").FieldType<number>;
2141
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2142
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2143
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2144
- }>>;
2145
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2146
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2147
- }>>;
2148
- }>, void, any>;
2149
- };
2150
- };
2151
- }, {
2152
- readonly flags: {
2153
- readonly colorTemperature: true;
2154
- };
2155
- readonly component: {
2156
- readonly attributes: {
2157
- readonly colorTemperatureMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2158
- readonly colorTempPhysicalMinMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2159
- readonly colorTempPhysicalMaxMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2160
- readonly coupleColorTempToLevelMinMireds: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2161
- readonly startUpColorTemperatureMireds: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2162
- };
2163
- readonly commands: {
2164
- readonly moveToColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2165
- colorTemperatureMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
2166
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2167
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2168
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2169
- }>>;
2170
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2171
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2172
- }>>;
2173
- }>, void, any>;
2174
- readonly moveColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2175
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
2176
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
2177
- colorTemperatureMinimumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
2178
- colorTemperatureMaximumMireds: import("@project-chip/matter.js/tlv").FieldType<number>;
2179
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2180
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2181
- }>>;
2182
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2183
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2184
- }>>;
2185
- }>, void, any>;
2186
- readonly stepColorTemperature: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2187
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
2188
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
2189
- transitionTime: 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
- };
2200
- };
2201
- }, {
2202
- readonly flags: {
2203
- readonly enhancedHue: true;
2204
- };
2205
- readonly component: {
2206
- readonly attributes: {
2207
- readonly enhancedCurrentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2208
- };
2209
- readonly commands: {
2210
- readonly enhancedMoveToHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2211
- enhancedHue: import("@project-chip/matter.js/tlv").FieldType<number>;
2212
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Direction>;
2213
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2214
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2215
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2216
- }>>;
2217
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2218
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2219
- }>>;
2220
- }>, void, any>;
2221
- readonly enhancedMoveHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2222
- moveMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.MoveMode>;
2223
- rate: import("@project-chip/matter.js/tlv").FieldType<number>;
2224
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2225
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2226
- }>>;
2227
- optionsOverride: 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
- }>, void, any>;
2231
- readonly enhancedStepHue: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2232
- stepMode: import("@project-chip/matter.js/tlv").FieldType<ColorControl.StepMode>;
2233
- stepSize: import("@project-chip/matter.js/tlv").FieldType<number>;
2234
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2235
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2236
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2237
- }>>;
2238
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2239
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2240
- }>>;
2241
- }>, void, any>;
2242
- readonly enhancedMoveToHueAndSaturation: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2243
- enhancedHue: import("@project-chip/matter.js/tlv").FieldType<number>;
2244
- saturation: import("@project-chip/matter.js/tlv").FieldType<number>;
2245
- transitionTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2246
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2247
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2248
- }>>;
2249
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2250
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2251
- }>>;
2252
- }>, void, any>;
2253
- };
2254
- };
2255
- }, {
2256
- readonly flags: {
2257
- readonly colorLoop: true;
2258
- };
2259
- readonly component: {
2260
- readonly attributes: {
2261
- readonly colorLoopActive: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorLoopActive, any>;
2262
- readonly colorLoopDirection: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorLoopDirection, any>;
2263
- readonly colorLoopTime: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2264
- readonly colorLoopStartEnhancedHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2265
- readonly colorLoopStoredEnhancedHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2266
- };
2267
- readonly commands: {
2268
- readonly colorLoopSet: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2269
- updateFlags: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2270
- updateAction: import("@project-chip/matter.js/schema").BitFlag;
2271
- updateDirection: import("@project-chip/matter.js/schema").BitFlag;
2272
- updateTime: import("@project-chip/matter.js/schema").BitFlag;
2273
- updateStartHue: import("@project-chip/matter.js/schema").BitFlag;
2274
- reserved: import("@project-chip/matter.js/schema").BitField;
2275
- }>>;
2276
- action: import("@project-chip/matter.js/tlv").FieldType<ColorControl.Action>;
2277
- direction: import("@project-chip/matter.js/tlv").FieldType<ColorControl.ColorLoopSetDirection>;
2278
- time: import("@project-chip/matter.js/tlv").FieldType<number>;
2279
- startHue: import("@project-chip/matter.js/tlv").FieldType<number>;
2280
- optionsMask: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2281
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2282
- }>>;
2283
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2284
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2285
- }>>;
2286
- }>, void, any>;
2287
- };
2288
- };
2289
- }, {
2290
- readonly flags: {
2291
- readonly hueSaturation: true;
2292
- };
2293
- readonly component: {
2294
- readonly commands: {
2295
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2296
- optionsMask: 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
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2300
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2301
- }>>;
2302
- }>, void, any>;
2303
- };
2304
- };
2305
- }, {
2306
- readonly flags: {
2307
- readonly xy: true;
2308
- };
2309
- readonly component: {
2310
- readonly commands: {
2311
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2312
- optionsMask: 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
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2316
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2317
- }>>;
2318
- }>, void, any>;
2319
- };
2320
- };
2321
- }, {
2322
- readonly flags: {
2323
- readonly colorTemperature: true;
2324
- };
2325
- readonly component: {
2326
- readonly commands: {
2327
- readonly stopMoveStep: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
2328
- optionsMask: 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
- optionsOverride: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2332
- executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
2333
- }>>;
2334
- }>, void, any>;
2335
- };
2336
- };
2337
- }];
2338
- }>, readonly [ColorControl.Feature.Xy, ColorControl.Feature.HueSaturation, ColorControl.Feature.ColorTemperature]>>;
2339
- /**
2340
- * Creates a default color control cluster server.
2341
- *
2342
- * @param currentX - The current X value.
2343
- * @param currentY - The current Y value.
2344
- * @param currentHue - The current hue value.
2345
- * @param currentSaturation - The current saturation value.
2346
- * @param colorTemperatureMireds - The color temperature in mireds.
2347
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
2348
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
2349
- */
2350
- createDefaultCompleteColorControlClusterServer(currentX?: number, currentY?: number, currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
2351
- /**
2352
- * Configures the color control cluster for a device.
2353
- *
2354
- * @remark This method must be called only after creating the cluster with getDefaultCompleteColorControlClusterServer or createDefaultCompleteColorControlClusterServer
2355
- * and before starting the matter server.
2356
- *
2357
- * @param {boolean} hueSaturation - A boolean indicating whether the device supports hue and saturation control.
2358
- * @param {boolean} xy - A boolean indicating whether the device supports XY control.
2359
- * @param {boolean} colorTemperature - A boolean indicating whether the device supports color temperature control.
2360
- * @param {ColorControl.ColorMode} colorMode - An optional parameter specifying the color mode of the device.
2361
- * @param {Endpoint} endpoint - An optional parameter specifying the endpoint to configure. If not provided, the device endpoint will be used.
2362
- */
2363
- configureColorControlCluster(hueSaturation: boolean, xy: boolean, colorTemperature: boolean, colorMode?: ColorControl.ColorMode, endpoint?: Endpoint): void;
2364
- /**
2365
- * Configures the color control mode for the device.
2366
- *
2367
- * @param {ColorControl.ColorMode} colorMode - The color mode to set.
2368
- * @param {Endpoint} endpoint - The optional endpoint to configure. If not provided, the method will configure the current endpoint.
2369
- */
2370
- configureColorControlMode(colorMode: ColorControl.ColorMode, endpoint?: Endpoint): void;
2371
- /**
2372
- * Get a default window covering cluster server.
2373
- *
2374
- * @param positionPercent100ths - The position percentage in 100ths (0-10000). Defaults to 0.
2375
- */
2376
- 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<{
2377
- readonly id: 258;
2378
- readonly name: "WindowCovering";
2379
- readonly revision: 5;
2380
- readonly features: {
2381
- readonly lift: import("@project-chip/matter.js/schema").BitFlag;
2382
- readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
2383
- readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
2384
- readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
2385
- readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
2386
- };
2387
- readonly attributes: {
2388
- readonly type: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.WindowCoveringType, any>;
2389
- readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2390
- operational: import("@project-chip/matter.js/schema").BitFlag;
2391
- onlineReserved: import("@project-chip/matter.js/schema").BitFlag;
2392
- liftMovementReversed: import("@project-chip/matter.js/schema").BitFlag;
2393
- liftPositionAware: import("@project-chip/matter.js/schema").BitFlag;
2394
- tiltPositionAware: import("@project-chip/matter.js/schema").BitFlag;
2395
- liftEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
2396
- tiltEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
2397
- }>, any>;
2398
- readonly operationalStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2399
- global: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
2400
- lift: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
2401
- tilt: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
2402
- }>, any>;
2403
- readonly endProductType: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.EndProductType, any>;
2404
- readonly mode: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2405
- motorDirectionReversed: import("@project-chip/matter.js/schema").BitFlag;
2406
- calibrationMode: import("@project-chip/matter.js/schema").BitFlag;
2407
- maintenanceMode: import("@project-chip/matter.js/schema").BitFlag;
2408
- ledFeedback: import("@project-chip/matter.js/schema").BitFlag;
2409
- }>, any>;
2410
- readonly safetyStatus: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
2411
- remoteLockout: import("@project-chip/matter.js/schema").BitFlag;
2412
- tamperDetection: import("@project-chip/matter.js/schema").BitFlag;
2413
- failedCommunication: import("@project-chip/matter.js/schema").BitFlag;
2414
- positionFailure: import("@project-chip/matter.js/schema").BitFlag;
2415
- thermalProtection: import("@project-chip/matter.js/schema").BitFlag;
2416
- obstacleDetected: import("@project-chip/matter.js/schema").BitFlag;
2417
- power: import("@project-chip/matter.js/schema").BitFlag;
2418
- stopInput: import("@project-chip/matter.js/schema").BitFlag;
2419
- motorJammed: import("@project-chip/matter.js/schema").BitFlag;
2420
- hardwareFailure: import("@project-chip/matter.js/schema").BitFlag;
2421
- manualOperation: import("@project-chip/matter.js/schema").BitFlag;
2422
- protection: import("@project-chip/matter.js/schema").BitFlag;
2423
- }>, any>;
2424
- };
2425
- readonly commands: {
2426
- readonly upOrOpen: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
2427
- readonly downOrClose: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
2428
- readonly stopMotion: import("@project-chip/matter-node.js/cluster").Command<void, void, any>;
2429
- };
2430
- readonly extensions: readonly [{
2431
- readonly flags: {
2432
- readonly lift: true;
2433
- readonly positionAwareLift: true;
2434
- readonly absolutePosition: true;
2435
- };
2436
- readonly component: {
2437
- readonly attributes: {
2438
- readonly physicalClosedLimitLift: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2439
- readonly currentPositionLift: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2440
- readonly installedOpenLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2441
- readonly installedClosedLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2442
- };
2443
- };
2444
- }, {
2445
- readonly flags: {
2446
- readonly tilt: true;
2447
- readonly positionAwareTilt: true;
2448
- readonly absolutePosition: true;
2449
- };
2450
- readonly component: {
2451
- readonly attributes: {
2452
- readonly physicalClosedLimitTilt: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2453
- readonly currentPositionTilt: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2454
- readonly installedOpenLimitTilt: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2455
- 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>;
2456
1558
  };
2457
1559
  };
2458
1560
  }, {
@@ -2673,7 +1775,14 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
2673
1775
  };
2674
1776
  readonly component: {
2675
1777
  readonly events: {
2676
- 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<{
2677
1786
  newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
2678
1787
  }>, any>;
2679
1788
  };
@@ -2811,7 +1920,14 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
2811
1920
  };
2812
1921
  readonly component: {
2813
1922
  readonly events: {
2814
- 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<{
2815
1931
  newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
2816
1932
  }>, any>;
2817
1933
  };
@@ -2903,8 +2019,6 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
2903
2019
  /**
2904
2020
  * Retrieves the default mode select cluster server.
2905
2021
  *
2906
- * @deprecated This method is currently under development and should not be used.
2907
- *
2908
2022
  * @param description - The description of the cluster server.
2909
2023
  * @param supportedModes - The supported modes for the cluster server.
2910
2024
  * @param currentMode - The current mode of the cluster server. Defaults to 0.
@@ -2918,11 +2032,9 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
2918
2032
  * @remarks
2919
2033
  * This method adds a cluster server for a mode select cluster with default settings.
2920
2034
  *
2921
- * @deprecated This method is currently under development and should not be used.
2922
- *
2923
2035
  * @param endpoint - The endpoint to add the cluster server to. Defaults to `this` if not provided.
2924
2036
  */
2925
- createDefaultModeSelectClusterServer(endpoint?: Endpoint): void;
2037
+ createDefaultModeSelectClusterServer(description: string, supportedModes: ModeSelect.ModeOption[], currentMode?: number, startUpMode?: number, endpoint?: Endpoint): void;
2926
2038
  /**
2927
2039
  * Get a default occupancy sensing cluster server.
2928
2040
  *
@@ -3028,11 +2140,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
3028
2140
  }>, any>;
3029
2141
  };
3030
2142
  readonly events: {
3031
- readonly sensorFault: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv" /**
3032
- * Deserializes the device into a serialized object.
3033
- *
3034
- * @returns The deserialized MatterbridgeDevice.
3035
- */).TypeFromFields<{
2143
+ readonly sensorFault: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
3036
2144
  sensorFault: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
3037
2145
  generalFault: import("@project-chip/matter.js/schema").BitFlag;
3038
2146
  }>>;
@@ -3069,20 +2177,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
3069
2177
  }>, any>;
3070
2178
  };
3071
2179
  readonly commands: {
3072
- readonly enableDisableAlarm: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv" /**
3073
- * Creates a default Basic Information Cluster Server.
3074
- *
3075
- * @param deviceName - The name of the device.
3076
- * @param serialNumber - The serial number of the device.
3077
- * @param vendorId - The vendor ID of the device.
3078
- * @param vendorName - The vendor name of the device.
3079
- * @param productId - The product ID of the device.
3080
- * @param productName - The product name of the device.
3081
- * @param softwareVersion - The software version of the device. Default is 1.
3082
- * @param softwareVersionString - The software version string of the device. Default is 'v.1.0.0'.
3083
- * @param hardwareVersion - The hardware version of the device. Default is 1.
3084
- * @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
3085
- */).TypeFromFields<{
2180
+ readonly enableDisableAlarm: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
3086
2181
  alarmsToEnableDisable: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
3087
2182
  visual: import("@project-chip/matter.js/schema").BitFlag;
3088
2183
  audible: import("@project-chip/matter.js/schema").BitFlag;
@@ -3730,12 +2825,17 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
3730
2825
  /**
3731
2826
  * Get a default thermostat cluster server with the specified parameters.
3732
2827
  *
3733
- * @param localTemperature - The local temperature value in degrees Celsius. Defaults to 23.
3734
- * @param occupiedHeatingSetpoint - The occupied heating setpoint value in degrees Celsius. Defaults to 21.
3735
- * @param occupiedCoolingSetpoint - The occupied cooling setpoint value in degrees Celsius. Defaults to 25.
3736
- * @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.
3737
2837
  */
3738
- 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<{
3739
2839
  readonly id: 513;
3740
2840
  readonly name: "Thermostat";
3741
2841
  readonly revision: 6;
@@ -3996,12 +3096,16 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
3996
3096
  /**
3997
3097
  * Creates and adds a default thermostat cluster server to the device.
3998
3098
  *
3999
- * @param localTemperature - The local temperature value.
4000
- * @param occupiedHeatingSetpoint - The occupied heating setpoint value.
4001
- * @param occupiedCoolingSetpoint - The occupied cooling setpoint value.
4002
- * @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°.
4003
3107
  */
4004
- 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;
4005
3109
  /**
4006
3110
  * Get a default dummy time sync cluster server. Only needed to create a thermostat.
4007
3111
  */
@@ -4102,13 +3206,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
4102
3206
  dstOffsetsRequired: import("@project-chip/matter.js/tlv").FieldType<boolean>;
4103
3207
  }>, any>;
4104
3208
  readonly setDstOffset: import("@project-chip/matter-node.js/cluster").Command<import("@project-chip/matter.js/tlv").TypeFromFields<{
4105
- dstOffset: import("@project-chip/matter.js/tlv").FieldType<import(
4106
- /**
4107
- * Creates a default TVOC measurement cluster server.
4108
- *
4109
- * @param measuredValue - The measured value for TVOC.
4110
- */
4111
- "@project-chip/matter.js/tlv").TypeFromFields<{
3209
+ dstOffset: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
4112
3210
  offset: import("@project-chip/matter.js/tlv").FieldType<number>;
4113
3211
  validStarting: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
4114
3212
  validUntil: import("@project-chip/matter.js/tlv").FieldType<number | bigint | null>;
@@ -5270,7 +4368,7 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
5270
4368
  };
5271
4369
  };
5272
4370
  }];
5273
- }>, readonly [FanControl.Feature.MultiSpeed, FanControl.Feature.Auto]>>;
4371
+ }>, readonly [FanControl.Feature.MultiSpeed, FanControl.Feature.Auto, FanControl.Feature.Step]>>;
5274
4372
  /**
5275
4373
  * Create the default fan control cluster server rev 2.
5276
4374
  *