@matterbridge/core 3.7.2-dev-20260328-c77b608 → 3.7.2-dev-20260329-5cac980

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/dist/behaviors/activatedCarbonFilterMonitoringServer.d.ts +8 -0
  2. package/dist/behaviors/activatedCarbonFilterMonitoringServer.js +20 -0
  3. package/dist/{matterbridgeBehaviorsClient.js → behaviors/bindingServer.js} +1 -1
  4. package/dist/behaviors/booleanStateConfigurationServer.d.ts +7 -0
  5. package/dist/behaviors/booleanStateConfigurationServer.js +18 -0
  6. package/dist/behaviors/colorControlServer.d.ts +788 -0
  7. package/dist/behaviors/colorControlServer.js +105 -0
  8. package/dist/behaviors/deviceEnergyManagementModeServer.d.ts +5 -0
  9. package/dist/behaviors/deviceEnergyManagementModeServer.js +42 -0
  10. package/dist/behaviors/deviceEnergyManagementServer.d.ts +306 -0
  11. package/dist/behaviors/deviceEnergyManagementServer.js +31 -0
  12. package/dist/behaviors/doorLockServer.d.ts +20 -0
  13. package/dist/behaviors/doorLockServer.js +50 -0
  14. package/dist/behaviors/export.d.ts +24 -1
  15. package/dist/behaviors/export.js +24 -1
  16. package/dist/behaviors/fanControlServer.d.ts +7 -0
  17. package/dist/behaviors/fanControlServer.js +35 -0
  18. package/dist/behaviors/hepaFilterMonitoringServer.d.ts +8 -0
  19. package/dist/behaviors/hepaFilterMonitoringServer.js +20 -0
  20. package/dist/behaviors/identifyServer.d.ts +6 -0
  21. package/dist/behaviors/identifyServer.js +32 -0
  22. package/dist/behaviors/levelControlServer.d.ts +6 -0
  23. package/dist/behaviors/levelControlServer.js +32 -0
  24. package/dist/behaviors/matterbridgeServer.d.ts +14 -0
  25. package/dist/behaviors/matterbridgeServer.js +15 -0
  26. package/dist/behaviors/modeSelectServer.d.ts +5 -0
  27. package/dist/behaviors/modeSelectServer.js +18 -0
  28. package/dist/behaviors/onOffServer.d.ts +6 -0
  29. package/dist/behaviors/onOffServer.js +46 -0
  30. package/dist/behaviors/operationalStateServer.d.ts +10 -0
  31. package/dist/behaviors/operationalStateServer.js +84 -0
  32. package/dist/behaviors/pinDoorLockServer.d.ts +32 -0
  33. package/dist/behaviors/pinDoorLockServer.js +168 -0
  34. package/dist/behaviors/powerSourceServer.d.ts +4 -0
  35. package/dist/behaviors/powerSourceServer.js +21 -0
  36. package/dist/behaviors/serviceAreaServer.d.ts +5 -0
  37. package/dist/behaviors/serviceAreaServer.js +18 -0
  38. package/dist/behaviors/smokeCoAlarmServer.d.ts +83 -0
  39. package/dist/behaviors/smokeCoAlarmServer.js +18 -0
  40. package/dist/behaviors/switchServer.d.ts +4 -0
  41. package/dist/behaviors/switchServer.js +8 -0
  42. package/dist/behaviors/thermostatServer.d.ts +732 -0
  43. package/dist/behaviors/thermostatServer.js +50 -0
  44. package/dist/behaviors/userPinDoorLockServer.d.ts +57 -0
  45. package/dist/behaviors/userPinDoorLockServer.js +348 -0
  46. package/dist/behaviors/valveConfigurationAndControlServer.d.ts +8 -0
  47. package/dist/behaviors/valveConfigurationAndControlServer.js +44 -0
  48. package/dist/behaviors/windowCoveringServer.d.ts +583 -0
  49. package/dist/behaviors/windowCoveringServer.js +96 -0
  50. package/dist/devices/basicVideoPlayer.js +2 -1
  51. package/dist/devices/castingVideoPlayer.js +1 -1
  52. package/dist/devices/closure.js +1 -1
  53. package/dist/devices/closurePanel.js +1 -1
  54. package/dist/devices/dishwasher.js +2 -1
  55. package/dist/devices/evse.js +1 -1
  56. package/dist/devices/laundryWasher.js +2 -1
  57. package/dist/devices/microwaveOven.js +2 -1
  58. package/dist/devices/oven.js +1 -1
  59. package/dist/devices/refrigerator.js +1 -1
  60. package/dist/devices/roboticVacuumCleaner.js +2 -1
  61. package/dist/devices/temperatureControl.js +1 -1
  62. package/dist/devices/waterHeater.js +1 -1
  63. package/dist/export.d.ts +24 -1
  64. package/dist/export.js +24 -1
  65. package/dist/frontend.js +2 -0
  66. package/dist/matterbridge.d.ts +1 -0
  67. package/dist/matterbridge.js +11 -0
  68. package/dist/matterbridgeEndpoint.d.ts +12 -1
  69. package/dist/matterbridgeEndpoint.js +22 -1
  70. package/dist/matterbridgeEndpointCommandHandler.d.ts +5 -1
  71. package/dist/matterbridgeEndpointHelpers.d.ts +4 -1
  72. package/dist/matterbridgeEndpointHelpers.js +16 -1
  73. package/package.json +9 -5
  74. package/dist/matterbridgeBehaviorsServer.d.ts +0 -2687
  75. package/dist/matterbridgeBehaviorsServer.js +0 -1222
  76. /package/dist/{matterbridgeBehaviorsClient.d.ts → behaviors/bindingServer.d.ts} +0 -0
@@ -0,0 +1,583 @@
1
+ import { WindowCoveringBaseServer, WindowCoveringServer } from '@matter/node/behaviors/window-covering';
2
+ import { WindowCovering } from '@matter/types/clusters/window-covering';
3
+ declare const MatterbridgeWindowCoveringServer_base: import("@matter/node").ClusterBehavior.Type<import("@matter/types").ClusterComposer.WithFeatures<import("@matter/types").ClusterType.Of<{
4
+ readonly id: 258;
5
+ readonly name: "WindowCovering";
6
+ readonly revision: 6;
7
+ readonly features: {
8
+ readonly lift: import("@matter/types").BitFlag;
9
+ readonly tilt: import("@matter/types").BitFlag;
10
+ readonly positionAwareLift: import("@matter/types").BitFlag;
11
+ readonly absolutePosition: import("@matter/types").BitFlag;
12
+ readonly positionAwareTilt: import("@matter/types").BitFlag;
13
+ };
14
+ readonly attributes: {
15
+ readonly type: import("@matter/types").FixedAttribute<WindowCovering.WindowCoveringType, any>;
16
+ readonly configStatus: import("@matter/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
17
+ operational: import("@matter/types").BitFlag;
18
+ onlineReserved: import("@matter/types").BitFlag;
19
+ liftMovementReversed: import("@matter/types").BitFlag;
20
+ liftPositionAware: import("@matter/types").BitFlag;
21
+ tiltPositionAware: import("@matter/types").BitFlag;
22
+ liftEncoderControlled: import("@matter/types").BitFlag;
23
+ tiltEncoderControlled: import("@matter/types").BitFlag;
24
+ }>, any>;
25
+ readonly operationalStatus: import("@matter/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
26
+ global: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
27
+ lift: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
28
+ tilt: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
29
+ }>, any>;
30
+ readonly endProductType: import("@matter/types").FixedAttribute<WindowCovering.EndProductType, any>;
31
+ readonly mode: import("@matter/types").WritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
32
+ motorDirectionReversed: import("@matter/types").BitFlag;
33
+ calibrationMode: import("@matter/types").BitFlag;
34
+ maintenanceMode: import("@matter/types").BitFlag;
35
+ ledFeedback: import("@matter/types").BitFlag;
36
+ }>, any>;
37
+ readonly safetyStatus: import("@matter/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
38
+ remoteLockout: import("@matter/types").BitFlag;
39
+ tamperDetection: import("@matter/types").BitFlag;
40
+ failedCommunication: import("@matter/types").BitFlag;
41
+ positionFailure: import("@matter/types").BitFlag;
42
+ thermalProtection: import("@matter/types").BitFlag;
43
+ obstacleDetected: import("@matter/types").BitFlag;
44
+ power: import("@matter/types").BitFlag;
45
+ stopInput: import("@matter/types").BitFlag;
46
+ motorJammed: import("@matter/types").BitFlag;
47
+ hardwareFailure: import("@matter/types").BitFlag;
48
+ manualOperation: import("@matter/types").BitFlag;
49
+ protection: import("@matter/types").BitFlag;
50
+ }>, any>;
51
+ };
52
+ readonly commands: {
53
+ readonly upOrOpen: import("@matter/types").Command<void, void, any>;
54
+ readonly downOrClose: import("@matter/types").Command<void, void, any>;
55
+ readonly stopMotion: import("@matter/types").Command<void, void, any>;
56
+ };
57
+ readonly extensions: readonly [{
58
+ readonly flags: {
59
+ readonly lift: true;
60
+ readonly positionAwareLift: true;
61
+ readonly absolutePosition: true;
62
+ };
63
+ readonly component: {
64
+ readonly attributes: {
65
+ readonly physicalClosedLimitLift: import("@matter/types").OptionalFixedAttribute<number, any>;
66
+ readonly currentPositionLift: import("@matter/types").OptionalAttribute<number | null, any>;
67
+ readonly installedOpenLimitLift: import("@matter/types").Attribute<number, any>;
68
+ readonly installedClosedLimitLift: import("@matter/types").Attribute<number, any>;
69
+ };
70
+ };
71
+ }, {
72
+ readonly flags: {
73
+ readonly tilt: true;
74
+ readonly positionAwareTilt: true;
75
+ readonly absolutePosition: true;
76
+ };
77
+ readonly component: {
78
+ readonly attributes: {
79
+ readonly physicalClosedLimitTilt: import("@matter/types").OptionalFixedAttribute<number, any>;
80
+ readonly currentPositionTilt: import("@matter/types").OptionalAttribute<number | null, any>;
81
+ readonly installedOpenLimitTilt: import("@matter/types").Attribute<number, any>;
82
+ readonly installedClosedLimitTilt: import("@matter/types").Attribute<number, any>;
83
+ };
84
+ };
85
+ }, {
86
+ readonly flags: {
87
+ readonly lift: true;
88
+ };
89
+ readonly component: {
90
+ readonly attributes: {
91
+ readonly numberOfActuationsLift: import("@matter/types").OptionalAttribute<number, any>;
92
+ };
93
+ readonly commands: {
94
+ readonly goToLiftPercentage: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
95
+ liftPercent100thsValue: import("@matter/types").FieldType<number>;
96
+ }>, void, any>;
97
+ };
98
+ };
99
+ }, {
100
+ readonly flags: {
101
+ readonly tilt: true;
102
+ };
103
+ readonly component: {
104
+ readonly attributes: {
105
+ readonly numberOfActuationsTilt: import("@matter/types").OptionalAttribute<number, any>;
106
+ };
107
+ readonly commands: {
108
+ readonly goToTiltPercentage: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
109
+ tiltPercent100thsValue: import("@matter/types").FieldType<number>;
110
+ }>, void, any>;
111
+ };
112
+ };
113
+ }, {
114
+ readonly flags: {
115
+ readonly lift: true;
116
+ readonly positionAwareLift: true;
117
+ };
118
+ readonly component: {
119
+ readonly attributes: {
120
+ readonly currentPositionLiftPercentage: import("@matter/types").OptionalAttribute<number | null, any>;
121
+ readonly targetPositionLiftPercent100ths: import("@matter/types").Attribute<number | null, any>;
122
+ readonly currentPositionLiftPercent100ths: import("@matter/types").Attribute<number | null, any>;
123
+ };
124
+ readonly commands: {
125
+ readonly goToLiftPercentage: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
126
+ liftPercent100thsValue: import("@matter/types").FieldType<number>;
127
+ }>, void, any>;
128
+ };
129
+ };
130
+ }, {
131
+ readonly flags: {
132
+ readonly tilt: true;
133
+ readonly positionAwareTilt: true;
134
+ };
135
+ readonly component: {
136
+ readonly attributes: {
137
+ readonly currentPositionTiltPercentage: import("@matter/types").OptionalAttribute<number | null, any>;
138
+ readonly targetPositionTiltPercent100ths: import("@matter/types").Attribute<number | null, any>;
139
+ readonly currentPositionTiltPercent100ths: import("@matter/types").Attribute<number | null, any>;
140
+ };
141
+ readonly commands: {
142
+ readonly goToTiltPercentage: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
143
+ tiltPercent100thsValue: import("@matter/types").FieldType<number>;
144
+ }>, void, any>;
145
+ };
146
+ };
147
+ }, {
148
+ readonly flags: {
149
+ readonly lift: true;
150
+ readonly absolutePosition: true;
151
+ };
152
+ readonly component: {
153
+ readonly commands: {
154
+ readonly goToLiftValue: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
155
+ liftValue: import("@matter/types").FieldType<number>;
156
+ }>, void, any>;
157
+ };
158
+ };
159
+ }, {
160
+ readonly flags: {
161
+ readonly tilt: true;
162
+ readonly absolutePosition: true;
163
+ };
164
+ readonly component: {
165
+ readonly commands: {
166
+ readonly goToTiltValue: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
167
+ tiltValue: import("@matter/types").FieldType<number>;
168
+ }>, void, any>;
169
+ };
170
+ };
171
+ }, {
172
+ readonly flags: {
173
+ readonly positionAwareLift: true;
174
+ readonly lift: false;
175
+ };
176
+ readonly component: false;
177
+ }, {
178
+ readonly flags: {
179
+ readonly positionAwareTilt: true;
180
+ readonly tilt: false;
181
+ };
182
+ readonly component: false;
183
+ }, {
184
+ readonly flags: {
185
+ readonly lift: false;
186
+ readonly tilt: false;
187
+ };
188
+ readonly component: false;
189
+ }];
190
+ }>, readonly [WindowCovering.Feature.Lift, WindowCovering.Feature.PositionAwareLift, WindowCovering.Feature.Tilt, WindowCovering.Feature.PositionAwareTilt]>, typeof WindowCoveringServer, import("@matter/node/behaviors/window-covering").WindowCoveringInterface>;
191
+ export declare class MatterbridgeWindowCoveringServer extends MatterbridgeWindowCoveringServer_base {
192
+ protected internal: WindowCoveringBaseServer.Internal;
193
+ lookupMovementStatus: string[];
194
+ private getMovementStatusLabel;
195
+ initialize(): Promise<void>;
196
+ upOrOpen(): Promise<void>;
197
+ downOrClose(): Promise<void>;
198
+ stopMotion(): Promise<void>;
199
+ goToLiftPercentage(request: WindowCovering.GoToLiftPercentageRequest): Promise<void>;
200
+ goToTiltPercentage(request: WindowCovering.GoToTiltPercentageRequest): Promise<void>;
201
+ handleMovement(): Promise<void>;
202
+ }
203
+ declare const MatterbridgeLiftWindowCoveringServer_base: import("@matter/node").ClusterBehavior.Type<import("@matter/types").ClusterComposer.WithFeatures<import("@matter/types").ClusterComposer.WithFeatures<import("@matter/types").ClusterType.Of<{
204
+ readonly id: 258;
205
+ readonly name: "WindowCovering";
206
+ readonly revision: 6;
207
+ readonly features: {
208
+ readonly lift: import("@matter/types").BitFlag;
209
+ readonly tilt: import("@matter/types").BitFlag;
210
+ readonly positionAwareLift: import("@matter/types").BitFlag;
211
+ readonly absolutePosition: import("@matter/types").BitFlag;
212
+ readonly positionAwareTilt: import("@matter/types").BitFlag;
213
+ };
214
+ readonly attributes: {
215
+ readonly type: import("@matter/types").FixedAttribute<WindowCovering.WindowCoveringType, any>;
216
+ readonly configStatus: import("@matter/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
217
+ operational: import("@matter/types").BitFlag;
218
+ onlineReserved: import("@matter/types").BitFlag;
219
+ liftMovementReversed: import("@matter/types").BitFlag;
220
+ liftPositionAware: import("@matter/types").BitFlag;
221
+ tiltPositionAware: import("@matter/types").BitFlag;
222
+ liftEncoderControlled: import("@matter/types").BitFlag;
223
+ tiltEncoderControlled: import("@matter/types").BitFlag;
224
+ }>, any>;
225
+ readonly operationalStatus: import("@matter/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
226
+ global: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
227
+ lift: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
228
+ tilt: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
229
+ }>, any>;
230
+ readonly endProductType: import("@matter/types").FixedAttribute<WindowCovering.EndProductType, any>;
231
+ readonly mode: import("@matter/types").WritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
232
+ motorDirectionReversed: import("@matter/types").BitFlag;
233
+ calibrationMode: import("@matter/types").BitFlag;
234
+ maintenanceMode: import("@matter/types").BitFlag;
235
+ ledFeedback: import("@matter/types").BitFlag;
236
+ }>, any>;
237
+ readonly safetyStatus: import("@matter/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
238
+ remoteLockout: import("@matter/types").BitFlag;
239
+ tamperDetection: import("@matter/types").BitFlag;
240
+ failedCommunication: import("@matter/types").BitFlag;
241
+ positionFailure: import("@matter/types").BitFlag;
242
+ thermalProtection: import("@matter/types").BitFlag;
243
+ obstacleDetected: import("@matter/types").BitFlag;
244
+ power: import("@matter/types").BitFlag;
245
+ stopInput: import("@matter/types").BitFlag;
246
+ motorJammed: import("@matter/types").BitFlag;
247
+ hardwareFailure: import("@matter/types").BitFlag;
248
+ manualOperation: import("@matter/types").BitFlag;
249
+ protection: import("@matter/types").BitFlag;
250
+ }>, any>;
251
+ };
252
+ readonly commands: {
253
+ readonly upOrOpen: import("@matter/types").Command<void, void, any>;
254
+ readonly downOrClose: import("@matter/types").Command<void, void, any>;
255
+ readonly stopMotion: import("@matter/types").Command<void, void, any>;
256
+ };
257
+ readonly extensions: readonly [{
258
+ readonly flags: {
259
+ readonly lift: true;
260
+ readonly positionAwareLift: true;
261
+ readonly absolutePosition: true;
262
+ };
263
+ readonly component: {
264
+ readonly attributes: {
265
+ readonly physicalClosedLimitLift: import("@matter/types").OptionalFixedAttribute<number, any>;
266
+ readonly currentPositionLift: import("@matter/types").OptionalAttribute<number | null, any>;
267
+ readonly installedOpenLimitLift: import("@matter/types").Attribute<number, any>;
268
+ readonly installedClosedLimitLift: import("@matter/types").Attribute<number, any>;
269
+ };
270
+ };
271
+ }, {
272
+ readonly flags: {
273
+ readonly tilt: true;
274
+ readonly positionAwareTilt: true;
275
+ readonly absolutePosition: true;
276
+ };
277
+ readonly component: {
278
+ readonly attributes: {
279
+ readonly physicalClosedLimitTilt: import("@matter/types").OptionalFixedAttribute<number, any>;
280
+ readonly currentPositionTilt: import("@matter/types").OptionalAttribute<number | null, any>;
281
+ readonly installedOpenLimitTilt: import("@matter/types").Attribute<number, any>;
282
+ readonly installedClosedLimitTilt: import("@matter/types").Attribute<number, any>;
283
+ };
284
+ };
285
+ }, {
286
+ readonly flags: {
287
+ readonly lift: true;
288
+ };
289
+ readonly component: {
290
+ readonly attributes: {
291
+ readonly numberOfActuationsLift: import("@matter/types").OptionalAttribute<number, any>;
292
+ };
293
+ readonly commands: {
294
+ readonly goToLiftPercentage: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
295
+ liftPercent100thsValue: import("@matter/types").FieldType<number>;
296
+ }>, void, any>;
297
+ };
298
+ };
299
+ }, {
300
+ readonly flags: {
301
+ readonly tilt: true;
302
+ };
303
+ readonly component: {
304
+ readonly attributes: {
305
+ readonly numberOfActuationsTilt: import("@matter/types").OptionalAttribute<number, any>;
306
+ };
307
+ readonly commands: {
308
+ readonly goToTiltPercentage: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
309
+ tiltPercent100thsValue: import("@matter/types").FieldType<number>;
310
+ }>, void, any>;
311
+ };
312
+ };
313
+ }, {
314
+ readonly flags: {
315
+ readonly lift: true;
316
+ readonly positionAwareLift: true;
317
+ };
318
+ readonly component: {
319
+ readonly attributes: {
320
+ readonly currentPositionLiftPercentage: import("@matter/types").OptionalAttribute<number | null, any>;
321
+ readonly targetPositionLiftPercent100ths: import("@matter/types").Attribute<number | null, any>;
322
+ readonly currentPositionLiftPercent100ths: import("@matter/types").Attribute<number | null, any>;
323
+ };
324
+ readonly commands: {
325
+ readonly goToLiftPercentage: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
326
+ liftPercent100thsValue: import("@matter/types").FieldType<number>;
327
+ }>, void, any>;
328
+ };
329
+ };
330
+ }, {
331
+ readonly flags: {
332
+ readonly tilt: true;
333
+ readonly positionAwareTilt: true;
334
+ };
335
+ readonly component: {
336
+ readonly attributes: {
337
+ readonly currentPositionTiltPercentage: import("@matter/types").OptionalAttribute<number | null, any>;
338
+ readonly targetPositionTiltPercent100ths: import("@matter/types").Attribute<number | null, any>;
339
+ readonly currentPositionTiltPercent100ths: import("@matter/types").Attribute<number | null, any>;
340
+ };
341
+ readonly commands: {
342
+ readonly goToTiltPercentage: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
343
+ tiltPercent100thsValue: import("@matter/types").FieldType<number>;
344
+ }>, void, any>;
345
+ };
346
+ };
347
+ }, {
348
+ readonly flags: {
349
+ readonly lift: true;
350
+ readonly absolutePosition: true;
351
+ };
352
+ readonly component: {
353
+ readonly commands: {
354
+ readonly goToLiftValue: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
355
+ liftValue: import("@matter/types").FieldType<number>;
356
+ }>, void, any>;
357
+ };
358
+ };
359
+ }, {
360
+ readonly flags: {
361
+ readonly tilt: true;
362
+ readonly absolutePosition: true;
363
+ };
364
+ readonly component: {
365
+ readonly commands: {
366
+ readonly goToTiltValue: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
367
+ tiltValue: import("@matter/types").FieldType<number>;
368
+ }>, void, any>;
369
+ };
370
+ };
371
+ }, {
372
+ readonly flags: {
373
+ readonly positionAwareLift: true;
374
+ readonly lift: false;
375
+ };
376
+ readonly component: false;
377
+ }, {
378
+ readonly flags: {
379
+ readonly positionAwareTilt: true;
380
+ readonly tilt: false;
381
+ };
382
+ readonly component: false;
383
+ }, {
384
+ readonly flags: {
385
+ readonly lift: false;
386
+ readonly tilt: false;
387
+ };
388
+ readonly component: false;
389
+ }];
390
+ }>, readonly [WindowCovering.Feature.Lift, WindowCovering.Feature.PositionAwareLift, WindowCovering.Feature.Tilt, WindowCovering.Feature.PositionAwareTilt]>, readonly [WindowCovering.Feature.Lift, WindowCovering.Feature.PositionAwareLift]>, typeof MatterbridgeWindowCoveringServer, import("@matter/node/behaviors/window-covering").WindowCoveringInterface>;
391
+ export declare class MatterbridgeLiftWindowCoveringServer extends MatterbridgeLiftWindowCoveringServer_base {
392
+ }
393
+ declare const MatterbridgeLiftTiltWindowCoveringServer_base: import("@matter/node").ClusterBehavior.Type<import("@matter/types").ClusterComposer.WithFeatures<import("@matter/types").ClusterComposer.WithFeatures<import("@matter/types").ClusterType.Of<{
394
+ readonly id: 258;
395
+ readonly name: "WindowCovering";
396
+ readonly revision: 6;
397
+ readonly features: {
398
+ readonly lift: import("@matter/types").BitFlag;
399
+ readonly tilt: import("@matter/types").BitFlag;
400
+ readonly positionAwareLift: import("@matter/types").BitFlag;
401
+ readonly absolutePosition: import("@matter/types").BitFlag;
402
+ readonly positionAwareTilt: import("@matter/types").BitFlag;
403
+ };
404
+ readonly attributes: {
405
+ readonly type: import("@matter/types").FixedAttribute<WindowCovering.WindowCoveringType, any>;
406
+ readonly configStatus: import("@matter/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
407
+ operational: import("@matter/types").BitFlag;
408
+ onlineReserved: import("@matter/types").BitFlag;
409
+ liftMovementReversed: import("@matter/types").BitFlag;
410
+ liftPositionAware: import("@matter/types").BitFlag;
411
+ tiltPositionAware: import("@matter/types").BitFlag;
412
+ liftEncoderControlled: import("@matter/types").BitFlag;
413
+ tiltEncoderControlled: import("@matter/types").BitFlag;
414
+ }>, any>;
415
+ readonly operationalStatus: import("@matter/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
416
+ global: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
417
+ lift: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
418
+ tilt: import("@matter/types").BitFieldEnum<WindowCovering.MovementStatus>;
419
+ }>, any>;
420
+ readonly endProductType: import("@matter/types").FixedAttribute<WindowCovering.EndProductType, any>;
421
+ readonly mode: import("@matter/types").WritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
422
+ motorDirectionReversed: import("@matter/types").BitFlag;
423
+ calibrationMode: import("@matter/types").BitFlag;
424
+ maintenanceMode: import("@matter/types").BitFlag;
425
+ ledFeedback: import("@matter/types").BitFlag;
426
+ }>, any>;
427
+ readonly safetyStatus: import("@matter/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
428
+ remoteLockout: import("@matter/types").BitFlag;
429
+ tamperDetection: import("@matter/types").BitFlag;
430
+ failedCommunication: import("@matter/types").BitFlag;
431
+ positionFailure: import("@matter/types").BitFlag;
432
+ thermalProtection: import("@matter/types").BitFlag;
433
+ obstacleDetected: import("@matter/types").BitFlag;
434
+ power: import("@matter/types").BitFlag;
435
+ stopInput: import("@matter/types").BitFlag;
436
+ motorJammed: import("@matter/types").BitFlag;
437
+ hardwareFailure: import("@matter/types").BitFlag;
438
+ manualOperation: import("@matter/types").BitFlag;
439
+ protection: import("@matter/types").BitFlag;
440
+ }>, any>;
441
+ };
442
+ readonly commands: {
443
+ readonly upOrOpen: import("@matter/types").Command<void, void, any>;
444
+ readonly downOrClose: import("@matter/types").Command<void, void, any>;
445
+ readonly stopMotion: import("@matter/types").Command<void, void, any>;
446
+ };
447
+ readonly extensions: readonly [{
448
+ readonly flags: {
449
+ readonly lift: true;
450
+ readonly positionAwareLift: true;
451
+ readonly absolutePosition: true;
452
+ };
453
+ readonly component: {
454
+ readonly attributes: {
455
+ readonly physicalClosedLimitLift: import("@matter/types").OptionalFixedAttribute<number, any>;
456
+ readonly currentPositionLift: import("@matter/types").OptionalAttribute<number | null, any>;
457
+ readonly installedOpenLimitLift: import("@matter/types").Attribute<number, any>;
458
+ readonly installedClosedLimitLift: import("@matter/types").Attribute<number, any>;
459
+ };
460
+ };
461
+ }, {
462
+ readonly flags: {
463
+ readonly tilt: true;
464
+ readonly positionAwareTilt: true;
465
+ readonly absolutePosition: true;
466
+ };
467
+ readonly component: {
468
+ readonly attributes: {
469
+ readonly physicalClosedLimitTilt: import("@matter/types").OptionalFixedAttribute<number, any>;
470
+ readonly currentPositionTilt: import("@matter/types").OptionalAttribute<number | null, any>;
471
+ readonly installedOpenLimitTilt: import("@matter/types").Attribute<number, any>;
472
+ readonly installedClosedLimitTilt: import("@matter/types").Attribute<number, any>;
473
+ };
474
+ };
475
+ }, {
476
+ readonly flags: {
477
+ readonly lift: true;
478
+ };
479
+ readonly component: {
480
+ readonly attributes: {
481
+ readonly numberOfActuationsLift: import("@matter/types").OptionalAttribute<number, any>;
482
+ };
483
+ readonly commands: {
484
+ readonly goToLiftPercentage: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
485
+ liftPercent100thsValue: import("@matter/types").FieldType<number>;
486
+ }>, void, any>;
487
+ };
488
+ };
489
+ }, {
490
+ readonly flags: {
491
+ readonly tilt: true;
492
+ };
493
+ readonly component: {
494
+ readonly attributes: {
495
+ readonly numberOfActuationsTilt: import("@matter/types").OptionalAttribute<number, any>;
496
+ };
497
+ readonly commands: {
498
+ readonly goToTiltPercentage: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
499
+ tiltPercent100thsValue: import("@matter/types").FieldType<number>;
500
+ }>, void, any>;
501
+ };
502
+ };
503
+ }, {
504
+ readonly flags: {
505
+ readonly lift: true;
506
+ readonly positionAwareLift: true;
507
+ };
508
+ readonly component: {
509
+ readonly attributes: {
510
+ readonly currentPositionLiftPercentage: import("@matter/types").OptionalAttribute<number | null, any>;
511
+ readonly targetPositionLiftPercent100ths: import("@matter/types").Attribute<number | null, any>;
512
+ readonly currentPositionLiftPercent100ths: import("@matter/types").Attribute<number | null, any>;
513
+ };
514
+ readonly commands: {
515
+ readonly goToLiftPercentage: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
516
+ liftPercent100thsValue: import("@matter/types").FieldType<number>;
517
+ }>, void, any>;
518
+ };
519
+ };
520
+ }, {
521
+ readonly flags: {
522
+ readonly tilt: true;
523
+ readonly positionAwareTilt: true;
524
+ };
525
+ readonly component: {
526
+ readonly attributes: {
527
+ readonly currentPositionTiltPercentage: import("@matter/types").OptionalAttribute<number | null, any>;
528
+ readonly targetPositionTiltPercent100ths: import("@matter/types").Attribute<number | null, any>;
529
+ readonly currentPositionTiltPercent100ths: import("@matter/types").Attribute<number | null, any>;
530
+ };
531
+ readonly commands: {
532
+ readonly goToTiltPercentage: import("@matter/types").Command<import("@matter/types").TypeFromFields<{
533
+ tiltPercent100thsValue: import("@matter/types").FieldType<number>;
534
+ }>, void, any>;
535
+ };
536
+ };
537
+ }, {
538
+ readonly flags: {
539
+ readonly lift: true;
540
+ readonly absolutePosition: true;
541
+ };
542
+ readonly component: {
543
+ readonly commands: {
544
+ readonly goToLiftValue: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
545
+ liftValue: import("@matter/types").FieldType<number>;
546
+ }>, void, any>;
547
+ };
548
+ };
549
+ }, {
550
+ readonly flags: {
551
+ readonly tilt: true;
552
+ readonly absolutePosition: true;
553
+ };
554
+ readonly component: {
555
+ readonly commands: {
556
+ readonly goToTiltValue: import("@matter/types").OptionalCommand<import("@matter/types").TypeFromFields<{
557
+ tiltValue: import("@matter/types").FieldType<number>;
558
+ }>, void, any>;
559
+ };
560
+ };
561
+ }, {
562
+ readonly flags: {
563
+ readonly positionAwareLift: true;
564
+ readonly lift: false;
565
+ };
566
+ readonly component: false;
567
+ }, {
568
+ readonly flags: {
569
+ readonly positionAwareTilt: true;
570
+ readonly tilt: false;
571
+ };
572
+ readonly component: false;
573
+ }, {
574
+ readonly flags: {
575
+ readonly lift: false;
576
+ readonly tilt: false;
577
+ };
578
+ readonly component: false;
579
+ }];
580
+ }>, readonly [WindowCovering.Feature.Lift, WindowCovering.Feature.PositionAwareLift, WindowCovering.Feature.Tilt, WindowCovering.Feature.PositionAwareTilt]>, readonly [WindowCovering.Feature.Lift, WindowCovering.Feature.PositionAwareLift, WindowCovering.Feature.Tilt, WindowCovering.Feature.PositionAwareTilt]>, typeof MatterbridgeWindowCoveringServer, import("@matter/node/behaviors/window-covering").WindowCoveringInterface>;
581
+ export declare class MatterbridgeLiftTiltWindowCoveringServer extends MatterbridgeLiftTiltWindowCoveringServer_base {
582
+ }
583
+ export {};