matterbridge 1.6.2 → 1.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -6
- package/README.md +3 -3
- package/dist/matterbridgeDevice.d.ts +25 -12
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +61 -19
- package/dist/matterbridgeDevice.js.map +1 -1
- package/dist/matterbridgeDeviceTypes.d.ts +7 -0
- package/dist/matterbridgeDeviceTypes.d.ts.map +1 -1
- package/dist/matterbridgeDeviceTypes.js +0 -1
- package/dist/matterbridgeDeviceTypes.js.map +1 -1
- package/dist/matterbridgeEndpoint.d.ts +946 -158
- package/dist/matterbridgeEndpoint.d.ts.map +1 -1
- package/dist/matterbridgeEndpoint.js +107 -41
- package/dist/matterbridgeEndpoint.js.map +1 -1
- package/npm-shrinkwrap.json +61 -61
- package/package.json +4 -4
|
@@ -22,10 +22,11 @@
|
|
|
22
22
|
*/
|
|
23
23
|
import { AnsiLogger, LogLevel } from 'node-ansi-logger';
|
|
24
24
|
import { MatterbridgeBooleanStateConfigurationServer, MatterbridgeColorControlServer, MatterbridgeDoorLockServer, MatterbridgeFanControlServer, MatterbridgeIdentifyServer, MatterbridgeLevelControlServer, MatterbridgeOnOffServer, MatterbridgeThermostatServer, MatterbridgeWindowCoveringServer } from './matterbridgeBehaviors.js';
|
|
25
|
+
import { MatterbridgeEndpointOptions } from './matterbridgeDeviceTypes.js';
|
|
25
26
|
import { Endpoint, Behavior, NamedHandler } from '@matter/main';
|
|
26
|
-
import { ClusterId, EndpointNumber, AtLeastOne, MakeMandatory } from '@matter/main';
|
|
27
|
+
import { ClusterId, EndpointNumber, VendorId, AtLeastOne, MakeMandatory } from '@matter/main';
|
|
27
28
|
import { AirQuality, BasicInformation, BooleanState, BooleanStateConfiguration, BridgedDeviceBasicInformation, ColorControl, ConcentrationMeasurement, DeviceEnergyManagement, DoorLock, ElectricalEnergyMeasurement, ElectricalPowerMeasurement, FanControl, FlowMeasurement, Groups, Identify, IlluminanceMeasurement, LevelControl, ModeSelect, OccupancySensing, OnOff, PowerSource, PowerTopology, PressureMeasurement, RelativeHumidityMeasurement, SmokeCoAlarm, Switch, TemperatureMeasurement, Thermostat, ThreadNetworkDiagnostics, TimeSynchronization, WindowCovering } from '@matter/main/clusters';
|
|
28
|
-
import { ClusterType, MeasurementType, Semtag } from '@matter/main/types';
|
|
29
|
+
import { ClusterType, MeasurementType, Semtag, BitSchema, TypeFromPartialBitSchema, Attributes, Commands, Events, Cluster } from '@matter/main/types';
|
|
29
30
|
import { GroupsServer } from '@matter/node/behaviors/groups';
|
|
30
31
|
import { TemperatureMeasurementServer } from '@matter/node/behaviors/temperature-measurement';
|
|
31
32
|
import { RelativeHumidityMeasurementServer } from '@matter/node/behaviors/relative-humidity-measurement';
|
|
@@ -104,9 +105,9 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
104
105
|
* Represents a MatterbridgeEndpoint.
|
|
105
106
|
* @constructor
|
|
106
107
|
* @param {DeviceTypeDefinition | AtLeastOne<DeviceTypeDefinition>} definition - The DeviceTypeDefinition(s) of the endpoint.
|
|
107
|
-
* @param {
|
|
108
|
+
* @param {MatterbridgeEndpointOptions} [options={}] - The options for the device.
|
|
108
109
|
*/
|
|
109
|
-
constructor(definition: DeviceTypeDefinition | AtLeastOne<DeviceTypeDefinition>, options?:
|
|
110
|
+
constructor(definition: DeviceTypeDefinition | AtLeastOne<DeviceTypeDefinition>, options?: MatterbridgeEndpointOptions, debug?: boolean);
|
|
110
111
|
/**
|
|
111
112
|
* Loads an instance of the MatterbridgeDevice class.
|
|
112
113
|
*
|
|
@@ -116,7 +117,778 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
116
117
|
static loadInstance(definition: DeviceTypeDefinition | AtLeastOne<DeviceTypeDefinition>, options?: EndpointOptions, debug?: boolean): Promise<MatterbridgeEndpoint>;
|
|
117
118
|
static getBehaviourTypesFromClusterServerIds(clusterServerList: ClusterId[]): Behavior.Type[];
|
|
118
119
|
static getBehaviourTypesFromClusterClientIds(clusterClientList: ClusterId[]): Behavior.Type[];
|
|
119
|
-
static getBehaviourTypeFromClusterServerId(clusterId: ClusterId, type?: string): typeof MatterbridgeIdentifyServer | typeof MatterbridgeOnOffServer | typeof MatterbridgeLevelControlServer | typeof MatterbridgeColorControlServer | typeof MatterbridgeWindowCoveringServer | typeof MatterbridgeDoorLockServer | typeof MatterbridgeFanControlServer | typeof
|
|
120
|
+
static getBehaviourTypeFromClusterServerId(clusterId: ClusterId, type?: string): typeof MatterbridgeIdentifyServer | typeof MatterbridgeOnOffServer | typeof MatterbridgeLevelControlServer | typeof MatterbridgeColorControlServer | typeof MatterbridgeWindowCoveringServer | typeof MatterbridgeDoorLockServer | typeof MatterbridgeFanControlServer | typeof MatterbridgeBooleanStateConfigurationServer | typeof GroupsServer | import("@matter/main").ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
|
|
121
|
+
readonly id: 513;
|
|
122
|
+
readonly name: "Thermostat";
|
|
123
|
+
readonly revision: 6;
|
|
124
|
+
readonly features: {
|
|
125
|
+
readonly heating: import("@matter/main/types").BitFlag;
|
|
126
|
+
readonly cooling: import("@matter/main/types").BitFlag;
|
|
127
|
+
readonly occupancy: import("@matter/main/types").BitFlag;
|
|
128
|
+
readonly scheduleConfiguration: import("@matter/main/types").BitFlag;
|
|
129
|
+
readonly setback: import("@matter/main/types").BitFlag;
|
|
130
|
+
readonly autoMode: import("@matter/main/types").BitFlag;
|
|
131
|
+
readonly localTemperatureNotExposed: import("@matter/main/types").BitFlag;
|
|
132
|
+
};
|
|
133
|
+
readonly attributes: {
|
|
134
|
+
readonly localTemperature: import("@matter/main/types").Attribute<number | null, any>;
|
|
135
|
+
readonly outdoorTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
136
|
+
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
137
|
+
localTemperature: import("@matter/main/types").BitFlag;
|
|
138
|
+
outdoorTemperature: import("@matter/main/types").BitFlag;
|
|
139
|
+
occupancy: import("@matter/main/types").BitFlag;
|
|
140
|
+
}>, any>;
|
|
141
|
+
readonly controlSequenceOfOperation: import("@matter/main/types").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
|
|
142
|
+
readonly systemMode: import("@matter/main/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
143
|
+
readonly temperatureSetpointHold: import("@matter/main/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
144
|
+
readonly temperatureSetpointHoldDuration: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
145
|
+
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
146
|
+
scheduleActive: import("@matter/main/types").BitFlag;
|
|
147
|
+
autoRecovery: import("@matter/main/types").BitFlag;
|
|
148
|
+
economy: import("@matter/main/types").BitFlag;
|
|
149
|
+
}>, any>;
|
|
150
|
+
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
151
|
+
heat: import("@matter/main/types").BitFlag;
|
|
152
|
+
cool: import("@matter/main/types").BitFlag;
|
|
153
|
+
fan: import("@matter/main/types").BitFlag;
|
|
154
|
+
heatStage2: import("@matter/main/types").BitFlag;
|
|
155
|
+
coolStage2: import("@matter/main/types").BitFlag;
|
|
156
|
+
fanStage2: import("@matter/main/types").BitFlag;
|
|
157
|
+
fanStage3: import("@matter/main/types").BitFlag;
|
|
158
|
+
}>, any>;
|
|
159
|
+
readonly setpointChangeSource: import("@matter/main/types").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
|
|
160
|
+
readonly setpointChangeAmount: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
161
|
+
readonly setpointChangeSourceTimestamp: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
162
|
+
readonly emergencyHeatDelta: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
163
|
+
readonly acType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcType, any>;
|
|
164
|
+
readonly acCapacity: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
165
|
+
readonly acRefrigerantType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
166
|
+
readonly acCompressorType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
167
|
+
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
168
|
+
compressorFail: import("@matter/main/types").BitFlag;
|
|
169
|
+
roomSensorFail: import("@matter/main/types").BitFlag;
|
|
170
|
+
outdoorSensorFail: import("@matter/main/types").BitFlag;
|
|
171
|
+
coilSensorFail: import("@matter/main/types").BitFlag;
|
|
172
|
+
fanFail: import("@matter/main/types").BitFlag;
|
|
173
|
+
}>, any>;
|
|
174
|
+
readonly acLouverPosition: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
|
|
175
|
+
readonly acCoilTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
176
|
+
readonly acCapacityFormat: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
|
|
177
|
+
};
|
|
178
|
+
readonly commands: {
|
|
179
|
+
readonly setpointRaiseLower: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
180
|
+
mode: import("@matter/main/types").FieldType<Thermostat.SetpointRaiseLowerMode>;
|
|
181
|
+
amount: import("@matter/main/types").FieldType<number>;
|
|
182
|
+
}>, void, any>;
|
|
183
|
+
};
|
|
184
|
+
readonly extensions: readonly [{
|
|
185
|
+
readonly flags: {
|
|
186
|
+
readonly occupancy: true;
|
|
187
|
+
};
|
|
188
|
+
readonly component: {
|
|
189
|
+
readonly attributes: {
|
|
190
|
+
readonly occupancy: import("@matter/main/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
191
|
+
occupied: import("@matter/main/types").BitFlag;
|
|
192
|
+
}>, any>;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
}, {
|
|
196
|
+
readonly flags: {
|
|
197
|
+
readonly heating: true;
|
|
198
|
+
};
|
|
199
|
+
readonly component: {
|
|
200
|
+
readonly attributes: {
|
|
201
|
+
readonly absMinHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
202
|
+
readonly absMaxHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
203
|
+
readonly piHeatingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
204
|
+
readonly occupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
205
|
+
readonly minHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
206
|
+
readonly maxHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
}, {
|
|
210
|
+
readonly flags: {
|
|
211
|
+
readonly cooling: true;
|
|
212
|
+
};
|
|
213
|
+
readonly component: {
|
|
214
|
+
readonly attributes: {
|
|
215
|
+
readonly absMinCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
216
|
+
readonly absMaxCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
217
|
+
readonly piCoolingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
218
|
+
readonly occupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
219
|
+
readonly minCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
220
|
+
readonly maxCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
}, {
|
|
224
|
+
readonly flags: {
|
|
225
|
+
readonly localTemperatureNotExposed: false;
|
|
226
|
+
};
|
|
227
|
+
readonly component: {
|
|
228
|
+
readonly attributes: {
|
|
229
|
+
readonly localTemperatureCalibration: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
}, {
|
|
233
|
+
readonly flags: {
|
|
234
|
+
readonly cooling: true;
|
|
235
|
+
readonly occupancy: true;
|
|
236
|
+
};
|
|
237
|
+
readonly component: {
|
|
238
|
+
readonly attributes: {
|
|
239
|
+
readonly unoccupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
}, {
|
|
243
|
+
readonly flags: {
|
|
244
|
+
readonly heating: true;
|
|
245
|
+
readonly occupancy: true;
|
|
246
|
+
};
|
|
247
|
+
readonly component: {
|
|
248
|
+
readonly attributes: {
|
|
249
|
+
readonly unoccupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
}, {
|
|
253
|
+
readonly flags: {
|
|
254
|
+
readonly autoMode: true;
|
|
255
|
+
};
|
|
256
|
+
readonly component: {
|
|
257
|
+
readonly attributes: {
|
|
258
|
+
readonly minSetpointDeadBand: import("@matter/main/types").WritableAttribute<number, any>;
|
|
259
|
+
readonly thermostatRunningMode: import("@matter/main/types").OptionalAttribute<Thermostat.ThermostatRunningMode, any>;
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
}, {
|
|
263
|
+
readonly flags: {
|
|
264
|
+
readonly scheduleConfiguration: true;
|
|
265
|
+
};
|
|
266
|
+
readonly component: {
|
|
267
|
+
readonly attributes: {
|
|
268
|
+
readonly startOfWeek: import("@matter/main/types").FixedAttribute<Thermostat.StartOfWeek, any>;
|
|
269
|
+
readonly numberOfWeeklyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
|
|
270
|
+
readonly numberOfDailyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
|
|
271
|
+
};
|
|
272
|
+
readonly commands: {
|
|
273
|
+
readonly setWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
274
|
+
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
275
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
276
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
277
|
+
monday: import("@matter/main/types").BitFlag;
|
|
278
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
279
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
280
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
281
|
+
friday: import("@matter/main/types").BitFlag;
|
|
282
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
283
|
+
away: import("@matter/main/types").BitFlag;
|
|
284
|
+
}>>;
|
|
285
|
+
modeForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
286
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
287
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
288
|
+
}>>;
|
|
289
|
+
transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
|
|
290
|
+
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
291
|
+
heatSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
292
|
+
coolSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
293
|
+
}>[]>;
|
|
294
|
+
}>, void, any>;
|
|
295
|
+
readonly getWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
296
|
+
daysToReturn: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
297
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
298
|
+
monday: import("@matter/main/types").BitFlag;
|
|
299
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
300
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
301
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
302
|
+
friday: import("@matter/main/types").BitFlag;
|
|
303
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
304
|
+
away: import("@matter/main/types").BitFlag;
|
|
305
|
+
}>>;
|
|
306
|
+
modeToReturn: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
307
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
308
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
309
|
+
}>>;
|
|
310
|
+
}>, import("@matter/main/types").TypeFromFields<{
|
|
311
|
+
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
312
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
313
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
314
|
+
monday: import("@matter/main/types").BitFlag;
|
|
315
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
316
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
317
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
318
|
+
friday: import("@matter/main/types").BitFlag;
|
|
319
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
320
|
+
away: import("@matter/main/types").BitFlag;
|
|
321
|
+
}>>;
|
|
322
|
+
modeForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
323
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
324
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
325
|
+
}>>;
|
|
326
|
+
transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
|
|
327
|
+
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
328
|
+
heatSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
329
|
+
coolSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
330
|
+
}>[]>;
|
|
331
|
+
}>, any>;
|
|
332
|
+
readonly clearWeeklySchedule: import("@matter/main/types").Command<void, void, any>;
|
|
333
|
+
};
|
|
334
|
+
};
|
|
335
|
+
}, {
|
|
336
|
+
readonly flags: {
|
|
337
|
+
readonly setback: true;
|
|
338
|
+
};
|
|
339
|
+
readonly component: {
|
|
340
|
+
readonly attributes: {
|
|
341
|
+
readonly occupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
|
|
342
|
+
readonly occupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
343
|
+
readonly occupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
}, {
|
|
347
|
+
readonly flags: {
|
|
348
|
+
readonly setback: true;
|
|
349
|
+
readonly occupancy: true;
|
|
350
|
+
};
|
|
351
|
+
readonly component: {
|
|
352
|
+
readonly attributes: {
|
|
353
|
+
readonly unoccupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
|
|
354
|
+
readonly unoccupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
355
|
+
readonly unoccupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
}, {
|
|
359
|
+
readonly flags: {
|
|
360
|
+
readonly autoMode: true;
|
|
361
|
+
readonly heating: false;
|
|
362
|
+
};
|
|
363
|
+
readonly component: false;
|
|
364
|
+
}, {
|
|
365
|
+
readonly flags: {
|
|
366
|
+
readonly autoMode: true;
|
|
367
|
+
readonly cooling: false;
|
|
368
|
+
};
|
|
369
|
+
readonly component: false;
|
|
370
|
+
}, {
|
|
371
|
+
readonly flags: {
|
|
372
|
+
readonly heating: false;
|
|
373
|
+
readonly cooling: false;
|
|
374
|
+
};
|
|
375
|
+
readonly component: false;
|
|
376
|
+
}];
|
|
377
|
+
}>, readonly [Thermostat.Feature.Cooling, Thermostat.Feature.Heating, Thermostat.Feature.AutoMode]>, readonly ["AutoMode", "Heating", "Cooling"]>, typeof MatterbridgeThermostatServer, import("@matter/main/behaviors").ThermostatInterface> | import("@matter/main").ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
|
|
378
|
+
readonly id: 513;
|
|
379
|
+
readonly name: "Thermostat";
|
|
380
|
+
readonly revision: 6;
|
|
381
|
+
readonly features: {
|
|
382
|
+
readonly heating: import("@matter/main/types").BitFlag;
|
|
383
|
+
readonly cooling: import("@matter/main/types").BitFlag;
|
|
384
|
+
readonly occupancy: import("@matter/main/types").BitFlag;
|
|
385
|
+
readonly scheduleConfiguration: import("@matter/main/types").BitFlag;
|
|
386
|
+
readonly setback: import("@matter/main/types").BitFlag;
|
|
387
|
+
readonly autoMode: import("@matter/main/types").BitFlag;
|
|
388
|
+
readonly localTemperatureNotExposed: import("@matter/main/types").BitFlag;
|
|
389
|
+
};
|
|
390
|
+
readonly attributes: {
|
|
391
|
+
readonly localTemperature: import("@matter/main/types").Attribute<number | null, any>;
|
|
392
|
+
readonly outdoorTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
393
|
+
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
394
|
+
localTemperature: import("@matter/main/types").BitFlag;
|
|
395
|
+
outdoorTemperature: import("@matter/main/types").BitFlag;
|
|
396
|
+
occupancy: import("@matter/main/types").BitFlag;
|
|
397
|
+
}>, any>;
|
|
398
|
+
readonly controlSequenceOfOperation: import("@matter/main/types").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
|
|
399
|
+
readonly systemMode: import("@matter/main/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
400
|
+
readonly temperatureSetpointHold: import("@matter/main/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
401
|
+
readonly temperatureSetpointHoldDuration: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
402
|
+
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
403
|
+
scheduleActive: import("@matter/main/types").BitFlag;
|
|
404
|
+
autoRecovery: import("@matter/main/types").BitFlag;
|
|
405
|
+
economy: import("@matter/main/types").BitFlag;
|
|
406
|
+
}>, any>;
|
|
407
|
+
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
408
|
+
heat: import("@matter/main/types").BitFlag;
|
|
409
|
+
cool: import("@matter/main/types").BitFlag;
|
|
410
|
+
fan: import("@matter/main/types").BitFlag;
|
|
411
|
+
heatStage2: import("@matter/main/types").BitFlag;
|
|
412
|
+
coolStage2: import("@matter/main/types").BitFlag;
|
|
413
|
+
fanStage2: import("@matter/main/types").BitFlag;
|
|
414
|
+
fanStage3: import("@matter/main/types").BitFlag;
|
|
415
|
+
}>, any>;
|
|
416
|
+
readonly setpointChangeSource: import("@matter/main/types").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
|
|
417
|
+
readonly setpointChangeAmount: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
418
|
+
readonly setpointChangeSourceTimestamp: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
419
|
+
readonly emergencyHeatDelta: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
420
|
+
readonly acType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcType, any>;
|
|
421
|
+
readonly acCapacity: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
422
|
+
readonly acRefrigerantType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
423
|
+
readonly acCompressorType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
424
|
+
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
425
|
+
compressorFail: import("@matter/main/types").BitFlag;
|
|
426
|
+
roomSensorFail: import("@matter/main/types").BitFlag;
|
|
427
|
+
outdoorSensorFail: import("@matter/main/types").BitFlag;
|
|
428
|
+
coilSensorFail: import("@matter/main/types").BitFlag;
|
|
429
|
+
fanFail: import("@matter/main/types").BitFlag;
|
|
430
|
+
}>, any>;
|
|
431
|
+
readonly acLouverPosition: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
|
|
432
|
+
readonly acCoilTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
433
|
+
readonly acCapacityFormat: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
|
|
434
|
+
};
|
|
435
|
+
readonly commands: {
|
|
436
|
+
readonly setpointRaiseLower: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
437
|
+
mode: import("@matter/main/types").FieldType<Thermostat.SetpointRaiseLowerMode>;
|
|
438
|
+
amount: import("@matter/main/types").FieldType<number>;
|
|
439
|
+
}>, void, any>;
|
|
440
|
+
};
|
|
441
|
+
readonly extensions: readonly [{
|
|
442
|
+
readonly flags: {
|
|
443
|
+
readonly occupancy: true;
|
|
444
|
+
};
|
|
445
|
+
readonly component: {
|
|
446
|
+
readonly attributes: {
|
|
447
|
+
readonly occupancy: import("@matter/main/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
448
|
+
occupied: import("@matter/main/types").BitFlag;
|
|
449
|
+
}>, any>;
|
|
450
|
+
};
|
|
451
|
+
};
|
|
452
|
+
}, {
|
|
453
|
+
readonly flags: {
|
|
454
|
+
readonly heating: true;
|
|
455
|
+
};
|
|
456
|
+
readonly component: {
|
|
457
|
+
readonly attributes: {
|
|
458
|
+
readonly absMinHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
459
|
+
readonly absMaxHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
460
|
+
readonly piHeatingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
461
|
+
readonly occupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
462
|
+
readonly minHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
463
|
+
readonly maxHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
}, {
|
|
467
|
+
readonly flags: {
|
|
468
|
+
readonly cooling: true;
|
|
469
|
+
};
|
|
470
|
+
readonly component: {
|
|
471
|
+
readonly attributes: {
|
|
472
|
+
readonly absMinCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
473
|
+
readonly absMaxCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
474
|
+
readonly piCoolingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
475
|
+
readonly occupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
476
|
+
readonly minCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
477
|
+
readonly maxCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
478
|
+
};
|
|
479
|
+
};
|
|
480
|
+
}, {
|
|
481
|
+
readonly flags: {
|
|
482
|
+
readonly localTemperatureNotExposed: false;
|
|
483
|
+
};
|
|
484
|
+
readonly component: {
|
|
485
|
+
readonly attributes: {
|
|
486
|
+
readonly localTemperatureCalibration: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
}, {
|
|
490
|
+
readonly flags: {
|
|
491
|
+
readonly cooling: true;
|
|
492
|
+
readonly occupancy: true;
|
|
493
|
+
};
|
|
494
|
+
readonly component: {
|
|
495
|
+
readonly attributes: {
|
|
496
|
+
readonly unoccupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
497
|
+
};
|
|
498
|
+
};
|
|
499
|
+
}, {
|
|
500
|
+
readonly flags: {
|
|
501
|
+
readonly heating: true;
|
|
502
|
+
readonly occupancy: true;
|
|
503
|
+
};
|
|
504
|
+
readonly component: {
|
|
505
|
+
readonly attributes: {
|
|
506
|
+
readonly unoccupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
}, {
|
|
510
|
+
readonly flags: {
|
|
511
|
+
readonly autoMode: true;
|
|
512
|
+
};
|
|
513
|
+
readonly component: {
|
|
514
|
+
readonly attributes: {
|
|
515
|
+
readonly minSetpointDeadBand: import("@matter/main/types").WritableAttribute<number, any>;
|
|
516
|
+
readonly thermostatRunningMode: import("@matter/main/types").OptionalAttribute<Thermostat.ThermostatRunningMode, any>;
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
}, {
|
|
520
|
+
readonly flags: {
|
|
521
|
+
readonly scheduleConfiguration: true;
|
|
522
|
+
};
|
|
523
|
+
readonly component: {
|
|
524
|
+
readonly attributes: {
|
|
525
|
+
readonly startOfWeek: import("@matter/main/types").FixedAttribute<Thermostat.StartOfWeek, any>;
|
|
526
|
+
readonly numberOfWeeklyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
|
|
527
|
+
readonly numberOfDailyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
|
|
528
|
+
};
|
|
529
|
+
readonly commands: {
|
|
530
|
+
readonly setWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
531
|
+
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
532
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
533
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
534
|
+
monday: import("@matter/main/types").BitFlag;
|
|
535
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
536
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
537
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
538
|
+
friday: import("@matter/main/types").BitFlag;
|
|
539
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
540
|
+
away: import("@matter/main/types").BitFlag;
|
|
541
|
+
}>>;
|
|
542
|
+
modeForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
543
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
544
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
545
|
+
}>>;
|
|
546
|
+
transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
|
|
547
|
+
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
548
|
+
heatSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
549
|
+
coolSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
550
|
+
}>[]>;
|
|
551
|
+
}>, void, any>;
|
|
552
|
+
readonly getWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
553
|
+
daysToReturn: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
554
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
555
|
+
monday: import("@matter/main/types").BitFlag;
|
|
556
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
557
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
558
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
559
|
+
friday: import("@matter/main/types").BitFlag;
|
|
560
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
561
|
+
away: import("@matter/main/types").BitFlag;
|
|
562
|
+
}>>;
|
|
563
|
+
modeToReturn: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
564
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
565
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
566
|
+
}>>;
|
|
567
|
+
}>, import("@matter/main/types").TypeFromFields<{
|
|
568
|
+
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
569
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
570
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
571
|
+
monday: import("@matter/main/types").BitFlag;
|
|
572
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
573
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
574
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
575
|
+
friday: import("@matter/main/types").BitFlag;
|
|
576
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
577
|
+
away: import("@matter/main/types").BitFlag;
|
|
578
|
+
}>>;
|
|
579
|
+
modeForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
580
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
581
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
582
|
+
}>>;
|
|
583
|
+
transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
|
|
584
|
+
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
585
|
+
heatSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
586
|
+
coolSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
587
|
+
}>[]>;
|
|
588
|
+
}>, any>;
|
|
589
|
+
readonly clearWeeklySchedule: import("@matter/main/types").Command<void, void, any>;
|
|
590
|
+
};
|
|
591
|
+
};
|
|
592
|
+
}, {
|
|
593
|
+
readonly flags: {
|
|
594
|
+
readonly setback: true;
|
|
595
|
+
};
|
|
596
|
+
readonly component: {
|
|
597
|
+
readonly attributes: {
|
|
598
|
+
readonly occupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
|
|
599
|
+
readonly occupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
600
|
+
readonly occupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
601
|
+
};
|
|
602
|
+
};
|
|
603
|
+
}, {
|
|
604
|
+
readonly flags: {
|
|
605
|
+
readonly setback: true;
|
|
606
|
+
readonly occupancy: true;
|
|
607
|
+
};
|
|
608
|
+
readonly component: {
|
|
609
|
+
readonly attributes: {
|
|
610
|
+
readonly unoccupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
|
|
611
|
+
readonly unoccupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
612
|
+
readonly unoccupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
613
|
+
};
|
|
614
|
+
};
|
|
615
|
+
}, {
|
|
616
|
+
readonly flags: {
|
|
617
|
+
readonly autoMode: true;
|
|
618
|
+
readonly heating: false;
|
|
619
|
+
};
|
|
620
|
+
readonly component: false;
|
|
621
|
+
}, {
|
|
622
|
+
readonly flags: {
|
|
623
|
+
readonly autoMode: true;
|
|
624
|
+
readonly cooling: false;
|
|
625
|
+
};
|
|
626
|
+
readonly component: false;
|
|
627
|
+
}, {
|
|
628
|
+
readonly flags: {
|
|
629
|
+
readonly heating: false;
|
|
630
|
+
readonly cooling: false;
|
|
631
|
+
};
|
|
632
|
+
readonly component: false;
|
|
633
|
+
}];
|
|
634
|
+
}>, readonly [Thermostat.Feature.Cooling, Thermostat.Feature.Heating, Thermostat.Feature.AutoMode]>, readonly ["Heating"]>, typeof MatterbridgeThermostatServer, import("@matter/main/behaviors").ThermostatInterface> | import("@matter/main").ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
|
|
635
|
+
readonly id: 513;
|
|
636
|
+
readonly name: "Thermostat";
|
|
637
|
+
readonly revision: 6;
|
|
638
|
+
readonly features: {
|
|
639
|
+
readonly heating: import("@matter/main/types").BitFlag;
|
|
640
|
+
readonly cooling: import("@matter/main/types").BitFlag;
|
|
641
|
+
readonly occupancy: import("@matter/main/types").BitFlag;
|
|
642
|
+
readonly scheduleConfiguration: import("@matter/main/types").BitFlag;
|
|
643
|
+
readonly setback: import("@matter/main/types").BitFlag;
|
|
644
|
+
readonly autoMode: import("@matter/main/types").BitFlag;
|
|
645
|
+
readonly localTemperatureNotExposed: import("@matter/main/types").BitFlag;
|
|
646
|
+
};
|
|
647
|
+
readonly attributes: {
|
|
648
|
+
readonly localTemperature: import("@matter/main/types").Attribute<number | null, any>;
|
|
649
|
+
readonly outdoorTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
650
|
+
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
651
|
+
localTemperature: import("@matter/main/types").BitFlag;
|
|
652
|
+
outdoorTemperature: import("@matter/main/types").BitFlag;
|
|
653
|
+
occupancy: import("@matter/main/types").BitFlag;
|
|
654
|
+
}>, any>;
|
|
655
|
+
readonly controlSequenceOfOperation: import("@matter/main/types").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
|
|
656
|
+
readonly systemMode: import("@matter/main/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
657
|
+
readonly temperatureSetpointHold: import("@matter/main/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
658
|
+
readonly temperatureSetpointHoldDuration: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
659
|
+
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
660
|
+
scheduleActive: import("@matter/main/types").BitFlag;
|
|
661
|
+
autoRecovery: import("@matter/main/types").BitFlag;
|
|
662
|
+
economy: import("@matter/main/types").BitFlag;
|
|
663
|
+
}>, any>;
|
|
664
|
+
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
665
|
+
heat: import("@matter/main/types").BitFlag;
|
|
666
|
+
cool: import("@matter/main/types").BitFlag;
|
|
667
|
+
fan: import("@matter/main/types").BitFlag;
|
|
668
|
+
heatStage2: import("@matter/main/types").BitFlag;
|
|
669
|
+
coolStage2: import("@matter/main/types").BitFlag;
|
|
670
|
+
fanStage2: import("@matter/main/types").BitFlag;
|
|
671
|
+
fanStage3: import("@matter/main/types").BitFlag;
|
|
672
|
+
}>, any>;
|
|
673
|
+
readonly setpointChangeSource: import("@matter/main/types").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
|
|
674
|
+
readonly setpointChangeAmount: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
675
|
+
readonly setpointChangeSourceTimestamp: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
676
|
+
readonly emergencyHeatDelta: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
677
|
+
readonly acType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcType, any>;
|
|
678
|
+
readonly acCapacity: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
679
|
+
readonly acRefrigerantType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
680
|
+
readonly acCompressorType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
681
|
+
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
682
|
+
compressorFail: import("@matter/main/types").BitFlag;
|
|
683
|
+
roomSensorFail: import("@matter/main/types").BitFlag;
|
|
684
|
+
outdoorSensorFail: import("@matter/main/types").BitFlag;
|
|
685
|
+
coilSensorFail: import("@matter/main/types").BitFlag;
|
|
686
|
+
fanFail: import("@matter/main/types").BitFlag;
|
|
687
|
+
}>, any>;
|
|
688
|
+
readonly acLouverPosition: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
|
|
689
|
+
readonly acCoilTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
690
|
+
readonly acCapacityFormat: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
|
|
691
|
+
};
|
|
692
|
+
readonly commands: {
|
|
693
|
+
readonly setpointRaiseLower: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
694
|
+
mode: import("@matter/main/types").FieldType<Thermostat.SetpointRaiseLowerMode>;
|
|
695
|
+
amount: import("@matter/main/types").FieldType<number>;
|
|
696
|
+
}>, void, any>;
|
|
697
|
+
};
|
|
698
|
+
readonly extensions: readonly [{
|
|
699
|
+
readonly flags: {
|
|
700
|
+
readonly occupancy: true;
|
|
701
|
+
};
|
|
702
|
+
readonly component: {
|
|
703
|
+
readonly attributes: {
|
|
704
|
+
readonly occupancy: import("@matter/main/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
705
|
+
occupied: import("@matter/main/types").BitFlag;
|
|
706
|
+
}>, any>;
|
|
707
|
+
};
|
|
708
|
+
};
|
|
709
|
+
}, {
|
|
710
|
+
readonly flags: {
|
|
711
|
+
readonly heating: true;
|
|
712
|
+
};
|
|
713
|
+
readonly component: {
|
|
714
|
+
readonly attributes: {
|
|
715
|
+
readonly absMinHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
716
|
+
readonly absMaxHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
717
|
+
readonly piHeatingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
718
|
+
readonly occupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
719
|
+
readonly minHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
720
|
+
readonly maxHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
721
|
+
};
|
|
722
|
+
};
|
|
723
|
+
}, {
|
|
724
|
+
readonly flags: {
|
|
725
|
+
readonly cooling: true;
|
|
726
|
+
};
|
|
727
|
+
readonly component: {
|
|
728
|
+
readonly attributes: {
|
|
729
|
+
readonly absMinCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
730
|
+
readonly absMaxCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
731
|
+
readonly piCoolingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
732
|
+
readonly occupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
733
|
+
readonly minCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
734
|
+
readonly maxCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
735
|
+
};
|
|
736
|
+
};
|
|
737
|
+
}, {
|
|
738
|
+
readonly flags: {
|
|
739
|
+
readonly localTemperatureNotExposed: false;
|
|
740
|
+
};
|
|
741
|
+
readonly component: {
|
|
742
|
+
readonly attributes: {
|
|
743
|
+
readonly localTemperatureCalibration: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
744
|
+
};
|
|
745
|
+
};
|
|
746
|
+
}, {
|
|
747
|
+
readonly flags: {
|
|
748
|
+
readonly cooling: true;
|
|
749
|
+
readonly occupancy: true;
|
|
750
|
+
};
|
|
751
|
+
readonly component: {
|
|
752
|
+
readonly attributes: {
|
|
753
|
+
readonly unoccupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
754
|
+
};
|
|
755
|
+
};
|
|
756
|
+
}, {
|
|
757
|
+
readonly flags: {
|
|
758
|
+
readonly heating: true;
|
|
759
|
+
readonly occupancy: true;
|
|
760
|
+
};
|
|
761
|
+
readonly component: {
|
|
762
|
+
readonly attributes: {
|
|
763
|
+
readonly unoccupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
764
|
+
};
|
|
765
|
+
};
|
|
766
|
+
}, {
|
|
767
|
+
readonly flags: {
|
|
768
|
+
readonly autoMode: true;
|
|
769
|
+
};
|
|
770
|
+
readonly component: {
|
|
771
|
+
readonly attributes: {
|
|
772
|
+
readonly minSetpointDeadBand: import("@matter/main/types").WritableAttribute<number, any>;
|
|
773
|
+
readonly thermostatRunningMode: import("@matter/main/types").OptionalAttribute<Thermostat.ThermostatRunningMode, any>;
|
|
774
|
+
};
|
|
775
|
+
};
|
|
776
|
+
}, {
|
|
777
|
+
readonly flags: {
|
|
778
|
+
readonly scheduleConfiguration: true;
|
|
779
|
+
};
|
|
780
|
+
readonly component: {
|
|
781
|
+
readonly attributes: {
|
|
782
|
+
readonly startOfWeek: import("@matter/main/types").FixedAttribute<Thermostat.StartOfWeek, any>;
|
|
783
|
+
readonly numberOfWeeklyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
|
|
784
|
+
readonly numberOfDailyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
|
|
785
|
+
};
|
|
786
|
+
readonly commands: {
|
|
787
|
+
readonly setWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
788
|
+
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
789
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
790
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
791
|
+
monday: import("@matter/main/types").BitFlag;
|
|
792
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
793
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
794
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
795
|
+
friday: import("@matter/main/types").BitFlag;
|
|
796
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
797
|
+
away: import("@matter/main/types").BitFlag;
|
|
798
|
+
}>>;
|
|
799
|
+
modeForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
800
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
801
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
802
|
+
}>>;
|
|
803
|
+
transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
|
|
804
|
+
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
805
|
+
heatSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
806
|
+
coolSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
807
|
+
}>[]>;
|
|
808
|
+
}>, void, any>;
|
|
809
|
+
readonly getWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
810
|
+
daysToReturn: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
811
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
812
|
+
monday: import("@matter/main/types").BitFlag;
|
|
813
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
814
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
815
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
816
|
+
friday: import("@matter/main/types").BitFlag;
|
|
817
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
818
|
+
away: import("@matter/main/types").BitFlag;
|
|
819
|
+
}>>;
|
|
820
|
+
modeToReturn: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
821
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
822
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
823
|
+
}>>;
|
|
824
|
+
}>, import("@matter/main/types").TypeFromFields<{
|
|
825
|
+
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
826
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
827
|
+
sunday: import("@matter/main/types").BitFlag;
|
|
828
|
+
monday: import("@matter/main/types").BitFlag;
|
|
829
|
+
tuesday: import("@matter/main/types").BitFlag;
|
|
830
|
+
wednesday: import("@matter/main/types").BitFlag;
|
|
831
|
+
thursday: import("@matter/main/types").BitFlag;
|
|
832
|
+
friday: import("@matter/main/types").BitFlag;
|
|
833
|
+
saturday: import("@matter/main/types").BitFlag;
|
|
834
|
+
away: import("@matter/main/types").BitFlag;
|
|
835
|
+
}>>;
|
|
836
|
+
modeForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
837
|
+
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
838
|
+
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
839
|
+
}>>;
|
|
840
|
+
transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
|
|
841
|
+
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
842
|
+
heatSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
843
|
+
coolSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
844
|
+
}>[]>;
|
|
845
|
+
}>, any>;
|
|
846
|
+
readonly clearWeeklySchedule: import("@matter/main/types").Command<void, void, any>;
|
|
847
|
+
};
|
|
848
|
+
};
|
|
849
|
+
}, {
|
|
850
|
+
readonly flags: {
|
|
851
|
+
readonly setback: true;
|
|
852
|
+
};
|
|
853
|
+
readonly component: {
|
|
854
|
+
readonly attributes: {
|
|
855
|
+
readonly occupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
|
|
856
|
+
readonly occupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
857
|
+
readonly occupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
858
|
+
};
|
|
859
|
+
};
|
|
860
|
+
}, {
|
|
861
|
+
readonly flags: {
|
|
862
|
+
readonly setback: true;
|
|
863
|
+
readonly occupancy: true;
|
|
864
|
+
};
|
|
865
|
+
readonly component: {
|
|
866
|
+
readonly attributes: {
|
|
867
|
+
readonly unoccupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
|
|
868
|
+
readonly unoccupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
869
|
+
readonly unoccupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
870
|
+
};
|
|
871
|
+
};
|
|
872
|
+
}, {
|
|
873
|
+
readonly flags: {
|
|
874
|
+
readonly autoMode: true;
|
|
875
|
+
readonly heating: false;
|
|
876
|
+
};
|
|
877
|
+
readonly component: false;
|
|
878
|
+
}, {
|
|
879
|
+
readonly flags: {
|
|
880
|
+
readonly autoMode: true;
|
|
881
|
+
readonly cooling: false;
|
|
882
|
+
};
|
|
883
|
+
readonly component: false;
|
|
884
|
+
}, {
|
|
885
|
+
readonly flags: {
|
|
886
|
+
readonly heating: false;
|
|
887
|
+
readonly cooling: false;
|
|
888
|
+
};
|
|
889
|
+
readonly component: false;
|
|
890
|
+
}];
|
|
891
|
+
}>, readonly [Thermostat.Feature.Cooling, Thermostat.Feature.Heating, Thermostat.Feature.AutoMode]>, readonly ["Cooling"]>, typeof MatterbridgeThermostatServer, import("@matter/main/behaviors").ThermostatInterface> | import("@matter/main").ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
|
|
120
892
|
readonly id: 59;
|
|
121
893
|
readonly name: "Switch";
|
|
122
894
|
readonly revision: 1;
|
|
@@ -444,7 +1216,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
444
1216
|
};
|
|
445
1217
|
readonly component: false;
|
|
446
1218
|
}];
|
|
447
|
-
}>, readonly [
|
|
1219
|
+
}>, readonly ["SmokeAlarm", "CoAlarm"]>, typeof SmokeCoAlarmServer, import("@matter/main/behaviors").SmokeCoAlarmInterface> | import("@matter/main").ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<AirQuality.Cluster, readonly ["Fair", "Moderate", "VeryPoor", "ExtremelyPoor"]>, typeof AirQualityServer, {
|
|
448
1220
|
components: never[];
|
|
449
1221
|
}> | import("@matter/main").ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
|
|
450
1222
|
readonly id: 1036;
|
|
@@ -1763,11 +2535,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
1763
2535
|
* @param {string} endpointName - The name of the new enpoint to add.
|
|
1764
2536
|
* @param {AtLeastOne<DeviceTypeDefinition>} deviceTypes - The device types to add.
|
|
1765
2537
|
* @param {ClusterId[]} [includeServerList=[]] - The list of cluster IDs to include.
|
|
1766
|
-
* @param {
|
|
2538
|
+
* @param {MatterbridgeEndpointOptions} [options={}] - The options for the device.
|
|
1767
2539
|
* @param {boolean} [debug=false] - Whether to enable debug logging.
|
|
1768
2540
|
* @returns {MatterbridgeEndpoint} - The child endpoint that was found or added.
|
|
1769
2541
|
*/
|
|
1770
|
-
addChildDeviceTypeWithClusterServer(endpointName: string, deviceTypes: AtLeastOne<DeviceTypeDefinition>, includeServerList?: ClusterId[], options?:
|
|
2542
|
+
addChildDeviceTypeWithClusterServer(endpointName: string, deviceTypes: AtLeastOne<DeviceTypeDefinition>, includeServerList?: ClusterId[], options?: MatterbridgeEndpointOptions, debug?: boolean): MatterbridgeEndpoint;
|
|
1771
2543
|
/**
|
|
1772
2544
|
* Retrieves a child endpoint by its name.
|
|
1773
2545
|
*
|
|
@@ -1779,8 +2551,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
1779
2551
|
getChildEndpoints(): Endpoint[];
|
|
1780
2552
|
getDeviceTypes(): DeviceTypeDefinition[];
|
|
1781
2553
|
setDeviceTypes(deviceTypes: AtLeastOne<DeviceTypeDefinition>): void;
|
|
2554
|
+
hasClusterServer<F extends BitSchema, SF extends TypeFromPartialBitSchema<F>, A extends Attributes, C extends Commands, E extends Events>(cluster: Cluster<F, SF, A, C, E>): boolean;
|
|
1782
2555
|
getClusterServer<const T extends ClusterType>(cluster: T): ClusterServerObj<T> | undefined;
|
|
1783
2556
|
getClusterServerById(clusterId: ClusterId): ClusterServerObj | undefined;
|
|
2557
|
+
addTagList(endpoint: Endpoint, mfgCode: VendorId | null, namespaceId: number, tag: number, label?: string | null): void;
|
|
1784
2558
|
addClusterServer<const T extends ClusterType>(cluster: ClusterServerObj<T>): void;
|
|
1785
2559
|
/**
|
|
1786
2560
|
* Adds cluster servers to the specified endpoint based on the provided server list.
|
|
@@ -1800,7 +2574,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
1800
2574
|
* @param {ClusterId} clusterId - The ID of the cluster to retrieve the attribute from.
|
|
1801
2575
|
* @param {string} attribute - The name of the attribute to retrieve.
|
|
1802
2576
|
* @param {AnsiLogger} [log] - Optional logger for error and info messages.
|
|
1803
|
-
* @param {
|
|
2577
|
+
* @param {MatterbridgeEndpoint} [endpoint] - Optional the child endpoint to retrieve the attribute from.
|
|
1804
2578
|
* @returns {any} The value of the attribute, or undefined if the attribute is not found.
|
|
1805
2579
|
*/
|
|
1806
2580
|
getAttribute(clusterId: ClusterId, attribute: string, log?: AnsiLogger, endpoint?: MatterbridgeEndpoint): any;
|
|
@@ -1811,7 +2585,8 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
1811
2585
|
* @param {string} attribute - The name of the attribute.
|
|
1812
2586
|
* @param {any} value - The value to set for the attribute.
|
|
1813
2587
|
* @param {AnsiLogger} [log] - (Optional) The logger to use for logging errors and information.
|
|
1814
|
-
* @param {
|
|
2588
|
+
* @param {MatterbridgeEndpoint} [endpoint] - (Optional) The endpoint to set the attribute on. If not provided, the attribute will be set on the current endpoint.
|
|
2589
|
+
* @returns {Promise<boolean>} - A promise that resolves to a boolean indicating whether the attribute was successfully set.
|
|
1815
2590
|
*/
|
|
1816
2591
|
setAttribute(clusterId: ClusterId, attribute: string, value: any, log?: AnsiLogger, endpoint?: MatterbridgeEndpoint): Promise<boolean>;
|
|
1817
2592
|
/**
|
|
@@ -1820,12 +2595,29 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
1820
2595
|
* @param {ClusterId} clusterId - The ID of the cluster.
|
|
1821
2596
|
* @param {string} attribute - The name of the attribute to subscribe to.
|
|
1822
2597
|
* @param {(newValue: any, oldValue: any) => void} listener - A callback function that will be called when the attribute value changes.
|
|
1823
|
-
* @param {AnsiLogger} log -
|
|
1824
|
-
* @param {
|
|
1825
|
-
* @returns A boolean indicating whether the subscription was successful.
|
|
2598
|
+
* @param {AnsiLogger} [log] - Optional logger for logging errors and information.
|
|
2599
|
+
* @param {MatterbridgeEndpoint} [endpoint] - Optional endpoint to subscribe the attribute on. Defaults to the current endpoint.
|
|
2600
|
+
* @returns {boolean} - A boolean indicating whether the subscription was successful.
|
|
2601
|
+
*/
|
|
2602
|
+
subscribeAttribute(clusterId: ClusterId, attribute: string, listener: (newValue: any, oldValue: any) => void, log?: AnsiLogger, endpoint?: MatterbridgeEndpoint): Promise<boolean>;
|
|
2603
|
+
/**
|
|
2604
|
+
* Triggers an event on the specified cluster.
|
|
2605
|
+
*
|
|
2606
|
+
* @param {ClusterId} clusterId - The ID of the cluster.
|
|
2607
|
+
* @param {string} event - The name of the event to trigger.
|
|
2608
|
+
* @param {Record<string, boolean | number | bigint | string | object | undefined | null>} payload - The payload to pass to the event.
|
|
2609
|
+
* @param {AnsiLogger} [log] - Optional logger for logging information.
|
|
2610
|
+
* @param {MatterbridgeEndpoint} [endpoint] - Optional endpoint to trigger the event on. Defaults to the current endpoint.
|
|
2611
|
+
* @returns {Promise<boolean>} - A promise that resolves to a boolean indicating whether the event was successfully triggered.
|
|
2612
|
+
*/
|
|
2613
|
+
triggerEvent(clusterId: ClusterId, event: string, payload: Record<string, boolean | number | bigint | string | object | undefined | null>, log?: AnsiLogger, endpoint?: MatterbridgeEndpoint): Promise<boolean>;
|
|
2614
|
+
/**
|
|
2615
|
+
* Adds a command handler for the specified command.
|
|
2616
|
+
*
|
|
2617
|
+
* @param {keyof MatterbridgeEndpointCommands} command - The command to add the handler for.
|
|
2618
|
+
* @param {(data: any) => void} handler - The handler function to execute when the command is received.
|
|
2619
|
+
* @returns {void}
|
|
1826
2620
|
*/
|
|
1827
|
-
subscribeAttribute(clusterId: ClusterId, attribute: string, listener: (newValue: any, oldValue: any) => void, log?: AnsiLogger, endpoint?: MatterbridgeEndpoint): boolean;
|
|
1828
|
-
triggerEvent(clusterId: ClusterId, event: string, payload: Record<string, any>, log?: AnsiLogger, endpoint?: MatterbridgeEndpoint): Promise<boolean>;
|
|
1829
2621
|
addCommandHandler(command: keyof MatterbridgeEndpointCommands, handler: (data: any) => void): void;
|
|
1830
2622
|
/**
|
|
1831
2623
|
* Serializes the Matterbridge device into a serialized object.
|
|
@@ -2210,11 +3002,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2210
3002
|
fixedTypical: import("@matter/main/types").OptionalFieldType<number | bigint>;
|
|
2211
3003
|
}>[]>;
|
|
2212
3004
|
}>[], any>;
|
|
2213
|
-
readonly ranges: import("@matter/main/types").OptionalAttribute<import("@matter/main/types"
|
|
2214
|
-
* Sets the status of the window covering.
|
|
2215
|
-
* @param {WindowCovering.MovementStatus} status - The movement status to set.
|
|
2216
|
-
* @param {Endpoint} endpoint - The endpoint on which to set the window covering (default the device endpoint).
|
|
2217
|
-
*/).TypeFromFields<{
|
|
3005
|
+
readonly ranges: import("@matter/main/types").OptionalAttribute<import("@matter/main/types").TypeFromFields<{
|
|
2218
3006
|
measurementType: import("@matter/main/types").FieldType<MeasurementType>;
|
|
2219
3007
|
min: import("@matter/main/types").FieldType<number | bigint>;
|
|
2220
3008
|
max: import("@matter/main/types").FieldType<number | bigint>;
|
|
@@ -2341,7 +3129,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2341
3129
|
* Get a default level control cluster server.
|
|
2342
3130
|
*
|
|
2343
3131
|
* @param currentLevel - The current level (default: 254).
|
|
2344
|
-
* @param minLevel - The minimum level (default:
|
|
3132
|
+
* @param minLevel - The minimum level (default: 0).
|
|
2345
3133
|
* @param maxLevel - The maximum level (default: 254).
|
|
2346
3134
|
* @param onLevel - The on level (default: null).
|
|
2347
3135
|
*/
|
|
@@ -2361,7 +3149,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2361
3149
|
readonly attributes: {
|
|
2362
3150
|
readonly currentLevel: import("@matter/main/types").Attribute<number | null, any>;
|
|
2363
3151
|
readonly maxLevel: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
2364
|
-
readonly options: import("@matter/main/types").WritableAttribute<
|
|
3152
|
+
readonly options: import("@matter/main/types").WritableAttribute<TypeFromPartialBitSchema<{
|
|
2365
3153
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2366
3154
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2367
3155
|
}>, any>;
|
|
@@ -2375,11 +3163,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2375
3163
|
readonly moveToLevel: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2376
3164
|
level: import("@matter/main/types").FieldType<number>;
|
|
2377
3165
|
transitionTime: import("@matter/main/types").FieldType<number | null>;
|
|
2378
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3166
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2379
3167
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2380
3168
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2381
3169
|
}>>;
|
|
2382
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3170
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2383
3171
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2384
3172
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2385
3173
|
}>>;
|
|
@@ -2387,11 +3175,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2387
3175
|
readonly move: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2388
3176
|
moveMode: import("@matter/main/types").FieldType<LevelControl.MoveMode>;
|
|
2389
3177
|
rate: import("@matter/main/types").FieldType<number | null>;
|
|
2390
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3178
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2391
3179
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2392
3180
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2393
3181
|
}>>;
|
|
2394
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3182
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2395
3183
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2396
3184
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2397
3185
|
}>>;
|
|
@@ -2400,21 +3188,21 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2400
3188
|
stepMode: import("@matter/main/types").FieldType<LevelControl.StepMode>;
|
|
2401
3189
|
stepSize: import("@matter/main/types").FieldType<number>;
|
|
2402
3190
|
transitionTime: import("@matter/main/types").FieldType<number | null>;
|
|
2403
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3191
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2404
3192
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2405
3193
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2406
3194
|
}>>;
|
|
2407
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3195
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2408
3196
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2409
3197
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2410
3198
|
}>>;
|
|
2411
3199
|
}>, void, any>;
|
|
2412
3200
|
readonly stop: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2413
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3201
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2414
3202
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2415
3203
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2416
3204
|
}>>;
|
|
2417
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3205
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2418
3206
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2419
3207
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2420
3208
|
}>>;
|
|
@@ -2422,11 +3210,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2422
3210
|
readonly moveToLevelWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2423
3211
|
level: import("@matter/main/types").FieldType<number>;
|
|
2424
3212
|
transitionTime: import("@matter/main/types").FieldType<number | null>;
|
|
2425
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3213
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2426
3214
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2427
3215
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2428
3216
|
}>>;
|
|
2429
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3217
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2430
3218
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2431
3219
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2432
3220
|
}>>;
|
|
@@ -2434,11 +3222,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2434
3222
|
readonly moveWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2435
3223
|
moveMode: import("@matter/main/types").FieldType<LevelControl.MoveMode>;
|
|
2436
3224
|
rate: import("@matter/main/types").FieldType<number | null>;
|
|
2437
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3225
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2438
3226
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2439
3227
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2440
3228
|
}>>;
|
|
2441
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3229
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2442
3230
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2443
3231
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2444
3232
|
}>>;
|
|
@@ -2447,21 +3235,21 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2447
3235
|
stepMode: import("@matter/main/types").FieldType<LevelControl.StepMode>;
|
|
2448
3236
|
stepSize: import("@matter/main/types").FieldType<number>;
|
|
2449
3237
|
transitionTime: import("@matter/main/types").FieldType<number | null>;
|
|
2450
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3238
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2451
3239
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2452
3240
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2453
3241
|
}>>;
|
|
2454
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3242
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2455
3243
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2456
3244
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2457
3245
|
}>>;
|
|
2458
3246
|
}>, void, any>;
|
|
2459
3247
|
readonly stopWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2460
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3248
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2461
3249
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2462
3250
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2463
3251
|
}>>;
|
|
2464
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3252
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2465
3253
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2466
3254
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2467
3255
|
}>>;
|
|
@@ -2516,7 +3304,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2516
3304
|
readonly attributes: {
|
|
2517
3305
|
readonly currentLevel: import("@matter/main/types").Attribute<number | null, any>;
|
|
2518
3306
|
readonly maxLevel: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
2519
|
-
readonly options: import("@matter/main/types").WritableAttribute<
|
|
3307
|
+
readonly options: import("@matter/main/types").WritableAttribute<TypeFromPartialBitSchema<{
|
|
2520
3308
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2521
3309
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2522
3310
|
}>, any>;
|
|
@@ -2530,11 +3318,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2530
3318
|
readonly moveToLevel: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2531
3319
|
level: import("@matter/main/types").FieldType<number>;
|
|
2532
3320
|
transitionTime: import("@matter/main/types").FieldType<number | null>;
|
|
2533
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3321
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2534
3322
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2535
3323
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2536
3324
|
}>>;
|
|
2537
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3325
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2538
3326
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2539
3327
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2540
3328
|
}>>;
|
|
@@ -2542,11 +3330,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2542
3330
|
readonly move: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2543
3331
|
moveMode: import("@matter/main/types").FieldType<LevelControl.MoveMode>;
|
|
2544
3332
|
rate: import("@matter/main/types").FieldType<number | null>;
|
|
2545
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3333
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2546
3334
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2547
3335
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2548
3336
|
}>>;
|
|
2549
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3337
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2550
3338
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2551
3339
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2552
3340
|
}>>;
|
|
@@ -2555,21 +3343,21 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2555
3343
|
stepMode: import("@matter/main/types").FieldType<LevelControl.StepMode>;
|
|
2556
3344
|
stepSize: import("@matter/main/types").FieldType<number>;
|
|
2557
3345
|
transitionTime: import("@matter/main/types").FieldType<number | null>;
|
|
2558
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3346
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2559
3347
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2560
3348
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2561
3349
|
}>>;
|
|
2562
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3350
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2563
3351
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2564
3352
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2565
3353
|
}>>;
|
|
2566
3354
|
}>, void, any>;
|
|
2567
3355
|
readonly stop: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2568
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3356
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2569
3357
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2570
3358
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2571
3359
|
}>>;
|
|
2572
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3360
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2573
3361
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2574
3362
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2575
3363
|
}>>;
|
|
@@ -2577,11 +3365,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2577
3365
|
readonly moveToLevelWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2578
3366
|
level: import("@matter/main/types").FieldType<number>;
|
|
2579
3367
|
transitionTime: import("@matter/main/types").FieldType<number | null>;
|
|
2580
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3368
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2581
3369
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2582
3370
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2583
3371
|
}>>;
|
|
2584
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3372
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2585
3373
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2586
3374
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2587
3375
|
}>>;
|
|
@@ -2589,11 +3377,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2589
3377
|
readonly moveWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2590
3378
|
moveMode: import("@matter/main/types").FieldType<LevelControl.MoveMode>;
|
|
2591
3379
|
rate: import("@matter/main/types").FieldType<number | null>;
|
|
2592
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3380
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2593
3381
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2594
3382
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2595
3383
|
}>>;
|
|
2596
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3384
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2597
3385
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2598
3386
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2599
3387
|
}>>;
|
|
@@ -2602,21 +3390,21 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2602
3390
|
stepMode: import("@matter/main/types").FieldType<LevelControl.StepMode>;
|
|
2603
3391
|
stepSize: import("@matter/main/types").FieldType<number>;
|
|
2604
3392
|
transitionTime: import("@matter/main/types").FieldType<number | null>;
|
|
2605
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3393
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2606
3394
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2607
3395
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2608
3396
|
}>>;
|
|
2609
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3397
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2610
3398
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2611
3399
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2612
3400
|
}>>;
|
|
2613
3401
|
}>, void, any>;
|
|
2614
3402
|
readonly stopWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2615
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3403
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2616
3404
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2617
3405
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2618
3406
|
}>>;
|
|
2619
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3407
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2620
3408
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2621
3409
|
coupleColorTempToLevel: import("@matter/main/types").BitFlag;
|
|
2622
3410
|
}>>;
|
|
@@ -2664,7 +3452,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2664
3452
|
* Creates a default level control cluster server.
|
|
2665
3453
|
*
|
|
2666
3454
|
* @param currentLevel - The current level (default: 254).
|
|
2667
|
-
* @param minLevel - The minimum level (default:
|
|
3455
|
+
* @param minLevel - The minimum level (default: 0).
|
|
2668
3456
|
* @param maxLevel - The maximum level (default: 254).
|
|
2669
3457
|
* @param onLevel - The on level (default: null).
|
|
2670
3458
|
*/
|
|
@@ -2696,7 +3484,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2696
3484
|
readonly driftCompensation: import("@matter/main/types").OptionalAttribute<ColorControl.DriftCompensation, any>;
|
|
2697
3485
|
readonly compensationText: import("@matter/main/types").OptionalAttribute<string, any>;
|
|
2698
3486
|
readonly colorMode: import("@matter/main/types").Attribute<ColorControl.ColorMode, any>;
|
|
2699
|
-
readonly options: import("@matter/main/types").WritableAttribute<
|
|
3487
|
+
readonly options: import("@matter/main/types").WritableAttribute<TypeFromPartialBitSchema<{
|
|
2700
3488
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2701
3489
|
}>, any>;
|
|
2702
3490
|
readonly numberOfPrimaries: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
@@ -2730,7 +3518,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2730
3518
|
readonly colorPointBy: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
2731
3519
|
readonly colorPointBIntensity: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
2732
3520
|
readonly enhancedColorMode: import("@matter/main/types").Attribute<ColorControl.EnhancedColorMode, any>;
|
|
2733
|
-
readonly colorCapabilities: import("@matter/main/types").Attribute<
|
|
3521
|
+
readonly colorCapabilities: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
2734
3522
|
hueSaturation: import("@matter/main/types").BitFlag;
|
|
2735
3523
|
enhancedHue: import("@matter/main/types").BitFlag;
|
|
2736
3524
|
colorLoop: import("@matter/main/types").BitFlag;
|
|
@@ -2752,20 +3540,20 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2752
3540
|
hue: import("@matter/main/types").FieldType<number>;
|
|
2753
3541
|
direction: import("@matter/main/types").FieldType<ColorControl.Direction>;
|
|
2754
3542
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2755
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3543
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2756
3544
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2757
3545
|
}>>;
|
|
2758
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3546
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2759
3547
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2760
3548
|
}>>;
|
|
2761
3549
|
}>, void, any>;
|
|
2762
3550
|
readonly moveHue: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2763
3551
|
moveMode: import("@matter/main/types").FieldType<ColorControl.MoveMode>;
|
|
2764
3552
|
rate: import("@matter/main/types").FieldType<number>;
|
|
2765
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3553
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2766
3554
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2767
3555
|
}>>;
|
|
2768
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3556
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2769
3557
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2770
3558
|
}>>;
|
|
2771
3559
|
}>, void, any>;
|
|
@@ -2773,30 +3561,30 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2773
3561
|
stepMode: import("@matter/main/types").FieldType<ColorControl.StepMode>;
|
|
2774
3562
|
stepSize: import("@matter/main/types").FieldType<number>;
|
|
2775
3563
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2776
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3564
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2777
3565
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2778
3566
|
}>>;
|
|
2779
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3567
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2780
3568
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2781
3569
|
}>>;
|
|
2782
3570
|
}>, void, any>;
|
|
2783
3571
|
readonly moveToSaturation: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2784
3572
|
saturation: import("@matter/main/types").FieldType<number>;
|
|
2785
3573
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2786
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3574
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2787
3575
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2788
3576
|
}>>;
|
|
2789
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3577
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2790
3578
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2791
3579
|
}>>;
|
|
2792
3580
|
}>, void, any>;
|
|
2793
3581
|
readonly moveSaturation: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2794
3582
|
moveMode: import("@matter/main/types").FieldType<ColorControl.MoveMode>;
|
|
2795
3583
|
rate: import("@matter/main/types").FieldType<number>;
|
|
2796
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3584
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2797
3585
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2798
3586
|
}>>;
|
|
2799
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3587
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2800
3588
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2801
3589
|
}>>;
|
|
2802
3590
|
}>, void, any>;
|
|
@@ -2804,10 +3592,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2804
3592
|
stepMode: import("@matter/main/types").FieldType<ColorControl.StepMode>;
|
|
2805
3593
|
stepSize: import("@matter/main/types").FieldType<number>;
|
|
2806
3594
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2807
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3595
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2808
3596
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2809
3597
|
}>>;
|
|
2810
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3598
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2811
3599
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2812
3600
|
}>>;
|
|
2813
3601
|
}>, void, any>;
|
|
@@ -2815,10 +3603,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2815
3603
|
hue: import("@matter/main/types").FieldType<number>;
|
|
2816
3604
|
saturation: import("@matter/main/types").FieldType<number>;
|
|
2817
3605
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2818
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3606
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2819
3607
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2820
3608
|
}>>;
|
|
2821
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3609
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2822
3610
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2823
3611
|
}>>;
|
|
2824
3612
|
}>, void, any>;
|
|
@@ -2838,20 +3626,20 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2838
3626
|
colorX: import("@matter/main/types").FieldType<number>;
|
|
2839
3627
|
colorY: import("@matter/main/types").FieldType<number>;
|
|
2840
3628
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2841
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3629
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2842
3630
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2843
3631
|
}>>;
|
|
2844
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3632
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2845
3633
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2846
3634
|
}>>;
|
|
2847
3635
|
}>, void, any>;
|
|
2848
3636
|
readonly moveColor: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2849
3637
|
rateX: import("@matter/main/types").FieldType<number>;
|
|
2850
3638
|
rateY: import("@matter/main/types").FieldType<number>;
|
|
2851
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3639
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2852
3640
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2853
3641
|
}>>;
|
|
2854
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3642
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2855
3643
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2856
3644
|
}>>;
|
|
2857
3645
|
}>, void, any>;
|
|
@@ -2859,10 +3647,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2859
3647
|
stepX: import("@matter/main/types").FieldType<number>;
|
|
2860
3648
|
stepY: import("@matter/main/types").FieldType<number>;
|
|
2861
3649
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2862
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3650
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2863
3651
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2864
3652
|
}>>;
|
|
2865
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3653
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2866
3654
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2867
3655
|
}>>;
|
|
2868
3656
|
}>, void, any>;
|
|
@@ -2884,10 +3672,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2884
3672
|
readonly moveToColorTemperature: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2885
3673
|
colorTemperatureMireds: import("@matter/main/types").FieldType<number>;
|
|
2886
3674
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2887
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3675
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2888
3676
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2889
3677
|
}>>;
|
|
2890
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3678
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2891
3679
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2892
3680
|
}>>;
|
|
2893
3681
|
}>, void, any>;
|
|
@@ -2896,10 +3684,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2896
3684
|
rate: import("@matter/main/types").FieldType<number>;
|
|
2897
3685
|
colorTemperatureMinimumMireds: import("@matter/main/types").FieldType<number>;
|
|
2898
3686
|
colorTemperatureMaximumMireds: import("@matter/main/types").FieldType<number>;
|
|
2899
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3687
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2900
3688
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2901
3689
|
}>>;
|
|
2902
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3690
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2903
3691
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2904
3692
|
}>>;
|
|
2905
3693
|
}>, void, any>;
|
|
@@ -2909,10 +3697,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2909
3697
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2910
3698
|
colorTemperatureMinimumMireds: import("@matter/main/types").FieldType<number>;
|
|
2911
3699
|
colorTemperatureMaximumMireds: import("@matter/main/types").FieldType<number>;
|
|
2912
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3700
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2913
3701
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2914
3702
|
}>>;
|
|
2915
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3703
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2916
3704
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2917
3705
|
}>>;
|
|
2918
3706
|
}>, void, any>;
|
|
@@ -2931,20 +3719,20 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2931
3719
|
enhancedHue: import("@matter/main/types").FieldType<number>;
|
|
2932
3720
|
direction: import("@matter/main/types").FieldType<ColorControl.Direction>;
|
|
2933
3721
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2934
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3722
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2935
3723
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2936
3724
|
}>>;
|
|
2937
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3725
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2938
3726
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2939
3727
|
}>>;
|
|
2940
3728
|
}>, void, any>;
|
|
2941
3729
|
readonly enhancedMoveHue: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2942
3730
|
moveMode: import("@matter/main/types").FieldType<ColorControl.MoveMode>;
|
|
2943
3731
|
rate: import("@matter/main/types").FieldType<number>;
|
|
2944
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3732
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2945
3733
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2946
3734
|
}>>;
|
|
2947
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3735
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2948
3736
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2949
3737
|
}>>;
|
|
2950
3738
|
}>, void, any>;
|
|
@@ -2952,10 +3740,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2952
3740
|
stepMode: import("@matter/main/types").FieldType<ColorControl.StepMode>;
|
|
2953
3741
|
stepSize: import("@matter/main/types").FieldType<number>;
|
|
2954
3742
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2955
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3743
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2956
3744
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2957
3745
|
}>>;
|
|
2958
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3746
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2959
3747
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2960
3748
|
}>>;
|
|
2961
3749
|
}>, void, any>;
|
|
@@ -2963,10 +3751,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2963
3751
|
enhancedHue: import("@matter/main/types").FieldType<number>;
|
|
2964
3752
|
saturation: import("@matter/main/types").FieldType<number>;
|
|
2965
3753
|
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
2966
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3754
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2967
3755
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2968
3756
|
}>>;
|
|
2969
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3757
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2970
3758
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
2971
3759
|
}>>;
|
|
2972
3760
|
}>, void, any>;
|
|
@@ -2986,7 +3774,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2986
3774
|
};
|
|
2987
3775
|
readonly commands: {
|
|
2988
3776
|
readonly colorLoopSet: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
2989
|
-
updateFlags: import("@matter/main/types").FieldType<
|
|
3777
|
+
updateFlags: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
2990
3778
|
updateAction: import("@matter/main/types").BitFlag;
|
|
2991
3779
|
updateDirection: import("@matter/main/types").BitFlag;
|
|
2992
3780
|
updateTime: import("@matter/main/types").BitFlag;
|
|
@@ -2997,10 +3785,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
2997
3785
|
direction: import("@matter/main/types").FieldType<ColorControl.ColorLoopSetDirection>;
|
|
2998
3786
|
time: import("@matter/main/types").FieldType<number>;
|
|
2999
3787
|
startHue: import("@matter/main/types").FieldType<number>;
|
|
3000
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3788
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3001
3789
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
3002
3790
|
}>>;
|
|
3003
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3791
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3004
3792
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
3005
3793
|
}>>;
|
|
3006
3794
|
}>, void, any>;
|
|
@@ -3013,10 +3801,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3013
3801
|
readonly component: {
|
|
3014
3802
|
readonly commands: {
|
|
3015
3803
|
readonly stopMoveStep: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
3016
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3804
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3017
3805
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
3018
3806
|
}>>;
|
|
3019
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3807
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3020
3808
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
3021
3809
|
}>>;
|
|
3022
3810
|
}>, void, any>;
|
|
@@ -3029,10 +3817,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3029
3817
|
readonly component: {
|
|
3030
3818
|
readonly commands: {
|
|
3031
3819
|
readonly stopMoveStep: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
3032
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3820
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3033
3821
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
3034
3822
|
}>>;
|
|
3035
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3823
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3036
3824
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
3037
3825
|
}>>;
|
|
3038
3826
|
}>, void, any>;
|
|
@@ -3045,10 +3833,10 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3045
3833
|
readonly component: {
|
|
3046
3834
|
readonly commands: {
|
|
3047
3835
|
readonly stopMoveStep: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
3048
|
-
optionsMask: import("@matter/main/types").FieldType<
|
|
3836
|
+
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3049
3837
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
3050
3838
|
}>>;
|
|
3051
|
-
optionsOverride: import("@matter/main/types").FieldType<
|
|
3839
|
+
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3052
3840
|
executeIfOff: import("@matter/main/types").BitFlag;
|
|
3053
3841
|
}>>;
|
|
3054
3842
|
}>, void, any>;
|
|
@@ -3107,7 +3895,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3107
3895
|
};
|
|
3108
3896
|
readonly attributes: {
|
|
3109
3897
|
readonly type: import("@matter/main/types").FixedAttribute<WindowCovering.WindowCoveringType, any>;
|
|
3110
|
-
readonly configStatus: import("@matter/main/types").Attribute<
|
|
3898
|
+
readonly configStatus: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
3111
3899
|
operational: import("@matter/main/types").BitFlag;
|
|
3112
3900
|
onlineReserved: import("@matter/main/types").BitFlag;
|
|
3113
3901
|
liftMovementReversed: import("@matter/main/types").BitFlag;
|
|
@@ -3116,19 +3904,19 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3116
3904
|
liftEncoderControlled: import("@matter/main/types").BitFlag;
|
|
3117
3905
|
tiltEncoderControlled: import("@matter/main/types").BitFlag;
|
|
3118
3906
|
}>, any>;
|
|
3119
|
-
readonly operationalStatus: import("@matter/main/types").Attribute<
|
|
3907
|
+
readonly operationalStatus: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
3120
3908
|
global: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
3121
3909
|
lift: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
3122
3910
|
tilt: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
3123
3911
|
}>, any>;
|
|
3124
3912
|
readonly endProductType: import("@matter/main/types").FixedAttribute<WindowCovering.EndProductType, any>;
|
|
3125
|
-
readonly mode: import("@matter/main/types").WritableAttribute<
|
|
3913
|
+
readonly mode: import("@matter/main/types").WritableAttribute<TypeFromPartialBitSchema<{
|
|
3126
3914
|
motorDirectionReversed: import("@matter/main/types").BitFlag;
|
|
3127
3915
|
calibrationMode: import("@matter/main/types").BitFlag;
|
|
3128
3916
|
maintenanceMode: import("@matter/main/types").BitFlag;
|
|
3129
3917
|
ledFeedback: import("@matter/main/types").BitFlag;
|
|
3130
3918
|
}>, any>;
|
|
3131
|
-
readonly safetyStatus: import("@matter/main/types").OptionalAttribute<
|
|
3919
|
+
readonly safetyStatus: import("@matter/main/types").OptionalAttribute<TypeFromPartialBitSchema<{
|
|
3132
3920
|
remoteLockout: import("@matter/main/types").BitFlag;
|
|
3133
3921
|
tamperDetection: import("@matter/main/types").BitFlag;
|
|
3134
3922
|
failedCommunication: import("@matter/main/types").BitFlag;
|
|
@@ -3742,13 +4530,13 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3742
4530
|
readonly sensitivityLevel: import("@matter/main/types").BitFlag;
|
|
3743
4531
|
};
|
|
3744
4532
|
readonly attributes: {
|
|
3745
|
-
readonly sensorFault: import("@matter/main/types").OptionalAttribute<
|
|
4533
|
+
readonly sensorFault: import("@matter/main/types").OptionalAttribute<TypeFromPartialBitSchema<{
|
|
3746
4534
|
generalFault: import("@matter/main/types").BitFlag;
|
|
3747
4535
|
}>, any>;
|
|
3748
4536
|
};
|
|
3749
4537
|
readonly events: {
|
|
3750
4538
|
readonly sensorFault: import("@matter/main/types").OptionalEvent<import("@matter/main/types").TypeFromFields<{
|
|
3751
|
-
sensorFault: import("@matter/main/types").FieldType<
|
|
4539
|
+
sensorFault: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3752
4540
|
generalFault: import("@matter/main/types").BitFlag;
|
|
3753
4541
|
}>>;
|
|
3754
4542
|
}>, any>;
|
|
@@ -3770,22 +4558,22 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3770
4558
|
};
|
|
3771
4559
|
readonly component: {
|
|
3772
4560
|
readonly attributes: {
|
|
3773
|
-
readonly alarmsActive: import("@matter/main/types").Attribute<
|
|
4561
|
+
readonly alarmsActive: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
3774
4562
|
visual: import("@matter/main/types").BitFlag;
|
|
3775
4563
|
audible: import("@matter/main/types").BitFlag;
|
|
3776
4564
|
}>, any>;
|
|
3777
|
-
readonly alarmsEnabled: import("@matter/main/types").OptionalAttribute<
|
|
4565
|
+
readonly alarmsEnabled: import("@matter/main/types").OptionalAttribute<TypeFromPartialBitSchema<{
|
|
3778
4566
|
visual: import("@matter/main/types").BitFlag;
|
|
3779
4567
|
audible: import("@matter/main/types").BitFlag;
|
|
3780
4568
|
}>, any>;
|
|
3781
|
-
readonly alarmsSupported: import("@matter/main/types").FixedAttribute<
|
|
4569
|
+
readonly alarmsSupported: import("@matter/main/types").FixedAttribute<TypeFromPartialBitSchema<{
|
|
3782
4570
|
visual: import("@matter/main/types").BitFlag;
|
|
3783
4571
|
audible: import("@matter/main/types").BitFlag;
|
|
3784
4572
|
}>, any>;
|
|
3785
4573
|
};
|
|
3786
4574
|
readonly commands: {
|
|
3787
4575
|
readonly enableDisableAlarm: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
3788
|
-
alarmsToEnableDisable: import("@matter/main/types").FieldType<
|
|
4576
|
+
alarmsToEnableDisable: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3789
4577
|
visual: import("@matter/main/types").BitFlag;
|
|
3790
4578
|
audible: import("@matter/main/types").BitFlag;
|
|
3791
4579
|
}>>;
|
|
@@ -3793,11 +4581,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3793
4581
|
};
|
|
3794
4582
|
readonly events: {
|
|
3795
4583
|
readonly alarmsStateChanged: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
|
|
3796
|
-
alarmsActive: import("@matter/main/types").FieldType<
|
|
4584
|
+
alarmsActive: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3797
4585
|
visual: import("@matter/main/types").BitFlag;
|
|
3798
4586
|
audible: import("@matter/main/types").BitFlag;
|
|
3799
4587
|
}>>;
|
|
3800
|
-
alarmsSuppressed: import("@matter/main/types").OptionalFieldType<
|
|
4588
|
+
alarmsSuppressed: import("@matter/main/types").OptionalFieldType<TypeFromPartialBitSchema<{
|
|
3801
4589
|
visual: import("@matter/main/types").BitFlag;
|
|
3802
4590
|
audible: import("@matter/main/types").BitFlag;
|
|
3803
4591
|
}>>;
|
|
@@ -3810,22 +4598,22 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3810
4598
|
};
|
|
3811
4599
|
readonly component: {
|
|
3812
4600
|
readonly attributes: {
|
|
3813
|
-
readonly alarmsActive: import("@matter/main/types").Attribute<
|
|
4601
|
+
readonly alarmsActive: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
3814
4602
|
visual: import("@matter/main/types").BitFlag;
|
|
3815
4603
|
audible: import("@matter/main/types").BitFlag;
|
|
3816
4604
|
}>, any>;
|
|
3817
|
-
readonly alarmsEnabled: import("@matter/main/types").OptionalAttribute<
|
|
4605
|
+
readonly alarmsEnabled: import("@matter/main/types").OptionalAttribute<TypeFromPartialBitSchema<{
|
|
3818
4606
|
visual: import("@matter/main/types").BitFlag;
|
|
3819
4607
|
audible: import("@matter/main/types").BitFlag;
|
|
3820
4608
|
}>, any>;
|
|
3821
|
-
readonly alarmsSupported: import("@matter/main/types").FixedAttribute<
|
|
4609
|
+
readonly alarmsSupported: import("@matter/main/types").FixedAttribute<TypeFromPartialBitSchema<{
|
|
3822
4610
|
visual: import("@matter/main/types").BitFlag;
|
|
3823
4611
|
audible: import("@matter/main/types").BitFlag;
|
|
3824
4612
|
}>, any>;
|
|
3825
4613
|
};
|
|
3826
4614
|
readonly commands: {
|
|
3827
4615
|
readonly enableDisableAlarm: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
3828
|
-
alarmsToEnableDisable: import("@matter/main/types").FieldType<
|
|
4616
|
+
alarmsToEnableDisable: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3829
4617
|
visual: import("@matter/main/types").BitFlag;
|
|
3830
4618
|
audible: import("@matter/main/types").BitFlag;
|
|
3831
4619
|
}>>;
|
|
@@ -3833,11 +4621,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3833
4621
|
};
|
|
3834
4622
|
readonly events: {
|
|
3835
4623
|
readonly alarmsStateChanged: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
|
|
3836
|
-
alarmsActive: import("@matter/main/types").FieldType<
|
|
4624
|
+
alarmsActive: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3837
4625
|
visual: import("@matter/main/types").BitFlag;
|
|
3838
4626
|
audible: import("@matter/main/types").BitFlag;
|
|
3839
4627
|
}>>;
|
|
3840
|
-
alarmsSuppressed: import("@matter/main/types").OptionalFieldType<
|
|
4628
|
+
alarmsSuppressed: import("@matter/main/types").OptionalFieldType<TypeFromPartialBitSchema<{
|
|
3841
4629
|
visual: import("@matter/main/types").BitFlag;
|
|
3842
4630
|
audible: import("@matter/main/types").BitFlag;
|
|
3843
4631
|
}>>;
|
|
@@ -3850,14 +4638,14 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
3850
4638
|
};
|
|
3851
4639
|
readonly component: {
|
|
3852
4640
|
readonly attributes: {
|
|
3853
|
-
readonly alarmsSuppressed: import("@matter/main/types").Attribute<
|
|
4641
|
+
readonly alarmsSuppressed: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
3854
4642
|
visual: import("@matter/main/types").BitFlag;
|
|
3855
4643
|
audible: import("@matter/main/types").BitFlag;
|
|
3856
4644
|
}>, any>;
|
|
3857
4645
|
};
|
|
3858
4646
|
readonly commands: {
|
|
3859
4647
|
readonly suppressAlarm: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
3860
|
-
alarmsToSuppress: import("@matter/main/types").FieldType<
|
|
4648
|
+
alarmsToSuppress: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
3861
4649
|
visual: import("@matter/main/types").BitFlag;
|
|
3862
4650
|
audible: import("@matter/main/types").BitFlag;
|
|
3863
4651
|
}>>;
|
|
@@ -4453,7 +5241,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4453
5241
|
readonly attributes: {
|
|
4454
5242
|
readonly localTemperature: import("@matter/main/types").Attribute<number | null, any>;
|
|
4455
5243
|
readonly outdoorTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
4456
|
-
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<
|
|
5244
|
+
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
4457
5245
|
localTemperature: import("@matter/main/types").BitFlag;
|
|
4458
5246
|
outdoorTemperature: import("@matter/main/types").BitFlag;
|
|
4459
5247
|
occupancy: import("@matter/main/types").BitFlag;
|
|
@@ -4462,12 +5250,12 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4462
5250
|
readonly systemMode: import("@matter/main/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
4463
5251
|
readonly temperatureSetpointHold: import("@matter/main/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
4464
5252
|
readonly temperatureSetpointHoldDuration: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
4465
|
-
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<
|
|
5253
|
+
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
4466
5254
|
scheduleActive: import("@matter/main/types").BitFlag;
|
|
4467
5255
|
autoRecovery: import("@matter/main/types").BitFlag;
|
|
4468
5256
|
economy: import("@matter/main/types").BitFlag;
|
|
4469
5257
|
}>, any>;
|
|
4470
|
-
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<
|
|
5258
|
+
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<TypeFromPartialBitSchema<{
|
|
4471
5259
|
heat: import("@matter/main/types").BitFlag;
|
|
4472
5260
|
cool: import("@matter/main/types").BitFlag;
|
|
4473
5261
|
fan: import("@matter/main/types").BitFlag;
|
|
@@ -4484,7 +5272,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4484
5272
|
readonly acCapacity: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
4485
5273
|
readonly acRefrigerantType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
4486
5274
|
readonly acCompressorType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
4487
|
-
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<
|
|
5275
|
+
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
4488
5276
|
compressorFail: import("@matter/main/types").BitFlag;
|
|
4489
5277
|
roomSensorFail: import("@matter/main/types").BitFlag;
|
|
4490
5278
|
outdoorSensorFail: import("@matter/main/types").BitFlag;
|
|
@@ -4507,7 +5295,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4507
5295
|
};
|
|
4508
5296
|
readonly component: {
|
|
4509
5297
|
readonly attributes: {
|
|
4510
|
-
readonly occupancy: import("@matter/main/types").Attribute<
|
|
5298
|
+
readonly occupancy: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
4511
5299
|
occupied: import("@matter/main/types").BitFlag;
|
|
4512
5300
|
}>, any>;
|
|
4513
5301
|
};
|
|
@@ -4592,7 +5380,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4592
5380
|
readonly commands: {
|
|
4593
5381
|
readonly setWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
4594
5382
|
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
4595
|
-
dayOfWeekForSequence: import("@matter/main/types").FieldType<
|
|
5383
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4596
5384
|
sunday: import("@matter/main/types").BitFlag;
|
|
4597
5385
|
monday: import("@matter/main/types").BitFlag;
|
|
4598
5386
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -4602,7 +5390,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4602
5390
|
saturday: import("@matter/main/types").BitFlag;
|
|
4603
5391
|
away: import("@matter/main/types").BitFlag;
|
|
4604
5392
|
}>>;
|
|
4605
|
-
modeForSequence: import("@matter/main/types").FieldType<
|
|
5393
|
+
modeForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4606
5394
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4607
5395
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4608
5396
|
}>>;
|
|
@@ -4613,7 +5401,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4613
5401
|
}>[]>;
|
|
4614
5402
|
}>, void, any>;
|
|
4615
5403
|
readonly getWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
4616
|
-
daysToReturn: import("@matter/main/types").FieldType<
|
|
5404
|
+
daysToReturn: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4617
5405
|
sunday: import("@matter/main/types").BitFlag;
|
|
4618
5406
|
monday: import("@matter/main/types").BitFlag;
|
|
4619
5407
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -4623,13 +5411,13 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4623
5411
|
saturday: import("@matter/main/types").BitFlag;
|
|
4624
5412
|
away: import("@matter/main/types").BitFlag;
|
|
4625
5413
|
}>>;
|
|
4626
|
-
modeToReturn: import("@matter/main/types").FieldType<
|
|
5414
|
+
modeToReturn: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4627
5415
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4628
5416
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4629
5417
|
}>>;
|
|
4630
5418
|
}>, import("@matter/main/types").TypeFromFields<{
|
|
4631
5419
|
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
4632
|
-
dayOfWeekForSequence: import("@matter/main/types").FieldType<
|
|
5420
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4633
5421
|
sunday: import("@matter/main/types").BitFlag;
|
|
4634
5422
|
monday: import("@matter/main/types").BitFlag;
|
|
4635
5423
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -4639,7 +5427,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4639
5427
|
saturday: import("@matter/main/types").BitFlag;
|
|
4640
5428
|
away: import("@matter/main/types").BitFlag;
|
|
4641
5429
|
}>>;
|
|
4642
|
-
modeForSequence: import("@matter/main/types").FieldType<
|
|
5430
|
+
modeForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4643
5431
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4644
5432
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4645
5433
|
}>>;
|
|
@@ -4728,7 +5516,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4728
5516
|
readonly attributes: {
|
|
4729
5517
|
readonly localTemperature: import("@matter/main/types").Attribute<number | null, any>;
|
|
4730
5518
|
readonly outdoorTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
4731
|
-
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<
|
|
5519
|
+
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
4732
5520
|
localTemperature: import("@matter/main/types").BitFlag;
|
|
4733
5521
|
outdoorTemperature: import("@matter/main/types").BitFlag;
|
|
4734
5522
|
occupancy: import("@matter/main/types").BitFlag;
|
|
@@ -4737,12 +5525,12 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4737
5525
|
readonly systemMode: import("@matter/main/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
4738
5526
|
readonly temperatureSetpointHold: import("@matter/main/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
4739
5527
|
readonly temperatureSetpointHoldDuration: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
4740
|
-
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<
|
|
5528
|
+
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
4741
5529
|
scheduleActive: import("@matter/main/types").BitFlag;
|
|
4742
5530
|
autoRecovery: import("@matter/main/types").BitFlag;
|
|
4743
5531
|
economy: import("@matter/main/types").BitFlag;
|
|
4744
5532
|
}>, any>;
|
|
4745
|
-
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<
|
|
5533
|
+
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<TypeFromPartialBitSchema<{
|
|
4746
5534
|
heat: import("@matter/main/types").BitFlag;
|
|
4747
5535
|
cool: import("@matter/main/types").BitFlag;
|
|
4748
5536
|
fan: import("@matter/main/types").BitFlag;
|
|
@@ -4759,7 +5547,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4759
5547
|
readonly acCapacity: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
4760
5548
|
readonly acRefrigerantType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
4761
5549
|
readonly acCompressorType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
4762
|
-
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<
|
|
5550
|
+
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
4763
5551
|
compressorFail: import("@matter/main/types").BitFlag;
|
|
4764
5552
|
roomSensorFail: import("@matter/main/types").BitFlag;
|
|
4765
5553
|
outdoorSensorFail: import("@matter/main/types").BitFlag;
|
|
@@ -4782,7 +5570,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4782
5570
|
};
|
|
4783
5571
|
readonly component: {
|
|
4784
5572
|
readonly attributes: {
|
|
4785
|
-
readonly occupancy: import("@matter/main/types").Attribute<
|
|
5573
|
+
readonly occupancy: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
4786
5574
|
occupied: import("@matter/main/types").BitFlag;
|
|
4787
5575
|
}>, any>;
|
|
4788
5576
|
};
|
|
@@ -4867,7 +5655,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4867
5655
|
readonly commands: {
|
|
4868
5656
|
readonly setWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
4869
5657
|
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
4870
|
-
dayOfWeekForSequence: import("@matter/main/types").FieldType<
|
|
5658
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4871
5659
|
sunday: import("@matter/main/types").BitFlag;
|
|
4872
5660
|
monday: import("@matter/main/types").BitFlag;
|
|
4873
5661
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -4877,7 +5665,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4877
5665
|
saturday: import("@matter/main/types").BitFlag;
|
|
4878
5666
|
away: import("@matter/main/types").BitFlag;
|
|
4879
5667
|
}>>;
|
|
4880
|
-
modeForSequence: import("@matter/main/types").FieldType<
|
|
5668
|
+
modeForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4881
5669
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4882
5670
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4883
5671
|
}>>;
|
|
@@ -4888,7 +5676,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4888
5676
|
}>[]>;
|
|
4889
5677
|
}>, void, any>;
|
|
4890
5678
|
readonly getWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
4891
|
-
daysToReturn: import("@matter/main/types").FieldType<
|
|
5679
|
+
daysToReturn: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4892
5680
|
sunday: import("@matter/main/types").BitFlag;
|
|
4893
5681
|
monday: import("@matter/main/types").BitFlag;
|
|
4894
5682
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -4898,13 +5686,13 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4898
5686
|
saturday: import("@matter/main/types").BitFlag;
|
|
4899
5687
|
away: import("@matter/main/types").BitFlag;
|
|
4900
5688
|
}>>;
|
|
4901
|
-
modeToReturn: import("@matter/main/types").FieldType<
|
|
5689
|
+
modeToReturn: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4902
5690
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4903
5691
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4904
5692
|
}>>;
|
|
4905
5693
|
}>, import("@matter/main/types").TypeFromFields<{
|
|
4906
5694
|
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
4907
|
-
dayOfWeekForSequence: import("@matter/main/types").FieldType<
|
|
5695
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4908
5696
|
sunday: import("@matter/main/types").BitFlag;
|
|
4909
5697
|
monday: import("@matter/main/types").BitFlag;
|
|
4910
5698
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -4914,7 +5702,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
4914
5702
|
saturday: import("@matter/main/types").BitFlag;
|
|
4915
5703
|
away: import("@matter/main/types").BitFlag;
|
|
4916
5704
|
}>>;
|
|
4917
|
-
modeForSequence: import("@matter/main/types").FieldType<
|
|
5705
|
+
modeForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
4918
5706
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4919
5707
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
4920
5708
|
}>>;
|
|
@@ -5008,7 +5796,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5008
5796
|
readonly attributes: {
|
|
5009
5797
|
readonly localTemperature: import("@matter/main/types").Attribute<number | null, any>;
|
|
5010
5798
|
readonly outdoorTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
5011
|
-
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<
|
|
5799
|
+
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
5012
5800
|
localTemperature: import("@matter/main/types").BitFlag;
|
|
5013
5801
|
outdoorTemperature: import("@matter/main/types").BitFlag;
|
|
5014
5802
|
occupancy: import("@matter/main/types").BitFlag;
|
|
@@ -5017,12 +5805,12 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5017
5805
|
readonly systemMode: import("@matter/main/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
5018
5806
|
readonly temperatureSetpointHold: import("@matter/main/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
5019
5807
|
readonly temperatureSetpointHoldDuration: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
5020
|
-
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<
|
|
5808
|
+
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
5021
5809
|
scheduleActive: import("@matter/main/types").BitFlag;
|
|
5022
5810
|
autoRecovery: import("@matter/main/types").BitFlag;
|
|
5023
5811
|
economy: import("@matter/main/types").BitFlag;
|
|
5024
5812
|
}>, any>;
|
|
5025
|
-
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<
|
|
5813
|
+
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<TypeFromPartialBitSchema<{
|
|
5026
5814
|
heat: import("@matter/main/types").BitFlag;
|
|
5027
5815
|
cool: import("@matter/main/types").BitFlag;
|
|
5028
5816
|
fan: import("@matter/main/types").BitFlag;
|
|
@@ -5039,7 +5827,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5039
5827
|
readonly acCapacity: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
5040
5828
|
readonly acRefrigerantType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
5041
5829
|
readonly acCompressorType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
5042
|
-
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<
|
|
5830
|
+
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<TypeFromPartialBitSchema<{
|
|
5043
5831
|
compressorFail: import("@matter/main/types").BitFlag;
|
|
5044
5832
|
roomSensorFail: import("@matter/main/types").BitFlag;
|
|
5045
5833
|
outdoorSensorFail: import("@matter/main/types").BitFlag;
|
|
@@ -5062,7 +5850,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5062
5850
|
};
|
|
5063
5851
|
readonly component: {
|
|
5064
5852
|
readonly attributes: {
|
|
5065
|
-
readonly occupancy: import("@matter/main/types").Attribute<
|
|
5853
|
+
readonly occupancy: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
5066
5854
|
occupied: import("@matter/main/types").BitFlag;
|
|
5067
5855
|
}>, any>;
|
|
5068
5856
|
};
|
|
@@ -5147,7 +5935,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5147
5935
|
readonly commands: {
|
|
5148
5936
|
readonly setWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
5149
5937
|
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
5150
|
-
dayOfWeekForSequence: import("@matter/main/types").FieldType<
|
|
5938
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
5151
5939
|
sunday: import("@matter/main/types").BitFlag;
|
|
5152
5940
|
monday: import("@matter/main/types").BitFlag;
|
|
5153
5941
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -5157,7 +5945,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5157
5945
|
saturday: import("@matter/main/types").BitFlag;
|
|
5158
5946
|
away: import("@matter/main/types").BitFlag;
|
|
5159
5947
|
}>>;
|
|
5160
|
-
modeForSequence: import("@matter/main/types").FieldType<
|
|
5948
|
+
modeForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
5161
5949
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
5162
5950
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
5163
5951
|
}>>;
|
|
@@ -5168,7 +5956,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5168
5956
|
}>[]>;
|
|
5169
5957
|
}>, void, any>;
|
|
5170
5958
|
readonly getWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
5171
|
-
daysToReturn: import("@matter/main/types").FieldType<
|
|
5959
|
+
daysToReturn: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
5172
5960
|
sunday: import("@matter/main/types").BitFlag;
|
|
5173
5961
|
monday: import("@matter/main/types").BitFlag;
|
|
5174
5962
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -5178,13 +5966,13 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5178
5966
|
saturday: import("@matter/main/types").BitFlag;
|
|
5179
5967
|
away: import("@matter/main/types").BitFlag;
|
|
5180
5968
|
}>>;
|
|
5181
|
-
modeToReturn: import("@matter/main/types").FieldType<
|
|
5969
|
+
modeToReturn: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
5182
5970
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
5183
5971
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
5184
5972
|
}>>;
|
|
5185
5973
|
}>, import("@matter/main/types").TypeFromFields<{
|
|
5186
5974
|
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
5187
|
-
dayOfWeekForSequence: import("@matter/main/types").FieldType<
|
|
5975
|
+
dayOfWeekForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
5188
5976
|
sunday: import("@matter/main/types").BitFlag;
|
|
5189
5977
|
monday: import("@matter/main/types").BitFlag;
|
|
5190
5978
|
tuesday: import("@matter/main/types").BitFlag;
|
|
@@ -5194,7 +5982,7 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
5194
5982
|
saturday: import("@matter/main/types").BitFlag;
|
|
5195
5983
|
away: import("@matter/main/types").BitFlag;
|
|
5196
5984
|
}>>;
|
|
5197
|
-
modeForSequence: import("@matter/main/types").FieldType<
|
|
5985
|
+
modeForSequence: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
5198
5986
|
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
5199
5987
|
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
5200
5988
|
}>>;
|
|
@@ -6341,12 +7129,12 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
6341
7129
|
};
|
|
6342
7130
|
readonly component: {
|
|
6343
7131
|
readonly attributes: {
|
|
6344
|
-
readonly rockSupport: import("@matter/main/types").FixedAttribute<
|
|
7132
|
+
readonly rockSupport: import("@matter/main/types").FixedAttribute<TypeFromPartialBitSchema<{
|
|
6345
7133
|
rockLeftRight: import("@matter/main/types").BitFlag;
|
|
6346
7134
|
rockUpDown: import("@matter/main/types").BitFlag;
|
|
6347
7135
|
rockRound: import("@matter/main/types").BitFlag;
|
|
6348
7136
|
}>, any>;
|
|
6349
|
-
readonly rockSetting: import("@matter/main/types").WritableAttribute<
|
|
7137
|
+
readonly rockSetting: import("@matter/main/types").WritableAttribute<TypeFromPartialBitSchema<{
|
|
6350
7138
|
rockLeftRight: import("@matter/main/types").BitFlag;
|
|
6351
7139
|
rockUpDown: import("@matter/main/types").BitFlag;
|
|
6352
7140
|
rockRound: import("@matter/main/types").BitFlag;
|
|
@@ -6359,11 +7147,11 @@ export declare class MatterbridgeEndpoint extends Endpoint {
|
|
|
6359
7147
|
};
|
|
6360
7148
|
readonly component: {
|
|
6361
7149
|
readonly attributes: {
|
|
6362
|
-
readonly windSupport: import("@matter/main/types").FixedAttribute<
|
|
7150
|
+
readonly windSupport: import("@matter/main/types").FixedAttribute<TypeFromPartialBitSchema<{
|
|
6363
7151
|
sleepWind: import("@matter/main/types").BitFlag;
|
|
6364
7152
|
naturalWind: import("@matter/main/types").BitFlag;
|
|
6365
7153
|
}>, any>;
|
|
6366
|
-
readonly windSetting: import("@matter/main/types").WritableAttribute<
|
|
7154
|
+
readonly windSetting: import("@matter/main/types").WritableAttribute<TypeFromPartialBitSchema<{
|
|
6367
7155
|
sleepWind: import("@matter/main/types").BitFlag;
|
|
6368
7156
|
naturalWind: import("@matter/main/types").BitFlag;
|
|
6369
7157
|
}>, any>;
|