matterbridge 1.3.8 → 1.3.10

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 (30) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/__mocks__/@project-chip/matter-node.js/util.js +41 -0
  3. package/dist/cluster/ElectricalPowerMeasurementCluster.js +4 -4
  4. package/dist/cluster/ElectricalPowerMeasurementCluster.js.map +1 -1
  5. package/dist/matterbridge.d.ts +57 -6
  6. package/dist/matterbridge.d.ts.map +1 -1
  7. package/dist/matterbridge.js +183 -57
  8. package/dist/matterbridge.js.map +1 -1
  9. package/dist/utils.d.ts +21 -1
  10. package/dist/utils.d.ts.map +1 -1
  11. package/dist/utils.js +23 -2
  12. package/dist/utils.js.map +1 -1
  13. package/frontend/build/asset-manifest.json +6 -6
  14. package/frontend/build/index.html +1 -1
  15. package/frontend/build/static/css/main.8e9f022b.css +2 -0
  16. package/frontend/build/static/css/main.8e9f022b.css.map +1 -0
  17. package/frontend/build/static/js/{main.942a74a2.js → main.cf22e7af.js} +3 -3
  18. package/frontend/build/static/js/{main.942a74a2.js.map → main.cf22e7af.js.map} +1 -1
  19. package/package.json +5 -4
  20. package/dist/matterbridgeDeviceV8.d.ts +0 -2981
  21. package/dist/matterbridgeDeviceV8.d.ts.map +0 -1
  22. package/dist/matterbridgeDeviceV8.js +0 -1888
  23. package/dist/matterbridgeDeviceV8.js.map +0 -1
  24. package/dist/matterbridgeV8.d.ts +0 -142
  25. package/dist/matterbridgeV8.d.ts.map +0 -1
  26. package/dist/matterbridgeV8.js +0 -703
  27. package/dist/matterbridgeV8.js.map +0 -1
  28. package/frontend/build/static/css/main.abff2627.css +0 -8
  29. package/frontend/build/static/css/main.abff2627.css.map +0 -1
  30. /package/frontend/build/static/js/{main.942a74a2.js.LICENSE.txt → main.cf22e7af.js.LICENSE.txt} +0 -0
@@ -1,2981 +0,0 @@
1
- import { Endpoint } from '@project-chip/matter.js/endpoint';
2
- import { Behavior } from '@project-chip/matter.js/behavior';
3
- import { DeviceTypeDefinition, EndpointOptions } from '@project-chip/matter-node.js/device';
4
- import { Attributes, BridgedDeviceBasicInformation, Cluster, ClusterServerObj, ColorControl, Commands, DoorLock, Events, FanControl, Identify, OccupancySensing, PowerSource, Thermostat, TimeSync, WindowCovering } from '@project-chip/matter-node.js/cluster';
5
- import { AtLeastOne } from '@project-chip/matter-node.js/util';
6
- import { ClusterId, VendorId } from '@project-chip/matter-node.js/datatype';
7
- import { AnsiLogger } from 'node-ansi-logger';
8
- import { ElectricalPowerMeasurement } from './cluster/ElectricalPowerMeasurementCluster.js';
9
- import { SmokeCoAlarm } from './cluster/SmokeCoAlarmCluster.js';
10
- import { AirQuality } from './cluster/AirQualityCluster.js';
11
- import { TvocMeasurement } from './cluster/TvocCluster.js';
12
- import { DeviceEnergyManagement } from './cluster/DeviceEnergyManagementCluster.js';
13
- import { MeasurementType } from './cluster/MeasurementType.js';
14
- import { ConcentrationMeasurement } from './cluster/ConcentrationMeasurementCluster.js';
15
- import { BitSchema, TypeFromPartialBitSchema } from '@project-chip/matter-node.js/schema';
16
- export declare class MatterbridgeDeviceV8 extends Endpoint {
17
- static bridgeMode: string;
18
- log: AnsiLogger;
19
- serialNumber: string | undefined;
20
- deviceName: string | undefined;
21
- uniqueId: string | undefined;
22
- private readonly deviceTypes;
23
- private readonly clusterServers;
24
- private readonly clusterClients;
25
- /**
26
- * Represents a Matterbridge device.
27
- * @constructor
28
- * @param {DeviceTypeDefinition} definition - The definition of the device.
29
- * @param {EndpointOptions} [options={}] - The options for the device.
30
- */
31
- constructor(definition: DeviceTypeDefinition, options?: EndpointOptions);
32
- static getBehaviourTypesFromClusterServerIds(clusterServerList: ClusterId[]): Behavior.Type[];
33
- static getBehaviourTypesFromClusterClientIds(clusterServerList: ClusterId[]): Behavior.Type[];
34
- /**
35
- * Loads an instance of the MatterbridgeDevice class.
36
- *
37
- * @param {DeviceTypeDefinition} definition - The DeviceTypeDefinition of the device.
38
- * @returns MatterbridgeDevice instance.
39
- */
40
- static loadInstance(definition: DeviceTypeDefinition, options?: EndpointOptions): Promise<MatterbridgeDeviceV8>;
41
- /**
42
- * Adds a device type to the list of device types.
43
- * If the device type is not already present in the list, it will be added.
44
- *
45
- * @param {DeviceTypeDefinition} deviceType - The device type to add.
46
- */
47
- addDeviceType(deviceType: DeviceTypeDefinition): void;
48
- /**
49
- * Adds one or more device types with the required cluster servers and the specified cluster servers.
50
- *
51
- * @param {AtLeastOne<DeviceTypeDefinition>} deviceTypes - The device types to add.
52
- * @param {ClusterId[]} includeServerList - The list of cluster IDs to include.
53
- */
54
- addDeviceTypeWithClusterServer(deviceTypes: AtLeastOne<DeviceTypeDefinition>, includeServerList: ClusterId[]): void;
55
- /**
56
- * Adds a child endpoint with one or more device types with the required cluster servers and the specified cluster servers.
57
- * If the child endpoint is not already present in the childEndpoints, it will be added.
58
- * If the child endpoint is already present in the childEndpoints, the device types and cluster servers will be added to the existing child endpoint.
59
- *
60
- * @param {string} endpointName - The name of the new enpoint to add.
61
- * @param {AtLeastOne<DeviceTypeDefinition>} deviceTypes - The device types to add.
62
- * @param {ClusterId[]} includeServerList - The list of cluster IDs to include.
63
- * @returns {Endpoint} - The child endpoint that was found or added.
64
- */
65
- addChildDeviceTypeWithClusterServer(endpointName: string, deviceTypes: AtLeastOne<DeviceTypeDefinition>, includeServerList: ClusterId[]): void;
66
- getClusterServer<F extends BitSchema, SF extends TypeFromPartialBitSchema<F>, A extends Attributes, C extends Commands, E extends Events>(cluster: Cluster<F, SF, A, C, E>): ClusterServerObj<A, E> | undefined;
67
- addClusterServer<A extends Attributes, E extends Events>(cluster: ClusterServerObj<A, E>): void;
68
- /**
69
- * Adds cluster servers to the specified endpoint based on the provided server list.
70
- *
71
- * @param {Endpoint} endpoint - The endpoint to add cluster servers to.
72
- * @param {ClusterId[]} includeServerList - The list of cluster IDs to include.
73
- * @returns void
74
- */
75
- addClusterServerFromList(endpoint: MatterbridgeDeviceV8, includeServerList: ClusterId[]): void;
76
- /**
77
- * Returns a default static EveHistoryClusterServer object with the specified voltage, current, power, and consumption values.
78
- * This shows up in HA as a static sensor!
79
- * @param voltage - The voltage value (default: 0).
80
- * @param current - The current value (default: 0).
81
- * @param power - The power value (default: 0).
82
- * @param consumption - The consumption value (default: 0).
83
- * @returns The default static EveHistoryClusterServer object.
84
- */
85
- getDefaultStaticEveHistoryClusterServer(voltage?: number, current?: number, power?: number, consumption?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
86
- readonly ConfigDataGet: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
87
- readonly ConfigDataSet: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
88
- readonly HistoryStatus: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
89
- readonly HistoryEntries: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
90
- readonly HistoryRequest: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
91
- readonly HistorySetTime: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
92
- readonly TimesOpened: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
93
- readonly LastEvent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
94
- readonly Voltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
95
- readonly Current: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
96
- readonly Consumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
97
- readonly TotalConsumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
98
- readonly EnergyUnknown: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
99
- readonly MotionSensitivity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
100
- readonly ResetTotal: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
101
- readonly ChildLock: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
102
- readonly RLoc: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
103
- readonly Elevation: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
104
- readonly AirPressure: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
105
- readonly WeatherTrend: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
106
- readonly TemperatureDisplayUnits: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
107
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
108
- readonly eveDoor: import("@project-chip/matter-node.js/schema").BitFlag;
109
- readonly eveMotion: import("@project-chip/matter-node.js/schema").BitFlag;
110
- readonly eveEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
111
- readonly eveWeather: import("@project-chip/matter-node.js/schema").BitFlag;
112
- readonly eveRoom: import("@project-chip/matter-node.js/schema").BitFlag;
113
- }>>, "ConfigDataGet" | "ConfigDataSet" | "HistoryStatus" | "HistoryEntries" | "HistoryRequest" | "HistorySetTime" | "LastEvent" | "TimesOpened" | "ResetTotal" | "RLoc" | "MotionSensitivity" | "Voltage" | "Current" | "Consumption" | "TotalConsumption" | "EnergyUnknown" | "ChildLock" | "Elevation" | "AirPressure" | "WeatherTrend" | "TemperatureDisplayUnits" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
114
- readonly eveDoor: import("@project-chip/matter-node.js/schema").BitFlag;
115
- readonly eveMotion: import("@project-chip/matter-node.js/schema").BitFlag;
116
- readonly eveEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
117
- readonly eveWeather: import("@project-chip/matter-node.js/schema").BitFlag;
118
- readonly eveRoom: import("@project-chip/matter-node.js/schema").BitFlag;
119
- }>> & Omit<{
120
- readonly ConfigDataGet: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
121
- readonly ConfigDataSet: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
122
- readonly HistoryStatus: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
123
- readonly HistoryEntries: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
124
- readonly HistoryRequest: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
125
- readonly HistorySetTime: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
126
- readonly LastEvent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
127
- readonly ResetTotal: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
128
- readonly Voltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
129
- readonly Current: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
130
- readonly Consumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
131
- readonly TotalConsumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
132
- readonly EnergyUnknown: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
133
- readonly ChildLock: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
134
- readonly RLoc: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
135
- }, "ConfigDataGet" | "ConfigDataSet" | "HistoryStatus" | "HistoryEntries" | "HistoryRequest" | "HistorySetTime" | "LastEvent" | "TimesOpened" | "ResetTotal" | "RLoc" | "MotionSensitivity" | "Voltage" | "Current" | "Consumption" | "TotalConsumption" | "EnergyUnknown" | "ChildLock" | "Elevation" | "AirPressure" | "WeatherTrend" | "TemperatureDisplayUnits" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
136
- readonly eveDoor: import("@project-chip/matter-node.js/schema").BitFlag;
137
- readonly eveMotion: import("@project-chip/matter-node.js/schema").BitFlag;
138
- readonly eveEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
139
- readonly eveWeather: import("@project-chip/matter-node.js/schema").BitFlag;
140
- readonly eveRoom: import("@project-chip/matter-node.js/schema").BitFlag;
141
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
142
- readonly ConfigDataGet: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
143
- readonly ConfigDataSet: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
144
- readonly HistoryStatus: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
145
- readonly HistoryEntries: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
146
- readonly HistoryRequest: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
147
- readonly HistorySetTime: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
148
- readonly TimesOpened: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
149
- readonly LastEvent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
150
- readonly Voltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
151
- readonly Current: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
152
- readonly Consumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
153
- readonly TotalConsumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
154
- readonly EnergyUnknown: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
155
- readonly MotionSensitivity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
156
- readonly ResetTotal: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
157
- readonly ChildLock: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
158
- readonly RLoc: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
159
- readonly Elevation: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
160
- readonly AirPressure: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
161
- readonly WeatherTrend: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
162
- readonly TemperatureDisplayUnits: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
163
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
164
- readonly eveDoor: import("@project-chip/matter-node.js/schema").BitFlag;
165
- readonly eveMotion: import("@project-chip/matter-node.js/schema").BitFlag;
166
- readonly eveEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
167
- readonly eveWeather: import("@project-chip/matter-node.js/schema").BitFlag;
168
- readonly eveRoom: import("@project-chip/matter-node.js/schema").BitFlag;
169
- }>>, "ConfigDataGet" | "ConfigDataSet" | "HistoryStatus" | "HistoryEntries" | "HistoryRequest" | "HistorySetTime" | "LastEvent" | "TimesOpened" | "ResetTotal" | "RLoc" | "MotionSensitivity" | "Voltage" | "Current" | "Consumption" | "TotalConsumption" | "EnergyUnknown" | "ChildLock" | "Elevation" | "AirPressure" | "WeatherTrend" | "TemperatureDisplayUnits" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
170
- readonly eveDoor: import("@project-chip/matter-node.js/schema").BitFlag;
171
- readonly eveMotion: import("@project-chip/matter-node.js/schema").BitFlag;
172
- readonly eveEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
173
- readonly eveWeather: import("@project-chip/matter-node.js/schema").BitFlag;
174
- readonly eveRoom: import("@project-chip/matter-node.js/schema").BitFlag;
175
- }>>, Pick<{}, never> & Omit<{}, never>>;
176
- /**
177
- * Get a default IdentifyCluster server.
178
- */
179
- getDefaultIdentifyClusterServer(): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
180
- readonly identifyTime: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
181
- readonly identifyType: import("@project-chip/matter-node.js/cluster").Attribute<Identify.IdentifyType, any>;
182
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
183
- readonly query: import("@project-chip/matter-node.js/schema").BitFlag;
184
- }>>, {}>;
185
- /**
186
- * Creates a default IdentifyCluster server.
187
- */
188
- createDefaultIdentifyClusterServer(): void;
189
- /**
190
- * Get a default IdentifyCluster server.
191
- */
192
- getDefaultGroupsClusterServer(): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
193
- readonly nameSupport: import("@project-chip/matter-node.js/cluster").FixedAttribute<TypeFromPartialBitSchema<{
194
- nameSupport: import("@project-chip/matter-node.js/schema").BitFlag;
195
- }>, any>;
196
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
197
- readonly groupNames: import("@project-chip/matter-node.js/schema").BitFlag;
198
- }>>, {}>;
199
- /**
200
- * Creates a default groups cluster server and adds it to the device.
201
- */
202
- createDefaultGroupsClusterServer(): void;
203
- /**
204
- * Get a default scenes cluster server and adds it to the current instance.
205
- */
206
- getDefaultScenesClusterServer(): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
207
- readonly sceneCount: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
208
- readonly currentScene: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
209
- readonly currentGroup: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter-node.js/datatype").GroupId, any>;
210
- readonly sceneValid: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
211
- readonly nameSupport: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
212
- nameSupport: import("@project-chip/matter-node.js/schema").BitFlag;
213
- }>, any>;
214
- readonly lastConfiguredBy: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter-node.js/datatype").NodeId | null, any>;
215
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
216
- readonly sceneNames: import("@project-chip/matter-node.js/schema").BitFlag;
217
- }>>, {}>;
218
- /**
219
- * Creates a default scenes cluster server and adds it to the current instance.
220
- */
221
- createDefaultScenesClusterServer(): void;
222
- /**
223
- * Creates a unique identifier based on the provided parameters.
224
- * @param param1 - The first parameter.
225
- * @param param2 - The second parameter.
226
- * @param param3 - The third parameter.
227
- * @param param4 - The fourth parameter.
228
- * @returns A unique identifier generated using the MD5 hash algorithm.
229
- */
230
- private createUniqueId;
231
- /**
232
- * Get a default Basic Information Cluster Server.
233
- *
234
- * @param deviceName - The name of the device.
235
- * @param serialNumber - The serial number of the device.
236
- * @param vendorId - The vendor ID of the device.
237
- * @param vendorName - The vendor name of the device.
238
- * @param productId - The product ID of the device.
239
- * @param productName - The product name of the device.
240
- * @param softwareVersion - The software version of the device. Default is 1.
241
- * @param softwareVersionString - The software version string of the device. Default is 'v.1.0.0'.
242
- * @param hardwareVersion - The hardware version of the device. Default is 1.
243
- * @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
244
- */
245
- getDefaultBasicInformationClusterServer(deviceName: string, serialNumber: string, vendorId: number, vendorName: string, productId: number, productName: string, softwareVersion?: number, softwareVersionString?: string, hardwareVersion?: number, hardwareVersionString?: string): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
246
- readonly dataModelRevision: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
247
- readonly vendorName: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
248
- readonly vendorId: import("@project-chip/matter-node.js/cluster").FixedAttribute<VendorId, any>;
249
- readonly productName: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
250
- readonly productId: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
251
- readonly nodeLabel: import("@project-chip/matter-node.js/cluster").WritableAttribute<string, any>;
252
- readonly location: import("@project-chip/matter-node.js/cluster").WritableAttribute<string, any>;
253
- readonly hardwareVersion: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
254
- readonly hardwareVersionString: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
255
- readonly softwareVersion: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
256
- readonly softwareVersionString: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
257
- readonly manufacturingDate: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
258
- readonly partNumber: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
259
- readonly productUrl: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
260
- readonly productLabel: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
261
- readonly serialNumber: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
262
- readonly localConfigDisabled: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
263
- readonly reachable: import("@project-chip/matter-node.js/cluster").OptionalAttribute<boolean, any>;
264
- readonly uniqueId: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
265
- readonly capabilityMinima: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
266
- caseSessionsPerFabric: import("@project-chip/matter.js/tlv").FieldType<number>;
267
- subscriptionsPerFabric: import("@project-chip/matter.js/tlv").FieldType<number>;
268
- }>, any>;
269
- readonly productAppearance: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
270
- finish: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/cluster").BasicInformation.ProductFinish>;
271
- primaryColor: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/cluster").BasicInformation.Color | null>;
272
- }>, any>;
273
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {
274
- readonly startUp: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
275
- softwareVersion: import("@project-chip/matter.js/tlv").FieldType<number>;
276
- }>, any>;
277
- readonly shutDown: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
278
- readonly leave: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
279
- fabricIndex: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").FabricIndex>;
280
- }>, any>;
281
- readonly reachableChanged: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
282
- reachableNewValue: import("@project-chip/matter.js/tlv").FieldType<boolean>;
283
- }>, any>;
284
- }>;
285
- /**
286
- * Creates a default Basic Information Cluster Server.
287
- *
288
- * @param deviceName - The name of the device.
289
- * @param serialNumber - The serial number of the device.
290
- * @param vendorId - The vendor ID of the device.
291
- * @param vendorName - The vendor name of the device.
292
- * @param productId - The product ID of the device.
293
- * @param productName - The product name of the device.
294
- * @param softwareVersion - The software version of the device. Default is 1.
295
- * @param softwareVersionString - The software version string of the device. Default is 'v.1.0.0'.
296
- * @param hardwareVersion - The hardware version of the device. Default is 1.
297
- * @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
298
- */
299
- createDefaultBasicInformationClusterServer(deviceName: string, serialNumber: string, vendorId: number, vendorName: string, productId: number, productName: string, softwareVersion?: number, softwareVersionString?: string, hardwareVersion?: number, hardwareVersionString?: string): void;
300
- /**
301
- * Get a default BridgedDeviceBasicInformationClusterServer.
302
- *
303
- * @param deviceName - The name of the device.
304
- * @param serialNumber - The serial number of the device.
305
- * @param vendorId - The vendor ID of the device.
306
- * @param vendorName - The name of the vendor.
307
- * @param productName - The name of the product.
308
- * @param softwareVersion - The software version of the device. Default is 1.
309
- * @param softwareVersionString - The software version string of the device. Default is 'v.1.0.0'.
310
- * @param hardwareVersion - The hardware version of the device. Default is 1.
311
- * @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
312
- */
313
- getDefaultBridgedDeviceBasicInformationClusterServer(deviceName: string, serialNumber: string, vendorId: number, vendorName: string, productName: string, softwareVersion?: number, softwareVersionString?: string, hardwareVersion?: number, hardwareVersionString?: string): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
314
- readonly vendorName: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
315
- readonly vendorId: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<VendorId, any>;
316
- readonly productName: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
317
- readonly nodeLabel: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<string, any>;
318
- readonly hardwareVersion: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
319
- readonly hardwareVersionString: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
320
- readonly softwareVersion: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
321
- readonly softwareVersionString: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
322
- readonly manufacturingDate: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
323
- readonly partNumber: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
324
- readonly productUrl: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
325
- readonly productLabel: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
326
- readonly serialNumber: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
327
- readonly reachable: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
328
- readonly uniqueId: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
329
- readonly productAppearance: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
330
- finish: import("@project-chip/matter.js/tlv").FieldType<BridgedDeviceBasicInformation.ProductFinish>;
331
- primaryColor: import("@project-chip/matter.js/tlv").FieldType<BridgedDeviceBasicInformation.Color | null>;
332
- }>, any>;
333
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {
334
- readonly startUp: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
335
- softwareVersion: import("@project-chip/matter.js/tlv").FieldType<number>;
336
- }>, any>;
337
- readonly shutDown: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
338
- readonly leave: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
339
- readonly reachableChanged: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
340
- reachableNewValue: import("@project-chip/matter.js/tlv").FieldType<boolean>;
341
- }>, any>;
342
- }>;
343
- /**
344
- * Creates a default BridgedDeviceBasicInformationClusterServer.
345
- *
346
- * @param deviceName - The name of the device.
347
- * @param serialNumber - The serial number of the device.
348
- * @param vendorId - The vendor ID of the device.
349
- * @param vendorName - The name of the vendor.
350
- * @param productName - The name of the product.
351
- * @param softwareVersion - The software version of the device. Default is 1.
352
- * @param softwareVersionString - The software version string of the device. Default is 'v.1.0.0'.
353
- * @param hardwareVersion - The hardware version of the device. Default is 1.
354
- * @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
355
- */
356
- createDefaultBridgedDeviceBasicInformationClusterServer(deviceName: string, serialNumber: string, vendorId: number, vendorName: string, productName: string, softwareVersion?: number, softwareVersionString?: string, hardwareVersion?: number, hardwareVersionString?: string): void;
357
- /**
358
- * Get a default Electrical Energy Measurement Cluster Server.
359
- *
360
- * @param energy - The total consumption value.
361
- */
362
- getDefaultPowerTopologyClusterServer(): ClusterServerObj<Pick<{}, never> & Omit<{}, never>, Pick<{}, never> & Omit<{}, never>>;
363
- /**
364
- * Get a default Electrical Energy Measurement Cluster Server.
365
- *
366
- * @param energy - The total consumption value.
367
- */
368
- getDefaultElectricalEnergyMeasurementClusterServer(energy?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
369
- readonly accuracy: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
370
- measurementType: import("@project-chip/matter.js/tlv").FieldType<MeasurementType>;
371
- measured: import("@project-chip/matter.js/tlv").FieldType<boolean>;
372
- minMeasuredValue: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
373
- maxMeasuredValue: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
374
- accuracyRanges: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
375
- rangeMin: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
376
- rangeMax: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
377
- percentMax: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
378
- percentMin: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
379
- percentTypical: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
380
- fixedMax: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
381
- fixedMin: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
382
- fixedTypical: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
383
- }>[]>;
384
- }>, any>;
385
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
386
- readonly importedEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
387
- readonly exportedEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
388
- readonly cumulativeEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
389
- readonly periodicEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
390
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "accuracy"> & Omit<{
391
- readonly cumulativeEnergyImported: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
392
- energy: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
393
- startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
394
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
395
- startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
396
- endSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
397
- }> | null, any>;
398
- } & {
399
- readonly cumulativeEnergyExported: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
400
- energy: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
401
- startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
402
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
403
- startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
404
- endSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
405
- }> | null, any>;
406
- } & {
407
- readonly cumulativeEnergyReset: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
408
- importedResetTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number | null>;
409
- exportedResetTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number | null>;
410
- importedResetSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint | null>;
411
- exportedResetSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint | null>;
412
- }> | null, any>;
413
- }, "accuracy" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
414
- readonly importedEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
415
- readonly exportedEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
416
- readonly cumulativeEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
417
- readonly periodicEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
418
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
419
- readonly accuracy: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
420
- measurementType: import("@project-chip/matter.js/tlv").FieldType<MeasurementType>;
421
- measured: import("@project-chip/matter.js/tlv").FieldType<boolean>;
422
- minMeasuredValue: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
423
- maxMeasuredValue: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
424
- accuracyRanges: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
425
- rangeMin: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
426
- rangeMax: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
427
- percentMax: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
428
- percentMin: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
429
- percentTypical: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
430
- fixedMax: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
431
- fixedMin: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
432
- fixedTypical: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
433
- }>[]>;
434
- }>, any>;
435
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
436
- readonly importedEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
437
- readonly exportedEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
438
- readonly cumulativeEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
439
- readonly periodicEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
440
- }>>, "accuracy" | "cumulativeEnergyImported" | "cumulativeEnergyExported" | "cumulativeEnergyReset" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
441
- readonly importedEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
442
- readonly exportedEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
443
- readonly cumulativeEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
444
- readonly periodicEnergy: import("@project-chip/matter-node.js/schema").BitFlag;
445
- }>>, Pick<{}, never> & Omit<{
446
- readonly cumulativeEnergyMeasured: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
447
- energyImported: import("@project-chip/matter.js/tlv").OptionalFieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
448
- energy: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
449
- startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
450
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
451
- startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
452
- endSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
453
- }>>;
454
- energyExported: import("@project-chip/matter.js/tlv").OptionalFieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
455
- energy: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
456
- startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
457
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
458
- startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
459
- endSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
460
- }>>;
461
- }>, any>;
462
- }, never> & Omit<{}, "cumulativeEnergyMeasured">>;
463
- /**
464
- * Get a default Electrical Power Measurement Cluster Server.
465
- *
466
- * @param energy - The total consumption value.
467
- */
468
- getDefaultElectricalPowerMeasurementClusterServer(voltage?: number, current?: number, power?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
469
- readonly powerMode: import("@project-chip/matter-node.js/cluster").Attribute<ElectricalPowerMeasurement.PowerMode, any>;
470
- readonly numberOfMeasurementTypes: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
471
- readonly accuracy: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
472
- measurementType: import("@project-chip/matter.js/tlv").FieldType<MeasurementType>;
473
- measured: import("@project-chip/matter.js/tlv").FieldType<boolean>;
474
- minMeasuredValue: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
475
- maxMeasuredValue: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
476
- accuracyRanges: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
477
- rangeMin: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
478
- rangeMax: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
479
- percentMax: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
480
- percentMin: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
481
- percentTypical: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
482
- fixedMax: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
483
- fixedMin: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
484
- fixedTypical: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
485
- }>[]>;
486
- }>[], any>;
487
- readonly ranges: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
488
- measurementType: import("@project-chip/matter.js/tlv").FieldType<MeasurementType>;
489
- min: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
490
- max: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
491
- startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
492
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
493
- minTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
494
- maxTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
495
- startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
496
- endSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
497
- minSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
498
- maxSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
499
- }>[], any>;
500
- readonly voltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
501
- readonly activeCurrent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
502
- readonly activePower: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint | null, any>;
503
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
504
- readonly directCurrent: import("@project-chip/matter-node.js/schema").BitFlag;
505
- readonly alternatingCurrent: import("@project-chip/matter-node.js/schema").BitFlag;
506
- readonly polyphasePower: import("@project-chip/matter-node.js/schema").BitFlag;
507
- readonly harmonics: import("@project-chip/matter-node.js/schema").BitFlag;
508
- readonly powerQuality: import("@project-chip/matter-node.js/schema").BitFlag;
509
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "ranges" | "powerMode" | "numberOfMeasurementTypes" | "accuracy" | "voltage" | "activeCurrent" | "activePower"> & Omit<{
510
- readonly reactiveCurrent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
511
- readonly apparentCurrent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
512
- readonly reactivePower: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
513
- readonly apparentPower: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
514
- readonly rmsVoltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
515
- readonly rmsCurrent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
516
- readonly rmsPower: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
517
- readonly frequency: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
518
- readonly powerFactor: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
519
- }, "ranges" | "powerMode" | "numberOfMeasurementTypes" | "accuracy" | "voltage" | "activeCurrent" | "activePower" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
520
- readonly directCurrent: import("@project-chip/matter-node.js/schema").BitFlag;
521
- readonly alternatingCurrent: import("@project-chip/matter-node.js/schema").BitFlag;
522
- readonly polyphasePower: import("@project-chip/matter-node.js/schema").BitFlag;
523
- readonly harmonics: import("@project-chip/matter-node.js/schema").BitFlag;
524
- readonly powerQuality: import("@project-chip/matter-node.js/schema").BitFlag;
525
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
526
- readonly powerMode: import("@project-chip/matter-node.js/cluster").Attribute<ElectricalPowerMeasurement.PowerMode, any>;
527
- readonly numberOfMeasurementTypes: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
528
- readonly accuracy: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
529
- measurementType: import("@project-chip/matter.js/tlv").FieldType<MeasurementType>;
530
- measured: import("@project-chip/matter.js/tlv").FieldType<boolean>;
531
- minMeasuredValue: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
532
- maxMeasuredValue: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
533
- accuracyRanges: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
534
- rangeMin: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
535
- rangeMax: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
536
- percentMax: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
537
- percentMin: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
538
- percentTypical: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
539
- fixedMax: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
540
- fixedMin: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
541
- fixedTypical: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
542
- }>[]>;
543
- }>[], any>;
544
- readonly ranges: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
545
- measurementType: import("@project-chip/matter.js/tlv").FieldType<MeasurementType>;
546
- min: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
547
- max: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
548
- startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
549
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
550
- minTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
551
- maxTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
552
- startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
553
- endSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
554
- minSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
555
- maxSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
556
- }>[], any>;
557
- readonly voltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
558
- readonly activeCurrent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | bigint | null, any>;
559
- readonly activePower: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint | null, any>;
560
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
561
- readonly directCurrent: import("@project-chip/matter-node.js/schema").BitFlag;
562
- readonly alternatingCurrent: import("@project-chip/matter-node.js/schema").BitFlag;
563
- readonly polyphasePower: import("@project-chip/matter-node.js/schema").BitFlag;
564
- readonly harmonics: import("@project-chip/matter-node.js/schema").BitFlag;
565
- readonly powerQuality: import("@project-chip/matter-node.js/schema").BitFlag;
566
- }>>, "ranges" | "reactiveCurrent" | "apparentCurrent" | "reactivePower" | "apparentPower" | "rmsVoltage" | "rmsCurrent" | "rmsPower" | "frequency" | "powerFactor" | "powerMode" | "numberOfMeasurementTypes" | "accuracy" | "voltage" | "activeCurrent" | "activePower" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
567
- readonly directCurrent: import("@project-chip/matter-node.js/schema").BitFlag;
568
- readonly alternatingCurrent: import("@project-chip/matter-node.js/schema").BitFlag;
569
- readonly polyphasePower: import("@project-chip/matter-node.js/schema").BitFlag;
570
- readonly harmonics: import("@project-chip/matter-node.js/schema").BitFlag;
571
- readonly powerQuality: import("@project-chip/matter-node.js/schema").BitFlag;
572
- }>>, Pick<{
573
- readonly measurementPeriodRanges: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
574
- ranges: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
575
- measurementType: import("@project-chip/matter.js/tlv").FieldType<MeasurementType>;
576
- min: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
577
- max: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
578
- startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
579
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
580
- minTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
581
- maxTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
582
- startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
583
- endSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
584
- minSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
585
- maxSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
586
- }>[]>;
587
- }>, any>;
588
- }, "measurementPeriodRanges"> & Omit<{}, "measurementPeriodRanges"> & Omit<{
589
- readonly measurementPeriodRanges: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
590
- ranges: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
591
- measurementType: import("@project-chip/matter.js/tlv").FieldType<MeasurementType>;
592
- min: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
593
- max: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
594
- startTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
595
- endTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
596
- minTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
597
- maxTimestamp: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
598
- startSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
599
- endSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
600
- minSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
601
- maxSystime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
602
- }>[]>;
603
- }>, any>;
604
- }, "measurementPeriodRanges">>;
605
- /**
606
- * @deprecated This method is deprecated and will be removed in a future version.
607
- * Get a default Electrical Measurement Cluster Server.
608
- *
609
- * @param voltage - The RMS voltage value.
610
- * @param current - The RMS current value.
611
- * @param power - The active power value.
612
- * @param consumption - The total active power consumption value.
613
- */
614
- getDefaultElectricalMeasurementClusterServer(voltage?: number, current?: number, power?: number, consumption?: number): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
615
- readonly measurementType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
616
- readonly dcVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
617
- readonly dcVoltageMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
618
- readonly dcVoltageMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
619
- readonly dcCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
620
- readonly dcCurrentMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
621
- readonly dcCurrentMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
622
- readonly dcPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
623
- readonly dcPowerMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
624
- readonly dcPowerMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
625
- readonly dcVoltageMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
626
- readonly dcVoltageDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
627
- readonly dcCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
628
- readonly dcCurrentDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
629
- readonly dcPowerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
630
- readonly dcPowerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
631
- readonly acFrequency: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
632
- readonly acFrequencyMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
633
- readonly acFrequencyMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
634
- readonly neutralCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
635
- readonly totalActivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
636
- readonly totalReactivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
637
- readonly totalApparentPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
638
- readonly measured1StHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
639
- readonly measured3RdHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
640
- readonly measured5ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
641
- readonly measured7ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
642
- readonly measured9ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
643
- readonly measured11ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
644
- readonly measuredPhase1StHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
645
- readonly measuredPhase3RdHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
646
- readonly measuredPhase5ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
647
- readonly measuredPhase7ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
648
- readonly measuredPhase9ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
649
- readonly measuredPhase11ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
650
- readonly acFrequencyMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
651
- readonly acFrequencyDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
652
- readonly powerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
653
- readonly powerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
654
- readonly harmonicCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
655
- readonly phaseHarmonicCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
656
- readonly instantaneousVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
657
- readonly instantaneousLineCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
658
- readonly instantaneousActiveCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
659
- readonly instantaneousReactiveCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
660
- readonly instantaneousPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
661
- readonly rmsVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
662
- readonly rmsVoltageMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
663
- readonly rmsVoltageMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
664
- readonly rmsCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
665
- readonly rmsCurrentMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
666
- readonly rmsCurrentMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
667
- readonly activePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
668
- readonly activePowerMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
669
- readonly activePowerMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
670
- readonly reactivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
671
- readonly apparentPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
672
- readonly acPowerFactor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
673
- readonly averageRmsVoltageMeasurementPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
674
- readonly averageRmsUnderVoltageCounter: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
675
- readonly rmsExtremeOverVoltagePeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
676
- readonly rmsExtremeUnderVoltagePeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
677
- readonly rmsVoltageSagPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
678
- readonly rmsVoltageSwellPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
679
- readonly acVoltageMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
680
- readonly acVoltageDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
681
- readonly acCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
682
- readonly acCurrentDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
683
- readonly acPowerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
684
- readonly acPowerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
685
- readonly dcOverloadAlarmsMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
686
- readonly dcVoltageOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
687
- readonly dcCurrentOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
688
- readonly acOverloadAlarmsMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
689
- readonly acVoltageOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
690
- readonly acCurrentOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
691
- readonly acPowerOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
692
- readonly acReactivePowerOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
693
- readonly averageRmsOverVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
694
- readonly averageRmsUnderVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
695
- readonly rmsExtremeOverVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
696
- readonly rmsExtremeUnderVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
697
- readonly rmsVoltageSag: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
698
- readonly rmsVoltageSwell: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
699
- readonly lineCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
700
- readonly activeCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
701
- readonly reactiveCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
702
- readonly rmsVoltagePhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
703
- readonly rmsVoltageMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
704
- readonly rmsVoltageMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
705
- readonly rmsCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
706
- readonly rmsCurrentMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
707
- readonly rmsCurrentMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
708
- readonly activePowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
709
- readonly activePowerMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
710
- readonly activePowerMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
711
- readonly reactivePowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
712
- readonly apparentPowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
713
- readonly powerFactorPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
714
- readonly averageRmsVoltageMeasurementPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
715
- readonly averageRmsOverVoltageCounterPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
716
- readonly averageRmsUnderVoltageCounterPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
717
- readonly rmsExtremeOverVoltagePeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
718
- readonly rmsExtremeUnderVoltagePeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
719
- readonly rmsVoltageSagPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
720
- readonly rmsVoltageSwellPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
721
- readonly lineCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
722
- readonly activeCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
723
- readonly reactiveCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
724
- readonly rmsVoltagePhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
725
- readonly rmsVoltageMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
726
- readonly rmsVoltageMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
727
- readonly rmsCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
728
- readonly rmsCurrentMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
729
- readonly rmsCurrentMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
730
- readonly activePowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
731
- readonly activePowerMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
732
- readonly activePowerMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
733
- readonly reactivePowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
734
- readonly apparentPowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
735
- readonly powerFactorPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
736
- readonly averageRmsVoltageMeasurementPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
737
- readonly averageRmsOverVoltageCounterPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
738
- readonly averageRmsUnderVoltageCounterPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
739
- readonly rmsExtremeOverVoltagePeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
740
- readonly rmsExtremeUnderVoltagePeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
741
- readonly rmsVoltageSagPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
742
- readonly rmsVoltageSwellPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
743
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
744
- /**
745
- * @deprecated This method is deprecated and will be removed in a future version.
746
- * Creates a default Electrical Measurement Cluster Server.
747
- *
748
- * @param voltage - The RMS voltage value.
749
- * @param current - The RMS current value.
750
- * @param power - The active power value.
751
- * @param consumption - The total active power consumption value.
752
- */
753
- createDefaultElectricalMeasurementClusterServer(voltage?: number, current?: number, power?: number, consumption?: number): void;
754
- /**
755
- * Creates a default Dummy Thread Network Diagnostics Cluster server.
756
- *
757
- * @remarks
758
- * This method adds a cluster server used only to give the networkName to Eve app.
759
- *
760
- * @returns void
761
- */
762
- createDefaultDummyThreadNetworkDiagnosticsClusterServer(): void;
763
- /**
764
- * Get a default OnOff cluster server.
765
- *
766
- * @param onOff - The initial state of the OnOff cluster (default: false).
767
- */
768
- getDefaultOnOffClusterServer(onOff?: boolean): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
769
- readonly onOff: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
770
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
771
- readonly levelControlForLighting: import("@project-chip/matter-node.js/schema").BitFlag;
772
- }>>, {}>;
773
- /**
774
- * Creates a default OnOff cluster server.
775
- *
776
- * @param onOff - The initial state of the OnOff cluster (default: false).
777
- */
778
- createDefaultOnOffClusterServer(onOff?: boolean): void;
779
- /**
780
- * Get a default level control cluster server.
781
- *
782
- * @param currentLevel - The current level (default: 0).
783
- */
784
- getDefaultLevelControlClusterServer(currentLevel?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
785
- readonly currentLevel: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
786
- readonly minLevel: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
787
- readonly maxLevel: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
788
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<TypeFromPartialBitSchema<{
789
- executeIfOff: import("@project-chip/matter-node.js/schema").BitFlag;
790
- coupleColorTempToLevel: import("@project-chip/matter-node.js/schema").BitFlag;
791
- }>, any>;
792
- readonly onOffTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
793
- readonly onLevel: import("@project-chip/matter-node.js/cluster").WritableAttribute<number | null, any>;
794
- readonly onTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
795
- readonly offTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
796
- readonly defaultMoveRate: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
797
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
798
- readonly onOff: import("@project-chip/matter-node.js/schema").BitFlag;
799
- readonly lighting: import("@project-chip/matter-node.js/schema").BitFlag;
800
- readonly frequency: import("@project-chip/matter-node.js/schema").BitFlag;
801
- }>>, "currentLevel" | "minLevel" | "maxLevel" | "options" | "onOffTransitionTime" | "onLevel" | "onTransitionTime" | "offTransitionTime" | "defaultMoveRate" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
802
- readonly onOff: import("@project-chip/matter-node.js/schema").BitFlag;
803
- readonly lighting: import("@project-chip/matter-node.js/schema").BitFlag;
804
- readonly frequency: import("@project-chip/matter-node.js/schema").BitFlag;
805
- }>> & Omit<{}, "currentLevel" | "minLevel" | "maxLevel" | "options" | "onOffTransitionTime" | "onLevel" | "onTransitionTime" | "offTransitionTime" | "defaultMoveRate" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
806
- readonly onOff: import("@project-chip/matter-node.js/schema").BitFlag;
807
- readonly lighting: import("@project-chip/matter-node.js/schema").BitFlag;
808
- readonly frequency: import("@project-chip/matter-node.js/schema").BitFlag;
809
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
810
- readonly currentLevel: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
811
- readonly minLevel: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
812
- readonly maxLevel: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
813
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<TypeFromPartialBitSchema<{
814
- executeIfOff: import("@project-chip/matter-node.js/schema").BitFlag;
815
- coupleColorTempToLevel: import("@project-chip/matter-node.js/schema").BitFlag;
816
- }>, any>;
817
- readonly onOffTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
818
- readonly onLevel: import("@project-chip/matter-node.js/cluster").WritableAttribute<number | null, any>;
819
- readonly onTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
820
- readonly offTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
821
- readonly defaultMoveRate: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
822
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
823
- readonly onOff: import("@project-chip/matter-node.js/schema").BitFlag;
824
- readonly lighting: import("@project-chip/matter-node.js/schema").BitFlag;
825
- readonly frequency: import("@project-chip/matter-node.js/schema").BitFlag;
826
- }>>, "currentLevel" | "minLevel" | "maxLevel" | "options" | "onOffTransitionTime" | "onLevel" | "onTransitionTime" | "offTransitionTime" | "defaultMoveRate" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
827
- readonly onOff: import("@project-chip/matter-node.js/schema").BitFlag;
828
- readonly lighting: import("@project-chip/matter-node.js/schema").BitFlag;
829
- readonly frequency: import("@project-chip/matter-node.js/schema").BitFlag;
830
- }>>, Pick<{}, never> & Omit<{}, never>>;
831
- /**
832
- * Creates a default level control cluster server.
833
- *
834
- * @param currentLevel - The current level (default: 0).
835
- */
836
- createDefaultLevelControlClusterServer(currentLevel?: number): void;
837
- /**
838
- * Get a default color control cluster server.
839
- *
840
- * @param currentHue - The current hue value.
841
- * @param currentSaturation - The current saturation value.
842
- * @param colorTemperatureMireds - The color temperature in mireds.
843
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
844
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
845
- */
846
- getDefaultColorControlClusterServer(currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
847
- readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
848
- readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
849
- readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
850
- readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
851
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<TypeFromPartialBitSchema<{
852
- executeIfOff: import("@project-chip/matter-node.js/schema").BitFlag;
853
- }>, any>;
854
- readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
855
- readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
856
- readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
857
- readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
858
- readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
859
- readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
860
- readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
861
- readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
862
- readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
863
- readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
864
- readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
865
- readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
866
- readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
867
- readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
868
- readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
869
- readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
870
- readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
871
- readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
872
- readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
873
- readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
874
- readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
875
- readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
876
- readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
877
- readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
878
- readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
879
- readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
880
- readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
881
- readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
882
- readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
883
- readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
884
- readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
885
- readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
886
- hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
887
- enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
888
- colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
889
- xy: import("@project-chip/matter-node.js/schema").BitFlag;
890
- colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
891
- }>, any>;
892
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
893
- readonly hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
894
- readonly enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
895
- readonly colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
896
- readonly xy: import("@project-chip/matter-node.js/schema").BitFlag;
897
- readonly colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
898
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "remainingTime" | "options" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities"> & Omit<{
899
- readonly currentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
900
- readonly currentSaturation: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
901
- } & {
902
- readonly colorTemperatureMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
903
- readonly colorTempPhysicalMinMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
904
- readonly colorTempPhysicalMaxMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
905
- readonly coupleColorTempToLevelMinMireds: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
906
- readonly startUpColorTemperatureMireds: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
907
- }, "remainingTime" | "options" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
908
- readonly hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
909
- readonly enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
910
- readonly colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
911
- readonly xy: import("@project-chip/matter-node.js/schema").BitFlag;
912
- readonly colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
913
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
914
- readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
915
- readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
916
- readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
917
- readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
918
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<TypeFromPartialBitSchema<{
919
- executeIfOff: import("@project-chip/matter-node.js/schema").BitFlag;
920
- }>, any>;
921
- readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
922
- readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
923
- readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
924
- readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
925
- readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
926
- readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
927
- readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
928
- readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
929
- readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
930
- readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
931
- readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
932
- readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
933
- readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
934
- readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
935
- readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
936
- readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
937
- readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
938
- readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
939
- readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
940
- readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
941
- readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
942
- readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
943
- readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
944
- readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
945
- readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
946
- readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
947
- readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
948
- readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
949
- readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
950
- readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
951
- readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
952
- readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
953
- hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
954
- enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
955
- colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
956
- xy: import("@project-chip/matter-node.js/schema").BitFlag;
957
- colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
958
- }>, any>;
959
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
960
- readonly hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
961
- readonly enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
962
- readonly colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
963
- readonly xy: import("@project-chip/matter-node.js/schema").BitFlag;
964
- readonly colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
965
- }>>, "remainingTime" | "options" | "currentHue" | "currentSaturation" | "colorTemperatureMireds" | "colorTempPhysicalMinMireds" | "colorTempPhysicalMaxMireds" | "coupleColorTempToLevelMinMireds" | "startUpColorTemperatureMireds" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
966
- readonly hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
967
- readonly enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
968
- readonly colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
969
- readonly xy: import("@project-chip/matter-node.js/schema").BitFlag;
970
- readonly colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
971
- }>>, Pick<{}, never> & Omit<{}, never>>;
972
- /**
973
- * Creates a default color control cluster server.
974
- *
975
- * @param currentHue - The current hue value.
976
- * @param currentSaturation - The current saturation value.
977
- * @param colorTemperatureMireds - The color temperature in mireds.
978
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
979
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
980
- */
981
- createDefaultColorControlClusterServer(currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
982
- /**
983
- * Get a default color control cluster server.
984
- *
985
- * @param currentHue - The current hue value.
986
- * @param currentSaturation - The current saturation value.
987
- * @param colorTemperatureMireds - The color temperature in mireds.
988
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
989
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
990
- */
991
- getDefaultXYColorControlClusterServer(currentX?: number, currentY?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
992
- readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
993
- readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
994
- readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
995
- readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
996
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<TypeFromPartialBitSchema<{
997
- executeIfOff: import("@project-chip/matter-node.js/schema").BitFlag;
998
- }>, any>;
999
- readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
1000
- readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1001
- readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1002
- readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1003
- readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1004
- readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1005
- readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1006
- readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1007
- readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1008
- readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1009
- readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1010
- readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1011
- readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1012
- readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1013
- readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1014
- readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1015
- readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1016
- readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1017
- readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1018
- readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1019
- readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1020
- readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1021
- readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1022
- readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1023
- readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1024
- readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1025
- readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1026
- readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1027
- readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1028
- readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1029
- readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
1030
- readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1031
- hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
1032
- enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
1033
- colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
1034
- xy: import("@project-chip/matter-node.js/schema").BitFlag;
1035
- colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
1036
- }>, any>;
1037
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1038
- readonly hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
1039
- readonly enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
1040
- readonly colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
1041
- readonly xy: import("@project-chip/matter-node.js/schema").BitFlag;
1042
- readonly colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
1043
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "remainingTime" | "options" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities"> & Omit<{
1044
- readonly currentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1045
- readonly currentSaturation: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1046
- } & {
1047
- readonly currentX: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1048
- readonly currentY: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1049
- } & {
1050
- readonly colorTemperatureMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1051
- readonly colorTempPhysicalMinMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1052
- readonly colorTempPhysicalMaxMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1053
- readonly coupleColorTempToLevelMinMireds: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1054
- readonly startUpColorTemperatureMireds: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1055
- }, "remainingTime" | "options" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1056
- readonly hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
1057
- readonly enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
1058
- readonly colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
1059
- readonly xy: import("@project-chip/matter-node.js/schema").BitFlag;
1060
- readonly colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
1061
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1062
- readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1063
- readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
1064
- readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
1065
- readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
1066
- readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<TypeFromPartialBitSchema<{
1067
- executeIfOff: import("@project-chip/matter-node.js/schema").BitFlag;
1068
- }>, any>;
1069
- readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
1070
- readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1071
- readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1072
- readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1073
- readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1074
- readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1075
- readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1076
- readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1077
- readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1078
- readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1079
- readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1080
- readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1081
- readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1082
- readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1083
- readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1084
- readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1085
- readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1086
- readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1087
- readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
1088
- readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1089
- readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1090
- readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1091
- readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1092
- readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1093
- readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1094
- readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1095
- readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1096
- readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1097
- readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1098
- readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1099
- readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
1100
- readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1101
- hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
1102
- enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
1103
- colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
1104
- xy: import("@project-chip/matter-node.js/schema").BitFlag;
1105
- colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
1106
- }>, any>;
1107
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1108
- readonly hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
1109
- readonly enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
1110
- readonly colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
1111
- readonly xy: import("@project-chip/matter-node.js/schema").BitFlag;
1112
- readonly colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
1113
- }>>, "remainingTime" | "options" | "currentHue" | "currentSaturation" | "currentX" | "currentY" | "colorTemperatureMireds" | "colorTempPhysicalMinMireds" | "colorTempPhysicalMaxMireds" | "coupleColorTempToLevelMinMireds" | "startUpColorTemperatureMireds" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1114
- readonly hueSaturation: import("@project-chip/matter-node.js/schema").BitFlag;
1115
- readonly enhancedHue: import("@project-chip/matter-node.js/schema").BitFlag;
1116
- readonly colorLoop: import("@project-chip/matter-node.js/schema").BitFlag;
1117
- readonly xy: import("@project-chip/matter-node.js/schema").BitFlag;
1118
- readonly colorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
1119
- }>>, Pick<{}, never> & Omit<{}, never>>;
1120
- /**
1121
- * Creates a default color control cluster server.
1122
- *
1123
- * @param currentHue - The current hue value.
1124
- * @param currentSaturation - The current saturation value.
1125
- * @param colorTemperatureMireds - The color temperature in mireds.
1126
- * @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
1127
- * @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
1128
- */
1129
- createDefaultXYColorControlClusterServer(currentX?: number, currentY?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
1130
- /**
1131
- * Get a default window covering cluster server.
1132
- *
1133
- * @param positionPercent100ths - The position percentage in 100ths (0-10000). Defaults to 0.
1134
- */
1135
- getDefaultWindowCoveringClusterServer(positionPercent100ths?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1136
- readonly type: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.WindowCoveringType, any>;
1137
- readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1138
- operational: import("@project-chip/matter-node.js/schema").BitFlag;
1139
- onlineReserved: import("@project-chip/matter-node.js/schema").BitFlag;
1140
- liftMovementReversed: import("@project-chip/matter-node.js/schema").BitFlag;
1141
- liftPositionAware: import("@project-chip/matter-node.js/schema").BitFlag;
1142
- tiltPositionAware: import("@project-chip/matter-node.js/schema").BitFlag;
1143
- liftEncoderControlled: import("@project-chip/matter-node.js/schema").BitFlag;
1144
- tiltEncoderControlled: import("@project-chip/matter-node.js/schema").BitFlag;
1145
- }>, any>;
1146
- readonly operationalStatus: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1147
- global: import("@project-chip/matter-node.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1148
- lift: import("@project-chip/matter-node.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1149
- tilt: import("@project-chip/matter-node.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1150
- }>, any>;
1151
- readonly endProductType: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.EndProductType, any>;
1152
- readonly mode: import("@project-chip/matter-node.js/cluster").WritableAttribute<TypeFromPartialBitSchema<{
1153
- motorDirectionReversed: import("@project-chip/matter-node.js/schema").BitFlag;
1154
- calibrationMode: import("@project-chip/matter-node.js/schema").BitFlag;
1155
- maintenanceMode: import("@project-chip/matter-node.js/schema").BitFlag;
1156
- ledFeedback: import("@project-chip/matter-node.js/schema").BitFlag;
1157
- }>, any>;
1158
- readonly safetyStatus: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
1159
- remoteLockout: import("@project-chip/matter-node.js/schema").BitFlag;
1160
- tamperDetection: import("@project-chip/matter-node.js/schema").BitFlag;
1161
- failedCommunication: import("@project-chip/matter-node.js/schema").BitFlag;
1162
- positionFailure: import("@project-chip/matter-node.js/schema").BitFlag;
1163
- thermalProtection: import("@project-chip/matter-node.js/schema").BitFlag;
1164
- obstacleDetected: import("@project-chip/matter-node.js/schema").BitFlag;
1165
- power: import("@project-chip/matter-node.js/schema").BitFlag;
1166
- stopInput: import("@project-chip/matter-node.js/schema").BitFlag;
1167
- motorJammed: import("@project-chip/matter-node.js/schema").BitFlag;
1168
- hardwareFailure: import("@project-chip/matter-node.js/schema").BitFlag;
1169
- manualOperation: import("@project-chip/matter-node.js/schema").BitFlag;
1170
- protection: import("@project-chip/matter-node.js/schema").BitFlag;
1171
- }>, any>;
1172
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1173
- readonly lift: import("@project-chip/matter-node.js/schema").BitFlag;
1174
- readonly tilt: import("@project-chip/matter-node.js/schema").BitFlag;
1175
- readonly positionAwareLift: import("@project-chip/matter-node.js/schema").BitFlag;
1176
- readonly absolutePosition: import("@project-chip/matter-node.js/schema").BitFlag;
1177
- readonly positionAwareTilt: import("@project-chip/matter-node.js/schema").BitFlag;
1178
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "type" | "configStatus" | "operationalStatus" | "endProductType" | "mode" | "safetyStatus"> & Omit<{
1179
- readonly physicalClosedLimitLift: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1180
- readonly currentPositionLift: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1181
- readonly installedOpenLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1182
- readonly installedClosedLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1183
- } & {
1184
- readonly numberOfActuationsLift: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1185
- } & {
1186
- readonly currentPositionLiftPercentage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1187
- readonly targetPositionLiftPercent100ths: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1188
- readonly currentPositionLiftPercent100ths: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1189
- }, "type" | "configStatus" | "operationalStatus" | "endProductType" | "mode" | "safetyStatus" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1190
- readonly lift: import("@project-chip/matter-node.js/schema").BitFlag;
1191
- readonly tilt: import("@project-chip/matter-node.js/schema").BitFlag;
1192
- readonly positionAwareLift: import("@project-chip/matter-node.js/schema").BitFlag;
1193
- readonly absolutePosition: import("@project-chip/matter-node.js/schema").BitFlag;
1194
- readonly positionAwareTilt: import("@project-chip/matter-node.js/schema").BitFlag;
1195
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1196
- readonly type: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.WindowCoveringType, any>;
1197
- readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1198
- operational: import("@project-chip/matter-node.js/schema").BitFlag;
1199
- onlineReserved: import("@project-chip/matter-node.js/schema").BitFlag;
1200
- liftMovementReversed: import("@project-chip/matter-node.js/schema").BitFlag;
1201
- liftPositionAware: import("@project-chip/matter-node.js/schema").BitFlag;
1202
- tiltPositionAware: import("@project-chip/matter-node.js/schema").BitFlag;
1203
- liftEncoderControlled: import("@project-chip/matter-node.js/schema").BitFlag;
1204
- tiltEncoderControlled: import("@project-chip/matter-node.js/schema").BitFlag;
1205
- }>, any>;
1206
- readonly operationalStatus: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1207
- global: import("@project-chip/matter-node.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1208
- lift: import("@project-chip/matter-node.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1209
- tilt: import("@project-chip/matter-node.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
1210
- }>, any>;
1211
- readonly endProductType: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.EndProductType, any>;
1212
- readonly mode: import("@project-chip/matter-node.js/cluster").WritableAttribute<TypeFromPartialBitSchema<{
1213
- motorDirectionReversed: import("@project-chip/matter-node.js/schema").BitFlag;
1214
- calibrationMode: import("@project-chip/matter-node.js/schema").BitFlag;
1215
- maintenanceMode: import("@project-chip/matter-node.js/schema").BitFlag;
1216
- ledFeedback: import("@project-chip/matter-node.js/schema").BitFlag;
1217
- }>, any>;
1218
- readonly safetyStatus: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
1219
- remoteLockout: import("@project-chip/matter-node.js/schema").BitFlag;
1220
- tamperDetection: import("@project-chip/matter-node.js/schema").BitFlag;
1221
- failedCommunication: import("@project-chip/matter-node.js/schema").BitFlag;
1222
- positionFailure: import("@project-chip/matter-node.js/schema").BitFlag;
1223
- thermalProtection: import("@project-chip/matter-node.js/schema").BitFlag;
1224
- obstacleDetected: import("@project-chip/matter-node.js/schema").BitFlag;
1225
- power: import("@project-chip/matter-node.js/schema").BitFlag;
1226
- stopInput: import("@project-chip/matter-node.js/schema").BitFlag;
1227
- motorJammed: import("@project-chip/matter-node.js/schema").BitFlag;
1228
- hardwareFailure: import("@project-chip/matter-node.js/schema").BitFlag;
1229
- manualOperation: import("@project-chip/matter-node.js/schema").BitFlag;
1230
- protection: import("@project-chip/matter-node.js/schema").BitFlag;
1231
- }>, any>;
1232
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1233
- readonly lift: import("@project-chip/matter-node.js/schema").BitFlag;
1234
- readonly tilt: import("@project-chip/matter-node.js/schema").BitFlag;
1235
- readonly positionAwareLift: import("@project-chip/matter-node.js/schema").BitFlag;
1236
- readonly absolutePosition: import("@project-chip/matter-node.js/schema").BitFlag;
1237
- readonly positionAwareTilt: import("@project-chip/matter-node.js/schema").BitFlag;
1238
- }>>, "physicalClosedLimitLift" | "currentPositionLift" | "numberOfActuationsLift" | "currentPositionLiftPercentage" | "targetPositionLiftPercent100ths" | "currentPositionLiftPercent100ths" | "installedOpenLimitLift" | "installedClosedLimitLift" | "type" | "configStatus" | "operationalStatus" | "endProductType" | "mode" | "safetyStatus" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1239
- readonly lift: import("@project-chip/matter-node.js/schema").BitFlag;
1240
- readonly tilt: import("@project-chip/matter-node.js/schema").BitFlag;
1241
- readonly positionAwareLift: import("@project-chip/matter-node.js/schema").BitFlag;
1242
- readonly absolutePosition: import("@project-chip/matter-node.js/schema").BitFlag;
1243
- readonly positionAwareTilt: import("@project-chip/matter-node.js/schema").BitFlag;
1244
- }>>, Pick<{}, never> & Omit<{}, never>>;
1245
- /**
1246
- * Creates a default window covering cluster server.
1247
- *
1248
- * @param positionPercent100ths - The position percentage in 100ths (0-10000). Defaults to 0.
1249
- */
1250
- createDefaultWindowCoveringClusterServer(positionPercent100ths?: number): void;
1251
- /**
1252
- * Sets the window covering target position as the current position and stops the movement.
1253
- */
1254
- setWindowCoveringTargetAsCurrentAndStopped(endpoint?: MatterbridgeDeviceV8): void;
1255
- /**
1256
- * Sets the current and target status of a window covering.
1257
- * @param current - The current position of the window covering.
1258
- * @param target - The target position of the window covering.
1259
- * @param status - The movement status of the window covering.
1260
- */
1261
- setWindowCoveringCurrentTargetStatus(current: number, target: number, status: WindowCovering.MovementStatus, endpoint?: MatterbridgeDeviceV8): void;
1262
- /**
1263
- * Sets the status of the window covering.
1264
- * @param {WindowCovering.MovementStatus} status - The movement status to set.
1265
- */
1266
- setWindowCoveringStatus(status: WindowCovering.MovementStatus, endpoint?: MatterbridgeDeviceV8): void;
1267
- /**
1268
- * Retrieves the status of the window covering.
1269
- * @returns The global operational status of the window covering.
1270
- */
1271
- getWindowCoveringStatus(endpoint?: MatterbridgeDeviceV8): WindowCovering.MovementStatus | undefined;
1272
- /**
1273
- * Sets the target and current position of the window covering.
1274
- *
1275
- * @param position - The position to set, specified as a number.
1276
- */
1277
- setWindowCoveringTargetAndCurrentPosition(position: number, endpoint?: MatterbridgeDeviceV8): void;
1278
- /**
1279
- * Get a default door lock cluster server.
1280
- *
1281
- * @remarks
1282
- * This method adds a cluster server for a door lock cluster with default settings.
1283
- *
1284
- */
1285
- getDefaultDoorLockClusterServer(lockState?: DoorLock.LockState, lockType?: DoorLock.LockType): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
1286
- readonly lockState: import("@project-chip/matter-node.js/cluster").Attribute<DoorLock.LockState | null, any>;
1287
- readonly lockType: import("@project-chip/matter-node.js/cluster").Attribute<DoorLock.LockType, any>;
1288
- readonly actuatorEnabled: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
1289
- readonly language: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<string, any>;
1290
- readonly ledSettings: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1291
- readonly autoRelockTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1292
- readonly soundVolume: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1293
- readonly operatingMode: import("@project-chip/matter-node.js/cluster").WritableAttribute<DoorLock.OperatingMode, any>;
1294
- readonly supportedOperatingModes: import("@project-chip/matter-node.js/cluster").FixedAttribute<TypeFromPartialBitSchema<{
1295
- normal: import("@project-chip/matter-node.js/schema").BitFlag;
1296
- vacation: import("@project-chip/matter-node.js/schema").BitFlag;
1297
- privacy: import("@project-chip/matter-node.js/schema").BitFlag;
1298
- noRemoteLockUnlock: import("@project-chip/matter-node.js/schema").BitFlag;
1299
- passage: import("@project-chip/matter-node.js/schema").BitFlag;
1300
- }>, any>;
1301
- readonly defaultConfigurationRegister: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
1302
- enableLocalProgrammingEnabled: import("@project-chip/matter-node.js/schema").BitFlag;
1303
- keypadInterfaceDefaultAccessEnabled: import("@project-chip/matter-node.js/schema").BitFlag;
1304
- remoteInterfaceDefaultAccessIsEnabled: import("@project-chip/matter-node.js/schema").BitFlag;
1305
- soundEnabled: import("@project-chip/matter-node.js/schema").BitFlag;
1306
- autoRelockTimeSet: import("@project-chip/matter-node.js/schema").BitFlag;
1307
- ledSettingsSet: import("@project-chip/matter-node.js/schema").BitFlag;
1308
- }>, any>;
1309
- readonly enableLocalProgramming: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
1310
- readonly enableOneTouchLocking: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
1311
- readonly enableInsideStatusLed: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
1312
- readonly enablePrivacyModeButton: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
1313
- readonly localProgrammingFeatures: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<TypeFromPartialBitSchema<{
1314
- addUsersCredentialsSchedulesLocally: import("@project-chip/matter-node.js/schema").BitFlag;
1315
- modifyUsersCredentialsSchedulesLocally: import("@project-chip/matter-node.js/schema").BitFlag;
1316
- clearUsersCredentialsSchedulesLocally: import("@project-chip/matter-node.js/schema").BitFlag;
1317
- adjustLockSettingsLocally: import("@project-chip/matter-node.js/schema").BitFlag;
1318
- }>, any>;
1319
- readonly alarmMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<TypeFromPartialBitSchema<{
1320
- lockingMechanismJammed: import("@project-chip/matter-node.js/schema").BitFlag;
1321
- lockResetToFactoryDefaults: import("@project-chip/matter-node.js/schema").BitFlag;
1322
- reserved: import("@project-chip/matter-node.js/schema").BitFlag;
1323
- rfModulePowerCycled: import("@project-chip/matter-node.js/schema").BitFlag;
1324
- tamperAlarmWrongCodeEntryLimit: import("@project-chip/matter-node.js/schema").BitFlag;
1325
- tamperAlarmFrontEscutcheonRemovedFromMain: import("@project-chip/matter-node.js/schema").BitFlag;
1326
- forcedDoorOpenUnderDoorLockedCondition: import("@project-chip/matter-node.js/schema").BitFlag;
1327
- }>, any>;
1328
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1329
- readonly pinCredential: import("@project-chip/matter-node.js/schema").BitFlag;
1330
- readonly rfidCredential: import("@project-chip/matter-node.js/schema").BitFlag;
1331
- readonly fingerCredentials: import("@project-chip/matter-node.js/schema").BitFlag;
1332
- readonly logging: import("@project-chip/matter-node.js/schema").BitFlag;
1333
- readonly weekDayAccessSchedules: import("@project-chip/matter-node.js/schema").BitFlag;
1334
- readonly doorPositionSensor: import("@project-chip/matter-node.js/schema").BitFlag;
1335
- readonly faceCredentials: import("@project-chip/matter-node.js/schema").BitFlag;
1336
- readonly credentialOverTheAirAccess: import("@project-chip/matter-node.js/schema").BitFlag;
1337
- readonly user: import("@project-chip/matter-node.js/schema").BitFlag;
1338
- readonly notification: import("@project-chip/matter-node.js/schema").BitFlag;
1339
- readonly yearDayAccessSchedules: import("@project-chip/matter-node.js/schema").BitFlag;
1340
- readonly holidaySchedules: import("@project-chip/matter-node.js/schema").BitFlag;
1341
- }>>, {
1342
- readonly doorLockAlarm: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1343
- alarmCode: import("@project-chip/matter.js/tlv").FieldType<DoorLock.AlarmCode>;
1344
- }>, any>;
1345
- readonly lockOperation: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1346
- lockOperationType: import("@project-chip/matter.js/tlv").FieldType<DoorLock.LockOperationType>;
1347
- operationSource: import("@project-chip/matter.js/tlv").FieldType<DoorLock.OperationSource>;
1348
- userIndex: import("@project-chip/matter.js/tlv").FieldType<number | null>;
1349
- fabricIndex: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").FabricIndex | null>;
1350
- sourceNode: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").NodeId | null>;
1351
- credentials: import("@project-chip/matter.js/tlv").OptionalFieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
1352
- credentialType: import("@project-chip/matter.js/tlv").FieldType<DoorLock.CredentialType>;
1353
- credentialIndex: import("@project-chip/matter.js/tlv").FieldType<number>;
1354
- }>[] | null>;
1355
- }>, any>;
1356
- readonly lockOperationError: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1357
- lockOperationType: import("@project-chip/matter.js/tlv").FieldType<DoorLock.LockOperationType>;
1358
- operationSource: import("@project-chip/matter.js/tlv").FieldType<DoorLock.OperationSource>;
1359
- operationError: import("@project-chip/matter.js/tlv").FieldType<DoorLock.OperationError>;
1360
- userIndex: import("@project-chip/matter.js/tlv").FieldType<number | null>;
1361
- fabricIndex: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").FabricIndex | null>;
1362
- sourceNode: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").NodeId | null>;
1363
- credentials: import("@project-chip/matter.js/tlv").OptionalFieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
1364
- credentialType: import("@project-chip/matter.js/tlv").FieldType<DoorLock.CredentialType>;
1365
- credentialIndex: import("@project-chip/matter.js/tlv").FieldType<number>;
1366
- }>[] | null>;
1367
- }>, any>;
1368
- }>;
1369
- /**
1370
- * Creates a default door lock cluster server.
1371
- *
1372
- * @remarks
1373
- * This method adds a cluster server for a door lock cluster with default settings.
1374
- *
1375
- */
1376
- createDefaultDoorLockClusterServer(lockState?: DoorLock.LockState, lockType?: DoorLock.LockType): void;
1377
- /**
1378
- * Get a default momentary switch cluster server.
1379
- *
1380
- * @remarks
1381
- * This method adds a cluster server with default momentary switch features and configurations suitable for (AppleHome) Single Double Long automations.
1382
- */
1383
- getDefaultSwitchClusterServer(): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1384
- readonly numberOfPositions: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
1385
- readonly currentPosition: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
1386
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1387
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1388
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1389
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1390
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1391
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1392
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "numberOfPositions" | "currentPosition"> & Omit<{
1393
- readonly multiPressMax: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
1394
- }, "numberOfPositions" | "currentPosition" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1395
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1396
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1397
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1398
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1399
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1400
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1401
- readonly numberOfPositions: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
1402
- readonly currentPosition: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
1403
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1404
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1405
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1406
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1407
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1408
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1409
- }>>, "multiPressMax" | "numberOfPositions" | "currentPosition" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1410
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1411
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1412
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1413
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1414
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1415
- }>>, Pick<{}, never> & Omit<{
1416
- readonly multiPressOngoing: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1417
- newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
1418
- currentNumberOfPressesCounted: import("@project-chip/matter.js/tlv").FieldType<number>;
1419
- }>, any>;
1420
- readonly multiPressComplete: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1421
- previousPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
1422
- totalNumberOfPressesCounted: import("@project-chip/matter.js/tlv").FieldType<number>;
1423
- }>, any>;
1424
- } & {
1425
- readonly initialPress: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1426
- newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
1427
- }>, any>;
1428
- } & {
1429
- readonly longPress: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1430
- newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
1431
- }>, any>;
1432
- readonly longRelease: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1433
- previousPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
1434
- }>, any>;
1435
- } & {
1436
- readonly shortRelease: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1437
- previousPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
1438
- }>, any>;
1439
- }, never> & Omit<{}, "multiPressOngoing" | "multiPressComplete" | "initialPress" | "longPress" | "longRelease" | "shortRelease">>;
1440
- /**
1441
- * Creates a default momentary switch cluster server.
1442
- *
1443
- * @remarks
1444
- * This method adds a cluster server with default momentary switch features and configurations.
1445
- */
1446
- createDefaultSwitchClusterServer(): void;
1447
- /**
1448
- * Get a default latching switch cluster server.
1449
- *
1450
- * @remarks
1451
- * This method adds a cluster server with default latching switch features and configuration.
1452
- */
1453
- getDefaultLatchingSwitchClusterServer(): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1454
- readonly numberOfPositions: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
1455
- readonly currentPosition: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
1456
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1457
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1458
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1459
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1460
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1461
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1462
- }>>, "numberOfPositions" | "currentPosition" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1463
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1464
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1465
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1466
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1467
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1468
- }>> & Omit<{}, "numberOfPositions" | "currentPosition" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1469
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1470
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1471
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1472
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1473
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1474
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1475
- readonly numberOfPositions: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
1476
- readonly currentPosition: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
1477
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1478
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1479
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1480
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1481
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1482
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1483
- }>>, "numberOfPositions" | "currentPosition" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1484
- readonly latchingSwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1485
- readonly momentarySwitch: import("@project-chip/matter-node.js/schema").BitFlag;
1486
- readonly momentarySwitchRelease: import("@project-chip/matter-node.js/schema").BitFlag;
1487
- readonly momentarySwitchLongPress: import("@project-chip/matter-node.js/schema").BitFlag;
1488
- readonly momentarySwitchMultiPress: import("@project-chip/matter-node.js/schema").BitFlag;
1489
- }>>, Pick<{}, never> & Omit<{
1490
- readonly switchLatched: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1491
- newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
1492
- }>, any>;
1493
- }, never> & Omit<{}, "switchLatched">>;
1494
- /**
1495
- * Creates a default latching switch cluster server.
1496
- *
1497
- * @remarks
1498
- * This method adds a cluster server with default latching switch features and configuration.
1499
- */
1500
- createDefaultLatchingSwitchClusterServer(): void;
1501
- /**
1502
- * Get a default occupancy sensing cluster server.
1503
- *
1504
- * @param occupied - A boolean indicating whether the occupancy is occupied or not. Default is false.
1505
- */
1506
- getDefaultOccupancySensingClusterServer(occupied?: boolean): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
1507
- readonly occupancy: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1508
- occupied: import("@project-chip/matter-node.js/schema").BitFlag;
1509
- }>, any>;
1510
- readonly occupancySensorType: import("@project-chip/matter-node.js/cluster").Attribute<OccupancySensing.OccupancySensorType, any>;
1511
- readonly occupancySensorTypeBitmap: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1512
- pir: import("@project-chip/matter-node.js/schema").BitFlag;
1513
- ultrasonic: import("@project-chip/matter-node.js/schema").BitFlag;
1514
- physicalContact: import("@project-chip/matter-node.js/schema").BitFlag;
1515
- }>, any>;
1516
- readonly pirOccupiedToUnoccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1517
- readonly pirUnoccupiedToOccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1518
- readonly pirUnoccupiedToOccupiedThreshold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1519
- readonly ultrasonicOccupiedToUnoccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1520
- readonly ultrasonicUnoccupiedToOccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1521
- readonly ultrasonicUnoccupiedToOccupiedThreshold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1522
- readonly physicalContactOccupiedToUnoccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1523
- readonly physicalContactUnoccupiedToOccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
1524
- readonly physicalContactUnoccupiedToOccupiedThreshold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
1525
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
1526
- /**
1527
- * Creates a default occupancy sensing cluster server.
1528
- *
1529
- * @param occupied - A boolean indicating whether the occupancy is occupied or not. Default is false.
1530
- */
1531
- createDefaultOccupancySensingClusterServer(occupied?: boolean): void;
1532
- /**
1533
- * Get a default Illuminance Measurement Cluster Server.
1534
- *
1535
- * @param measuredValue - The measured value of illuminance.
1536
- */
1537
- getDefaultIlluminanceMeasurementClusterServer(measuredValue?: number): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
1538
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1539
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1540
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1541
- readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1542
- readonly lightSensorType: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1543
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
1544
- /**
1545
- * Creates a default Illuminance Measurement Cluster Server.
1546
- *
1547
- * @param measuredValue - The measured value of illuminance.
1548
- */
1549
- createDefaultIlluminanceMeasurementClusterServer(measuredValue?: number): void;
1550
- /**
1551
- * Get a default flow measurement cluster server.
1552
- *
1553
- * @param measuredValue - The measured value of the temperature.
1554
- */
1555
- getDefaultFlowMeasurementClusterServer(measuredValue?: number): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
1556
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1557
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1558
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1559
- readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1560
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
1561
- /**
1562
- * Creates a default flow measurement cluster server.
1563
- *
1564
- * @param measuredValue - The measured value of the temperature.
1565
- */
1566
- createDefaultFlowMeasurementClusterServer(measuredValue?: number): void;
1567
- /**
1568
- * Get a default temperature measurement cluster server.
1569
- *
1570
- * @param measuredValue - The measured value of the temperature.
1571
- */
1572
- getDefaultTemperatureMeasurementClusterServer(measuredValue?: number): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
1573
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1574
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1575
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1576
- readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1577
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
1578
- /**
1579
- * Creates a default temperature measurement cluster server.
1580
- *
1581
- * @param measuredValue - The measured value of the temperature.
1582
- */
1583
- createDefaultTemperatureMeasurementClusterServer(measuredValue?: number): void;
1584
- /**
1585
- * Get a default RelativeHumidityMeasurementCluster server.
1586
- *
1587
- * @param measuredValue - The measured value of the relative humidity.
1588
- */
1589
- getDefaultRelativeHumidityMeasurementClusterServer(measuredValue?: number): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
1590
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1591
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1592
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1593
- readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1594
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
1595
- /**
1596
- * Creates a default RelativeHumidityMeasurementCluster server.
1597
- *
1598
- * @param measuredValue - The measured value of the relative humidity.
1599
- */
1600
- createDefaultRelativeHumidityMeasurementClusterServer(measuredValue?: number): void;
1601
- /**
1602
- * Get a default Pressure Measurement Cluster Server.
1603
- *
1604
- * @param measuredValue - The measured value for the pressure.
1605
- */
1606
- getDefaultPressureMeasurementClusterServer(measuredValue?: number): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
1607
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1608
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1609
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1610
- readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1611
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1612
- readonly extended: import("@project-chip/matter-node.js/schema").BitFlag;
1613
- }>>, {}>;
1614
- /**
1615
- * Creates a default Pressure Measurement Cluster Server.
1616
- *
1617
- * @param measuredValue - The measured value for the pressure.
1618
- */
1619
- createDefaultPressureMeasurementClusterServer(measuredValue?: number): void;
1620
- /**
1621
- * Get a default boolean state cluster server.
1622
- *
1623
- * @param contact - Optional boolean value indicating the contact state. Defaults to `true` if not provided.
1624
- */
1625
- getDefaultBooleanStateClusterServer(contact?: boolean): ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
1626
- readonly stateValue: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
1627
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {
1628
- readonly stateChange: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
1629
- stateValue: import("@project-chip/matter.js/tlv").FieldType<boolean>;
1630
- }>, any>;
1631
- }>;
1632
- /**
1633
- * Creates a default boolean state configuration cluster server.
1634
- *
1635
- * @param contact - Optional boolean value indicating the contact state. Defaults to `true` if not provided.
1636
- */
1637
- createDefaultBooleanStateClusterServer(contact?: boolean): void;
1638
- /**
1639
- * Get a default boolean state configuration cluster server.
1640
- *
1641
- * @param contact - Optional boolean value indicating the sensor fault state. Defaults to `false` if not provided.
1642
- */
1643
- getDefaultBooleanStateConfigurationClusterServer(sensorFault?: boolean): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1644
- readonly sensorFault: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
1645
- generalFault: import("@project-chip/matter-node.js/schema").BitFlag;
1646
- }>, any>;
1647
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1648
- readonly visual: import("@project-chip/matter-node.js/schema").BitFlag;
1649
- readonly audible: import("@project-chip/matter-node.js/schema").BitFlag;
1650
- readonly alarmSuppress: import("@project-chip/matter-node.js/schema").BitFlag;
1651
- readonly sensitivityLevel: import("@project-chip/matter-node.js/schema").BitFlag;
1652
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "sensorFault"> & Omit<{
1653
- readonly currentSensitivityLevel: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
1654
- readonly supportedSensitivityLevels: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
1655
- readonly defaultSensitivityLevel: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1656
- } & {
1657
- readonly alarmsActive: import("@project-chip/matter-node.js/cluster").Attribute<TypeFromPartialBitSchema<{
1658
- visual: import("@project-chip/matter-node.js/schema").BitFlag;
1659
- audible: import("@project-chip/matter-node.js/schema").BitFlag;
1660
- }>, any>;
1661
- readonly alarmsEnabled: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
1662
- visual: import("@project-chip/matter-node.js/schema").BitFlag;
1663
- audible: import("@project-chip/matter-node.js/schema").BitFlag;
1664
- }>, any>;
1665
- readonly alarmsSupported: import("@project-chip/matter-node.js/cluster").FixedAttribute<TypeFromPartialBitSchema<{
1666
- visual: import("@project-chip/matter-node.js/schema").BitFlag;
1667
- audible: import("@project-chip/matter-node.js/schema").BitFlag;
1668
- }>, any>;
1669
- }, "sensorFault" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1670
- readonly visual: import("@project-chip/matter-node.js/schema").BitFlag;
1671
- readonly audible: import("@project-chip/matter-node.js/schema").BitFlag;
1672
- readonly alarmSuppress: import("@project-chip/matter-node.js/schema").BitFlag;
1673
- readonly sensitivityLevel: import("@project-chip/matter-node.js/schema").BitFlag;
1674
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1675
- readonly sensorFault: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
1676
- generalFault: import("@project-chip/matter-node.js/schema").BitFlag;
1677
- }>, any>;
1678
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1679
- readonly visual: import("@project-chip/matter-node.js/schema").BitFlag;
1680
- readonly audible: import("@project-chip/matter-node.js/schema").BitFlag;
1681
- readonly alarmSuppress: import("@project-chip/matter-node.js/schema").BitFlag;
1682
- readonly sensitivityLevel: import("@project-chip/matter-node.js/schema").BitFlag;
1683
- }>>, "alarmsActive" | "sensorFault" | "currentSensitivityLevel" | "supportedSensitivityLevels" | "defaultSensitivityLevel" | "alarmsEnabled" | "alarmsSupported" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1684
- readonly visual: import("@project-chip/matter-node.js/schema").BitFlag;
1685
- readonly audible: import("@project-chip/matter-node.js/schema").BitFlag;
1686
- readonly alarmSuppress: import("@project-chip/matter-node.js/schema").BitFlag;
1687
- readonly sensitivityLevel: import("@project-chip/matter-node.js/schema").BitFlag;
1688
- }>>, Pick<{
1689
- readonly sensorFault: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
1690
- sensorFault: import("@project-chip/matter.js/tlv").FieldType<TypeFromPartialBitSchema<{
1691
- generalFault: import("@project-chip/matter-node.js/schema").BitFlag;
1692
- }>>;
1693
- }>, any>;
1694
- }, "sensorFault"> & Omit<{
1695
- readonly alarmsStateChanged: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
1696
- alarmsActive: import("@project-chip/matter.js/tlv").FieldType<TypeFromPartialBitSchema<{
1697
- visual: import("@project-chip/matter-node.js/schema").BitFlag;
1698
- audible: import("@project-chip/matter-node.js/schema").BitFlag;
1699
- }>>;
1700
- alarmsSuppressed: import("@project-chip/matter.js/tlv").OptionalFieldType<TypeFromPartialBitSchema<{
1701
- visual: import("@project-chip/matter-node.js/schema").BitFlag;
1702
- audible: import("@project-chip/matter-node.js/schema").BitFlag;
1703
- }>>;
1704
- }>, any>;
1705
- }, "sensorFault"> & Omit<{
1706
- readonly sensorFault: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
1707
- sensorFault: import("@project-chip/matter.js/tlv").FieldType<TypeFromPartialBitSchema<{
1708
- generalFault: import("@project-chip/matter-node.js/schema").BitFlag;
1709
- }>>;
1710
- }>, any>;
1711
- }, "sensorFault" | "alarmsStateChanged">>;
1712
- /**
1713
- * Creates a default boolean state configuration cluster server.
1714
- *
1715
- * @param contact - Optional boolean value indicating the sensor fault state. Defaults to `false` if not provided.
1716
- */
1717
- createDefaultBooleanStateConfigurationClusterServer(sensorFault?: boolean): void;
1718
- /**
1719
- * Get a default power source replaceable battery cluster server.
1720
- *
1721
- * @param batPercentRemaining - The remaining battery percentage (default: 100).
1722
- * @param batChargeLevel - The battery charge level (default: PowerSource.BatChargeLevel.Ok).
1723
- * @param batVoltage - The battery voltage (default: 1500).
1724
- * @param batReplacementDescription - The battery replacement description (default: 'Battery type').
1725
- * @param batQuantity - The battery quantity (default: 1).
1726
- */
1727
- getDefaultPowerSourceReplaceableBatteryClusterServer(batPercentRemaining?: number, batChargeLevel?: PowerSource.BatChargeLevel, batVoltage?: number, batReplacementDescription?: string, batQuantity?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1728
- readonly status: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.PowerSourceStatus, any>;
1729
- readonly order: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1730
- readonly description: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
1731
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1732
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1733
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1734
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1735
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1736
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "order" | "status" | "description"> & Omit<{
1737
- readonly batVoltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1738
- readonly batPercentRemaining: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1739
- readonly batTimeRemaining: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1740
- readonly batChargeLevel: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.BatChargeLevel, any>;
1741
- readonly batReplacementNeeded: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
1742
- readonly batReplaceability: import("@project-chip/matter-node.js/cluster").FixedAttribute<PowerSource.BatReplaceability, any>;
1743
- readonly batPresent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<boolean, any>;
1744
- readonly activeBatFaults: import("@project-chip/matter-node.js/cluster").OptionalAttribute<PowerSource.BatFault[], any>;
1745
- } & {
1746
- readonly batReplacementDescription: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
1747
- readonly batCommonDesignation: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<PowerSource.BatCommonDesignation, any>;
1748
- readonly batAnsiDesignation: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
1749
- readonly batIecDesignation: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
1750
- readonly batApprovedChemistry: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<PowerSource.BatApprovedChemistry, any>;
1751
- readonly batCapacity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1752
- readonly batQuantity: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
1753
- }, "order" | "status" | "description" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1754
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1755
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1756
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1757
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1758
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1759
- readonly status: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.PowerSourceStatus, any>;
1760
- readonly order: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1761
- readonly description: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
1762
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1763
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1764
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1765
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1766
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1767
- }>>, "order" | "status" | "description" | "batVoltage" | "batPercentRemaining" | "batTimeRemaining" | "batChargeLevel" | "batReplacementNeeded" | "batReplaceability" | "batPresent" | "activeBatFaults" | "batReplacementDescription" | "batCommonDesignation" | "batAnsiDesignation" | "batIecDesignation" | "batApprovedChemistry" | "batCapacity" | "batQuantity" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1768
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1769
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1770
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1771
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1772
- }>>, Pick<{}, never> & Omit<{
1773
- readonly batFaultChange: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
1774
- current: import("@project-chip/matter.js/tlv").FieldType<PowerSource.BatFault[]>;
1775
- previous: import("@project-chip/matter.js/tlv").FieldType<PowerSource.BatFault[]>;
1776
- }>, any>;
1777
- }, never> & Omit<{}, "batFaultChange">>;
1778
- /**
1779
- * Creates a default power source replaceable battery cluster server.
1780
- *
1781
- * @param batPercentRemaining - The remaining battery percentage (default: 100).
1782
- * @param batChargeLevel - The battery charge level (default: PowerSource.BatChargeLevel.Ok).
1783
- * @param batVoltage - The battery voltage (default: 1500).
1784
- * @param batReplacementDescription - The battery replacement description (default: 'Battery type').
1785
- * @param batQuantity - The battery quantity (default: 1).
1786
- */
1787
- createDefaultPowerSourceReplaceableBatteryClusterServer(batPercentRemaining?: number, batChargeLevel?: PowerSource.BatChargeLevel, batVoltage?: number, batReplacementDescription?: string, batQuantity?: number): void;
1788
- /**
1789
- * Get a default power source rechargeable battery cluster server.
1790
- *
1791
- * @param batPercentRemaining - The remaining battery percentage (default: 100).
1792
- * @param batChargeLevel - The battery charge level (default: PowerSource.BatChargeLevel.Ok).
1793
- * @param batVoltage - The battery voltage (default: 1500).
1794
- */
1795
- getDefaultPowerSourceRechargeableBatteryClusterServer(batPercentRemaining?: number, batChargeLevel?: PowerSource.BatChargeLevel, batVoltage?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1796
- readonly status: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.PowerSourceStatus, any>;
1797
- readonly order: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1798
- readonly description: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
1799
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1800
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1801
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1802
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1803
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1804
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "order" | "status" | "description"> & Omit<{
1805
- readonly batVoltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1806
- readonly batPercentRemaining: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1807
- readonly batTimeRemaining: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1808
- readonly batChargeLevel: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.BatChargeLevel, any>;
1809
- readonly batReplacementNeeded: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
1810
- readonly batReplaceability: import("@project-chip/matter-node.js/cluster").FixedAttribute<PowerSource.BatReplaceability, any>;
1811
- readonly batPresent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<boolean, any>;
1812
- readonly activeBatFaults: import("@project-chip/matter-node.js/cluster").OptionalAttribute<PowerSource.BatFault[], any>;
1813
- } & {
1814
- readonly batChargeState: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.BatChargeState, any>;
1815
- readonly batTimeToFullCharge: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1816
- readonly batFunctionalWhileCharging: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
1817
- readonly batChargingCurrent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1818
- readonly activeBatChargeFaults: import("@project-chip/matter-node.js/cluster").OptionalAttribute<PowerSource.BatChargeFault[], any>;
1819
- }, "order" | "status" | "description" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1820
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1821
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1822
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1823
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1824
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1825
- readonly status: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.PowerSourceStatus, any>;
1826
- readonly order: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1827
- readonly description: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
1828
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1829
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1830
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1831
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1832
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1833
- }>>, "order" | "status" | "description" | "batVoltage" | "batPercentRemaining" | "batTimeRemaining" | "batChargeLevel" | "batReplacementNeeded" | "batReplaceability" | "batPresent" | "activeBatFaults" | "batChargeState" | "batTimeToFullCharge" | "batFunctionalWhileCharging" | "batChargingCurrent" | "activeBatChargeFaults" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1834
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1835
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1836
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1837
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1838
- }>>, Pick<{}, never> & Omit<{
1839
- readonly batFaultChange: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
1840
- current: import("@project-chip/matter.js/tlv").FieldType<PowerSource.BatFault[]>;
1841
- previous: import("@project-chip/matter.js/tlv").FieldType<PowerSource.BatFault[]>;
1842
- }>, any>;
1843
- } & {
1844
- readonly batChargeFaultChange: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
1845
- current: import("@project-chip/matter.js/tlv").FieldType<PowerSource.BatChargeFault[]>;
1846
- previous: import("@project-chip/matter.js/tlv").FieldType<PowerSource.BatChargeFault[]>;
1847
- }>, any>;
1848
- }, never> & Omit<{}, "batFaultChange" | "batChargeFaultChange">>;
1849
- /**
1850
- * Creates a default power source rechargeable battery cluster server.
1851
- *
1852
- * @param batPercentRemaining - The remaining battery percentage (default: 100).
1853
- * @param batChargeLevel - The battery charge level (default: PowerSource.BatChargeLevel.Ok).
1854
- * @param batVoltage - The battery voltage (default: 1500).
1855
- */
1856
- createDefaultPowerSourceRechargeableBatteryClusterServer(batPercentRemaining?: number, batChargeLevel?: PowerSource.BatChargeLevel, batVoltage?: number): void;
1857
- /**
1858
- * Get a default power source wired cluster server.
1859
- *
1860
- * @param wiredCurrentType - The type of wired current (default: PowerSource.WiredCurrentType.Ac)
1861
- */
1862
- getDefaultPowerSourceWiredClusterServer(wiredCurrentType?: PowerSource.WiredCurrentType): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1863
- readonly status: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.PowerSourceStatus, any>;
1864
- readonly order: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1865
- readonly description: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
1866
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1867
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1868
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1869
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1870
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1871
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "order" | "status" | "description"> & Omit<{
1872
- readonly wiredAssessedInputVoltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1873
- readonly wiredAssessedInputFrequency: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1874
- readonly wiredCurrentType: import("@project-chip/matter-node.js/cluster").FixedAttribute<PowerSource.WiredCurrentType, any>;
1875
- readonly wiredAssessedCurrent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1876
- readonly wiredNominalVoltage: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1877
- readonly wiredMaximumCurrent: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
1878
- readonly wiredPresent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<boolean, any>;
1879
- readonly activeWiredFaults: import("@project-chip/matter-node.js/cluster").OptionalAttribute<PowerSource.WiredFault[], any>;
1880
- }, "order" | "status" | "description" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1881
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1882
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1883
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1884
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1885
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1886
- readonly status: import("@project-chip/matter-node.js/cluster").Attribute<PowerSource.PowerSourceStatus, any>;
1887
- readonly order: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
1888
- readonly description: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
1889
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1890
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1891
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1892
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1893
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1894
- }>>, "order" | "status" | "description" | "wiredAssessedInputVoltage" | "wiredAssessedInputFrequency" | "wiredCurrentType" | "wiredAssessedCurrent" | "wiredNominalVoltage" | "wiredMaximumCurrent" | "wiredPresent" | "activeWiredFaults" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1895
- readonly wired: import("@project-chip/matter-node.js/schema").BitFlag;
1896
- readonly battery: import("@project-chip/matter-node.js/schema").BitFlag;
1897
- readonly rechargeable: import("@project-chip/matter-node.js/schema").BitFlag;
1898
- readonly replaceable: import("@project-chip/matter-node.js/schema").BitFlag;
1899
- }>>, Pick<{}, never> & Omit<{
1900
- readonly wiredFaultChange: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
1901
- current: import("@project-chip/matter.js/tlv").FieldType<PowerSource.WiredFault[]>;
1902
- previous: import("@project-chip/matter.js/tlv").FieldType<PowerSource.WiredFault[]>;
1903
- }>, any>;
1904
- }, never> & Omit<{}, "wiredFaultChange">>;
1905
- /**
1906
- * Creates a default power source wired cluster server.
1907
- *
1908
- * @param wiredCurrentType - The type of wired current (default: PowerSource.WiredCurrentType.Ac)
1909
- */
1910
- createDefaultPowerSourceWiredClusterServer(wiredCurrentType?: PowerSource.WiredCurrentType): void;
1911
- /**
1912
- * @deprecated This function is deprecated by Matter 1.3 spec and will be removed in a future version.
1913
- */
1914
- createDefaultPowerSourceConfigurationClusterServer(endpointNumber?: number): void;
1915
- /**
1916
- * Get a default air quality cluster server.
1917
- *
1918
- * @param airQuality The air quality type. Defaults to `AirQuality.AirQualityType.Unknown`.
1919
- */
1920
- getDefaultAirQualityClusterServer(airQuality?: AirQuality.AirQualityType): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1921
- readonly airQuality: import("@project-chip/matter-node.js/cluster").Attribute<AirQuality.AirQualityType, any>;
1922
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1923
- readonly fairAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1924
- readonly moderateAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1925
- readonly veryPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1926
- readonly extremelyPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1927
- }>>, "airQuality" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1928
- readonly fairAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1929
- readonly moderateAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1930
- readonly veryPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1931
- readonly extremelyPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1932
- }>> & Omit<{
1933
- readonly airQuality: import("@project-chip/matter-node.js/cluster").Attribute<AirQuality.AirQualityType, any>;
1934
- }, "airQuality" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1935
- readonly fairAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1936
- readonly moderateAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1937
- readonly veryPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1938
- readonly extremelyPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1939
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
1940
- readonly airQuality: import("@project-chip/matter-node.js/cluster").Attribute<AirQuality.AirQualityType, any>;
1941
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1942
- readonly fairAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1943
- readonly moderateAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1944
- readonly veryPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1945
- readonly extremelyPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1946
- }>>, "airQuality" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1947
- readonly fairAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1948
- readonly moderateAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1949
- readonly veryPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1950
- readonly extremelyPoorAirQuality: import("@project-chip/matter-node.js/schema").BitFlag;
1951
- }>>, Pick<{}, never> & Omit<{}, never>>;
1952
- /**
1953
- * Creates a default air quality cluster server.
1954
- *
1955
- * @param airQuality The air quality type. Defaults to `AirQuality.AirQualityType.Unknown`.
1956
- */
1957
- createDefaultAirQualityClusterServer(airQuality?: AirQuality.AirQualityType): void;
1958
- /**
1959
- * Get a default TVOC measurement cluster server.
1960
- *
1961
- * @param measuredValue - The measured value for TVOC.
1962
- */
1963
- getDefaultTvocMeasurementClusterServer(measuredValue?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
1964
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1965
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1966
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1967
- readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1968
- readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1969
- readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1970
- readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1971
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1972
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementUnitType, any>;
1973
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
1974
- readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
1975
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1976
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
1977
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
1978
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
1979
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
1980
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
1981
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
1982
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
1983
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
1984
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
1985
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
1986
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
1987
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
1988
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
1989
- }>> & Omit<{
1990
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1991
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1992
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
1993
- readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1994
- readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1995
- readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
1996
- readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1997
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
1998
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementUnitType, any>;
1999
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
2000
- readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
2001
- }, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2002
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2003
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2004
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2005
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2006
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2007
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2008
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2009
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2010
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2011
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2012
- readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2013
- readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2014
- readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2015
- readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2016
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2017
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementUnitType, any>;
2018
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
2019
- readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
2020
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2021
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2022
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2023
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2024
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2025
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2026
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2027
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2028
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2029
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2030
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2031
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2032
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2033
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2034
- }>>, Pick<{}, never> & Omit<{}, never>>;
2035
- /**
2036
- * Creates a default TVOC measurement cluster server.
2037
- *
2038
- * @param measuredValue - The measured value for TVOC.
2039
- */
2040
- createDefaultTvocMeasurementClusterServer(measuredValue?: number): void;
2041
- /**
2042
- * Get a default thermostat cluster server with the specified parameters.
2043
- *
2044
- * @param localTemperature - The local temperature value in degrees Celsius. Defaults to 23.
2045
- * @param occupiedHeatingSetpoint - The occupied heating setpoint value in degrees Celsius. Defaults to 21.
2046
- * @param occupiedCoolingSetpoint - The occupied cooling setpoint value in degrees Celsius. Defaults to 25.
2047
- * @param minSetpointDeadBand - The minimum setpoint dead band value.
2048
- */
2049
- getDefaultThermostatClusterServer(localTemperature?: number, occupiedHeatingSetpoint?: number, occupiedCoolingSetpoint?: number, minSetpointDeadBand?: number): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2050
- readonly localTemperature: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2051
- readonly outdoorTemperature: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2052
- readonly remoteSensing: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<TypeFromPartialBitSchema<{
2053
- localTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
2054
- outdoorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
2055
- occupancy: import("@project-chip/matter-node.js/schema").BitFlag;
2056
- }>, any>;
2057
- readonly controlSequenceOfOperation: import("@project-chip/matter-node.js/cluster").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
2058
- readonly systemMode: import("@project-chip/matter-node.js/cluster").WritableAttribute<Thermostat.SystemMode, any>;
2059
- readonly alarmMask: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
2060
- initializationFailure: import("@project-chip/matter-node.js/schema").BitFlag;
2061
- hardwareFailure: import("@project-chip/matter-node.js/schema").BitFlag;
2062
- selfCalibrationFailure: import("@project-chip/matter-node.js/schema").BitFlag;
2063
- }>, any>;
2064
- readonly temperatureSetpointHold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
2065
- readonly temperatureSetpointHoldDuration: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2066
- readonly thermostatProgrammingOperationMode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<TypeFromPartialBitSchema<{
2067
- scheduleActive: import("@project-chip/matter-node.js/schema").BitFlag;
2068
- autoRecovery: import("@project-chip/matter-node.js/schema").BitFlag;
2069
- economy: import("@project-chip/matter-node.js/schema").BitFlag;
2070
- }>, any>;
2071
- readonly thermostatRunningState: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
2072
- heat: import("@project-chip/matter-node.js/schema").BitFlag;
2073
- cool: import("@project-chip/matter-node.js/schema").BitFlag;
2074
- fan: import("@project-chip/matter-node.js/schema").BitFlag;
2075
- heatStage2: import("@project-chip/matter-node.js/schema").BitFlag;
2076
- coolStage2: import("@project-chip/matter-node.js/schema").BitFlag;
2077
- fanStage2: import("@project-chip/matter-node.js/schema").BitFlag;
2078
- fanStage3: import("@project-chip/matter-node.js/schema").BitFlag;
2079
- }>, any>;
2080
- readonly setpointChangeSource: import("@project-chip/matter-node.js/cluster").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
2081
- readonly setpointChangeAmount: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2082
- readonly setpointChangeSourceTimestamp: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2083
- readonly emergencyHeatDelta: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2084
- readonly acType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcType, any>;
2085
- readonly acCapacity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2086
- readonly acRefrigerantType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
2087
- readonly acCompressorType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
2088
- readonly acErrorCode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<TypeFromPartialBitSchema<{
2089
- compressorFail: import("@project-chip/matter-node.js/schema").BitFlag;
2090
- roomSensorFail: import("@project-chip/matter-node.js/schema").BitFlag;
2091
- outdoorSensorFail: import("@project-chip/matter-node.js/schema").BitFlag;
2092
- coilSensorFail: import("@project-chip/matter-node.js/schema").BitFlag;
2093
- fanFail: import("@project-chip/matter-node.js/schema").BitFlag;
2094
- }>, any>;
2095
- readonly acLouverPosition: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
2096
- readonly acCoilTemperature: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2097
- readonly acCapacityFormat: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
2098
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2099
- readonly heating: import("@project-chip/matter-node.js/schema").BitFlag;
2100
- readonly cooling: import("@project-chip/matter-node.js/schema").BitFlag;
2101
- readonly occupancy: import("@project-chip/matter-node.js/schema").BitFlag;
2102
- readonly scheduleConfiguration: import("@project-chip/matter-node.js/schema").BitFlag;
2103
- readonly setback: import("@project-chip/matter-node.js/schema").BitFlag;
2104
- readonly autoMode: import("@project-chip/matter-node.js/schema").BitFlag;
2105
- readonly localTemperatureNotExposed: import("@project-chip/matter-node.js/schema").BitFlag;
2106
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "alarmMask" | "localTemperature" | "outdoorTemperature" | "remoteSensing" | "controlSequenceOfOperation" | "systemMode" | "temperatureSetpointHold" | "temperatureSetpointHoldDuration" | "thermostatProgrammingOperationMode" | "thermostatRunningState" | "setpointChangeSource" | "setpointChangeAmount" | "setpointChangeSourceTimestamp" | "emergencyHeatDelta" | "acType" | "acCapacity" | "acRefrigerantType" | "acCompressorType" | "acErrorCode" | "acLouverPosition" | "acCoilTemperature" | "acCapacityFormat"> & Omit<{
2107
- readonly absMinHeatSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2108
- readonly absMaxHeatSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2109
- readonly piHeatingDemand: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2110
- readonly occupiedHeatingSetpoint: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
2111
- readonly minHeatSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2112
- readonly maxHeatSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2113
- } & {
2114
- readonly absMinCoolSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2115
- readonly absMaxCoolSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2116
- readonly piCoolingDemand: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2117
- readonly occupiedCoolingSetpoint: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
2118
- readonly minCoolSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2119
- readonly maxCoolSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2120
- } & {
2121
- readonly minSetpointDeadBand: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
2122
- readonly thermostatRunningMode: import("@project-chip/matter-node.js/cluster").OptionalAttribute<Thermostat.ThermostatRunningMode, any>;
2123
- }, "alarmMask" | "localTemperature" | "outdoorTemperature" | "remoteSensing" | "controlSequenceOfOperation" | "systemMode" | "temperatureSetpointHold" | "temperatureSetpointHoldDuration" | "thermostatProgrammingOperationMode" | "thermostatRunningState" | "setpointChangeSource" | "setpointChangeAmount" | "setpointChangeSourceTimestamp" | "emergencyHeatDelta" | "acType" | "acCapacity" | "acRefrigerantType" | "acCompressorType" | "acErrorCode" | "acLouverPosition" | "acCoilTemperature" | "acCapacityFormat" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2124
- readonly heating: import("@project-chip/matter-node.js/schema").BitFlag;
2125
- readonly cooling: import("@project-chip/matter-node.js/schema").BitFlag;
2126
- readonly occupancy: import("@project-chip/matter-node.js/schema").BitFlag;
2127
- readonly scheduleConfiguration: import("@project-chip/matter-node.js/schema").BitFlag;
2128
- readonly setback: import("@project-chip/matter-node.js/schema").BitFlag;
2129
- readonly autoMode: import("@project-chip/matter-node.js/schema").BitFlag;
2130
- readonly localTemperatureNotExposed: import("@project-chip/matter-node.js/schema").BitFlag;
2131
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2132
- readonly localTemperature: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2133
- readonly outdoorTemperature: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2134
- readonly remoteSensing: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<TypeFromPartialBitSchema<{
2135
- localTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
2136
- outdoorTemperature: import("@project-chip/matter-node.js/schema").BitFlag;
2137
- occupancy: import("@project-chip/matter-node.js/schema").BitFlag;
2138
- }>, any>;
2139
- readonly controlSequenceOfOperation: import("@project-chip/matter-node.js/cluster").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
2140
- readonly systemMode: import("@project-chip/matter-node.js/cluster").WritableAttribute<Thermostat.SystemMode, any>;
2141
- readonly alarmMask: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
2142
- initializationFailure: import("@project-chip/matter-node.js/schema").BitFlag;
2143
- hardwareFailure: import("@project-chip/matter-node.js/schema").BitFlag;
2144
- selfCalibrationFailure: import("@project-chip/matter-node.js/schema").BitFlag;
2145
- }>, any>;
2146
- readonly temperatureSetpointHold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
2147
- readonly temperatureSetpointHoldDuration: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
2148
- readonly thermostatProgrammingOperationMode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<TypeFromPartialBitSchema<{
2149
- scheduleActive: import("@project-chip/matter-node.js/schema").BitFlag;
2150
- autoRecovery: import("@project-chip/matter-node.js/schema").BitFlag;
2151
- economy: import("@project-chip/matter-node.js/schema").BitFlag;
2152
- }>, any>;
2153
- readonly thermostatRunningState: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TypeFromPartialBitSchema<{
2154
- heat: import("@project-chip/matter-node.js/schema").BitFlag;
2155
- cool: import("@project-chip/matter-node.js/schema").BitFlag;
2156
- fan: import("@project-chip/matter-node.js/schema").BitFlag;
2157
- heatStage2: import("@project-chip/matter-node.js/schema").BitFlag;
2158
- coolStage2: import("@project-chip/matter-node.js/schema").BitFlag;
2159
- fanStage2: import("@project-chip/matter-node.js/schema").BitFlag;
2160
- fanStage3: import("@project-chip/matter-node.js/schema").BitFlag;
2161
- }>, any>;
2162
- readonly setpointChangeSource: import("@project-chip/matter-node.js/cluster").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
2163
- readonly setpointChangeAmount: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2164
- readonly setpointChangeSourceTimestamp: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2165
- readonly emergencyHeatDelta: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2166
- readonly acType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcType, any>;
2167
- readonly acCapacity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
2168
- readonly acRefrigerantType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
2169
- readonly acCompressorType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
2170
- readonly acErrorCode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<TypeFromPartialBitSchema<{
2171
- compressorFail: import("@project-chip/matter-node.js/schema").BitFlag;
2172
- roomSensorFail: import("@project-chip/matter-node.js/schema").BitFlag;
2173
- outdoorSensorFail: import("@project-chip/matter-node.js/schema").BitFlag;
2174
- coilSensorFail: import("@project-chip/matter-node.js/schema").BitFlag;
2175
- fanFail: import("@project-chip/matter-node.js/schema").BitFlag;
2176
- }>, any>;
2177
- readonly acLouverPosition: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
2178
- readonly acCoilTemperature: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
2179
- readonly acCapacityFormat: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
2180
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2181
- readonly heating: import("@project-chip/matter-node.js/schema").BitFlag;
2182
- readonly cooling: import("@project-chip/matter-node.js/schema").BitFlag;
2183
- readonly occupancy: import("@project-chip/matter-node.js/schema").BitFlag;
2184
- readonly scheduleConfiguration: import("@project-chip/matter-node.js/schema").BitFlag;
2185
- readonly setback: import("@project-chip/matter-node.js/schema").BitFlag;
2186
- readonly autoMode: import("@project-chip/matter-node.js/schema").BitFlag;
2187
- readonly localTemperatureNotExposed: import("@project-chip/matter-node.js/schema").BitFlag;
2188
- }>>, "alarmMask" | "absMinHeatSetpointLimit" | "absMaxHeatSetpointLimit" | "absMinCoolSetpointLimit" | "absMaxCoolSetpointLimit" | "piCoolingDemand" | "piHeatingDemand" | "occupiedCoolingSetpoint" | "occupiedHeatingSetpoint" | "minHeatSetpointLimit" | "maxHeatSetpointLimit" | "minCoolSetpointLimit" | "maxCoolSetpointLimit" | "minSetpointDeadBand" | "thermostatRunningMode" | "localTemperature" | "outdoorTemperature" | "remoteSensing" | "controlSequenceOfOperation" | "systemMode" | "temperatureSetpointHold" | "temperatureSetpointHoldDuration" | "thermostatProgrammingOperationMode" | "thermostatRunningState" | "setpointChangeSource" | "setpointChangeAmount" | "setpointChangeSourceTimestamp" | "emergencyHeatDelta" | "acType" | "acCapacity" | "acRefrigerantType" | "acCompressorType" | "acErrorCode" | "acLouverPosition" | "acCoilTemperature" | "acCapacityFormat" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2189
- readonly heating: import("@project-chip/matter-node.js/schema").BitFlag;
2190
- readonly cooling: import("@project-chip/matter-node.js/schema").BitFlag;
2191
- readonly occupancy: import("@project-chip/matter-node.js/schema").BitFlag;
2192
- readonly scheduleConfiguration: import("@project-chip/matter-node.js/schema").BitFlag;
2193
- readonly setback: import("@project-chip/matter-node.js/schema").BitFlag;
2194
- readonly autoMode: import("@project-chip/matter-node.js/schema").BitFlag;
2195
- readonly localTemperatureNotExposed: import("@project-chip/matter-node.js/schema").BitFlag;
2196
- }>>, Pick<{}, never> & Omit<{}, never>>;
2197
- /**
2198
- * Creates and adds a default thermostat cluster server to the device.
2199
- *
2200
- * @param localTemperature - The local temperature value.
2201
- * @param occupiedHeatingSetpoint - The occupied heating setpoint value.
2202
- * @param occupiedCoolingSetpoint - The occupied cooling setpoint value.
2203
- * @param minSetpointDeadBand - The minimum setpoint dead band value.
2204
- */
2205
- createDefaultThermostatClusterServer(localTemperature?: number, occupiedHeatingSetpoint?: number, occupiedCoolingSetpoint?: number, minSetpointDeadBand?: number): void;
2206
- /**
2207
- * Get a default dummy time sync cluster server. Only needed to create a thermostat.
2208
- */
2209
- getDefaultTimeSyncClusterServer(): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2210
- readonly utcTime: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint | null, any>;
2211
- readonly granularity: import("@project-chip/matter-node.js/cluster").Attribute<TimeSync.Granularity, any>;
2212
- readonly timeSource: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TimeSync.TimeSource, any>;
2213
- readonly trustedTimeNodeId: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter-node.js/datatype").NodeId | null, any>;
2214
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2215
- readonly timeZone: import("@project-chip/matter-node.js/schema").BitFlag;
2216
- readonly ntpClient: import("@project-chip/matter-node.js/schema").BitFlag;
2217
- readonly ntpServer: import("@project-chip/matter-node.js/schema").BitFlag;
2218
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "utcTime" | "granularity" | "timeSource" | "trustedTimeNodeId"> & Omit<{
2219
- readonly timeZone: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
2220
- offset: import("@project-chip/matter.js/tlv").FieldType<number>;
2221
- validAt: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
2222
- name: import("@project-chip/matter.js/tlv").OptionalFieldType<string>;
2223
- }>[], any>;
2224
- readonly dstOffset: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
2225
- offset: import("@project-chip/matter.js/tlv").FieldType<number>;
2226
- validStarting: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
2227
- validUntil: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
2228
- }>[], any>;
2229
- readonly localTime: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint | null, any>;
2230
- readonly timeZoneDatabase: import("@project-chip/matter-node.js/cluster").FixedAttribute<boolean, any>;
2231
- }, "utcTime" | "granularity" | "timeSource" | "trustedTimeNodeId" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2232
- readonly timeZone: import("@project-chip/matter-node.js/schema").BitFlag;
2233
- readonly ntpClient: import("@project-chip/matter-node.js/schema").BitFlag;
2234
- readonly ntpServer: import("@project-chip/matter-node.js/schema").BitFlag;
2235
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2236
- readonly utcTime: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint | null, any>;
2237
- readonly granularity: import("@project-chip/matter-node.js/cluster").Attribute<TimeSync.Granularity, any>;
2238
- readonly timeSource: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TimeSync.TimeSource, any>;
2239
- readonly trustedTimeNodeId: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter-node.js/datatype").NodeId | null, any>;
2240
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2241
- readonly timeZone: import("@project-chip/matter-node.js/schema").BitFlag;
2242
- readonly ntpClient: import("@project-chip/matter-node.js/schema").BitFlag;
2243
- readonly ntpServer: import("@project-chip/matter-node.js/schema").BitFlag;
2244
- }>>, "timeZone" | "dstOffset" | "localTime" | "timeZoneDatabase" | "utcTime" | "granularity" | "timeSource" | "trustedTimeNodeId" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2245
- readonly timeZone: import("@project-chip/matter-node.js/schema").BitFlag;
2246
- readonly ntpClient: import("@project-chip/matter-node.js/schema").BitFlag;
2247
- readonly ntpServer: import("@project-chip/matter-node.js/schema").BitFlag;
2248
- }>>, Pick<{}, never> & Omit<{
2249
- readonly dstTableEmpty: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2250
- readonly dstStatus: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2251
- readonly timeZoneStatus: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
2252
- offset: import("@project-chip/matter.js/tlv").FieldType<number>;
2253
- name: import("@project-chip/matter.js/tlv").OptionalFieldType<string>;
2254
- }>, any>;
2255
- }, never> & Omit<{}, "dstTableEmpty" | "dstStatus" | "timeZoneStatus">>;
2256
- /**
2257
- * Creates a default dummy time sync cluster server. Only needed to create a thermostat.
2258
- */
2259
- createDefaultTimeSyncClusterServer(): void;
2260
- /**
2261
- * Returns the default SmokeCOAlarm Cluster Server.
2262
- *
2263
- * @param smokeState - The state of the smoke alarm. Defaults to SmokeCoAlarm.AlarmState.Normal.
2264
- * @param coState - The state of the CO alarm. Defaults to SmokeCoAlarm.AlarmState.Normal.
2265
- * @returns The default SmokeCOAlarmClusterServer.
2266
- */
2267
- getDefaultSmokeCOAlarmClusterServer(smokeState?: SmokeCoAlarm.AlarmState, coState?: SmokeCoAlarm.AlarmState): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2268
- readonly expressedState: import("@project-chip/matter-node.js/cluster").Attribute<SmokeCoAlarm.ExpressedState, any>;
2269
- readonly batteryAlert: import("@project-chip/matter-node.js/cluster").Attribute<SmokeCoAlarm.AlarmState, any>;
2270
- readonly deviceMuted: import("@project-chip/matter-node.js/cluster").OptionalAttribute<SmokeCoAlarm.MuteState, any>;
2271
- readonly testInProgress: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
2272
- readonly hardwareFaultAlert: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
2273
- readonly endOfServiceAlert: import("@project-chip/matter-node.js/cluster").Attribute<SmokeCoAlarm.EndOfService, any>;
2274
- readonly interconnectSmokeAlarm: import("@project-chip/matter-node.js/cluster").OptionalAttribute<SmokeCoAlarm.AlarmState, any>;
2275
- readonly interconnectCoAlarm: import("@project-chip/matter-node.js/cluster").OptionalAttribute<SmokeCoAlarm.AlarmState, any>;
2276
- readonly expiryDate: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2277
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2278
- readonly smokeAlarm: import("@project-chip/matter-node.js/schema").BitFlag;
2279
- readonly coAlarm: import("@project-chip/matter-node.js/schema").BitFlag;
2280
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "interconnectSmokeAlarm" | "interconnectCoAlarm" | "expressedState" | "batteryAlert" | "deviceMuted" | "testInProgress" | "hardwareFaultAlert" | "endOfServiceAlert" | "expiryDate"> & Omit<{
2281
- readonly smokeState: import("@project-chip/matter-node.js/cluster").Attribute<SmokeCoAlarm.AlarmState, any>;
2282
- readonly contaminationState: import("@project-chip/matter-node.js/cluster").OptionalAttribute<SmokeCoAlarm.ContaminationState, any>;
2283
- readonly smokeSensitivityLevel: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<SmokeCoAlarm.Sensitivity, any>;
2284
- } & {
2285
- readonly coState: import("@project-chip/matter-node.js/cluster").Attribute<SmokeCoAlarm.AlarmState, any>;
2286
- }, "interconnectSmokeAlarm" | "interconnectCoAlarm" | "expressedState" | "batteryAlert" | "deviceMuted" | "testInProgress" | "hardwareFaultAlert" | "endOfServiceAlert" | "expiryDate" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2287
- readonly smokeAlarm: import("@project-chip/matter-node.js/schema").BitFlag;
2288
- readonly coAlarm: import("@project-chip/matter-node.js/schema").BitFlag;
2289
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2290
- readonly expressedState: import("@project-chip/matter-node.js/cluster").Attribute<SmokeCoAlarm.ExpressedState, any>;
2291
- readonly batteryAlert: import("@project-chip/matter-node.js/cluster").Attribute<SmokeCoAlarm.AlarmState, any>;
2292
- readonly deviceMuted: import("@project-chip/matter-node.js/cluster").OptionalAttribute<SmokeCoAlarm.MuteState, any>;
2293
- readonly testInProgress: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
2294
- readonly hardwareFaultAlert: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
2295
- readonly endOfServiceAlert: import("@project-chip/matter-node.js/cluster").Attribute<SmokeCoAlarm.EndOfService, any>;
2296
- readonly interconnectSmokeAlarm: import("@project-chip/matter-node.js/cluster").OptionalAttribute<SmokeCoAlarm.AlarmState, any>;
2297
- readonly interconnectCoAlarm: import("@project-chip/matter-node.js/cluster").OptionalAttribute<SmokeCoAlarm.AlarmState, any>;
2298
- readonly expiryDate: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
2299
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2300
- readonly smokeAlarm: import("@project-chip/matter-node.js/schema").BitFlag;
2301
- readonly coAlarm: import("@project-chip/matter-node.js/schema").BitFlag;
2302
- }>>, "smokeState" | "contaminationState" | "smokeSensitivityLevel" | "interconnectSmokeAlarm" | "coState" | "interconnectCoAlarm" | "expressedState" | "batteryAlert" | "deviceMuted" | "testInProgress" | "hardwareFaultAlert" | "endOfServiceAlert" | "expiryDate" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2303
- readonly smokeAlarm: import("@project-chip/matter-node.js/schema").BitFlag;
2304
- readonly coAlarm: import("@project-chip/matter-node.js/schema").BitFlag;
2305
- }>>, Pick<{
2306
- readonly lowBattery: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
2307
- alarmSeverityLevel: import("@project-chip/matter.js/tlv").FieldType<SmokeCoAlarm.AlarmState>;
2308
- }>, any>;
2309
- readonly hardwareFault: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2310
- readonly endOfService: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2311
- readonly selfTestComplete: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2312
- readonly alarmMuted: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
2313
- readonly muteEnded: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
2314
- readonly allClear: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2315
- }, "lowBattery" | "hardwareFault" | "endOfService" | "selfTestComplete" | "alarmMuted" | "muteEnded" | "allClear"> & Omit<{
2316
- readonly smokeAlarm: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
2317
- alarmSeverityLevel: import("@project-chip/matter.js/tlv").FieldType<SmokeCoAlarm.AlarmState>;
2318
- }>, any>;
2319
- readonly interconnectSmokeAlarm: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
2320
- alarmSeverityLevel: import("@project-chip/matter.js/tlv").FieldType<SmokeCoAlarm.AlarmState>;
2321
- }>, any>;
2322
- } & {
2323
- readonly coAlarm: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
2324
- alarmSeverityLevel: import("@project-chip/matter.js/tlv").FieldType<SmokeCoAlarm.AlarmState>;
2325
- }>, any>;
2326
- readonly interconnectCoAlarm: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
2327
- alarmSeverityLevel: import("@project-chip/matter.js/tlv").FieldType<SmokeCoAlarm.AlarmState>;
2328
- }>, any>;
2329
- }, "lowBattery" | "hardwareFault" | "endOfService" | "selfTestComplete" | "alarmMuted" | "muteEnded" | "allClear"> & Omit<{
2330
- readonly lowBattery: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
2331
- alarmSeverityLevel: import("@project-chip/matter.js/tlv").FieldType<SmokeCoAlarm.AlarmState>;
2332
- }>, any>;
2333
- readonly hardwareFault: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2334
- readonly endOfService: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2335
- readonly selfTestComplete: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2336
- readonly alarmMuted: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
2337
- readonly muteEnded: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
2338
- readonly allClear: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2339
- }, "smokeAlarm" | "interconnectSmokeAlarm" | "coAlarm" | "interconnectCoAlarm" | "lowBattery" | "hardwareFault" | "endOfService" | "selfTestComplete" | "alarmMuted" | "muteEnded" | "allClear">>;
2340
- /**
2341
- * Create the default SmokeCOAlarm Cluster Server.
2342
- *
2343
- * @param smokeState - The state of the smoke alarm. Defaults to SmokeCoAlarm.AlarmState.Normal.
2344
- * @param coState - The state of the CO alarm. Defaults to SmokeCoAlarm.AlarmState.Normal.
2345
- * @returns The default SmokeCOAlarmClusterServer.
2346
- */
2347
- createDefaultSmokeCOAlarmClusterServer(smokeState?: SmokeCoAlarm.AlarmState, coState?: SmokeCoAlarm.AlarmState): void;
2348
- /**
2349
- * Returns the default Carbon Monoxide Concentration Measurement Cluster Server.
2350
- *
2351
- * @param {number} measuredValue - The measured value of the concentration.
2352
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2353
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2354
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2355
- */
2356
- getDefaultCarbonMonoxideConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2357
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2358
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2359
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2360
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2361
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2362
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2363
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2364
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2365
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2366
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2367
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2368
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2369
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2370
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2371
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2372
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2373
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2374
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2375
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2376
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2377
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2378
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2379
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2380
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2381
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2382
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2383
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2384
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2385
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2386
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2387
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2388
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2389
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2390
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2391
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2392
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2393
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2394
- }>>, Pick<{}, never> & Omit<{}, never>>;
2395
- /**
2396
- * Create the default Carbon Monoxide Concentration Measurement Cluster Server.
2397
- *
2398
- * @param {number} measuredValue - The measured value of the concentration.
2399
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2400
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2401
- */
2402
- createDefaultCarbonMonoxideConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2403
- /**
2404
- * Returns the default Carbon Dioxide Concentration Measurement Cluster Server.
2405
- *
2406
- * @param {number} measuredValue - The measured value of the concentration.
2407
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2408
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2409
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2410
- */
2411
- getDefaultCarbonDioxideConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2412
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2413
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2414
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2415
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2416
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2417
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2418
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2419
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2420
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2421
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2422
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2423
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2424
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2425
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2426
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2427
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2428
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2429
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2430
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2431
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2432
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2433
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2434
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2435
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2436
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2437
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2438
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2439
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2440
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2441
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2442
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2443
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2444
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2445
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2446
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2447
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2448
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2449
- }>>, Pick<{}, never> & Omit<{}, never>>;
2450
- /**
2451
- * Create the default Carbon Dioxide Concentration Measurement Cluster Server.
2452
- *
2453
- * @param {number} measuredValue - The measured value of the concentration.
2454
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2455
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2456
- */
2457
- createDefaultCarbonDioxideConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2458
- /**
2459
- * Returns the default Formaldehyde Concentration Measurement Cluster Server.
2460
- *
2461
- * @param {number} measuredValue - The measured value of the concentration.
2462
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2463
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2464
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2465
- */
2466
- getDefaultFormaldehydeConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2467
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2468
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2469
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2470
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2471
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2472
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2473
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2474
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2475
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2476
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2477
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2478
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2479
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2480
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2481
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2482
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2483
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2484
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2485
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2486
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2487
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2488
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2489
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2490
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2491
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2492
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2493
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2494
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2495
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2496
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2497
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2498
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2499
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2500
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2501
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2502
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2503
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2504
- }>>, Pick<{}, never> & Omit<{}, never>>;
2505
- /**
2506
- * Create the default Formaldehyde Concentration Measurement Cluster Server.
2507
- *
2508
- * @param {number} measuredValue - The measured value of the concentration.
2509
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2510
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2511
- */
2512
- createDefaultFormaldehydeConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2513
- /**
2514
- * Returns the default Pm1 Concentration Measurement Cluster Server.
2515
- *
2516
- * @param {number} measuredValue - The measured value of the concentration.
2517
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2518
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2519
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2520
- */
2521
- getDefaultPm1ConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2522
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2523
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2524
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2525
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2526
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2527
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2528
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2529
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2530
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2531
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2532
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2533
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2534
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2535
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2536
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2537
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2538
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2539
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2540
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2541
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2542
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2543
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2544
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2545
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2546
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2547
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2548
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2549
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2550
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2551
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2552
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2553
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2554
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2555
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2556
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2557
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2558
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2559
- }>>, Pick<{}, never> & Omit<{}, never>>;
2560
- /**
2561
- * Create the default Pm1 Concentration Measurement Cluster Server.
2562
- *
2563
- * @param {number} measuredValue - The measured value of the concentration.
2564
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2565
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2566
- */
2567
- createDefaulPm1ConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2568
- /**
2569
- * Returns the default Pm25 Concentration Measurement Cluster Server.
2570
- *
2571
- * @param {number} measuredValue - The measured value of the concentration.
2572
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2573
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2574
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2575
- */
2576
- getDefaultPm25ConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2577
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2578
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2579
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2580
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2581
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2582
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2583
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2584
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2585
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2586
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2587
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2588
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2589
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2590
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2591
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2592
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2593
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2594
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2595
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2596
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2597
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2598
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2599
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2600
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2601
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2602
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2603
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2604
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2605
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2606
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2607
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2608
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2609
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2610
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2611
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2612
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2613
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2614
- }>>, Pick<{}, never> & Omit<{}, never>>;
2615
- /**
2616
- * Create the default Pm25 Concentration Measurement Cluster Server.
2617
- *
2618
- * @param {number} measuredValue - The measured value of the concentration.
2619
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2620
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2621
- */
2622
- createDefaulPm25ConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2623
- /**
2624
- * Returns the default Pm10 Concentration Measurement Cluster Server.
2625
- *
2626
- * @param {number} measuredValue - The measured value of the concentration.
2627
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2628
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2629
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2630
- */
2631
- getDefaultPm10ConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2632
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2633
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2634
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2635
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2636
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2637
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2638
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2639
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2640
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2641
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2642
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2643
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2644
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2645
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2646
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2647
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2648
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2649
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2650
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2651
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2652
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2653
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2654
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2655
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2656
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2657
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2658
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2659
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2660
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2661
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2662
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2663
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2664
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2665
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2666
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2667
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2668
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2669
- }>>, Pick<{}, never> & Omit<{}, never>>;
2670
- /**
2671
- * Create the default Pm10 Concentration Measurement Cluster Server.
2672
- *
2673
- * @param {number} measuredValue - The measured value of the concentration.
2674
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2675
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2676
- */
2677
- createDefaulPm10ConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2678
- /**
2679
- * Returns the default Ozone Concentration Measurement Cluster Server.
2680
- *
2681
- * @param {number} measuredValue - The measured value of the concentration.
2682
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2683
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2684
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2685
- */
2686
- getDefaultOzoneConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2687
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2688
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2689
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2690
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2691
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2692
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2693
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2694
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2695
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2696
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2697
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2698
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2699
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2700
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2701
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2702
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2703
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2704
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2705
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2706
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2707
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2708
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2709
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2710
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2711
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2712
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2713
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2714
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2715
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2716
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2717
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2718
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2719
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2720
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2721
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2722
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2723
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2724
- }>>, Pick<{}, never> & Omit<{}, never>>;
2725
- /**
2726
- * Create the default Ozone Concentration Measurement Cluster Server.
2727
- *
2728
- * @param {number} measuredValue - The measured value of the concentration.
2729
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2730
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2731
- */
2732
- createDefaulOzoneConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2733
- /**
2734
- * Returns the default Radon Concentration Measurement Cluster Server.
2735
- *
2736
- * @param {number} measuredValue - The measured value of the concentration.
2737
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2738
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2739
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2740
- */
2741
- getDefaultRadonConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2742
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2743
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2744
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2745
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2746
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2747
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2748
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2749
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2750
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2751
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2752
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2753
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2754
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2755
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2756
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2757
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2758
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2759
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2760
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2761
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2762
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2763
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2764
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2765
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2766
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2767
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2768
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2769
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2770
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2771
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2772
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2773
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2774
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2775
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2776
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2777
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2778
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2779
- }>>, Pick<{}, never> & Omit<{}, never>>;
2780
- /**
2781
- * Create the default Radon Concentration Measurement Cluster Server.
2782
- *
2783
- * @param {number} measuredValue - The measured value of the concentration.
2784
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2785
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2786
- */
2787
- createDefaulRadonConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2788
- /**
2789
- * Returns the default Nitrogen Dioxide Concentration Measurement Cluster Server.
2790
- *
2791
- * @param {number} measuredValue - The measured value of the concentration.
2792
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2793
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2794
- * @returns {ClusterServer} - The default Carbon Monoxide Concentration Measurement Cluster Server.
2795
- */
2796
- getDefaultNitrogenDioxideConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2797
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2798
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2799
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2800
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2801
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2802
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2803
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2804
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2805
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "measurementMedium"> & Omit<{
2806
- readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2807
- readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2808
- readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
2809
- readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
2810
- readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
2811
- }, "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2812
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2813
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2814
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2815
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2816
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2817
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2818
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2819
- readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
2820
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2821
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2822
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2823
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2824
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2825
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2826
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2827
- }>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "uncertainty" | "measurementUnit" | "measurementMedium" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2828
- readonly numericMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2829
- readonly levelIndication: import("@project-chip/matter-node.js/schema").BitFlag;
2830
- readonly mediumLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2831
- readonly criticalLevel: import("@project-chip/matter-node.js/schema").BitFlag;
2832
- readonly peakMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2833
- readonly averageMeasurement: import("@project-chip/matter-node.js/schema").BitFlag;
2834
- }>>, Pick<{}, never> & Omit<{}, never>>;
2835
- /**
2836
- * Create the default Nitrogen Dioxide Concentration Measurement Cluster Server.
2837
- *
2838
- * @param {number} measuredValue - The measured value of the concentration.
2839
- * @param {ConcentrationMeasurement.MeasurementUnit} measurementUnit - The unit of measurement.
2840
- * @param {ConcentrationMeasurement.MeasurementMedium} measurementMedium - The medium of measurement.
2841
- */
2842
- createDefaulNitrogenDioxideConcentrationMeasurementClusterServer(measuredValue?: number, measurementUnit?: ConcentrationMeasurement.MeasurementUnit, measurementMedium?: ConcentrationMeasurement.MeasurementMedium): void;
2843
- /**
2844
- * Returns the default fan control cluster server rev 2.
2845
- *
2846
- * @param fanMode The fan mode to set. Defaults to `FanControl.FanMode.Off`.
2847
- * @returns The default fan control cluster server.
2848
- */
2849
- getDefaultFanControlClusterServer(fanMode?: FanControl.FanMode): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2850
- readonly fanMode: import("@project-chip/matter-node.js/cluster").WritableAttribute<FanControl.FanMode, any>;
2851
- readonly fanModeSequence: import("@project-chip/matter-node.js/cluster").WritableAttribute<FanControl.FanModeSequence, any>;
2852
- readonly percentSetting: import("@project-chip/matter-node.js/cluster").WritableAttribute<number | null, any>;
2853
- readonly percentCurrent: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2854
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2855
- readonly multiSpeed: import("@project-chip/matter-node.js/schema").BitFlag;
2856
- readonly auto: import("@project-chip/matter-node.js/schema").BitFlag;
2857
- readonly rocking: import("@project-chip/matter-node.js/schema").BitFlag;
2858
- readonly wind: import("@project-chip/matter-node.js/schema").BitFlag;
2859
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "fanMode" | "fanModeSequence" | "percentSetting" | "percentCurrent"> & Omit<{
2860
- readonly speedMax: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
2861
- readonly speedSetting: import("@project-chip/matter-node.js/cluster").WritableAttribute<number | null, any>;
2862
- readonly speedCurrent: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2863
- }, "fanMode" | "fanModeSequence" | "percentSetting" | "percentCurrent" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2864
- readonly multiSpeed: import("@project-chip/matter-node.js/schema").BitFlag;
2865
- readonly auto: import("@project-chip/matter-node.js/schema").BitFlag;
2866
- readonly rocking: import("@project-chip/matter-node.js/schema").BitFlag;
2867
- readonly wind: import("@project-chip/matter-node.js/schema").BitFlag;
2868
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2869
- readonly fanMode: import("@project-chip/matter-node.js/cluster").WritableAttribute<FanControl.FanMode, any>;
2870
- readonly fanModeSequence: import("@project-chip/matter-node.js/cluster").WritableAttribute<FanControl.FanModeSequence, any>;
2871
- readonly percentSetting: import("@project-chip/matter-node.js/cluster").WritableAttribute<number | null, any>;
2872
- readonly percentCurrent: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
2873
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2874
- readonly multiSpeed: import("@project-chip/matter-node.js/schema").BitFlag;
2875
- readonly auto: import("@project-chip/matter-node.js/schema").BitFlag;
2876
- readonly rocking: import("@project-chip/matter-node.js/schema").BitFlag;
2877
- readonly wind: import("@project-chip/matter-node.js/schema").BitFlag;
2878
- }>>, "speedMax" | "speedSetting" | "speedCurrent" | "fanMode" | "fanModeSequence" | "percentSetting" | "percentCurrent" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2879
- readonly multiSpeed: import("@project-chip/matter-node.js/schema").BitFlag;
2880
- readonly auto: import("@project-chip/matter-node.js/schema").BitFlag;
2881
- readonly rocking: import("@project-chip/matter-node.js/schema").BitFlag;
2882
- readonly wind: import("@project-chip/matter-node.js/schema").BitFlag;
2883
- }>>, Pick<{}, never> & Omit<{}, never>>;
2884
- /**
2885
- * Create the default fan control cluster server rev 2.
2886
- *
2887
- * @param fanMode The fan mode to set. Defaults to `FanControl.FanMode.Off`.
2888
- * @returns The default fan control cluster server.
2889
- */
2890
- createDefaultFanControlClusterServer(fanMode?: FanControl.FanMode): void;
2891
- getDefaultDeviceEnergyManagementClusterServer(): ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
2892
- readonly esaType: import("@project-chip/matter-node.js/cluster").FixedAttribute<DeviceEnergyManagement.EsaType, any>;
2893
- readonly esaCanGenerate: import("@project-chip/matter-node.js/cluster").FixedAttribute<boolean, any>;
2894
- readonly esaState: import("@project-chip/matter-node.js/cluster").Attribute<DeviceEnergyManagement.EsaState, any>;
2895
- readonly absMinPower: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint, any>;
2896
- readonly absMaxPower: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint, any>;
2897
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2898
- readonly powerAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2899
- readonly powerForecastReporting: import("@project-chip/matter-node.js/schema").BitFlag;
2900
- readonly stateForecastReporting: import("@project-chip/matter-node.js/schema").BitFlag;
2901
- readonly startTimeAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2902
- readonly pausable: import("@project-chip/matter-node.js/schema").BitFlag;
2903
- readonly forecastAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2904
- readonly constraintBasedAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2905
- }>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "esaType" | "esaCanGenerate" | "esaState" | "absMinPower" | "absMaxPower"> & Omit<{
2906
- readonly forecast: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
2907
- forecastId: import("@project-chip/matter.js/tlv").FieldType<number>;
2908
- activeSlotNumber: import("@project-chip/matter.js/tlv").FieldType<number | null>;
2909
- startTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2910
- endTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2911
- earliestStartTime: import("@project-chip/matter.js/tlv").OptionalFieldType<number | null>;
2912
- latestEndTime: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
2913
- isPauseable: import("@project-chip/matter.js/tlv").FieldType<boolean>;
2914
- slots: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
2915
- minDuration: import("@project-chip/matter.js/tlv").FieldType<number>;
2916
- maxDuration: import("@project-chip/matter.js/tlv").FieldType<number>;
2917
- defaultDuration: import("@project-chip/matter.js/tlv").FieldType<number>;
2918
- elapsedSlotTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2919
- remainingSlotTime: import("@project-chip/matter.js/tlv").FieldType<number>;
2920
- slotIsPauseable: import("@project-chip/matter.js/tlv").OptionalFieldType<boolean>;
2921
- minPauseDuration: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
2922
- maxPauseDuration: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
2923
- manufacturerEsaState: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
2924
- nominalPower: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
2925
- minPower: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
2926
- maxPower: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
2927
- nominalEnergy: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
2928
- costs: import("@project-chip/matter.js/tlv").OptionalFieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
2929
- costType: import("@project-chip/matter.js/tlv").FieldType<DeviceEnergyManagement.CostType>;
2930
- value: import("@project-chip/matter.js/tlv").FieldType<number>;
2931
- decimalPoints: import("@project-chip/matter.js/tlv").FieldType<number>;
2932
- currency: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
2933
- }>[]>;
2934
- minPowerAdjustment: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
2935
- maxPowerAdjustment: import("@project-chip/matter.js/tlv").OptionalFieldType<number | bigint>;
2936
- minDurationAdjustment: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
2937
- maxDurationAdjustment: import("@project-chip/matter.js/tlv").OptionalFieldType<number>;
2938
- }>[]>;
2939
- forecastUpdateReason: import("@project-chip/matter.js/tlv").FieldType<DeviceEnergyManagement.ForecastUpdateReason>;
2940
- }> | null, any>;
2941
- } & {
2942
- readonly optOutState: import("@project-chip/matter-node.js/cluster").Attribute<DeviceEnergyManagement.OptOutState, any>;
2943
- }, "esaType" | "esaCanGenerate" | "esaState" | "absMinPower" | "absMaxPower" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2944
- readonly powerAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2945
- readonly powerForecastReporting: import("@project-chip/matter-node.js/schema").BitFlag;
2946
- readonly stateForecastReporting: import("@project-chip/matter-node.js/schema").BitFlag;
2947
- readonly startTimeAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2948
- readonly pausable: import("@project-chip/matter-node.js/schema").BitFlag;
2949
- readonly forecastAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2950
- readonly constraintBasedAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2951
- }>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
2952
- readonly esaType: import("@project-chip/matter-node.js/cluster").FixedAttribute<DeviceEnergyManagement.EsaType, any>;
2953
- readonly esaCanGenerate: import("@project-chip/matter-node.js/cluster").FixedAttribute<boolean, any>;
2954
- readonly esaState: import("@project-chip/matter-node.js/cluster").Attribute<DeviceEnergyManagement.EsaState, any>;
2955
- readonly absMinPower: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint, any>;
2956
- readonly absMaxPower: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint, any>;
2957
- }, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2958
- readonly powerAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2959
- readonly powerForecastReporting: import("@project-chip/matter-node.js/schema").BitFlag;
2960
- readonly stateForecastReporting: import("@project-chip/matter-node.js/schema").BitFlag;
2961
- readonly startTimeAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2962
- readonly pausable: import("@project-chip/matter-node.js/schema").BitFlag;
2963
- readonly forecastAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2964
- readonly constraintBasedAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2965
- }>>, "forecast" | "optOutState" | "esaType" | "esaCanGenerate" | "esaState" | "absMinPower" | "absMaxPower" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
2966
- readonly powerAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2967
- readonly powerForecastReporting: import("@project-chip/matter-node.js/schema").BitFlag;
2968
- readonly stateForecastReporting: import("@project-chip/matter-node.js/schema").BitFlag;
2969
- readonly startTimeAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2970
- readonly pausable: import("@project-chip/matter-node.js/schema").BitFlag;
2971
- readonly forecastAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2972
- readonly constraintBasedAdjustment: import("@project-chip/matter-node.js/schema").BitFlag;
2973
- }>>, Pick<{}, never> & Omit<{
2974
- readonly paused: import("@project-chip/matter-node.js/cluster").Event<void, any>;
2975
- readonly resumed: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
2976
- cause: import("@project-chip/matter.js/tlv").FieldType<DeviceEnergyManagement.Cause>;
2977
- }>, any>;
2978
- }, never> & Omit<{}, "paused" | "resumed">>;
2979
- getDefaultDeviceEnergyManagementModeClusterServer(): ClusterServerObj<{}, {}>;
2980
- }
2981
- //# sourceMappingURL=matterbridgeDeviceV8.d.ts.map