@matterbridge/core 3.6.2-dev-20260317-e291a17 → 3.7.0-dev-20260318-5bb831c
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/devices/basicVideoPlayer.d.ts +8 -9
- package/dist/devices/basicVideoPlayer.js +64 -16
- package/dist/devices/closure.d.ts +2 -3
- package/dist/devices/closure.js +16 -4
- package/dist/devices/closurePanel.d.ts +2 -3
- package/dist/devices/closurePanel.js +16 -4
- package/dist/devices/dishwasher.d.ts +1 -2
- package/dist/devices/dishwasher.js +8 -2
- package/dist/devices/evse.d.ts +3 -3
- package/dist/devices/evse.js +24 -6
- package/dist/devices/laundryWasher.d.ts +1 -2
- package/dist/devices/laundryWasher.js +8 -2
- package/dist/devices/microwaveOven.d.ts +1 -2
- package/dist/devices/microwaveOven.js +15 -3
- package/dist/devices/roboticVacuumCleaner.d.ts +5 -6
- package/dist/devices/roboticVacuumCleaner.js +40 -10
- package/dist/devices/temperatureControl.d.ts +2 -3
- package/dist/devices/temperatureControl.js +16 -4
- package/dist/devices/waterHeater.d.ts +3 -4
- package/dist/devices/waterHeater.js +24 -6
- package/dist/export.d.ts +1 -0
- package/dist/export.js +1 -0
- package/dist/jestutils/jestHelpers.js +1 -1
- package/dist/matterbridgeBehaviorsServer.d.ts +55 -53
- package/dist/matterbridgeBehaviorsServer.js +403 -139
- package/dist/matterbridgeEndpoint.d.ts +9 -7
- package/dist/matterbridgeEndpoint.js +11 -6
- package/dist/matterbridgeEndpointCommandHandler.d.ts +806 -0
- package/dist/matterbridgeEndpointCommandHandler.js +31 -0
- package/dist/matterbridgeEndpointHelpers.d.ts +2 -2
- package/dist/matterbridgeEndpointHelpers.js +1 -0
- package/dist/matterbridgeEndpointTypes.d.ts +0 -83
- package/package.json +5 -5
|
@@ -0,0 +1,806 @@
|
|
|
1
|
+
import { HandlerFunction } from '@matter/general';
|
|
2
|
+
import { ActivatedCarbonFilterMonitoring } from '@matter/types/clusters/activated-carbon-filter-monitoring';
|
|
3
|
+
import { BooleanStateConfiguration } from '@matter/types/clusters/boolean-state-configuration';
|
|
4
|
+
import { ColorControl } from '@matter/types/clusters/color-control';
|
|
5
|
+
import { DeviceEnergyManagement } from '@matter/types/clusters/device-energy-management';
|
|
6
|
+
import { DeviceEnergyManagementMode } from '@matter/types/clusters/device-energy-management-mode';
|
|
7
|
+
import { DishwasherMode } from '@matter/types/clusters/dishwasher-mode';
|
|
8
|
+
import { DoorLock } from '@matter/types/clusters/door-lock';
|
|
9
|
+
import { EnergyEvse } from '@matter/types/clusters/energy-evse';
|
|
10
|
+
import { EnergyEvseMode } from '@matter/types/clusters/energy-evse-mode';
|
|
11
|
+
import { FanControl } from '@matter/types/clusters/fan-control';
|
|
12
|
+
import { HepaFilterMonitoring } from '@matter/types/clusters/hepa-filter-monitoring';
|
|
13
|
+
import { Identify } from '@matter/types/clusters/identify';
|
|
14
|
+
import { KeypadInput } from '@matter/types/clusters/keypad-input';
|
|
15
|
+
import { LaundryWasherMode } from '@matter/types/clusters/laundry-washer-mode';
|
|
16
|
+
import { LevelControl } from '@matter/types/clusters/level-control';
|
|
17
|
+
import { MediaPlayback } from '@matter/types/clusters/media-playback';
|
|
18
|
+
import { MicrowaveOvenControl } from '@matter/types/clusters/microwave-oven-control';
|
|
19
|
+
import { ModeBase } from '@matter/types/clusters/mode-base';
|
|
20
|
+
import { ModeSelect } from '@matter/types/clusters/mode-select';
|
|
21
|
+
import { OnOff } from '@matter/types/clusters/on-off';
|
|
22
|
+
import { OperationalState } from '@matter/types/clusters/operational-state';
|
|
23
|
+
import { ResourceMonitoring } from '@matter/types/clusters/resource-monitoring';
|
|
24
|
+
import { RvcCleanMode } from '@matter/types/clusters/rvc-clean-mode';
|
|
25
|
+
import { RvcOperationalState } from '@matter/types/clusters/rvc-operational-state';
|
|
26
|
+
import { RvcRunMode } from '@matter/types/clusters/rvc-run-mode';
|
|
27
|
+
import { ServiceArea } from '@matter/types/clusters/service-area';
|
|
28
|
+
import { SmokeCoAlarm } from '@matter/types/clusters/smoke-co-alarm';
|
|
29
|
+
import { TemperatureControl } from '@matter/types/clusters/temperature-control';
|
|
30
|
+
import { Thermostat } from '@matter/types/clusters/thermostat';
|
|
31
|
+
import { ThreadNetworkDiagnostics } from '@matter/types/clusters/thread-network-diagnostics';
|
|
32
|
+
import { TimeSynchronization } from '@matter/types/clusters/time-synchronization';
|
|
33
|
+
import { ValveConfigurationAndControl } from '@matter/types/clusters/valve-configuration-and-control';
|
|
34
|
+
import { WaterHeaterManagement } from '@matter/types/clusters/water-heater-management';
|
|
35
|
+
import { WaterHeaterMode } from '@matter/types/clusters/water-heater-mode';
|
|
36
|
+
import { WindowCovering } from '@matter/types/clusters/window-covering';
|
|
37
|
+
import { ClosureControl } from './clusters/closure-control.js';
|
|
38
|
+
import { ClosureDimension } from './clusters/closure-dimension.js';
|
|
39
|
+
import type { MatterbridgeEndpoint } from './matterbridgeEndpoint.js';
|
|
40
|
+
export interface MatterbridgeEndpointCommands {
|
|
41
|
+
identify: HandlerFunction;
|
|
42
|
+
triggerEffect: HandlerFunction;
|
|
43
|
+
on: HandlerFunction;
|
|
44
|
+
off: HandlerFunction;
|
|
45
|
+
toggle: HandlerFunction;
|
|
46
|
+
offWithEffect: HandlerFunction;
|
|
47
|
+
moveToLevel: HandlerFunction;
|
|
48
|
+
moveToLevelWithOnOff: HandlerFunction;
|
|
49
|
+
moveToColor: HandlerFunction;
|
|
50
|
+
moveColor: HandlerFunction;
|
|
51
|
+
stepColor: HandlerFunction;
|
|
52
|
+
moveToHue: HandlerFunction;
|
|
53
|
+
moveHue: HandlerFunction;
|
|
54
|
+
stepHue: HandlerFunction;
|
|
55
|
+
enhancedMoveToHue: HandlerFunction;
|
|
56
|
+
enhancedMoveHue: HandlerFunction;
|
|
57
|
+
enhancedStepHue: HandlerFunction;
|
|
58
|
+
moveToSaturation: HandlerFunction;
|
|
59
|
+
moveSaturation: HandlerFunction;
|
|
60
|
+
stepSaturation: HandlerFunction;
|
|
61
|
+
moveToHueAndSaturation: HandlerFunction;
|
|
62
|
+
enhancedMoveToHueAndSaturation: HandlerFunction;
|
|
63
|
+
moveToColorTemperature: HandlerFunction;
|
|
64
|
+
upOrOpen: HandlerFunction;
|
|
65
|
+
downOrClose: HandlerFunction;
|
|
66
|
+
stopMotion: HandlerFunction;
|
|
67
|
+
goToLiftPercentage: HandlerFunction;
|
|
68
|
+
goToTiltPercentage: HandlerFunction;
|
|
69
|
+
moveTo: HandlerFunction;
|
|
70
|
+
setTarget: HandlerFunction;
|
|
71
|
+
lockDoor: HandlerFunction;
|
|
72
|
+
unlockDoor: HandlerFunction;
|
|
73
|
+
setpointRaiseLower: HandlerFunction;
|
|
74
|
+
setActivePresetRequest: HandlerFunction;
|
|
75
|
+
step: HandlerFunction;
|
|
76
|
+
changeToMode: HandlerFunction;
|
|
77
|
+
open: HandlerFunction;
|
|
78
|
+
close: HandlerFunction;
|
|
79
|
+
suppressAlarm: HandlerFunction;
|
|
80
|
+
enableDisableAlarm: HandlerFunction;
|
|
81
|
+
selfTestRequest: HandlerFunction;
|
|
82
|
+
resetCounts: HandlerFunction;
|
|
83
|
+
setUtcTime: HandlerFunction;
|
|
84
|
+
setTimeZone: HandlerFunction;
|
|
85
|
+
setDstOffset: HandlerFunction;
|
|
86
|
+
pauseRequest: HandlerFunction;
|
|
87
|
+
resumeRequest: HandlerFunction;
|
|
88
|
+
pause: HandlerFunction;
|
|
89
|
+
stop: HandlerFunction;
|
|
90
|
+
start: HandlerFunction;
|
|
91
|
+
resume: HandlerFunction;
|
|
92
|
+
goHome: HandlerFunction;
|
|
93
|
+
selectAreas: HandlerFunction;
|
|
94
|
+
boost: HandlerFunction;
|
|
95
|
+
cancelBoost: HandlerFunction;
|
|
96
|
+
enableCharging: HandlerFunction;
|
|
97
|
+
disable: HandlerFunction;
|
|
98
|
+
setTargets: HandlerFunction;
|
|
99
|
+
getTargets: HandlerFunction;
|
|
100
|
+
clearTargets: HandlerFunction;
|
|
101
|
+
powerAdjustRequest: HandlerFunction;
|
|
102
|
+
cancelPowerAdjustRequest: HandlerFunction;
|
|
103
|
+
setTemperature: HandlerFunction;
|
|
104
|
+
setCookingParameters: HandlerFunction;
|
|
105
|
+
addMoreTime: HandlerFunction;
|
|
106
|
+
play: HandlerFunction;
|
|
107
|
+
previous: HandlerFunction;
|
|
108
|
+
next: HandlerFunction;
|
|
109
|
+
skipForward: HandlerFunction;
|
|
110
|
+
skipBackward: HandlerFunction;
|
|
111
|
+
sendKey: HandlerFunction;
|
|
112
|
+
resetCondition: HandlerFunction;
|
|
113
|
+
}
|
|
114
|
+
export type CommandHandlers = keyof CommandHandlerDataMap;
|
|
115
|
+
export type CommandHandlerData<T extends CommandHandlers = CommandHandlers> = CommandHandlerDataMap[T];
|
|
116
|
+
export type CommandHandlerFunction<T extends CommandHandlers = CommandHandlers> = (data: CommandHandlerData<T>) => void | Promise<void>;
|
|
117
|
+
export type CommandHandlerDataMap = {
|
|
118
|
+
'identify': CommandHandlerData<'Identify.identify'>;
|
|
119
|
+
'triggerEffect': CommandHandlerData<'Identify.triggerEffect'>;
|
|
120
|
+
'Identify.identify': {
|
|
121
|
+
command: 'identify';
|
|
122
|
+
request: Identify.IdentifyRequest;
|
|
123
|
+
cluster: 'identify';
|
|
124
|
+
attributes: (typeof Identify.Complete)['attributes'];
|
|
125
|
+
endpoint: MatterbridgeEndpoint;
|
|
126
|
+
};
|
|
127
|
+
'Identify.triggerEffect': {
|
|
128
|
+
command: 'triggerEffect';
|
|
129
|
+
request: Identify.TriggerEffectRequest;
|
|
130
|
+
cluster: 'identify';
|
|
131
|
+
attributes: (typeof Identify.Complete)['attributes'];
|
|
132
|
+
endpoint: MatterbridgeEndpoint;
|
|
133
|
+
};
|
|
134
|
+
'on': CommandHandlerData<'OnOff.on'>;
|
|
135
|
+
'off': CommandHandlerData<'OnOff.off'>;
|
|
136
|
+
'toggle': CommandHandlerData<'OnOff.toggle'>;
|
|
137
|
+
'offWithEffect': CommandHandlerData<'OnOff.offWithEffect'>;
|
|
138
|
+
'OnOff.on': {
|
|
139
|
+
command: 'on';
|
|
140
|
+
request: {};
|
|
141
|
+
cluster: 'onOff';
|
|
142
|
+
attributes: (typeof OnOff.Complete)['attributes'];
|
|
143
|
+
endpoint: MatterbridgeEndpoint;
|
|
144
|
+
};
|
|
145
|
+
'OnOff.off': {
|
|
146
|
+
command: 'off';
|
|
147
|
+
request: {};
|
|
148
|
+
cluster: 'onOff';
|
|
149
|
+
attributes: (typeof OnOff.Complete)['attributes'];
|
|
150
|
+
endpoint: MatterbridgeEndpoint;
|
|
151
|
+
};
|
|
152
|
+
'OnOff.toggle': {
|
|
153
|
+
command: 'toggle';
|
|
154
|
+
request: {};
|
|
155
|
+
cluster: 'onOff';
|
|
156
|
+
attributes: (typeof OnOff.Complete)['attributes'];
|
|
157
|
+
endpoint: MatterbridgeEndpoint;
|
|
158
|
+
};
|
|
159
|
+
'OnOff.offWithEffect': {
|
|
160
|
+
command: 'offWithEffect';
|
|
161
|
+
request: OnOff.OffWithEffectRequest;
|
|
162
|
+
cluster: 'onOff';
|
|
163
|
+
attributes: (typeof OnOff.Complete)['attributes'];
|
|
164
|
+
endpoint: MatterbridgeEndpoint;
|
|
165
|
+
};
|
|
166
|
+
'moveToLevel': CommandHandlerData<'LevelControl.moveToLevel'>;
|
|
167
|
+
'moveToLevelWithOnOff': CommandHandlerData<'LevelControl.moveToLevelWithOnOff'>;
|
|
168
|
+
'LevelControl.moveToLevel': {
|
|
169
|
+
command: 'moveToLevel';
|
|
170
|
+
request: LevelControl.MoveToLevelRequest;
|
|
171
|
+
cluster: 'levelControl';
|
|
172
|
+
attributes: (typeof LevelControl.Complete)['attributes'];
|
|
173
|
+
endpoint: MatterbridgeEndpoint;
|
|
174
|
+
};
|
|
175
|
+
'LevelControl.moveToLevelWithOnOff': {
|
|
176
|
+
command: 'moveToLevelWithOnOff';
|
|
177
|
+
request: LevelControl.MoveToLevelRequest;
|
|
178
|
+
cluster: 'levelControl';
|
|
179
|
+
attributes: (typeof LevelControl.Complete)['attributes'];
|
|
180
|
+
endpoint: MatterbridgeEndpoint;
|
|
181
|
+
};
|
|
182
|
+
'moveToColor': CommandHandlerData<'ColorControl.moveToColor'>;
|
|
183
|
+
'moveColor': CommandHandlerData<'ColorControl.moveColor'>;
|
|
184
|
+
'stepColor': CommandHandlerData<'ColorControl.stepColor'>;
|
|
185
|
+
'moveToHue': CommandHandlerData<'ColorControl.moveToHue'>;
|
|
186
|
+
'moveHue': CommandHandlerData<'ColorControl.moveHue'>;
|
|
187
|
+
'stepHue': CommandHandlerData<'ColorControl.stepHue'>;
|
|
188
|
+
'enhancedMoveToHue': CommandHandlerData<'ColorControl.enhancedMoveToHue'>;
|
|
189
|
+
'enhancedMoveHue': CommandHandlerData<'ColorControl.enhancedMoveHue'>;
|
|
190
|
+
'enhancedStepHue': CommandHandlerData<'ColorControl.enhancedStepHue'>;
|
|
191
|
+
'moveToSaturation': CommandHandlerData<'ColorControl.moveToSaturation'>;
|
|
192
|
+
'moveSaturation': CommandHandlerData<'ColorControl.moveSaturation'>;
|
|
193
|
+
'stepSaturation': CommandHandlerData<'ColorControl.stepSaturation'>;
|
|
194
|
+
'moveToHueAndSaturation': CommandHandlerData<'ColorControl.moveToHueAndSaturation'>;
|
|
195
|
+
'enhancedMoveToHueAndSaturation': CommandHandlerData<'ColorControl.enhancedMoveToHueAndSaturation'>;
|
|
196
|
+
'moveToColorTemperature': CommandHandlerData<'ColorControl.moveToColorTemperature'>;
|
|
197
|
+
'ColorControl.moveToColor': {
|
|
198
|
+
command: 'moveToColor';
|
|
199
|
+
request: ColorControl.MoveToColorRequest;
|
|
200
|
+
cluster: 'colorControl';
|
|
201
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
202
|
+
endpoint: MatterbridgeEndpoint;
|
|
203
|
+
};
|
|
204
|
+
'ColorControl.moveColor': {
|
|
205
|
+
command: 'moveColor';
|
|
206
|
+
request: ColorControl.MoveColorRequest;
|
|
207
|
+
cluster: 'colorControl';
|
|
208
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
209
|
+
endpoint: MatterbridgeEndpoint;
|
|
210
|
+
};
|
|
211
|
+
'ColorControl.stepColor': {
|
|
212
|
+
command: 'stepColor';
|
|
213
|
+
request: ColorControl.StepColorRequest;
|
|
214
|
+
cluster: 'colorControl';
|
|
215
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
216
|
+
endpoint: MatterbridgeEndpoint;
|
|
217
|
+
};
|
|
218
|
+
'ColorControl.moveToHue': {
|
|
219
|
+
command: 'moveToHue';
|
|
220
|
+
request: ColorControl.MoveToHueRequest;
|
|
221
|
+
cluster: 'colorControl';
|
|
222
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
223
|
+
endpoint: MatterbridgeEndpoint;
|
|
224
|
+
};
|
|
225
|
+
'ColorControl.moveHue': {
|
|
226
|
+
command: 'moveHue';
|
|
227
|
+
request: ColorControl.MoveHueRequest;
|
|
228
|
+
cluster: 'colorControl';
|
|
229
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
230
|
+
endpoint: MatterbridgeEndpoint;
|
|
231
|
+
};
|
|
232
|
+
'ColorControl.stepHue': {
|
|
233
|
+
command: 'stepHue';
|
|
234
|
+
request: ColorControl.StepHueRequest;
|
|
235
|
+
cluster: 'colorControl';
|
|
236
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
237
|
+
endpoint: MatterbridgeEndpoint;
|
|
238
|
+
};
|
|
239
|
+
'ColorControl.enhancedMoveToHue': {
|
|
240
|
+
command: 'enhancedMoveToHue';
|
|
241
|
+
request: ColorControl.EnhancedMoveToHueRequest;
|
|
242
|
+
cluster: 'colorControl';
|
|
243
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
244
|
+
endpoint: MatterbridgeEndpoint;
|
|
245
|
+
};
|
|
246
|
+
'ColorControl.enhancedMoveHue': {
|
|
247
|
+
command: 'enhancedMoveHue';
|
|
248
|
+
request: ColorControl.EnhancedMoveHueRequest;
|
|
249
|
+
cluster: 'colorControl';
|
|
250
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
251
|
+
endpoint: MatterbridgeEndpoint;
|
|
252
|
+
};
|
|
253
|
+
'ColorControl.enhancedStepHue': {
|
|
254
|
+
command: 'enhancedStepHue';
|
|
255
|
+
request: ColorControl.EnhancedStepHueRequest;
|
|
256
|
+
cluster: 'colorControl';
|
|
257
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
258
|
+
endpoint: MatterbridgeEndpoint;
|
|
259
|
+
};
|
|
260
|
+
'ColorControl.moveToSaturation': {
|
|
261
|
+
command: 'moveToSaturation';
|
|
262
|
+
request: ColorControl.MoveToSaturationRequest;
|
|
263
|
+
cluster: 'colorControl';
|
|
264
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
265
|
+
endpoint: MatterbridgeEndpoint;
|
|
266
|
+
};
|
|
267
|
+
'ColorControl.moveSaturation': {
|
|
268
|
+
command: 'moveSaturation';
|
|
269
|
+
request: ColorControl.MoveSaturationRequest;
|
|
270
|
+
cluster: 'colorControl';
|
|
271
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
272
|
+
endpoint: MatterbridgeEndpoint;
|
|
273
|
+
};
|
|
274
|
+
'ColorControl.stepSaturation': {
|
|
275
|
+
command: 'stepSaturation';
|
|
276
|
+
request: ColorControl.StepSaturationRequest;
|
|
277
|
+
cluster: 'colorControl';
|
|
278
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
279
|
+
endpoint: MatterbridgeEndpoint;
|
|
280
|
+
};
|
|
281
|
+
'ColorControl.moveToHueAndSaturation': {
|
|
282
|
+
command: 'moveToHueAndSaturation';
|
|
283
|
+
request: ColorControl.MoveToHueAndSaturationRequest;
|
|
284
|
+
cluster: 'colorControl';
|
|
285
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
286
|
+
endpoint: MatterbridgeEndpoint;
|
|
287
|
+
};
|
|
288
|
+
'ColorControl.enhancedMoveToHueAndSaturation': {
|
|
289
|
+
command: 'enhancedMoveToHueAndSaturation';
|
|
290
|
+
request: ColorControl.EnhancedMoveToHueAndSaturationRequest;
|
|
291
|
+
cluster: 'colorControl';
|
|
292
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
293
|
+
endpoint: MatterbridgeEndpoint;
|
|
294
|
+
};
|
|
295
|
+
'ColorControl.moveToColorTemperature': {
|
|
296
|
+
command: 'moveToColorTemperature';
|
|
297
|
+
request: ColorControl.MoveToColorTemperatureRequest;
|
|
298
|
+
cluster: 'colorControl';
|
|
299
|
+
attributes: (typeof ColorControl.Complete)['attributes'];
|
|
300
|
+
endpoint: MatterbridgeEndpoint;
|
|
301
|
+
};
|
|
302
|
+
'upOrOpen': CommandHandlerData<'WindowCovering.upOrOpen'>;
|
|
303
|
+
'downOrClose': CommandHandlerData<'WindowCovering.downOrClose'>;
|
|
304
|
+
'stopMotion': CommandHandlerData<'WindowCovering.stopMotion'>;
|
|
305
|
+
'goToLiftPercentage': CommandHandlerData<'WindowCovering.goToLiftPercentage'>;
|
|
306
|
+
'goToTiltPercentage': CommandHandlerData<'WindowCovering.goToTiltPercentage'>;
|
|
307
|
+
'WindowCovering.upOrOpen': {
|
|
308
|
+
command: 'upOrOpen';
|
|
309
|
+
request: {};
|
|
310
|
+
cluster: 'windowCovering';
|
|
311
|
+
attributes: (typeof WindowCovering.Complete)['attributes'];
|
|
312
|
+
endpoint: MatterbridgeEndpoint;
|
|
313
|
+
};
|
|
314
|
+
'WindowCovering.downOrClose': {
|
|
315
|
+
command: 'downOrClose';
|
|
316
|
+
request: {};
|
|
317
|
+
cluster: 'windowCovering';
|
|
318
|
+
attributes: (typeof WindowCovering.Complete)['attributes'];
|
|
319
|
+
endpoint: MatterbridgeEndpoint;
|
|
320
|
+
};
|
|
321
|
+
'WindowCovering.stopMotion': {
|
|
322
|
+
command: 'stopMotion';
|
|
323
|
+
request: {};
|
|
324
|
+
cluster: 'windowCovering';
|
|
325
|
+
attributes: (typeof WindowCovering.Complete)['attributes'];
|
|
326
|
+
endpoint: MatterbridgeEndpoint;
|
|
327
|
+
};
|
|
328
|
+
'WindowCovering.goToLiftPercentage': {
|
|
329
|
+
command: 'goToLiftPercentage';
|
|
330
|
+
request: WindowCovering.GoToLiftPercentageRequest;
|
|
331
|
+
cluster: 'windowCovering';
|
|
332
|
+
attributes: (typeof WindowCovering.Complete)['attributes'];
|
|
333
|
+
endpoint: MatterbridgeEndpoint;
|
|
334
|
+
};
|
|
335
|
+
'WindowCovering.goToTiltPercentage': {
|
|
336
|
+
command: 'goToTiltPercentage';
|
|
337
|
+
request: WindowCovering.GoToTiltPercentageRequest;
|
|
338
|
+
cluster: 'windowCovering';
|
|
339
|
+
attributes: (typeof WindowCovering.Complete)['attributes'];
|
|
340
|
+
endpoint: MatterbridgeEndpoint;
|
|
341
|
+
};
|
|
342
|
+
'moveTo': CommandHandlerData<'ClosureControl.moveTo'>;
|
|
343
|
+
'ClosureControl.moveTo': {
|
|
344
|
+
command: 'moveTo';
|
|
345
|
+
request: ClosureControl.MoveToRequest;
|
|
346
|
+
cluster: 'closureControl';
|
|
347
|
+
attributes: (typeof ClosureControl.Complete)['attributes'];
|
|
348
|
+
endpoint: MatterbridgeEndpoint;
|
|
349
|
+
};
|
|
350
|
+
'ClosureControl.stop': {
|
|
351
|
+
command: 'stop';
|
|
352
|
+
request: {};
|
|
353
|
+
cluster: 'closureControl';
|
|
354
|
+
attributes: (typeof ClosureControl.Complete)['attributes'];
|
|
355
|
+
endpoint: MatterbridgeEndpoint;
|
|
356
|
+
};
|
|
357
|
+
'setTarget': CommandHandlerData<'ClosureDimension.setTarget'>;
|
|
358
|
+
'ClosureDimension.setTarget': {
|
|
359
|
+
command: 'setTarget';
|
|
360
|
+
request: ClosureDimension.SetTargetRequest;
|
|
361
|
+
cluster: 'closureDimension';
|
|
362
|
+
attributes: (typeof ClosureDimension.Complete)['attributes'];
|
|
363
|
+
endpoint: MatterbridgeEndpoint;
|
|
364
|
+
};
|
|
365
|
+
'ClosureDimension.step': {
|
|
366
|
+
command: 'step';
|
|
367
|
+
request: ClosureDimension.StepRequest;
|
|
368
|
+
cluster: 'closureDimension';
|
|
369
|
+
attributes: (typeof ClosureDimension.Complete)['attributes'];
|
|
370
|
+
endpoint: MatterbridgeEndpoint;
|
|
371
|
+
};
|
|
372
|
+
'lockDoor': CommandHandlerData<'DoorLock.lockDoor'>;
|
|
373
|
+
'unlockDoor': CommandHandlerData<'DoorLock.unlockDoor'>;
|
|
374
|
+
'DoorLock.lockDoor': {
|
|
375
|
+
command: 'lockDoor';
|
|
376
|
+
request: DoorLock.LockDoorRequest;
|
|
377
|
+
cluster: 'doorLock';
|
|
378
|
+
attributes: (typeof DoorLock.Complete)['attributes'];
|
|
379
|
+
endpoint: MatterbridgeEndpoint;
|
|
380
|
+
};
|
|
381
|
+
'DoorLock.unlockDoor': {
|
|
382
|
+
command: 'unlockDoor';
|
|
383
|
+
request: DoorLock.UnlockDoorRequest;
|
|
384
|
+
cluster: 'doorLock';
|
|
385
|
+
attributes: (typeof DoorLock.Complete)['attributes'];
|
|
386
|
+
endpoint: MatterbridgeEndpoint;
|
|
387
|
+
};
|
|
388
|
+
'setpointRaiseLower': CommandHandlerData<'Thermostat.setpointRaiseLower'>;
|
|
389
|
+
'setActivePresetRequest': CommandHandlerData<'Thermostat.setActivePresetRequest'>;
|
|
390
|
+
'Thermostat.setpointRaiseLower': {
|
|
391
|
+
command: 'setpointRaiseLower';
|
|
392
|
+
request: Thermostat.SetpointRaiseLowerRequest;
|
|
393
|
+
cluster: 'thermostat';
|
|
394
|
+
attributes: (typeof Thermostat.Complete)['attributes'];
|
|
395
|
+
endpoint: MatterbridgeEndpoint;
|
|
396
|
+
};
|
|
397
|
+
'Thermostat.setActivePresetRequest': {
|
|
398
|
+
command: 'setActivePresetRequest';
|
|
399
|
+
request: Thermostat.SetActivePresetRequest;
|
|
400
|
+
cluster: 'thermostat';
|
|
401
|
+
attributes: (typeof Thermostat.Complete)['attributes'];
|
|
402
|
+
endpoint: MatterbridgeEndpoint;
|
|
403
|
+
};
|
|
404
|
+
'step': CommandHandlerData<'FanControl.step'>;
|
|
405
|
+
'FanControl.step': {
|
|
406
|
+
command: 'step';
|
|
407
|
+
request: FanControl.StepRequest;
|
|
408
|
+
cluster: 'fanControl';
|
|
409
|
+
attributes: (typeof FanControl.Complete)['attributes'];
|
|
410
|
+
endpoint: MatterbridgeEndpoint;
|
|
411
|
+
};
|
|
412
|
+
'changeToMode': CommandHandlerData<'ModeSelect.changeToMode'>;
|
|
413
|
+
'ModeSelect.changeToMode': {
|
|
414
|
+
command: 'changeToMode';
|
|
415
|
+
request: ModeSelect.ChangeToModeRequest;
|
|
416
|
+
cluster: 'modeSelect';
|
|
417
|
+
attributes: (typeof ModeSelect.Complete)['attributes'];
|
|
418
|
+
endpoint: MatterbridgeEndpoint;
|
|
419
|
+
};
|
|
420
|
+
'DishwasherMode.changeToMode': {
|
|
421
|
+
command: 'changeToMode';
|
|
422
|
+
request: ModeBase.ChangeToModeRequest;
|
|
423
|
+
cluster: 'dishwasherMode';
|
|
424
|
+
attributes: (typeof DishwasherMode.Complete)['attributes'];
|
|
425
|
+
endpoint: MatterbridgeEndpoint;
|
|
426
|
+
};
|
|
427
|
+
'LaundryWasherMode.changeToMode': {
|
|
428
|
+
command: 'changeToMode';
|
|
429
|
+
request: ModeBase.ChangeToModeRequest;
|
|
430
|
+
cluster: 'laundryWasherMode';
|
|
431
|
+
attributes: (typeof LaundryWasherMode.Complete)['attributes'];
|
|
432
|
+
endpoint: MatterbridgeEndpoint;
|
|
433
|
+
};
|
|
434
|
+
'EnergyEvseMode.changeToMode': {
|
|
435
|
+
command: 'changeToMode';
|
|
436
|
+
request: ModeBase.ChangeToModeRequest;
|
|
437
|
+
cluster: 'energyEvseMode';
|
|
438
|
+
attributes: (typeof EnergyEvseMode.Complete)['attributes'];
|
|
439
|
+
endpoint: MatterbridgeEndpoint;
|
|
440
|
+
};
|
|
441
|
+
'RvcRunMode.changeToMode': {
|
|
442
|
+
command: 'changeToMode';
|
|
443
|
+
request: ModeBase.ChangeToModeRequest;
|
|
444
|
+
cluster: 'rvcRunMode';
|
|
445
|
+
attributes: (typeof RvcRunMode.Complete)['attributes'];
|
|
446
|
+
endpoint: MatterbridgeEndpoint;
|
|
447
|
+
};
|
|
448
|
+
'RvcCleanMode.changeToMode': {
|
|
449
|
+
command: 'changeToMode';
|
|
450
|
+
request: ModeBase.ChangeToModeRequest;
|
|
451
|
+
cluster: 'rvcCleanMode';
|
|
452
|
+
attributes: (typeof RvcCleanMode.Complete)['attributes'];
|
|
453
|
+
endpoint: MatterbridgeEndpoint;
|
|
454
|
+
};
|
|
455
|
+
'WaterHeaterMode.changeToMode': {
|
|
456
|
+
command: 'changeToMode';
|
|
457
|
+
request: ModeBase.ChangeToModeRequest;
|
|
458
|
+
cluster: 'waterHeaterMode';
|
|
459
|
+
attributes: (typeof WaterHeaterMode.Complete)['attributes'];
|
|
460
|
+
endpoint: MatterbridgeEndpoint;
|
|
461
|
+
};
|
|
462
|
+
'DeviceEnergyManagementMode.changeToMode': {
|
|
463
|
+
command: 'changeToMode';
|
|
464
|
+
request: ModeBase.ChangeToModeRequest;
|
|
465
|
+
cluster: 'deviceEnergyManagementMode';
|
|
466
|
+
attributes: (typeof DeviceEnergyManagementMode.Complete)['attributes'];
|
|
467
|
+
endpoint: MatterbridgeEndpoint;
|
|
468
|
+
};
|
|
469
|
+
'open': CommandHandlerData<'ValveConfigurationAndControl.open'>;
|
|
470
|
+
'close': CommandHandlerData<'ValveConfigurationAndControl.close'>;
|
|
471
|
+
'ValveConfigurationAndControl.open': {
|
|
472
|
+
command: 'open';
|
|
473
|
+
request: ValveConfigurationAndControl.OpenRequest;
|
|
474
|
+
cluster: 'valveConfigurationAndControl';
|
|
475
|
+
attributes: (typeof ValveConfigurationAndControl.Complete)['attributes'];
|
|
476
|
+
endpoint: MatterbridgeEndpoint;
|
|
477
|
+
};
|
|
478
|
+
'ValveConfigurationAndControl.close': {
|
|
479
|
+
command: 'close';
|
|
480
|
+
request: {};
|
|
481
|
+
cluster: 'valveConfigurationAndControl';
|
|
482
|
+
attributes: (typeof ValveConfigurationAndControl.Complete)['attributes'];
|
|
483
|
+
endpoint: MatterbridgeEndpoint;
|
|
484
|
+
};
|
|
485
|
+
'suppressAlarm': CommandHandlerData<'BooleanStateConfiguration.suppressAlarm'>;
|
|
486
|
+
'enableDisableAlarm': CommandHandlerData<'BooleanStateConfiguration.enableDisableAlarm'>;
|
|
487
|
+
'BooleanStateConfiguration.suppressAlarm': {
|
|
488
|
+
command: 'suppressAlarm';
|
|
489
|
+
request: BooleanStateConfiguration.SuppressAlarmRequest;
|
|
490
|
+
cluster: 'booleanStateConfiguration';
|
|
491
|
+
attributes: (typeof BooleanStateConfiguration.Complete)['attributes'];
|
|
492
|
+
endpoint: MatterbridgeEndpoint;
|
|
493
|
+
};
|
|
494
|
+
'BooleanStateConfiguration.enableDisableAlarm': {
|
|
495
|
+
command: 'enableDisableAlarm';
|
|
496
|
+
request: BooleanStateConfiguration.EnableDisableAlarmRequest;
|
|
497
|
+
cluster: 'booleanStateConfiguration';
|
|
498
|
+
attributes: (typeof BooleanStateConfiguration.Complete)['attributes'];
|
|
499
|
+
endpoint: MatterbridgeEndpoint;
|
|
500
|
+
};
|
|
501
|
+
'selfTestRequest': CommandHandlerData<'SmokeCoAlarm.selfTestRequest'>;
|
|
502
|
+
'SmokeCoAlarm.selfTestRequest': {
|
|
503
|
+
command: 'selfTestRequest';
|
|
504
|
+
request: {};
|
|
505
|
+
cluster: 'smokeCoAlarm';
|
|
506
|
+
attributes: (typeof SmokeCoAlarm.Complete)['attributes'];
|
|
507
|
+
endpoint: MatterbridgeEndpoint;
|
|
508
|
+
};
|
|
509
|
+
'resetCounts': CommandHandlerData<'ThreadNetworkDiagnostics.resetCounts'>;
|
|
510
|
+
'ThreadNetworkDiagnostics.resetCounts': {
|
|
511
|
+
command: 'resetCounts';
|
|
512
|
+
request: {};
|
|
513
|
+
cluster: 'threadNetworkDiagnostics';
|
|
514
|
+
attributes: (typeof ThreadNetworkDiagnostics.Complete)['attributes'];
|
|
515
|
+
endpoint: MatterbridgeEndpoint;
|
|
516
|
+
};
|
|
517
|
+
'setUtcTime': CommandHandlerData<'TimeSynchronization.setUtcTime'>;
|
|
518
|
+
'setTimeZone': CommandHandlerData<'TimeSynchronization.setTimeZone'>;
|
|
519
|
+
'setDstOffset': CommandHandlerData<'TimeSynchronization.setDstOffset'>;
|
|
520
|
+
'TimeSynchronization.setUtcTime': {
|
|
521
|
+
command: 'setUtcTime';
|
|
522
|
+
request: TimeSynchronization.SetUtcTimeRequest;
|
|
523
|
+
cluster: 'timeSynchronization';
|
|
524
|
+
attributes: (typeof TimeSynchronization.Complete)['attributes'];
|
|
525
|
+
endpoint: MatterbridgeEndpoint;
|
|
526
|
+
};
|
|
527
|
+
'TimeSynchronization.setTimeZone': {
|
|
528
|
+
command: 'setTimeZone';
|
|
529
|
+
request: TimeSynchronization.SetTimeZoneRequest;
|
|
530
|
+
cluster: 'timeSynchronization';
|
|
531
|
+
attributes: (typeof TimeSynchronization.Complete)['attributes'];
|
|
532
|
+
endpoint: MatterbridgeEndpoint;
|
|
533
|
+
};
|
|
534
|
+
'TimeSynchronization.setDstOffset': {
|
|
535
|
+
command: 'setDstOffset';
|
|
536
|
+
request: TimeSynchronization.SetDstOffsetRequest;
|
|
537
|
+
cluster: 'timeSynchronization';
|
|
538
|
+
attributes: (typeof TimeSynchronization.Complete)['attributes'];
|
|
539
|
+
endpoint: MatterbridgeEndpoint;
|
|
540
|
+
};
|
|
541
|
+
'pauseRequest': CommandHandlerData<'DeviceEnergyManagement.pauseRequest'>;
|
|
542
|
+
'resumeRequest': CommandHandlerData<'DeviceEnergyManagement.resumeRequest'>;
|
|
543
|
+
'powerAdjustRequest': CommandHandlerData<'DeviceEnergyManagement.powerAdjustRequest'>;
|
|
544
|
+
'cancelPowerAdjustRequest': CommandHandlerData<'DeviceEnergyManagement.cancelPowerAdjustRequest'>;
|
|
545
|
+
'DeviceEnergyManagement.pauseRequest': {
|
|
546
|
+
command: 'pauseRequest';
|
|
547
|
+
request: DeviceEnergyManagement.PauseRequest;
|
|
548
|
+
cluster: 'deviceEnergyManagement';
|
|
549
|
+
attributes: (typeof DeviceEnergyManagement.Complete)['attributes'];
|
|
550
|
+
endpoint: MatterbridgeEndpoint;
|
|
551
|
+
};
|
|
552
|
+
'DeviceEnergyManagement.resumeRequest': {
|
|
553
|
+
command: 'resumeRequest';
|
|
554
|
+
request: {};
|
|
555
|
+
cluster: 'deviceEnergyManagement';
|
|
556
|
+
attributes: (typeof DeviceEnergyManagement.Complete)['attributes'];
|
|
557
|
+
endpoint: MatterbridgeEndpoint;
|
|
558
|
+
};
|
|
559
|
+
'DeviceEnergyManagement.powerAdjustRequest': {
|
|
560
|
+
command: 'powerAdjustRequest';
|
|
561
|
+
request: DeviceEnergyManagement.PowerAdjustRequest;
|
|
562
|
+
cluster: 'deviceEnergyManagement';
|
|
563
|
+
attributes: (typeof DeviceEnergyManagement.Complete)['attributes'];
|
|
564
|
+
endpoint: MatterbridgeEndpoint;
|
|
565
|
+
};
|
|
566
|
+
'DeviceEnergyManagement.cancelPowerAdjustRequest': {
|
|
567
|
+
command: 'cancelPowerAdjustRequest';
|
|
568
|
+
request: {};
|
|
569
|
+
cluster: 'deviceEnergyManagement';
|
|
570
|
+
attributes: (typeof DeviceEnergyManagement.Complete)['attributes'];
|
|
571
|
+
endpoint: MatterbridgeEndpoint;
|
|
572
|
+
};
|
|
573
|
+
'pause': CommandHandlerData<'OperationalState.pause'>;
|
|
574
|
+
'stop': CommandHandlerData<'OperationalState.stop'>;
|
|
575
|
+
'start': CommandHandlerData<'OperationalState.start'>;
|
|
576
|
+
'resume': CommandHandlerData<'OperationalState.resume'>;
|
|
577
|
+
'OperationalState.pause': {
|
|
578
|
+
command: 'pause';
|
|
579
|
+
request: {};
|
|
580
|
+
cluster: 'operationalState';
|
|
581
|
+
attributes: (typeof OperationalState.Complete)['attributes'];
|
|
582
|
+
endpoint: MatterbridgeEndpoint;
|
|
583
|
+
};
|
|
584
|
+
'OperationalState.stop': {
|
|
585
|
+
command: 'stop';
|
|
586
|
+
request: {};
|
|
587
|
+
cluster: 'operationalState';
|
|
588
|
+
attributes: (typeof OperationalState.Complete)['attributes'];
|
|
589
|
+
endpoint: MatterbridgeEndpoint;
|
|
590
|
+
};
|
|
591
|
+
'OperationalState.start': {
|
|
592
|
+
command: 'start';
|
|
593
|
+
request: {};
|
|
594
|
+
cluster: 'operationalState';
|
|
595
|
+
attributes: (typeof OperationalState.Complete)['attributes'];
|
|
596
|
+
endpoint: MatterbridgeEndpoint;
|
|
597
|
+
};
|
|
598
|
+
'OperationalState.resume': {
|
|
599
|
+
command: 'resume';
|
|
600
|
+
request: {};
|
|
601
|
+
cluster: 'operationalState';
|
|
602
|
+
attributes: (typeof OperationalState.Complete)['attributes'];
|
|
603
|
+
endpoint: MatterbridgeEndpoint;
|
|
604
|
+
};
|
|
605
|
+
'goHome': CommandHandlerData<'RvcOperationalState.goHome'>;
|
|
606
|
+
'RvcOperationalState.pause': {
|
|
607
|
+
command: 'pause';
|
|
608
|
+
request: {};
|
|
609
|
+
cluster: 'rvcOperationalState';
|
|
610
|
+
attributes: (typeof RvcOperationalState.Complete)['attributes'];
|
|
611
|
+
endpoint: MatterbridgeEndpoint;
|
|
612
|
+
};
|
|
613
|
+
'RvcOperationalState.resume': {
|
|
614
|
+
command: 'resume';
|
|
615
|
+
request: {};
|
|
616
|
+
cluster: 'rvcOperationalState';
|
|
617
|
+
attributes: (typeof RvcOperationalState.Complete)['attributes'];
|
|
618
|
+
endpoint: MatterbridgeEndpoint;
|
|
619
|
+
};
|
|
620
|
+
'RvcOperationalState.goHome': {
|
|
621
|
+
command: 'goHome';
|
|
622
|
+
request: {};
|
|
623
|
+
cluster: 'rvcOperationalState';
|
|
624
|
+
attributes: (typeof RvcOperationalState.Complete)['attributes'];
|
|
625
|
+
endpoint: MatterbridgeEndpoint;
|
|
626
|
+
};
|
|
627
|
+
'selectAreas': CommandHandlerData<'ServiceArea.selectAreas'>;
|
|
628
|
+
'ServiceArea.selectAreas': {
|
|
629
|
+
command: 'selectAreas';
|
|
630
|
+
request: ServiceArea.SelectAreasRequest;
|
|
631
|
+
cluster: 'serviceArea';
|
|
632
|
+
attributes: (typeof ServiceArea.Complete)['attributes'];
|
|
633
|
+
endpoint: MatterbridgeEndpoint;
|
|
634
|
+
};
|
|
635
|
+
'boost': CommandHandlerData<'WaterHeaterManagement.boost'>;
|
|
636
|
+
'cancelBoost': CommandHandlerData<'WaterHeaterManagement.cancelBoost'>;
|
|
637
|
+
'WaterHeaterManagement.boost': {
|
|
638
|
+
command: 'boost';
|
|
639
|
+
request: WaterHeaterManagement.BoostRequest;
|
|
640
|
+
cluster: 'waterHeaterManagement';
|
|
641
|
+
attributes: (typeof WaterHeaterManagement.Complete)['attributes'];
|
|
642
|
+
endpoint: MatterbridgeEndpoint;
|
|
643
|
+
};
|
|
644
|
+
'WaterHeaterManagement.cancelBoost': {
|
|
645
|
+
command: 'cancelBoost';
|
|
646
|
+
request: {};
|
|
647
|
+
cluster: 'waterHeaterManagement';
|
|
648
|
+
attributes: (typeof WaterHeaterManagement.Complete)['attributes'];
|
|
649
|
+
endpoint: MatterbridgeEndpoint;
|
|
650
|
+
};
|
|
651
|
+
'enableCharging': CommandHandlerData<'EnergyEvse.enableCharging'>;
|
|
652
|
+
'disable': CommandHandlerData<'EnergyEvse.disable'>;
|
|
653
|
+
'setTargets': CommandHandlerData<'EnergyEvse.setTargets'>;
|
|
654
|
+
'getTargets': CommandHandlerData<'EnergyEvse.getTargets'>;
|
|
655
|
+
'clearTargets': CommandHandlerData<'EnergyEvse.clearTargets'>;
|
|
656
|
+
'EnergyEvse.enableCharging': {
|
|
657
|
+
command: 'enableCharging';
|
|
658
|
+
request: EnergyEvse.EnableChargingRequest;
|
|
659
|
+
cluster: 'energyEvse';
|
|
660
|
+
attributes: (typeof EnergyEvse.Complete)['attributes'];
|
|
661
|
+
endpoint: MatterbridgeEndpoint;
|
|
662
|
+
};
|
|
663
|
+
'EnergyEvse.disable': {
|
|
664
|
+
command: 'disable';
|
|
665
|
+
request: {};
|
|
666
|
+
cluster: 'energyEvse';
|
|
667
|
+
attributes: (typeof EnergyEvse.Complete)['attributes'];
|
|
668
|
+
endpoint: MatterbridgeEndpoint;
|
|
669
|
+
};
|
|
670
|
+
'EnergyEvse.setTargets': {
|
|
671
|
+
command: 'setTargets';
|
|
672
|
+
request: EnergyEvse.SetTargetsRequest;
|
|
673
|
+
cluster: 'energyEvse';
|
|
674
|
+
attributes: (typeof EnergyEvse.Complete)['attributes'];
|
|
675
|
+
endpoint: MatterbridgeEndpoint;
|
|
676
|
+
};
|
|
677
|
+
'EnergyEvse.getTargets': {
|
|
678
|
+
command: 'getTargets';
|
|
679
|
+
request: {};
|
|
680
|
+
cluster: 'energyEvse';
|
|
681
|
+
attributes: (typeof EnergyEvse.Complete)['attributes'];
|
|
682
|
+
endpoint: MatterbridgeEndpoint;
|
|
683
|
+
};
|
|
684
|
+
'EnergyEvse.clearTargets': {
|
|
685
|
+
command: 'clearTargets';
|
|
686
|
+
request: {};
|
|
687
|
+
cluster: 'energyEvse';
|
|
688
|
+
attributes: (typeof EnergyEvse.Complete)['attributes'];
|
|
689
|
+
endpoint: MatterbridgeEndpoint;
|
|
690
|
+
};
|
|
691
|
+
'setTemperature': CommandHandlerData<'TemperatureControl.setTemperature'>;
|
|
692
|
+
'TemperatureControl.setTemperature': {
|
|
693
|
+
command: 'setTemperature';
|
|
694
|
+
request: TemperatureControl.SetTemperatureRequest;
|
|
695
|
+
cluster: 'temperatureControl';
|
|
696
|
+
attributes: (typeof TemperatureControl.Complete)['attributes'];
|
|
697
|
+
endpoint: MatterbridgeEndpoint;
|
|
698
|
+
};
|
|
699
|
+
'setCookingParameters': CommandHandlerData<'MicrowaveOvenControl.setCookingParameters'>;
|
|
700
|
+
'addMoreTime': CommandHandlerData<'MicrowaveOvenControl.addMoreTime'>;
|
|
701
|
+
'MicrowaveOvenControl.setCookingParameters': {
|
|
702
|
+
command: 'setCookingParameters';
|
|
703
|
+
request: MicrowaveOvenControl.SetCookingParametersRequest;
|
|
704
|
+
cluster: 'microwaveOvenControl';
|
|
705
|
+
attributes: (typeof MicrowaveOvenControl.Complete)['attributes'];
|
|
706
|
+
endpoint: MatterbridgeEndpoint;
|
|
707
|
+
};
|
|
708
|
+
'MicrowaveOvenControl.addMoreTime': {
|
|
709
|
+
command: 'addMoreTime';
|
|
710
|
+
request: MicrowaveOvenControl.AddMoreTimeRequest;
|
|
711
|
+
cluster: 'microwaveOvenControl';
|
|
712
|
+
attributes: (typeof MicrowaveOvenControl.Complete)['attributes'];
|
|
713
|
+
endpoint: MatterbridgeEndpoint;
|
|
714
|
+
};
|
|
715
|
+
'play': CommandHandlerData<'MediaPlayback.play'>;
|
|
716
|
+
'previous': CommandHandlerData<'MediaPlayback.previous'>;
|
|
717
|
+
'next': CommandHandlerData<'MediaPlayback.next'>;
|
|
718
|
+
'skipForward': CommandHandlerData<'MediaPlayback.skipForward'>;
|
|
719
|
+
'skipBackward': CommandHandlerData<'MediaPlayback.skipBackward'>;
|
|
720
|
+
'MediaPlayback.pause': {
|
|
721
|
+
command: 'pause';
|
|
722
|
+
request: {};
|
|
723
|
+
cluster: 'mediaPlayback';
|
|
724
|
+
attributes: (typeof MediaPlayback.Complete)['attributes'];
|
|
725
|
+
endpoint: MatterbridgeEndpoint;
|
|
726
|
+
};
|
|
727
|
+
'MediaPlayback.stop': {
|
|
728
|
+
command: 'stop';
|
|
729
|
+
request: {};
|
|
730
|
+
cluster: 'mediaPlayback';
|
|
731
|
+
attributes: (typeof MediaPlayback.Complete)['attributes'];
|
|
732
|
+
endpoint: MatterbridgeEndpoint;
|
|
733
|
+
};
|
|
734
|
+
'MediaPlayback.play': {
|
|
735
|
+
command: 'play';
|
|
736
|
+
request: {};
|
|
737
|
+
cluster: 'mediaPlayback';
|
|
738
|
+
attributes: (typeof MediaPlayback.Complete)['attributes'];
|
|
739
|
+
endpoint: MatterbridgeEndpoint;
|
|
740
|
+
};
|
|
741
|
+
'MediaPlayback.previous': {
|
|
742
|
+
command: 'previous';
|
|
743
|
+
request: {};
|
|
744
|
+
cluster: 'mediaPlayback';
|
|
745
|
+
attributes: (typeof MediaPlayback.Complete)['attributes'];
|
|
746
|
+
endpoint: MatterbridgeEndpoint;
|
|
747
|
+
};
|
|
748
|
+
'MediaPlayback.next': {
|
|
749
|
+
command: 'next';
|
|
750
|
+
request: {};
|
|
751
|
+
cluster: 'mediaPlayback';
|
|
752
|
+
attributes: (typeof MediaPlayback.Complete)['attributes'];
|
|
753
|
+
endpoint: MatterbridgeEndpoint;
|
|
754
|
+
};
|
|
755
|
+
'MediaPlayback.skipForward': {
|
|
756
|
+
command: 'skipForward';
|
|
757
|
+
request: MediaPlayback.SkipForwardRequest;
|
|
758
|
+
cluster: 'mediaPlayback';
|
|
759
|
+
attributes: (typeof MediaPlayback.Complete)['attributes'];
|
|
760
|
+
endpoint: MatterbridgeEndpoint;
|
|
761
|
+
};
|
|
762
|
+
'MediaPlayback.skipBackward': {
|
|
763
|
+
command: 'skipBackward';
|
|
764
|
+
request: MediaPlayback.SkipBackwardRequest;
|
|
765
|
+
cluster: 'mediaPlayback';
|
|
766
|
+
attributes: (typeof MediaPlayback.Complete)['attributes'];
|
|
767
|
+
endpoint: MatterbridgeEndpoint;
|
|
768
|
+
};
|
|
769
|
+
'sendKey': CommandHandlerData<'KeypadInput.sendKey'>;
|
|
770
|
+
'KeypadInput.sendKey': {
|
|
771
|
+
command: 'sendKey';
|
|
772
|
+
request: KeypadInput.SendKeyRequest;
|
|
773
|
+
cluster: 'keypadInput';
|
|
774
|
+
attributes: (typeof KeypadInput.Complete)['attributes'];
|
|
775
|
+
endpoint: MatterbridgeEndpoint;
|
|
776
|
+
};
|
|
777
|
+
'resetCondition': CommandHandlerData<'ResourceMonitoring.resetCondition'>;
|
|
778
|
+
'ResourceMonitoring.resetCondition': {
|
|
779
|
+
command: 'resetCondition';
|
|
780
|
+
request: {};
|
|
781
|
+
cluster: 'resourceMonitoring';
|
|
782
|
+
attributes: (typeof ResourceMonitoring.Complete)['attributes'];
|
|
783
|
+
endpoint: MatterbridgeEndpoint;
|
|
784
|
+
};
|
|
785
|
+
'HepaFilterMonitoring.resetCondition': {
|
|
786
|
+
command: 'resetCondition';
|
|
787
|
+
request: {};
|
|
788
|
+
cluster: 'hepaFilterMonitoring';
|
|
789
|
+
attributes: (typeof HepaFilterMonitoring.Complete)['attributes'];
|
|
790
|
+
endpoint: MatterbridgeEndpoint;
|
|
791
|
+
};
|
|
792
|
+
'ActivatedCarbonFilterMonitoring.resetCondition': {
|
|
793
|
+
command: 'resetCondition';
|
|
794
|
+
request: {};
|
|
795
|
+
cluster: 'activatedCarbonFilterMonitoring';
|
|
796
|
+
attributes: (typeof ActivatedCarbonFilterMonitoring.Complete)['attributes'];
|
|
797
|
+
endpoint: MatterbridgeEndpoint;
|
|
798
|
+
};
|
|
799
|
+
};
|
|
800
|
+
export declare class CommandHandler {
|
|
801
|
+
private handler;
|
|
802
|
+
hasHandler<K extends CommandHandlers>(command: K): boolean;
|
|
803
|
+
addHandler<K extends CommandHandlers>(command: K, handler: CommandHandlerFunction<K>): void;
|
|
804
|
+
executeHandler<K extends CommandHandlers>(command: K, ...args: Parameters<CommandHandlerFunction<K>>): Promise<void>;
|
|
805
|
+
removeHandler<K extends CommandHandlers>(command: K, handler: CommandHandlerFunction<K>): void;
|
|
806
|
+
}
|