@matterbridge/core 3.7.10-dev-20260522-e57a523 → 3.8.0-dev-20260524-92c5fdd
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/dist/behaviors/activatedCarbonFilterMonitoringServer.d.ts +5 -2
- package/dist/behaviors/bindingServer.js +0 -2
- package/dist/behaviors/booleanStateConfigurationServer.d.ts +6 -1
- package/dist/behaviors/colorControlServer.d.ts +20 -774
- package/dist/behaviors/deviceEnergyManagementServer.d.ts +9 -299
- package/dist/behaviors/doorLockServer.d.ts +29 -47
- package/dist/behaviors/doorLockServer.js +11 -299
- package/dist/behaviors/fanControlServer.d.ts +8 -1
- package/dist/behaviors/hepaFilterMonitoringServer.d.ts +5 -2
- package/dist/behaviors/smokeCoAlarmServer.d.ts +4 -77
- package/dist/behaviors/thermostatServer.d.ts +20 -722
- package/dist/behaviors/valveConfigurationAndControlServer.d.ts +4 -1
- package/dist/behaviors/windowCoveringServer.d.ts +28 -564
- package/dist/clusters/closure-control.d.ts +130 -620
- package/dist/clusters/closure-control.js +15 -170
- package/dist/clusters/closure-dimension.d.ts +148 -814
- package/dist/clusters/closure-dimension.js +15 -202
- package/dist/clusters/export.d.ts +1 -3
- package/dist/clusters/export.js +1 -3
- package/dist/clusters/soil-measurement.d.ts +31 -31
- package/dist/clusters/soil-measurement.js +29 -19
- package/dist/devices/closure.d.ts +14 -291
- package/dist/devices/closure.js +6 -13
- package/dist/devices/closurePanel.d.ts +13 -370
- package/dist/devices/closurePanel.js +9 -15
- package/dist/devices/evse.d.ts +7 -1
- package/dist/devices/heatPump.js +5 -5
- package/dist/devices/irrigationSystem.js +2 -2
- package/dist/devices/microwaveOven.d.ts +5 -76
- package/dist/devices/roboticVacuumCleaner.js +5 -5
- package/dist/devices/soilSensor.d.ts +0 -15
- package/dist/devices/soilSensor.js +4 -20
- package/dist/devices/temperatureControl.d.ts +10 -130
- package/dist/helpers.js +0 -8
- package/dist/jestutils/jestBroadcastServerSpy.d.ts +2 -2
- package/dist/jestutils/jestMatterTest.js +10 -4
- package/dist/jestutils/jestMatterbridgeEndpointSpy.d.ts +34 -37
- package/dist/jestutils/jestMatterbridgePlatformSpy.d.ts +4 -4
- package/dist/jestutils/jestMatterbridgeTest.js +1 -1
- package/dist/matter/export.d.ts +11 -0
- package/dist/matter/export.js +11 -0
- package/dist/matterbridge.js +4 -2
- package/dist/matterbridgeDeviceTypes.d.ts +15 -0
- package/dist/matterbridgeDeviceTypes.js +305 -162
- package/dist/matterbridgeEndpoint.d.ts +35 -25
- package/dist/matterbridgeEndpoint.js +6 -7
- package/dist/matterbridgeEndpointCommandHandler.d.ts +3 -59
- package/dist/matterbridgeEndpointHelpers.d.ts +83 -1382
- package/dist/matterbridgeEndpointHelpers.js +20 -5
- package/package.json +6 -6
|
@@ -1,732 +1,30 @@
|
|
|
1
1
|
import { ThermostatServer } from '@matter/node/behaviors/thermostat';
|
|
2
2
|
import { Thermostat } from '@matter/types/clusters/thermostat';
|
|
3
|
-
declare const MatterbridgeThermostatServer_base: import("@matter/node").ClusterBehavior.Type<import("@matter/types").
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
readonly autoMode: import("@matter/types").BitFlag;
|
|
14
|
-
readonly localTemperatureNotExposed: import("@matter/types").BitFlag;
|
|
15
|
-
readonly matterScheduleConfiguration: import("@matter/types").BitFlag;
|
|
16
|
-
readonly presets: import("@matter/types").BitFlag;
|
|
17
|
-
};
|
|
18
|
-
readonly attributes: {
|
|
19
|
-
readonly localTemperature: import("@matter/types").Attribute<number | null, any>;
|
|
20
|
-
readonly outdoorTemperature: import("@matter/types").OptionalAttribute<number | null, any>;
|
|
21
|
-
readonly hvacSystemTypeConfiguration: import("@matter/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
22
|
-
coolingStage: import("@matter/types").BitField;
|
|
23
|
-
heatingStage: import("@matter/types").BitField;
|
|
24
|
-
heatingIsHeatPump: import("@matter/types").BitFlag;
|
|
25
|
-
heatingUsesFuel: import("@matter/types").BitFlag;
|
|
26
|
-
}>, any>;
|
|
27
|
-
readonly remoteSensing: import("@matter/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
28
|
-
localTemperature: import("@matter/types").BitFlag;
|
|
29
|
-
outdoorTemperature: import("@matter/types").BitFlag;
|
|
30
|
-
occupancy: import("@matter/types").BitFlag;
|
|
31
|
-
}>, any>;
|
|
32
|
-
readonly controlSequenceOfOperation: import("@matter/types").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
|
|
33
|
-
readonly systemMode: import("@matter/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
34
|
-
readonly temperatureSetpointHold: import("@matter/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
35
|
-
readonly temperatureSetpointHoldDuration: import("@matter/types").OptionalWritableAttribute<number | null, any>;
|
|
36
|
-
readonly thermostatProgrammingOperationMode: import("@matter/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
37
|
-
scheduleActive: import("@matter/types").BitFlag;
|
|
38
|
-
autoRecovery: import("@matter/types").BitFlag;
|
|
39
|
-
economy: import("@matter/types").BitFlag;
|
|
40
|
-
}>, any>;
|
|
41
|
-
readonly thermostatRunningState: import("@matter/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
42
|
-
heat: import("@matter/types").BitFlag;
|
|
43
|
-
cool: import("@matter/types").BitFlag;
|
|
44
|
-
fan: import("@matter/types").BitFlag;
|
|
45
|
-
heatStage2: import("@matter/types").BitFlag;
|
|
46
|
-
coolStage2: import("@matter/types").BitFlag;
|
|
47
|
-
fanStage2: import("@matter/types").BitFlag;
|
|
48
|
-
fanStage3: import("@matter/types").BitFlag;
|
|
49
|
-
}>, any>;
|
|
50
|
-
readonly setpointChangeSource: import("@matter/types").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
|
|
51
|
-
readonly setpointChangeAmount: import("@matter/types").OptionalAttribute<number | null, any>;
|
|
52
|
-
readonly setpointChangeSourceTimestamp: import("@matter/types").OptionalAttribute<number, any>;
|
|
53
|
-
readonly emergencyHeatDelta: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
54
|
-
readonly acType: import("@matter/types").OptionalWritableAttribute<Thermostat.AcType, any>;
|
|
55
|
-
readonly acCapacity: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
56
|
-
readonly acRefrigerantType: import("@matter/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
57
|
-
readonly acCompressorType: import("@matter/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
58
|
-
readonly acErrorCode: import("@matter/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
59
|
-
compressorFail: import("@matter/types").BitFlag;
|
|
60
|
-
roomSensorFail: import("@matter/types").BitFlag;
|
|
61
|
-
outdoorSensorFail: import("@matter/types").BitFlag;
|
|
62
|
-
coilSensorFail: import("@matter/types").BitFlag;
|
|
63
|
-
fanFail: import("@matter/types").BitFlag;
|
|
64
|
-
}>, any>;
|
|
65
|
-
readonly acLouverPosition: import("@matter/types").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
|
|
66
|
-
readonly acCoilTemperature: import("@matter/types").OptionalAttribute<number | null, any>;
|
|
67
|
-
readonly acCapacityFormat: import("@matter/types").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
|
|
68
|
-
readonly setpointHoldExpiryTimestamp: import("@matter/types").OptionalAttribute<number | null, any>;
|
|
69
|
-
};
|
|
70
|
-
readonly commands: {
|
|
71
|
-
readonly setpointRaiseLower: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
72
|
-
mode: import("@matter/types").FieldType<Thermostat.SetpointRaiseLowerMode>;
|
|
73
|
-
amount: import("@matter/types").FieldType<number>;
|
|
74
|
-
}>, void, any>;
|
|
75
|
-
readonly atomicRequest: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
76
|
-
requestType: import("@matter/types").FieldType<Thermostat.RequestType>;
|
|
77
|
-
attributeRequests: import("@matter/types").FieldType<import("@matter/types").AttributeId[]>;
|
|
78
|
-
timeout: import("@matter/types").OptionalFieldType<number>;
|
|
79
|
-
}>, import("@matter/types").TypeFromFields<{
|
|
80
|
-
statusCode: import("@matter/types").FieldType<import("@matter/types").Status>;
|
|
81
|
-
attributeStatus: import("@matter/types").FieldType<import("@matter/types").TypeFromFields<{
|
|
82
|
-
attributeId: import("@matter/types").FieldType<import("@matter/types").AttributeId>;
|
|
83
|
-
statusCode: import("@matter/types").FieldType<import("@matter/types").Status>;
|
|
84
|
-
}>[]>;
|
|
85
|
-
timeout: import("@matter/types").OptionalFieldType<number>;
|
|
86
|
-
}>, any>;
|
|
87
|
-
};
|
|
88
|
-
readonly extensions: readonly [{
|
|
89
|
-
readonly flags: {
|
|
90
|
-
readonly occupancy: true;
|
|
91
|
-
};
|
|
92
|
-
readonly component: {
|
|
93
|
-
readonly attributes: {
|
|
94
|
-
readonly occupancy: import("@matter/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
95
|
-
occupied: import("@matter/types").BitFlag;
|
|
96
|
-
}>, any>;
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
}, {
|
|
100
|
-
readonly flags: {
|
|
101
|
-
readonly heating: true;
|
|
102
|
-
};
|
|
103
|
-
readonly component: {
|
|
104
|
-
readonly attributes: {
|
|
105
|
-
readonly absMinHeatSetpointLimit: import("@matter/types").OptionalFixedAttribute<number, any>;
|
|
106
|
-
readonly absMaxHeatSetpointLimit: import("@matter/types").OptionalFixedAttribute<number, any>;
|
|
107
|
-
readonly piHeatingDemand: import("@matter/types").OptionalAttribute<number, any>;
|
|
108
|
-
readonly occupiedHeatingSetpoint: import("@matter/types").WritableAttribute<number, any>;
|
|
109
|
-
readonly minHeatSetpointLimit: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
110
|
-
readonly maxHeatSetpointLimit: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
111
|
-
};
|
|
112
|
-
};
|
|
113
|
-
}, {
|
|
114
|
-
readonly flags: {
|
|
115
|
-
readonly cooling: true;
|
|
116
|
-
};
|
|
117
|
-
readonly component: {
|
|
118
|
-
readonly attributes: {
|
|
119
|
-
readonly absMinCoolSetpointLimit: import("@matter/types").OptionalFixedAttribute<number, any>;
|
|
120
|
-
readonly absMaxCoolSetpointLimit: import("@matter/types").OptionalFixedAttribute<number, any>;
|
|
121
|
-
readonly piCoolingDemand: import("@matter/types").OptionalAttribute<number, any>;
|
|
122
|
-
readonly occupiedCoolingSetpoint: import("@matter/types").WritableAttribute<number, any>;
|
|
123
|
-
readonly minCoolSetpointLimit: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
124
|
-
readonly maxCoolSetpointLimit: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
125
|
-
};
|
|
126
|
-
};
|
|
127
|
-
}, {
|
|
128
|
-
readonly flags: {
|
|
129
|
-
readonly localTemperatureNotExposed: false;
|
|
130
|
-
};
|
|
131
|
-
readonly component: {
|
|
132
|
-
readonly attributes: {
|
|
133
|
-
readonly localTemperatureCalibration: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
134
|
-
};
|
|
135
|
-
};
|
|
136
|
-
}, {
|
|
137
|
-
readonly flags: {
|
|
138
|
-
readonly cooling: true;
|
|
139
|
-
readonly occupancy: true;
|
|
140
|
-
};
|
|
141
|
-
readonly component: {
|
|
142
|
-
readonly attributes: {
|
|
143
|
-
readonly unoccupiedCoolingSetpoint: import("@matter/types").WritableAttribute<number, any>;
|
|
144
|
-
};
|
|
145
|
-
};
|
|
146
|
-
}, {
|
|
147
|
-
readonly flags: {
|
|
148
|
-
readonly heating: true;
|
|
149
|
-
readonly occupancy: true;
|
|
150
|
-
};
|
|
151
|
-
readonly component: {
|
|
152
|
-
readonly attributes: {
|
|
153
|
-
readonly unoccupiedHeatingSetpoint: import("@matter/types").WritableAttribute<number, any>;
|
|
154
|
-
};
|
|
155
|
-
};
|
|
156
|
-
}, {
|
|
157
|
-
readonly flags: {
|
|
158
|
-
readonly autoMode: true;
|
|
159
|
-
};
|
|
160
|
-
readonly component: {
|
|
161
|
-
readonly attributes: {
|
|
162
|
-
readonly minSetpointDeadBand: import("@matter/types").WritableAttribute<number, any>;
|
|
163
|
-
readonly thermostatRunningMode: import("@matter/types").OptionalAttribute<Thermostat.ThermostatRunningMode, any>;
|
|
164
|
-
};
|
|
165
|
-
};
|
|
166
|
-
}, {
|
|
167
|
-
readonly flags: {
|
|
168
|
-
readonly scheduleConfiguration: true;
|
|
169
|
-
};
|
|
170
|
-
readonly component: {
|
|
171
|
-
readonly attributes: {
|
|
172
|
-
readonly startOfWeek: import("@matter/types").FixedAttribute<Thermostat.StartOfWeek, any>;
|
|
173
|
-
readonly numberOfWeeklyTransitions: import("@matter/types").FixedAttribute<number, any>;
|
|
174
|
-
readonly numberOfDailyTransitions: import("@matter/types").FixedAttribute<number, any>;
|
|
175
|
-
};
|
|
176
|
-
readonly commands: {
|
|
177
|
-
readonly setWeeklySchedule: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
178
|
-
numberOfTransitionsForSequence: import("@matter/types").FieldType<number>;
|
|
179
|
-
dayOfWeekForSequence: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
180
|
-
sunday: import("@matter/types").BitFlag;
|
|
181
|
-
monday: import("@matter/types").BitFlag;
|
|
182
|
-
tuesday: import("@matter/types").BitFlag;
|
|
183
|
-
wednesday: import("@matter/types").BitFlag;
|
|
184
|
-
thursday: import("@matter/types").BitFlag;
|
|
185
|
-
friday: import("@matter/types").BitFlag;
|
|
186
|
-
saturday: import("@matter/types").BitFlag;
|
|
187
|
-
away: import("@matter/types").BitFlag;
|
|
188
|
-
}>>;
|
|
189
|
-
modeForSequence: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
190
|
-
heatSetpointPresent: import("@matter/types").BitFlag;
|
|
191
|
-
coolSetpointPresent: import("@matter/types").BitFlag;
|
|
192
|
-
}>>;
|
|
193
|
-
transitions: import("@matter/types").FieldType<import("@matter/types").TypeFromFields<{
|
|
194
|
-
transitionTime: import("@matter/types").FieldType<number>;
|
|
195
|
-
heatSetpoint: import("@matter/types").FieldType<number | null>;
|
|
196
|
-
coolSetpoint: import("@matter/types").FieldType<number | null>;
|
|
197
|
-
}>[]>;
|
|
198
|
-
}>, void, any>;
|
|
199
|
-
readonly getWeeklySchedule: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
200
|
-
daysToReturn: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
201
|
-
sunday: import("@matter/types").BitFlag;
|
|
202
|
-
monday: import("@matter/types").BitFlag;
|
|
203
|
-
tuesday: import("@matter/types").BitFlag;
|
|
204
|
-
wednesday: import("@matter/types").BitFlag;
|
|
205
|
-
thursday: import("@matter/types").BitFlag;
|
|
206
|
-
friday: import("@matter/types").BitFlag;
|
|
207
|
-
saturday: import("@matter/types").BitFlag;
|
|
208
|
-
away: import("@matter/types").BitFlag;
|
|
209
|
-
}>>;
|
|
210
|
-
modeToReturn: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
211
|
-
heatSetpointPresent: import("@matter/types").BitFlag;
|
|
212
|
-
coolSetpointPresent: import("@matter/types").BitFlag;
|
|
213
|
-
}>>;
|
|
214
|
-
}>, import("@matter/types").TypeFromFields<{
|
|
215
|
-
numberOfTransitionsForSequence: import("@matter/types").FieldType<number>;
|
|
216
|
-
dayOfWeekForSequence: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
217
|
-
sunday: import("@matter/types").BitFlag;
|
|
218
|
-
monday: import("@matter/types").BitFlag;
|
|
219
|
-
tuesday: import("@matter/types").BitFlag;
|
|
220
|
-
wednesday: import("@matter/types").BitFlag;
|
|
221
|
-
thursday: import("@matter/types").BitFlag;
|
|
222
|
-
friday: import("@matter/types").BitFlag;
|
|
223
|
-
saturday: import("@matter/types").BitFlag;
|
|
224
|
-
away: import("@matter/types").BitFlag;
|
|
225
|
-
}>>;
|
|
226
|
-
modeForSequence: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
227
|
-
heatSetpointPresent: import("@matter/types").BitFlag;
|
|
228
|
-
coolSetpointPresent: import("@matter/types").BitFlag;
|
|
229
|
-
}>>;
|
|
230
|
-
transitions: import("@matter/types").FieldType<import("@matter/types").TypeFromFields<{
|
|
231
|
-
transitionTime: import("@matter/types").FieldType<number>;
|
|
232
|
-
heatSetpoint: import("@matter/types").FieldType<number | null>;
|
|
233
|
-
coolSetpoint: import("@matter/types").FieldType<number | null>;
|
|
234
|
-
}>[]>;
|
|
235
|
-
}>, any>;
|
|
236
|
-
readonly clearWeeklySchedule: import("@matter/types").Command<void, void, any>;
|
|
237
|
-
};
|
|
238
|
-
};
|
|
239
|
-
}, {
|
|
240
|
-
readonly flags: {
|
|
241
|
-
readonly setback: true;
|
|
242
|
-
};
|
|
243
|
-
readonly component: {
|
|
244
|
-
readonly attributes: {
|
|
245
|
-
readonly occupiedSetback: import("@matter/types").WritableAttribute<number | null, any>;
|
|
246
|
-
readonly occupiedSetbackMin: import("@matter/types").FixedAttribute<number | null, any>;
|
|
247
|
-
readonly occupiedSetbackMax: import("@matter/types").FixedAttribute<number | null, any>;
|
|
248
|
-
};
|
|
249
|
-
};
|
|
250
|
-
}, {
|
|
251
|
-
readonly flags: {
|
|
252
|
-
readonly setback: true;
|
|
253
|
-
readonly occupancy: true;
|
|
254
|
-
};
|
|
255
|
-
readonly component: {
|
|
256
|
-
readonly attributes: {
|
|
257
|
-
readonly unoccupiedSetback: import("@matter/types").WritableAttribute<number | null, any>;
|
|
258
|
-
readonly unoccupiedSetbackMin: import("@matter/types").FixedAttribute<number | null, any>;
|
|
259
|
-
readonly unoccupiedSetbackMax: import("@matter/types").FixedAttribute<number | null, any>;
|
|
260
|
-
};
|
|
261
|
-
};
|
|
262
|
-
}, {
|
|
263
|
-
readonly flags: {
|
|
264
|
-
readonly presets: true;
|
|
265
|
-
};
|
|
266
|
-
readonly component: {
|
|
267
|
-
readonly attributes: {
|
|
268
|
-
readonly presetTypes: import("@matter/types").FixedAttribute<import("@matter/types").TypeFromFields<{
|
|
269
|
-
presetScenario: import("@matter/types").FieldType<Thermostat.PresetScenario>;
|
|
270
|
-
numberOfPresets: import("@matter/types").FieldType<number>;
|
|
271
|
-
presetTypeFeatures: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
272
|
-
automatic: import("@matter/types").BitFlag;
|
|
273
|
-
supportsNames: import("@matter/types").BitFlag;
|
|
274
|
-
}>>;
|
|
275
|
-
}>[], any>;
|
|
276
|
-
readonly numberOfPresets: import("@matter/types").FixedAttribute<number, any>;
|
|
277
|
-
readonly activePresetHandle: import("@matter/types").Attribute<AllowSharedBufferSource | null, any>;
|
|
278
|
-
readonly presets: import("@matter/types").WritableAttribute<import("@matter/types").TypeFromFields<{
|
|
279
|
-
presetHandle: import("@matter/types").FieldType<AllowSharedBufferSource | null>;
|
|
280
|
-
presetScenario: import("@matter/types").FieldType<Thermostat.PresetScenario>;
|
|
281
|
-
name: import("@matter/types").OptionalFieldType<string | null>;
|
|
282
|
-
coolingSetpoint: import("@matter/types").OptionalFieldType<number>;
|
|
283
|
-
heatingSetpoint: import("@matter/types").OptionalFieldType<number>;
|
|
284
|
-
builtIn: import("@matter/types").FieldType<boolean | null>;
|
|
285
|
-
}>[], any>;
|
|
286
|
-
};
|
|
287
|
-
readonly commands: {
|
|
288
|
-
readonly setActivePresetRequest: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
289
|
-
presetHandle: import("@matter/types").FieldType<AllowSharedBufferSource | null>;
|
|
290
|
-
}>, void, any>;
|
|
291
|
-
};
|
|
292
|
-
};
|
|
293
|
-
}, {
|
|
294
|
-
readonly flags: {
|
|
295
|
-
readonly matterScheduleConfiguration: true;
|
|
296
|
-
};
|
|
297
|
-
readonly component: {
|
|
298
|
-
readonly attributes: {
|
|
299
|
-
readonly scheduleTypes: import("@matter/types").FixedAttribute<import("@matter/types").TypeFromFields<{
|
|
300
|
-
systemMode: import("@matter/types").FieldType<Thermostat.SystemMode>;
|
|
301
|
-
numberOfSchedules: import("@matter/types").FieldType<number>;
|
|
302
|
-
scheduleTypeFeatures: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
303
|
-
supportsPresets: import("@matter/types").BitFlag;
|
|
304
|
-
supportsSetpoints: import("@matter/types").BitFlag;
|
|
305
|
-
supportsNames: import("@matter/types").BitFlag;
|
|
306
|
-
supportsOff: import("@matter/types").BitFlag;
|
|
307
|
-
}>>;
|
|
308
|
-
}>[], any>;
|
|
309
|
-
readonly numberOfSchedules: import("@matter/types").FixedAttribute<number, any>;
|
|
310
|
-
readonly numberOfScheduleTransitions: import("@matter/types").FixedAttribute<number, any>;
|
|
311
|
-
readonly numberOfScheduleTransitionPerDay: import("@matter/types").FixedAttribute<number | null, any>;
|
|
312
|
-
readonly activeScheduleHandle: import("@matter/types").Attribute<AllowSharedBufferSource | null, any>;
|
|
313
|
-
readonly schedules: import("@matter/types").WritableAttribute<import("@matter/types").TypeFromFields<{
|
|
314
|
-
scheduleHandle: import("@matter/types").FieldType<AllowSharedBufferSource | null>;
|
|
315
|
-
systemMode: import("@matter/types").FieldType<Thermostat.SystemMode>;
|
|
316
|
-
name: import("@matter/types").OptionalFieldType<string>;
|
|
317
|
-
presetHandle: import("@matter/types").OptionalFieldType<AllowSharedBufferSource>;
|
|
318
|
-
transitions: import("@matter/types").FieldType<import("@matter/types").TypeFromFields<{
|
|
319
|
-
dayOfWeek: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
320
|
-
sunday: import("@matter/types").BitFlag;
|
|
321
|
-
monday: import("@matter/types").BitFlag;
|
|
322
|
-
tuesday: import("@matter/types").BitFlag;
|
|
323
|
-
wednesday: import("@matter/types").BitFlag;
|
|
324
|
-
thursday: import("@matter/types").BitFlag;
|
|
325
|
-
friday: import("@matter/types").BitFlag;
|
|
326
|
-
saturday: import("@matter/types").BitFlag;
|
|
327
|
-
away: import("@matter/types").BitFlag;
|
|
328
|
-
}>>;
|
|
329
|
-
transitionTime: import("@matter/types").FieldType<number>;
|
|
330
|
-
presetHandle: import("@matter/types").OptionalFieldType<AllowSharedBufferSource>;
|
|
331
|
-
systemMode: import("@matter/types").OptionalFieldType<Thermostat.SystemMode>;
|
|
332
|
-
coolingSetpoint: import("@matter/types").OptionalFieldType<number>;
|
|
333
|
-
heatingSetpoint: import("@matter/types").OptionalFieldType<number>;
|
|
334
|
-
}>[]>;
|
|
335
|
-
builtIn: import("@matter/types").FieldType<boolean | null>;
|
|
336
|
-
}>[], any>;
|
|
337
|
-
};
|
|
338
|
-
readonly commands: {
|
|
339
|
-
readonly setActiveScheduleRequest: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
340
|
-
scheduleHandle: import("@matter/types").FieldType<AllowSharedBufferSource>;
|
|
341
|
-
}>, void, any>;
|
|
342
|
-
};
|
|
343
|
-
};
|
|
344
|
-
}, {
|
|
345
|
-
readonly flags: {
|
|
346
|
-
readonly autoMode: true;
|
|
347
|
-
readonly heating: false;
|
|
348
|
-
};
|
|
349
|
-
readonly component: false;
|
|
350
|
-
}, {
|
|
351
|
-
readonly flags: {
|
|
352
|
-
readonly autoMode: true;
|
|
353
|
-
readonly cooling: false;
|
|
354
|
-
};
|
|
355
|
-
readonly component: false;
|
|
356
|
-
}, {
|
|
357
|
-
readonly flags: {
|
|
358
|
-
readonly heating: false;
|
|
359
|
-
readonly cooling: false;
|
|
360
|
-
};
|
|
361
|
-
readonly component: false;
|
|
362
|
-
}];
|
|
363
|
-
}>, readonly [Thermostat.Feature.Cooling, Thermostat.Feature.Heating, Thermostat.Feature.AutoMode, Thermostat.Feature.Presets]>, typeof ThermostatServer, import("@matter/node/behaviors/thermostat").ThermostatInterface>;
|
|
3
|
+
declare const MatterbridgeThermostatServer_base: import("@matter/node").ClusterBehavior.Type<typeof ThermostatServer, import("@matter/types").ClusterType.WithSupportedFeatures<Thermostat, {
|
|
4
|
+
occupancy: false;
|
|
5
|
+
presets: true;
|
|
6
|
+
heating: true;
|
|
7
|
+
cooling: true;
|
|
8
|
+
setback: false;
|
|
9
|
+
autoMode: true;
|
|
10
|
+
localTemperatureNotExposed: false;
|
|
11
|
+
matterScheduleConfiguration: false;
|
|
12
|
+
}>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/thermostat").ThermostatBaseServer.Internal, "thermostat">;
|
|
364
13
|
export declare class MatterbridgeThermostatServer extends MatterbridgeThermostatServer_base {
|
|
365
14
|
initialize(): Promise<void>;
|
|
366
15
|
setpointRaiseLower(request: Thermostat.SetpointRaiseLowerRequest): Promise<void>;
|
|
367
16
|
setActivePresetRequest(request: Thermostat.SetActivePresetRequest): Promise<void>;
|
|
368
17
|
}
|
|
369
|
-
declare const MatterbridgePresetThermostatServer_base: import("@matter/node").ClusterBehavior.Type<import("@matter/types").
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
readonly autoMode: import("@matter/types").BitFlag;
|
|
380
|
-
readonly localTemperatureNotExposed: import("@matter/types").BitFlag;
|
|
381
|
-
readonly matterScheduleConfiguration: import("@matter/types").BitFlag;
|
|
382
|
-
readonly presets: import("@matter/types").BitFlag;
|
|
383
|
-
};
|
|
384
|
-
readonly attributes: {
|
|
385
|
-
readonly localTemperature: import("@matter/types").Attribute<number | null, any>;
|
|
386
|
-
readonly outdoorTemperature: import("@matter/types").OptionalAttribute<number | null, any>;
|
|
387
|
-
readonly hvacSystemTypeConfiguration: import("@matter/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
388
|
-
coolingStage: import("@matter/types").BitField;
|
|
389
|
-
heatingStage: import("@matter/types").BitField;
|
|
390
|
-
heatingIsHeatPump: import("@matter/types").BitFlag;
|
|
391
|
-
heatingUsesFuel: import("@matter/types").BitFlag;
|
|
392
|
-
}>, any>;
|
|
393
|
-
readonly remoteSensing: import("@matter/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
394
|
-
localTemperature: import("@matter/types").BitFlag;
|
|
395
|
-
outdoorTemperature: import("@matter/types").BitFlag;
|
|
396
|
-
occupancy: import("@matter/types").BitFlag;
|
|
397
|
-
}>, any>;
|
|
398
|
-
readonly controlSequenceOfOperation: import("@matter/types").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
|
|
399
|
-
readonly systemMode: import("@matter/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
400
|
-
readonly temperatureSetpointHold: import("@matter/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
401
|
-
readonly temperatureSetpointHoldDuration: import("@matter/types").OptionalWritableAttribute<number | null, any>;
|
|
402
|
-
readonly thermostatProgrammingOperationMode: import("@matter/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
403
|
-
scheduleActive: import("@matter/types").BitFlag;
|
|
404
|
-
autoRecovery: import("@matter/types").BitFlag;
|
|
405
|
-
economy: import("@matter/types").BitFlag;
|
|
406
|
-
}>, any>;
|
|
407
|
-
readonly thermostatRunningState: import("@matter/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
408
|
-
heat: import("@matter/types").BitFlag;
|
|
409
|
-
cool: import("@matter/types").BitFlag;
|
|
410
|
-
fan: import("@matter/types").BitFlag;
|
|
411
|
-
heatStage2: import("@matter/types").BitFlag;
|
|
412
|
-
coolStage2: import("@matter/types").BitFlag;
|
|
413
|
-
fanStage2: import("@matter/types").BitFlag;
|
|
414
|
-
fanStage3: import("@matter/types").BitFlag;
|
|
415
|
-
}>, any>;
|
|
416
|
-
readonly setpointChangeSource: import("@matter/types").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
|
|
417
|
-
readonly setpointChangeAmount: import("@matter/types").OptionalAttribute<number | null, any>;
|
|
418
|
-
readonly setpointChangeSourceTimestamp: import("@matter/types").OptionalAttribute<number, any>;
|
|
419
|
-
readonly emergencyHeatDelta: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
420
|
-
readonly acType: import("@matter/types").OptionalWritableAttribute<Thermostat.AcType, any>;
|
|
421
|
-
readonly acCapacity: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
422
|
-
readonly acRefrigerantType: import("@matter/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
423
|
-
readonly acCompressorType: import("@matter/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
424
|
-
readonly acErrorCode: import("@matter/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
425
|
-
compressorFail: import("@matter/types").BitFlag;
|
|
426
|
-
roomSensorFail: import("@matter/types").BitFlag;
|
|
427
|
-
outdoorSensorFail: import("@matter/types").BitFlag;
|
|
428
|
-
coilSensorFail: import("@matter/types").BitFlag;
|
|
429
|
-
fanFail: import("@matter/types").BitFlag;
|
|
430
|
-
}>, any>;
|
|
431
|
-
readonly acLouverPosition: import("@matter/types").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
|
|
432
|
-
readonly acCoilTemperature: import("@matter/types").OptionalAttribute<number | null, any>;
|
|
433
|
-
readonly acCapacityFormat: import("@matter/types").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
|
|
434
|
-
readonly setpointHoldExpiryTimestamp: import("@matter/types").OptionalAttribute<number | null, any>;
|
|
435
|
-
};
|
|
436
|
-
readonly commands: {
|
|
437
|
-
readonly setpointRaiseLower: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
438
|
-
mode: import("@matter/types").FieldType<Thermostat.SetpointRaiseLowerMode>;
|
|
439
|
-
amount: import("@matter/types").FieldType<number>;
|
|
440
|
-
}>, void, any>;
|
|
441
|
-
readonly atomicRequest: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
442
|
-
requestType: import("@matter/types").FieldType<Thermostat.RequestType>;
|
|
443
|
-
attributeRequests: import("@matter/types").FieldType<import("@matter/types").AttributeId[]>;
|
|
444
|
-
timeout: import("@matter/types").OptionalFieldType<number>;
|
|
445
|
-
}>, import("@matter/types").TypeFromFields<{
|
|
446
|
-
statusCode: import("@matter/types").FieldType<import("@matter/types").Status>;
|
|
447
|
-
attributeStatus: import("@matter/types").FieldType<import("@matter/types").TypeFromFields<{
|
|
448
|
-
attributeId: import("@matter/types").FieldType<import("@matter/types").AttributeId>;
|
|
449
|
-
statusCode: import("@matter/types").FieldType<import("@matter/types").Status>;
|
|
450
|
-
}>[]>;
|
|
451
|
-
timeout: import("@matter/types").OptionalFieldType<number>;
|
|
452
|
-
}>, any>;
|
|
453
|
-
};
|
|
454
|
-
readonly extensions: readonly [{
|
|
455
|
-
readonly flags: {
|
|
456
|
-
readonly occupancy: true;
|
|
457
|
-
};
|
|
458
|
-
readonly component: {
|
|
459
|
-
readonly attributes: {
|
|
460
|
-
readonly occupancy: import("@matter/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
461
|
-
occupied: import("@matter/types").BitFlag;
|
|
462
|
-
}>, any>;
|
|
463
|
-
};
|
|
464
|
-
};
|
|
465
|
-
}, {
|
|
466
|
-
readonly flags: {
|
|
467
|
-
readonly heating: true;
|
|
468
|
-
};
|
|
469
|
-
readonly component: {
|
|
470
|
-
readonly attributes: {
|
|
471
|
-
readonly absMinHeatSetpointLimit: import("@matter/types").OptionalFixedAttribute<number, any>;
|
|
472
|
-
readonly absMaxHeatSetpointLimit: import("@matter/types").OptionalFixedAttribute<number, any>;
|
|
473
|
-
readonly piHeatingDemand: import("@matter/types").OptionalAttribute<number, any>;
|
|
474
|
-
readonly occupiedHeatingSetpoint: import("@matter/types").WritableAttribute<number, any>;
|
|
475
|
-
readonly minHeatSetpointLimit: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
476
|
-
readonly maxHeatSetpointLimit: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
}, {
|
|
480
|
-
readonly flags: {
|
|
481
|
-
readonly cooling: true;
|
|
482
|
-
};
|
|
483
|
-
readonly component: {
|
|
484
|
-
readonly attributes: {
|
|
485
|
-
readonly absMinCoolSetpointLimit: import("@matter/types").OptionalFixedAttribute<number, any>;
|
|
486
|
-
readonly absMaxCoolSetpointLimit: import("@matter/types").OptionalFixedAttribute<number, any>;
|
|
487
|
-
readonly piCoolingDemand: import("@matter/types").OptionalAttribute<number, any>;
|
|
488
|
-
readonly occupiedCoolingSetpoint: import("@matter/types").WritableAttribute<number, any>;
|
|
489
|
-
readonly minCoolSetpointLimit: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
490
|
-
readonly maxCoolSetpointLimit: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
491
|
-
};
|
|
492
|
-
};
|
|
493
|
-
}, {
|
|
494
|
-
readonly flags: {
|
|
495
|
-
readonly localTemperatureNotExposed: false;
|
|
496
|
-
};
|
|
497
|
-
readonly component: {
|
|
498
|
-
readonly attributes: {
|
|
499
|
-
readonly localTemperatureCalibration: import("@matter/types").OptionalWritableAttribute<number, any>;
|
|
500
|
-
};
|
|
501
|
-
};
|
|
502
|
-
}, {
|
|
503
|
-
readonly flags: {
|
|
504
|
-
readonly cooling: true;
|
|
505
|
-
readonly occupancy: true;
|
|
506
|
-
};
|
|
507
|
-
readonly component: {
|
|
508
|
-
readonly attributes: {
|
|
509
|
-
readonly unoccupiedCoolingSetpoint: import("@matter/types").WritableAttribute<number, any>;
|
|
510
|
-
};
|
|
511
|
-
};
|
|
512
|
-
}, {
|
|
513
|
-
readonly flags: {
|
|
514
|
-
readonly heating: true;
|
|
515
|
-
readonly occupancy: true;
|
|
516
|
-
};
|
|
517
|
-
readonly component: {
|
|
518
|
-
readonly attributes: {
|
|
519
|
-
readonly unoccupiedHeatingSetpoint: import("@matter/types").WritableAttribute<number, any>;
|
|
520
|
-
};
|
|
521
|
-
};
|
|
522
|
-
}, {
|
|
523
|
-
readonly flags: {
|
|
524
|
-
readonly autoMode: true;
|
|
525
|
-
};
|
|
526
|
-
readonly component: {
|
|
527
|
-
readonly attributes: {
|
|
528
|
-
readonly minSetpointDeadBand: import("@matter/types").WritableAttribute<number, any>;
|
|
529
|
-
readonly thermostatRunningMode: import("@matter/types").OptionalAttribute<Thermostat.ThermostatRunningMode, any>;
|
|
530
|
-
};
|
|
531
|
-
};
|
|
532
|
-
}, {
|
|
533
|
-
readonly flags: {
|
|
534
|
-
readonly scheduleConfiguration: true;
|
|
535
|
-
};
|
|
536
|
-
readonly component: {
|
|
537
|
-
readonly attributes: {
|
|
538
|
-
readonly startOfWeek: import("@matter/types").FixedAttribute<Thermostat.StartOfWeek, any>;
|
|
539
|
-
readonly numberOfWeeklyTransitions: import("@matter/types").FixedAttribute<number, any>;
|
|
540
|
-
readonly numberOfDailyTransitions: import("@matter/types").FixedAttribute<number, any>;
|
|
541
|
-
};
|
|
542
|
-
readonly commands: {
|
|
543
|
-
readonly setWeeklySchedule: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
544
|
-
numberOfTransitionsForSequence: import("@matter/types").FieldType<number>;
|
|
545
|
-
dayOfWeekForSequence: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
546
|
-
sunday: import("@matter/types").BitFlag;
|
|
547
|
-
monday: import("@matter/types").BitFlag;
|
|
548
|
-
tuesday: import("@matter/types").BitFlag;
|
|
549
|
-
wednesday: import("@matter/types").BitFlag;
|
|
550
|
-
thursday: import("@matter/types").BitFlag;
|
|
551
|
-
friday: import("@matter/types").BitFlag;
|
|
552
|
-
saturday: import("@matter/types").BitFlag;
|
|
553
|
-
away: import("@matter/types").BitFlag;
|
|
554
|
-
}>>;
|
|
555
|
-
modeForSequence: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
556
|
-
heatSetpointPresent: import("@matter/types").BitFlag;
|
|
557
|
-
coolSetpointPresent: import("@matter/types").BitFlag;
|
|
558
|
-
}>>;
|
|
559
|
-
transitions: import("@matter/types").FieldType<import("@matter/types").TypeFromFields<{
|
|
560
|
-
transitionTime: import("@matter/types").FieldType<number>;
|
|
561
|
-
heatSetpoint: import("@matter/types").FieldType<number | null>;
|
|
562
|
-
coolSetpoint: import("@matter/types").FieldType<number | null>;
|
|
563
|
-
}>[]>;
|
|
564
|
-
}>, void, any>;
|
|
565
|
-
readonly getWeeklySchedule: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
566
|
-
daysToReturn: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
567
|
-
sunday: import("@matter/types").BitFlag;
|
|
568
|
-
monday: import("@matter/types").BitFlag;
|
|
569
|
-
tuesday: import("@matter/types").BitFlag;
|
|
570
|
-
wednesday: import("@matter/types").BitFlag;
|
|
571
|
-
thursday: import("@matter/types").BitFlag;
|
|
572
|
-
friday: import("@matter/types").BitFlag;
|
|
573
|
-
saturday: import("@matter/types").BitFlag;
|
|
574
|
-
away: import("@matter/types").BitFlag;
|
|
575
|
-
}>>;
|
|
576
|
-
modeToReturn: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
577
|
-
heatSetpointPresent: import("@matter/types").BitFlag;
|
|
578
|
-
coolSetpointPresent: import("@matter/types").BitFlag;
|
|
579
|
-
}>>;
|
|
580
|
-
}>, import("@matter/types").TypeFromFields<{
|
|
581
|
-
numberOfTransitionsForSequence: import("@matter/types").FieldType<number>;
|
|
582
|
-
dayOfWeekForSequence: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
583
|
-
sunday: import("@matter/types").BitFlag;
|
|
584
|
-
monday: import("@matter/types").BitFlag;
|
|
585
|
-
tuesday: import("@matter/types").BitFlag;
|
|
586
|
-
wednesday: import("@matter/types").BitFlag;
|
|
587
|
-
thursday: import("@matter/types").BitFlag;
|
|
588
|
-
friday: import("@matter/types").BitFlag;
|
|
589
|
-
saturday: import("@matter/types").BitFlag;
|
|
590
|
-
away: import("@matter/types").BitFlag;
|
|
591
|
-
}>>;
|
|
592
|
-
modeForSequence: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
593
|
-
heatSetpointPresent: import("@matter/types").BitFlag;
|
|
594
|
-
coolSetpointPresent: import("@matter/types").BitFlag;
|
|
595
|
-
}>>;
|
|
596
|
-
transitions: import("@matter/types").FieldType<import("@matter/types").TypeFromFields<{
|
|
597
|
-
transitionTime: import("@matter/types").FieldType<number>;
|
|
598
|
-
heatSetpoint: import("@matter/types").FieldType<number | null>;
|
|
599
|
-
coolSetpoint: import("@matter/types").FieldType<number | null>;
|
|
600
|
-
}>[]>;
|
|
601
|
-
}>, any>;
|
|
602
|
-
readonly clearWeeklySchedule: import("@matter/types").Command<void, void, any>;
|
|
603
|
-
};
|
|
604
|
-
};
|
|
605
|
-
}, {
|
|
606
|
-
readonly flags: {
|
|
607
|
-
readonly setback: true;
|
|
608
|
-
};
|
|
609
|
-
readonly component: {
|
|
610
|
-
readonly attributes: {
|
|
611
|
-
readonly occupiedSetback: import("@matter/types").WritableAttribute<number | null, any>;
|
|
612
|
-
readonly occupiedSetbackMin: import("@matter/types").FixedAttribute<number | null, any>;
|
|
613
|
-
readonly occupiedSetbackMax: import("@matter/types").FixedAttribute<number | null, any>;
|
|
614
|
-
};
|
|
615
|
-
};
|
|
616
|
-
}, {
|
|
617
|
-
readonly flags: {
|
|
618
|
-
readonly setback: true;
|
|
619
|
-
readonly occupancy: true;
|
|
620
|
-
};
|
|
621
|
-
readonly component: {
|
|
622
|
-
readonly attributes: {
|
|
623
|
-
readonly unoccupiedSetback: import("@matter/types").WritableAttribute<number | null, any>;
|
|
624
|
-
readonly unoccupiedSetbackMin: import("@matter/types").FixedAttribute<number | null, any>;
|
|
625
|
-
readonly unoccupiedSetbackMax: import("@matter/types").FixedAttribute<number | null, any>;
|
|
626
|
-
};
|
|
627
|
-
};
|
|
628
|
-
}, {
|
|
629
|
-
readonly flags: {
|
|
630
|
-
readonly presets: true;
|
|
631
|
-
};
|
|
632
|
-
readonly component: {
|
|
633
|
-
readonly attributes: {
|
|
634
|
-
readonly presetTypes: import("@matter/types").FixedAttribute<import("@matter/types").TypeFromFields<{
|
|
635
|
-
presetScenario: import("@matter/types").FieldType<Thermostat.PresetScenario>;
|
|
636
|
-
numberOfPresets: import("@matter/types").FieldType<number>;
|
|
637
|
-
presetTypeFeatures: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
638
|
-
automatic: import("@matter/types").BitFlag;
|
|
639
|
-
supportsNames: import("@matter/types").BitFlag;
|
|
640
|
-
}>>;
|
|
641
|
-
}>[], any>;
|
|
642
|
-
readonly numberOfPresets: import("@matter/types").FixedAttribute<number, any>;
|
|
643
|
-
readonly activePresetHandle: import("@matter/types").Attribute<AllowSharedBufferSource | null, any>;
|
|
644
|
-
readonly presets: import("@matter/types").WritableAttribute<import("@matter/types").TypeFromFields<{
|
|
645
|
-
presetHandle: import("@matter/types").FieldType<AllowSharedBufferSource | null>;
|
|
646
|
-
presetScenario: import("@matter/types").FieldType<Thermostat.PresetScenario>;
|
|
647
|
-
name: import("@matter/types").OptionalFieldType<string | null>;
|
|
648
|
-
coolingSetpoint: import("@matter/types").OptionalFieldType<number>;
|
|
649
|
-
heatingSetpoint: import("@matter/types").OptionalFieldType<number>;
|
|
650
|
-
builtIn: import("@matter/types").FieldType<boolean | null>;
|
|
651
|
-
}>[], any>;
|
|
652
|
-
};
|
|
653
|
-
readonly commands: {
|
|
654
|
-
readonly setActivePresetRequest: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
655
|
-
presetHandle: import("@matter/types").FieldType<AllowSharedBufferSource | null>;
|
|
656
|
-
}>, void, any>;
|
|
657
|
-
};
|
|
658
|
-
};
|
|
659
|
-
}, {
|
|
660
|
-
readonly flags: {
|
|
661
|
-
readonly matterScheduleConfiguration: true;
|
|
662
|
-
};
|
|
663
|
-
readonly component: {
|
|
664
|
-
readonly attributes: {
|
|
665
|
-
readonly scheduleTypes: import("@matter/types").FixedAttribute<import("@matter/types").TypeFromFields<{
|
|
666
|
-
systemMode: import("@matter/types").FieldType<Thermostat.SystemMode>;
|
|
667
|
-
numberOfSchedules: import("@matter/types").FieldType<number>;
|
|
668
|
-
scheduleTypeFeatures: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
669
|
-
supportsPresets: import("@matter/types").BitFlag;
|
|
670
|
-
supportsSetpoints: import("@matter/types").BitFlag;
|
|
671
|
-
supportsNames: import("@matter/types").BitFlag;
|
|
672
|
-
supportsOff: import("@matter/types").BitFlag;
|
|
673
|
-
}>>;
|
|
674
|
-
}>[], any>;
|
|
675
|
-
readonly numberOfSchedules: import("@matter/types").FixedAttribute<number, any>;
|
|
676
|
-
readonly numberOfScheduleTransitions: import("@matter/types").FixedAttribute<number, any>;
|
|
677
|
-
readonly numberOfScheduleTransitionPerDay: import("@matter/types").FixedAttribute<number | null, any>;
|
|
678
|
-
readonly activeScheduleHandle: import("@matter/types").Attribute<AllowSharedBufferSource | null, any>;
|
|
679
|
-
readonly schedules: import("@matter/types").WritableAttribute<import("@matter/types").TypeFromFields<{
|
|
680
|
-
scheduleHandle: import("@matter/types").FieldType<AllowSharedBufferSource | null>;
|
|
681
|
-
systemMode: import("@matter/types").FieldType<Thermostat.SystemMode>;
|
|
682
|
-
name: import("@matter/types").OptionalFieldType<string>;
|
|
683
|
-
presetHandle: import("@matter/types").OptionalFieldType<AllowSharedBufferSource>;
|
|
684
|
-
transitions: import("@matter/types").FieldType<import("@matter/types").TypeFromFields<{
|
|
685
|
-
dayOfWeek: import("@matter/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
686
|
-
sunday: import("@matter/types").BitFlag;
|
|
687
|
-
monday: import("@matter/types").BitFlag;
|
|
688
|
-
tuesday: import("@matter/types").BitFlag;
|
|
689
|
-
wednesday: import("@matter/types").BitFlag;
|
|
690
|
-
thursday: import("@matter/types").BitFlag;
|
|
691
|
-
friday: import("@matter/types").BitFlag;
|
|
692
|
-
saturday: import("@matter/types").BitFlag;
|
|
693
|
-
away: import("@matter/types").BitFlag;
|
|
694
|
-
}>>;
|
|
695
|
-
transitionTime: import("@matter/types").FieldType<number>;
|
|
696
|
-
presetHandle: import("@matter/types").OptionalFieldType<AllowSharedBufferSource>;
|
|
697
|
-
systemMode: import("@matter/types").OptionalFieldType<Thermostat.SystemMode>;
|
|
698
|
-
coolingSetpoint: import("@matter/types").OptionalFieldType<number>;
|
|
699
|
-
heatingSetpoint: import("@matter/types").OptionalFieldType<number>;
|
|
700
|
-
}>[]>;
|
|
701
|
-
builtIn: import("@matter/types").FieldType<boolean | null>;
|
|
702
|
-
}>[], any>;
|
|
703
|
-
};
|
|
704
|
-
readonly commands: {
|
|
705
|
-
readonly setActiveScheduleRequest: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
|
|
706
|
-
scheduleHandle: import("@matter/types").FieldType<AllowSharedBufferSource>;
|
|
707
|
-
}>, void, any>;
|
|
708
|
-
};
|
|
709
|
-
};
|
|
710
|
-
}, {
|
|
711
|
-
readonly flags: {
|
|
712
|
-
readonly autoMode: true;
|
|
713
|
-
readonly heating: false;
|
|
714
|
-
};
|
|
715
|
-
readonly component: false;
|
|
716
|
-
}, {
|
|
717
|
-
readonly flags: {
|
|
718
|
-
readonly autoMode: true;
|
|
719
|
-
readonly cooling: false;
|
|
720
|
-
};
|
|
721
|
-
readonly component: false;
|
|
722
|
-
}, {
|
|
723
|
-
readonly flags: {
|
|
724
|
-
readonly heating: false;
|
|
725
|
-
readonly cooling: false;
|
|
726
|
-
};
|
|
727
|
-
readonly component: false;
|
|
728
|
-
}];
|
|
729
|
-
}>, readonly [Thermostat.Feature.Presets, Thermostat.Feature.Cooling, Thermostat.Feature.Heating, Thermostat.Feature.AutoMode]>, typeof ThermostatServer, import("@matter/node/behaviors/thermostat").ThermostatInterface>;
|
|
18
|
+
declare const MatterbridgePresetThermostatServer_base: import("@matter/node").ClusterBehavior.Type<typeof ThermostatServer, import("@matter/types").ClusterType.WithSupportedFeatures<Thermostat, {
|
|
19
|
+
occupancy: false;
|
|
20
|
+
presets: true;
|
|
21
|
+
heating: true;
|
|
22
|
+
cooling: true;
|
|
23
|
+
setback: false;
|
|
24
|
+
autoMode: true;
|
|
25
|
+
localTemperatureNotExposed: false;
|
|
26
|
+
matterScheduleConfiguration: false;
|
|
27
|
+
}>, import("@matter/types").ClusterType.Concrete, typeof import("@matter/node/behaviors/thermostat").ThermostatBaseServer.Internal, "thermostat">;
|
|
730
28
|
export declare class MatterbridgePresetThermostatServer extends MatterbridgePresetThermostatServer_base {
|
|
731
29
|
}
|
|
732
30
|
export {};
|