matterbridge 1.6.7 → 1.6.8-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/README-SERVICE.md +12 -3
- package/README.md +2 -0
- package/dist/cli.js +0 -0
- package/dist/deviceManager.d.ts +1 -1
- package/dist/deviceManager.d.ts.map +1 -1
- package/dist/matter/export.d.ts.map +1 -1
- package/dist/matter/export.js +5 -0
- package/dist/matter/export.js.map +1 -1
- package/dist/matterbridge.d.ts +13 -13
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +2 -1
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeBehaviors.d.ts +24 -850
- package/dist/matterbridgeBehaviors.d.ts.map +1 -1
- package/dist/matterbridgeDevice.d.ts +64 -5985
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +24 -0
- package/dist/matterbridgeDevice.js.map +1 -1
- package/dist/matterbridgeEdge.d.ts +13 -15
- package/dist/matterbridgeEdge.d.ts.map +1 -1
- package/dist/matterbridgeEdge.js +1 -3
- package/dist/matterbridgeEdge.js.map +1 -1
- package/dist/matterbridgeEndpoint.d.ts +76 -9106
- package/dist/matterbridgeEndpoint.d.ts.map +1 -1
- package/dist/matterbridgeEndpoint.js +24 -0
- package/dist/matterbridgeEndpoint.js.map +1 -1
- package/dist/matterbridgePlatform.d.ts +7 -7
- package/dist/pluginManager.d.ts +1 -1
- package/dist/pluginManager.d.ts.map +1 -1
- package/dist/utils/utils.d.ts +1 -1
- package/dist/utils/utils.d.ts.map +1 -1
- package/npm-shrinkwrap.json +7 -71
- package/package.json +1 -2
- package/dist/cli.d.ts +0 -25
- package/dist/cluster/export.d.ts +0 -2
- package/dist/defaultConfigSchema.d.ts +0 -27
- package/dist/index.d.ts +0 -40
- package/dist/logger/export.d.ts +0 -2
- package/dist/matter/export.d.ts +0 -6
- package/dist/matterbridgeAccessoryPlatform.d.ts +0 -39
- package/dist/matterbridgeDynamicPlatform.d.ts +0 -39
- package/dist/matterbridgeTypes.d.ts +0 -162
- package/dist/matterbridgeWebsocket.d.ts +0 -49
- package/dist/storage/export.d.ts +0 -2
- package/dist/utils/colorUtils.d.ts +0 -61
- package/dist/utils/export.d.ts +0 -3
|
@@ -21,9 +21,8 @@
|
|
|
21
21
|
* limitations under the License. *
|
|
22
22
|
*/
|
|
23
23
|
import { Behavior, NamedHandler } from '@matter/main';
|
|
24
|
-
import {
|
|
24
|
+
import { DoorLockServer, IdentifyServer, LevelControlServer, MovementType, MovementDirection } from '@matter/main/behaviors';
|
|
25
25
|
import { BooleanStateConfiguration, ColorControl, FanControl, Identify, LevelControl, Thermostat, WindowCovering } from '@matter/main/clusters';
|
|
26
|
-
import { TypeFromPartialBitSchema } from '@matter/main/types';
|
|
27
26
|
import { OnOffServer } from '@matter/node/behaviors/on-off';
|
|
28
27
|
import { AnsiLogger } from 'node-ansi-logger';
|
|
29
28
|
import { MatterbridgeEndpointCommands } from './matterbridgeEndpoint.js';
|
|
@@ -73,870 +72,45 @@ export declare class MatterbridgeIdentifyServer extends IdentifyServer {
|
|
|
73
72
|
triggerEffect({ effectIdentifier, effectVariant }: Identify.TriggerEffectRequest): void;
|
|
74
73
|
}
|
|
75
74
|
export declare class MatterbridgeOnOffServer extends OnOffServer {
|
|
76
|
-
on():
|
|
77
|
-
off():
|
|
78
|
-
toggle():
|
|
75
|
+
on(): any;
|
|
76
|
+
off(): any;
|
|
77
|
+
toggle(): any;
|
|
79
78
|
}
|
|
80
79
|
export declare class MatterbridgeLevelControlServer extends LevelControlServer {
|
|
81
|
-
moveToLevel({ level, transitionTime, optionsMask, optionsOverride }: LevelControl.MoveToLevelRequest):
|
|
82
|
-
moveToLevelWithOnOff({ level, transitionTime, optionsMask, optionsOverride }: LevelControl.MoveToLevelRequest):
|
|
80
|
+
moveToLevel({ level, transitionTime, optionsMask, optionsOverride }: LevelControl.MoveToLevelRequest): any;
|
|
81
|
+
moveToLevelWithOnOff({ level, transitionTime, optionsMask, optionsOverride }: LevelControl.MoveToLevelRequest): any;
|
|
83
82
|
}
|
|
84
|
-
declare const MatterbridgeColorControlServer_base:
|
|
85
|
-
readonly id: 768;
|
|
86
|
-
readonly name: "ColorControl";
|
|
87
|
-
readonly revision: 6;
|
|
88
|
-
readonly features: {
|
|
89
|
-
readonly hueSaturation: import("@matter/main/types").BitFlag;
|
|
90
|
-
readonly enhancedHue: import("@matter/main/types").BitFlag;
|
|
91
|
-
readonly colorLoop: import("@matter/main/types").BitFlag;
|
|
92
|
-
readonly xy: import("@matter/main/types").BitFlag;
|
|
93
|
-
readonly colorTemperature: import("@matter/main/types").BitFlag;
|
|
94
|
-
};
|
|
95
|
-
readonly attributes: {
|
|
96
|
-
readonly remainingTime: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
97
|
-
readonly driftCompensation: import("@matter/main/types").OptionalAttribute<ColorControl.DriftCompensation, any>;
|
|
98
|
-
readonly compensationText: import("@matter/main/types").OptionalAttribute<string, any>;
|
|
99
|
-
readonly colorMode: import("@matter/main/types").Attribute<ColorControl.ColorMode, any>;
|
|
100
|
-
readonly options: import("@matter/main/types").WritableAttribute<TypeFromPartialBitSchema<{
|
|
101
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
102
|
-
}>, any>;
|
|
103
|
-
readonly numberOfPrimaries: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
104
|
-
readonly primary1X: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
105
|
-
readonly primary1Y: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
106
|
-
readonly primary1Intensity: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
|
|
107
|
-
readonly primary2X: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
108
|
-
readonly primary2Y: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
109
|
-
readonly primary2Intensity: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
|
|
110
|
-
readonly primary3X: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
111
|
-
readonly primary3Y: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
112
|
-
readonly primary3Intensity: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
|
|
113
|
-
readonly primary4X: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
114
|
-
readonly primary4Y: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
115
|
-
readonly primary4Intensity: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
|
|
116
|
-
readonly primary5X: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
117
|
-
readonly primary5Y: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
118
|
-
readonly primary5Intensity: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
|
|
119
|
-
readonly primary6X: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
120
|
-
readonly primary6Y: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
121
|
-
readonly primary6Intensity: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
|
|
122
|
-
readonly whitePointX: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
123
|
-
readonly whitePointY: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
124
|
-
readonly colorPointRx: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
125
|
-
readonly colorPointRy: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
126
|
-
readonly colorPointRIntensity: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
127
|
-
readonly colorPointGx: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
128
|
-
readonly colorPointGy: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
129
|
-
readonly colorPointGIntensity: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
130
|
-
readonly colorPointBx: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
131
|
-
readonly colorPointBy: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
132
|
-
readonly colorPointBIntensity: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
133
|
-
readonly enhancedColorMode: import("@matter/main/types").Attribute<ColorControl.EnhancedColorMode, any>;
|
|
134
|
-
readonly colorCapabilities: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
135
|
-
hueSaturation: import("@matter/main/types").BitFlag;
|
|
136
|
-
enhancedHue: import("@matter/main/types").BitFlag;
|
|
137
|
-
colorLoop: import("@matter/main/types").BitFlag;
|
|
138
|
-
xy: import("@matter/main/types").BitFlag;
|
|
139
|
-
colorTemperature: import("@matter/main/types").BitFlag;
|
|
140
|
-
}>, any>;
|
|
141
|
-
};
|
|
142
|
-
readonly extensions: readonly [{
|
|
143
|
-
readonly flags: {
|
|
144
|
-
readonly hueSaturation: true;
|
|
145
|
-
};
|
|
146
|
-
readonly component: {
|
|
147
|
-
readonly attributes: {
|
|
148
|
-
readonly currentHue: import("@matter/main/types").Attribute<number, any>;
|
|
149
|
-
readonly currentSaturation: import("@matter/main/types").Attribute<number, any>;
|
|
150
|
-
};
|
|
151
|
-
readonly commands: {
|
|
152
|
-
readonly moveToHue: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
153
|
-
hue: import("@matter/main/types").FieldType<number>;
|
|
154
|
-
direction: import("@matter/main/types").FieldType<ColorControl.Direction>;
|
|
155
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
156
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
157
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
158
|
-
}>>;
|
|
159
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
160
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
161
|
-
}>>;
|
|
162
|
-
}>, void, any>;
|
|
163
|
-
readonly moveHue: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
164
|
-
moveMode: import("@matter/main/types").FieldType<ColorControl.MoveMode>;
|
|
165
|
-
rate: import("@matter/main/types").FieldType<number>;
|
|
166
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
167
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
168
|
-
}>>;
|
|
169
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
170
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
171
|
-
}>>;
|
|
172
|
-
}>, void, any>;
|
|
173
|
-
readonly stepHue: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
174
|
-
stepMode: import("@matter/main/types").FieldType<ColorControl.StepMode>;
|
|
175
|
-
stepSize: import("@matter/main/types").FieldType<number>;
|
|
176
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
177
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
178
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
179
|
-
}>>;
|
|
180
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
181
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
182
|
-
}>>;
|
|
183
|
-
}>, void, any>;
|
|
184
|
-
readonly moveToSaturation: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
185
|
-
saturation: import("@matter/main/types").FieldType<number>;
|
|
186
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
187
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
188
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
189
|
-
}>>;
|
|
190
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
191
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
192
|
-
}>>;
|
|
193
|
-
}>, void, any>;
|
|
194
|
-
readonly moveSaturation: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
195
|
-
moveMode: import("@matter/main/types").FieldType<ColorControl.MoveMode>;
|
|
196
|
-
rate: import("@matter/main/types").FieldType<number>;
|
|
197
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
198
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
199
|
-
}>>;
|
|
200
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
201
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
202
|
-
}>>;
|
|
203
|
-
}>, void, any>;
|
|
204
|
-
readonly stepSaturation: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
205
|
-
stepMode: import("@matter/main/types").FieldType<ColorControl.StepMode>;
|
|
206
|
-
stepSize: import("@matter/main/types").FieldType<number>;
|
|
207
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
208
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
209
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
210
|
-
}>>;
|
|
211
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
212
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
213
|
-
}>>;
|
|
214
|
-
}>, void, any>;
|
|
215
|
-
readonly moveToHueAndSaturation: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
216
|
-
hue: import("@matter/main/types").FieldType<number>;
|
|
217
|
-
saturation: import("@matter/main/types").FieldType<number>;
|
|
218
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
219
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
220
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
221
|
-
}>>;
|
|
222
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
223
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
224
|
-
}>>;
|
|
225
|
-
}>, void, any>;
|
|
226
|
-
};
|
|
227
|
-
};
|
|
228
|
-
}, {
|
|
229
|
-
readonly flags: {
|
|
230
|
-
readonly xy: true;
|
|
231
|
-
};
|
|
232
|
-
readonly component: {
|
|
233
|
-
readonly attributes: {
|
|
234
|
-
readonly currentX: import("@matter/main/types").Attribute<number, any>;
|
|
235
|
-
readonly currentY: import("@matter/main/types").Attribute<number, any>;
|
|
236
|
-
};
|
|
237
|
-
readonly commands: {
|
|
238
|
-
readonly moveToColor: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
239
|
-
colorX: import("@matter/main/types").FieldType<number>;
|
|
240
|
-
colorY: import("@matter/main/types").FieldType<number>;
|
|
241
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
242
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
243
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
244
|
-
}>>;
|
|
245
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
246
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
247
|
-
}>>;
|
|
248
|
-
}>, void, any>;
|
|
249
|
-
readonly moveColor: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
250
|
-
rateX: import("@matter/main/types").FieldType<number>;
|
|
251
|
-
rateY: import("@matter/main/types").FieldType<number>;
|
|
252
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
253
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
254
|
-
}>>;
|
|
255
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
256
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
257
|
-
}>>;
|
|
258
|
-
}>, void, any>;
|
|
259
|
-
readonly stepColor: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
260
|
-
stepX: import("@matter/main/types").FieldType<number>;
|
|
261
|
-
stepY: import("@matter/main/types").FieldType<number>;
|
|
262
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
263
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
264
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
265
|
-
}>>;
|
|
266
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
267
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
268
|
-
}>>;
|
|
269
|
-
}>, void, any>;
|
|
270
|
-
};
|
|
271
|
-
};
|
|
272
|
-
}, {
|
|
273
|
-
readonly flags: {
|
|
274
|
-
readonly colorTemperature: true;
|
|
275
|
-
};
|
|
276
|
-
readonly component: {
|
|
277
|
-
readonly attributes: {
|
|
278
|
-
readonly colorTemperatureMireds: import("@matter/main/types").Attribute<number, any>;
|
|
279
|
-
readonly colorTempPhysicalMinMireds: import("@matter/main/types").Attribute<number, any>;
|
|
280
|
-
readonly colorTempPhysicalMaxMireds: import("@matter/main/types").Attribute<number, any>;
|
|
281
|
-
readonly coupleColorTempToLevelMinMireds: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
282
|
-
readonly startUpColorTemperatureMireds: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
283
|
-
};
|
|
284
|
-
readonly commands: {
|
|
285
|
-
readonly moveToColorTemperature: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
286
|
-
colorTemperatureMireds: import("@matter/main/types").FieldType<number>;
|
|
287
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
288
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
289
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
290
|
-
}>>;
|
|
291
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
292
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
293
|
-
}>>;
|
|
294
|
-
}>, void, any>;
|
|
295
|
-
readonly moveColorTemperature: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
296
|
-
moveMode: import("@matter/main/types").FieldType<ColorControl.MoveMode>;
|
|
297
|
-
rate: import("@matter/main/types").FieldType<number>;
|
|
298
|
-
colorTemperatureMinimumMireds: import("@matter/main/types").FieldType<number>;
|
|
299
|
-
colorTemperatureMaximumMireds: import("@matter/main/types").FieldType<number>;
|
|
300
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
301
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
302
|
-
}>>;
|
|
303
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
304
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
305
|
-
}>>;
|
|
306
|
-
}>, void, any>;
|
|
307
|
-
readonly stepColorTemperature: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
308
|
-
stepMode: import("@matter/main/types").FieldType<ColorControl.StepMode>;
|
|
309
|
-
stepSize: import("@matter/main/types").FieldType<number>;
|
|
310
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
311
|
-
colorTemperatureMinimumMireds: import("@matter/main/types").FieldType<number>;
|
|
312
|
-
colorTemperatureMaximumMireds: import("@matter/main/types").FieldType<number>;
|
|
313
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
314
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
315
|
-
}>>;
|
|
316
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
317
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
318
|
-
}>>;
|
|
319
|
-
}>, void, any>;
|
|
320
|
-
};
|
|
321
|
-
};
|
|
322
|
-
}, {
|
|
323
|
-
readonly flags: {
|
|
324
|
-
readonly enhancedHue: true;
|
|
325
|
-
};
|
|
326
|
-
readonly component: {
|
|
327
|
-
readonly attributes: {
|
|
328
|
-
readonly enhancedCurrentHue: import("@matter/main/types").Attribute<number, any>;
|
|
329
|
-
};
|
|
330
|
-
readonly commands: {
|
|
331
|
-
readonly enhancedMoveToHue: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
332
|
-
enhancedHue: import("@matter/main/types").FieldType<number>;
|
|
333
|
-
direction: import("@matter/main/types").FieldType<ColorControl.Direction>;
|
|
334
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
335
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
336
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
337
|
-
}>>;
|
|
338
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
339
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
340
|
-
}>>;
|
|
341
|
-
}>, void, any>;
|
|
342
|
-
readonly enhancedMoveHue: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
343
|
-
moveMode: import("@matter/main/types").FieldType<ColorControl.MoveMode>;
|
|
344
|
-
rate: import("@matter/main/types").FieldType<number>;
|
|
345
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
346
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
347
|
-
}>>;
|
|
348
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
349
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
350
|
-
}>>;
|
|
351
|
-
}>, void, any>;
|
|
352
|
-
readonly enhancedStepHue: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
353
|
-
stepMode: import("@matter/main/types").FieldType<ColorControl.StepMode>;
|
|
354
|
-
stepSize: import("@matter/main/types").FieldType<number>;
|
|
355
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
356
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
357
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
358
|
-
}>>;
|
|
359
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
360
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
361
|
-
}>>;
|
|
362
|
-
}>, void, any>;
|
|
363
|
-
readonly enhancedMoveToHueAndSaturation: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
364
|
-
enhancedHue: import("@matter/main/types").FieldType<number>;
|
|
365
|
-
saturation: import("@matter/main/types").FieldType<number>;
|
|
366
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
367
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
368
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
369
|
-
}>>;
|
|
370
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
371
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
372
|
-
}>>;
|
|
373
|
-
}>, void, any>;
|
|
374
|
-
};
|
|
375
|
-
};
|
|
376
|
-
}, {
|
|
377
|
-
readonly flags: {
|
|
378
|
-
readonly colorLoop: true;
|
|
379
|
-
};
|
|
380
|
-
readonly component: {
|
|
381
|
-
readonly attributes: {
|
|
382
|
-
readonly colorLoopActive: import("@matter/main/types").Attribute<ColorControl.ColorLoopActive, any>;
|
|
383
|
-
readonly colorLoopDirection: import("@matter/main/types").Attribute<ColorControl.ColorLoopDirection, any>;
|
|
384
|
-
readonly colorLoopTime: import("@matter/main/types").Attribute<number, any>;
|
|
385
|
-
readonly colorLoopStartEnhancedHue: import("@matter/main/types").Attribute<number, any>;
|
|
386
|
-
readonly colorLoopStoredEnhancedHue: import("@matter/main/types").Attribute<number, any>;
|
|
387
|
-
};
|
|
388
|
-
readonly commands: {
|
|
389
|
-
readonly colorLoopSet: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
390
|
-
updateFlags: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
391
|
-
updateAction: import("@matter/main/types").BitFlag;
|
|
392
|
-
updateDirection: import("@matter/main/types").BitFlag;
|
|
393
|
-
updateTime: import("@matter/main/types").BitFlag;
|
|
394
|
-
updateStartHue: import("@matter/main/types").BitFlag;
|
|
395
|
-
reserved: import("@matter/main/types").BitField;
|
|
396
|
-
}>>;
|
|
397
|
-
action: import("@matter/main/types").FieldType<ColorControl.Action>;
|
|
398
|
-
direction: import("@matter/main/types").FieldType<ColorControl.ColorLoopSetDirection>;
|
|
399
|
-
time: import("@matter/main/types").FieldType<number>;
|
|
400
|
-
startHue: import("@matter/main/types").FieldType<number>;
|
|
401
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
402
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
403
|
-
}>>;
|
|
404
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
405
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
406
|
-
}>>;
|
|
407
|
-
}>, void, any>;
|
|
408
|
-
};
|
|
409
|
-
};
|
|
410
|
-
}, {
|
|
411
|
-
readonly flags: {
|
|
412
|
-
readonly hueSaturation: true;
|
|
413
|
-
};
|
|
414
|
-
readonly component: {
|
|
415
|
-
readonly commands: {
|
|
416
|
-
readonly stopMoveStep: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
417
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
418
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
419
|
-
}>>;
|
|
420
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
421
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
422
|
-
}>>;
|
|
423
|
-
}>, void, any>;
|
|
424
|
-
};
|
|
425
|
-
};
|
|
426
|
-
}, {
|
|
427
|
-
readonly flags: {
|
|
428
|
-
readonly xy: true;
|
|
429
|
-
};
|
|
430
|
-
readonly component: {
|
|
431
|
-
readonly commands: {
|
|
432
|
-
readonly stopMoveStep: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
433
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
434
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
435
|
-
}>>;
|
|
436
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
437
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
438
|
-
}>>;
|
|
439
|
-
}>, void, any>;
|
|
440
|
-
};
|
|
441
|
-
};
|
|
442
|
-
}, {
|
|
443
|
-
readonly flags: {
|
|
444
|
-
readonly colorTemperature: true;
|
|
445
|
-
};
|
|
446
|
-
readonly component: {
|
|
447
|
-
readonly commands: {
|
|
448
|
-
readonly stopMoveStep: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
449
|
-
optionsMask: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
450
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
451
|
-
}>>;
|
|
452
|
-
optionsOverride: import("@matter/main/types").FieldType<TypeFromPartialBitSchema<{
|
|
453
|
-
executeIfOff: import("@matter/main/types").BitFlag;
|
|
454
|
-
}>>;
|
|
455
|
-
}>, void, any>;
|
|
456
|
-
};
|
|
457
|
-
};
|
|
458
|
-
}];
|
|
459
|
-
}>, readonly [ColorControl.Feature.HueSaturation, ColorControl.Feature.Xy, ColorControl.Feature.ColorTemperature]>, typeof ColorControlServer, import("@matter/main/behaviors").ColorControlInterface>;
|
|
83
|
+
declare const MatterbridgeColorControlServer_base: any;
|
|
460
84
|
export declare class MatterbridgeColorControlServer extends MatterbridgeColorControlServer_base {
|
|
461
|
-
moveToHue({ optionsMask, optionsOverride, hue, direction, transitionTime }: ColorControl.MoveToHueRequest):
|
|
462
|
-
moveToSaturation({ optionsMask, optionsOverride, saturation, transitionTime }: ColorControl.MoveToSaturationRequest):
|
|
463
|
-
moveToHueAndSaturation({ optionsOverride, optionsMask, saturation, hue, transitionTime }: ColorControl.MoveToHueAndSaturationRequest):
|
|
464
|
-
moveToColor({ optionsMask, optionsOverride, colorX, colorY, transitionTime }: ColorControl.MoveToColorRequest):
|
|
465
|
-
moveToColorTemperature({ optionsOverride, optionsMask, colorTemperatureMireds, transitionTime }: ColorControl.MoveToColorTemperatureRequest):
|
|
85
|
+
moveToHue({ optionsMask, optionsOverride, hue, direction, transitionTime }: ColorControl.MoveToHueRequest): any;
|
|
86
|
+
moveToSaturation({ optionsMask, optionsOverride, saturation, transitionTime }: ColorControl.MoveToSaturationRequest): any;
|
|
87
|
+
moveToHueAndSaturation({ optionsOverride, optionsMask, saturation, hue, transitionTime }: ColorControl.MoveToHueAndSaturationRequest): any;
|
|
88
|
+
moveToColor({ optionsMask, optionsOverride, colorX, colorY, transitionTime }: ColorControl.MoveToColorRequest): any;
|
|
89
|
+
moveToColorTemperature({ optionsOverride, optionsMask, colorTemperatureMireds, transitionTime }: ColorControl.MoveToColorTemperatureRequest): any;
|
|
466
90
|
}
|
|
467
|
-
declare const MatterbridgeWindowCoveringServer_base:
|
|
468
|
-
readonly id: 258;
|
|
469
|
-
readonly name: "WindowCovering";
|
|
470
|
-
readonly revision: 5;
|
|
471
|
-
readonly features: {
|
|
472
|
-
readonly lift: import("@matter/main/types").BitFlag;
|
|
473
|
-
readonly tilt: import("@matter/main/types").BitFlag;
|
|
474
|
-
readonly positionAwareLift: import("@matter/main/types").BitFlag;
|
|
475
|
-
readonly absolutePosition: import("@matter/main/types").BitFlag;
|
|
476
|
-
readonly positionAwareTilt: import("@matter/main/types").BitFlag;
|
|
477
|
-
};
|
|
478
|
-
readonly attributes: {
|
|
479
|
-
readonly type: import("@matter/main/types").FixedAttribute<WindowCovering.WindowCoveringType, any>;
|
|
480
|
-
readonly configStatus: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
481
|
-
operational: import("@matter/main/types").BitFlag;
|
|
482
|
-
onlineReserved: import("@matter/main/types").BitFlag;
|
|
483
|
-
liftMovementReversed: import("@matter/main/types").BitFlag;
|
|
484
|
-
liftPositionAware: import("@matter/main/types").BitFlag;
|
|
485
|
-
tiltPositionAware: import("@matter/main/types").BitFlag;
|
|
486
|
-
liftEncoderControlled: import("@matter/main/types").BitFlag;
|
|
487
|
-
tiltEncoderControlled: import("@matter/main/types").BitFlag;
|
|
488
|
-
}>, any>;
|
|
489
|
-
readonly operationalStatus: import("@matter/main/types").Attribute<TypeFromPartialBitSchema<{
|
|
490
|
-
global: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
491
|
-
lift: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
492
|
-
tilt: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
493
|
-
}>, any>;
|
|
494
|
-
readonly endProductType: import("@matter/main/types").FixedAttribute<WindowCovering.EndProductType, any>;
|
|
495
|
-
readonly mode: import("@matter/main/types").WritableAttribute<TypeFromPartialBitSchema<{
|
|
496
|
-
motorDirectionReversed: import("@matter/main/types").BitFlag;
|
|
497
|
-
calibrationMode: import("@matter/main/types").BitFlag;
|
|
498
|
-
maintenanceMode: import("@matter/main/types").BitFlag;
|
|
499
|
-
ledFeedback: import("@matter/main/types").BitFlag;
|
|
500
|
-
}>, any>;
|
|
501
|
-
readonly safetyStatus: import("@matter/main/types").OptionalAttribute<TypeFromPartialBitSchema<{
|
|
502
|
-
remoteLockout: import("@matter/main/types").BitFlag;
|
|
503
|
-
tamperDetection: import("@matter/main/types").BitFlag;
|
|
504
|
-
failedCommunication: import("@matter/main/types").BitFlag;
|
|
505
|
-
positionFailure: import("@matter/main/types").BitFlag;
|
|
506
|
-
thermalProtection: import("@matter/main/types").BitFlag;
|
|
507
|
-
obstacleDetected: import("@matter/main/types").BitFlag;
|
|
508
|
-
power: import("@matter/main/types").BitFlag;
|
|
509
|
-
stopInput: import("@matter/main/types").BitFlag;
|
|
510
|
-
motorJammed: import("@matter/main/types").BitFlag;
|
|
511
|
-
hardwareFailure: import("@matter/main/types").BitFlag;
|
|
512
|
-
manualOperation: import("@matter/main/types").BitFlag;
|
|
513
|
-
protection: import("@matter/main/types").BitFlag;
|
|
514
|
-
}>, any>;
|
|
515
|
-
};
|
|
516
|
-
readonly commands: {
|
|
517
|
-
readonly upOrOpen: import("@matter/main/types").Command<void, void, any>;
|
|
518
|
-
readonly downOrClose: import("@matter/main/types").Command<void, void, any>;
|
|
519
|
-
readonly stopMotion: import("@matter/main/types").Command<void, void, any>;
|
|
520
|
-
};
|
|
521
|
-
readonly extensions: readonly [{
|
|
522
|
-
readonly flags: {
|
|
523
|
-
readonly lift: true;
|
|
524
|
-
readonly positionAwareLift: true;
|
|
525
|
-
readonly absolutePosition: true;
|
|
526
|
-
};
|
|
527
|
-
readonly component: {
|
|
528
|
-
readonly attributes: {
|
|
529
|
-
readonly physicalClosedLimitLift: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
530
|
-
readonly currentPositionLift: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
531
|
-
readonly installedOpenLimitLift: import("@matter/main/types").Attribute<number, any>;
|
|
532
|
-
readonly installedClosedLimitLift: import("@matter/main/types").Attribute<number, any>;
|
|
533
|
-
};
|
|
534
|
-
};
|
|
535
|
-
}, {
|
|
536
|
-
readonly flags: {
|
|
537
|
-
readonly tilt: true;
|
|
538
|
-
readonly positionAwareTilt: true;
|
|
539
|
-
readonly absolutePosition: true;
|
|
540
|
-
};
|
|
541
|
-
readonly component: {
|
|
542
|
-
readonly attributes: {
|
|
543
|
-
readonly physicalClosedLimitTilt: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
544
|
-
readonly currentPositionTilt: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
545
|
-
readonly installedOpenLimitTilt: import("@matter/main/types").Attribute<number, any>;
|
|
546
|
-
readonly installedClosedLimitTilt: import("@matter/main/types").Attribute<number, any>;
|
|
547
|
-
};
|
|
548
|
-
};
|
|
549
|
-
}, {
|
|
550
|
-
readonly flags: {
|
|
551
|
-
readonly lift: true;
|
|
552
|
-
};
|
|
553
|
-
readonly component: {
|
|
554
|
-
readonly attributes: {
|
|
555
|
-
readonly numberOfActuationsLift: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
556
|
-
};
|
|
557
|
-
readonly commands: {
|
|
558
|
-
readonly goToLiftPercentage: import("@matter/main/types").OptionalCommand<import("@matter/main/types").TypeFromFields<{
|
|
559
|
-
liftPercent100thsValue: import("@matter/main/types").FieldType<number>;
|
|
560
|
-
}>, void, any>;
|
|
561
|
-
};
|
|
562
|
-
};
|
|
563
|
-
}, {
|
|
564
|
-
readonly flags: {
|
|
565
|
-
readonly tilt: true;
|
|
566
|
-
};
|
|
567
|
-
readonly component: {
|
|
568
|
-
readonly attributes: {
|
|
569
|
-
readonly numberOfActuationsTilt: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
570
|
-
};
|
|
571
|
-
readonly commands: {
|
|
572
|
-
readonly goToTiltPercentage: import("@matter/main/types").OptionalCommand<import("@matter/main/types").TypeFromFields<{
|
|
573
|
-
tiltPercent100thsValue: import("@matter/main/types").FieldType<number>;
|
|
574
|
-
}>, void, any>;
|
|
575
|
-
};
|
|
576
|
-
};
|
|
577
|
-
}, {
|
|
578
|
-
readonly flags: {
|
|
579
|
-
readonly lift: true;
|
|
580
|
-
readonly positionAwareLift: true;
|
|
581
|
-
};
|
|
582
|
-
readonly component: {
|
|
583
|
-
readonly attributes: {
|
|
584
|
-
readonly currentPositionLiftPercentage: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
585
|
-
readonly targetPositionLiftPercent100ths: import("@matter/main/types").Attribute<number | null, any>;
|
|
586
|
-
readonly currentPositionLiftPercent100ths: import("@matter/main/types").Attribute<number | null, any>;
|
|
587
|
-
};
|
|
588
|
-
readonly commands: {
|
|
589
|
-
readonly goToLiftPercentage: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
590
|
-
liftPercent100thsValue: import("@matter/main/types").FieldType<number>;
|
|
591
|
-
}>, void, any>;
|
|
592
|
-
};
|
|
593
|
-
};
|
|
594
|
-
}, {
|
|
595
|
-
readonly flags: {
|
|
596
|
-
readonly tilt: true;
|
|
597
|
-
readonly positionAwareTilt: true;
|
|
598
|
-
};
|
|
599
|
-
readonly component: {
|
|
600
|
-
readonly attributes: {
|
|
601
|
-
readonly currentPositionTiltPercentage: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
602
|
-
readonly targetPositionTiltPercent100ths: import("@matter/main/types").Attribute<number | null, any>;
|
|
603
|
-
readonly currentPositionTiltPercent100ths: import("@matter/main/types").Attribute<number | null, any>;
|
|
604
|
-
};
|
|
605
|
-
readonly commands: {
|
|
606
|
-
readonly goToTiltPercentage: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
607
|
-
tiltPercent100thsValue: import("@matter/main/types").FieldType<number>;
|
|
608
|
-
}>, void, any>;
|
|
609
|
-
};
|
|
610
|
-
};
|
|
611
|
-
}, {
|
|
612
|
-
readonly flags: {
|
|
613
|
-
readonly lift: true;
|
|
614
|
-
readonly absolutePosition: true;
|
|
615
|
-
};
|
|
616
|
-
readonly component: {
|
|
617
|
-
readonly commands: {
|
|
618
|
-
readonly goToLiftValue: import("@matter/main/types").OptionalCommand<import("@matter/main/types").TypeFromFields<{
|
|
619
|
-
liftValue: import("@matter/main/types").FieldType<number>;
|
|
620
|
-
}>, void, any>;
|
|
621
|
-
};
|
|
622
|
-
};
|
|
623
|
-
}, {
|
|
624
|
-
readonly flags: {
|
|
625
|
-
readonly tilt: true;
|
|
626
|
-
readonly absolutePosition: true;
|
|
627
|
-
};
|
|
628
|
-
readonly component: {
|
|
629
|
-
readonly commands: {
|
|
630
|
-
readonly goToTiltValue: import("@matter/main/types").OptionalCommand<import("@matter/main/types").TypeFromFields<{
|
|
631
|
-
tiltValue: import("@matter/main/types").FieldType<number>;
|
|
632
|
-
}>, void, any>;
|
|
633
|
-
};
|
|
634
|
-
};
|
|
635
|
-
}, {
|
|
636
|
-
readonly flags: {
|
|
637
|
-
readonly positionAwareLift: true;
|
|
638
|
-
readonly lift: false;
|
|
639
|
-
};
|
|
640
|
-
readonly component: false;
|
|
641
|
-
}, {
|
|
642
|
-
readonly flags: {
|
|
643
|
-
readonly positionAwareTilt: true;
|
|
644
|
-
readonly tilt: false;
|
|
645
|
-
};
|
|
646
|
-
readonly component: false;
|
|
647
|
-
}, {
|
|
648
|
-
readonly flags: {
|
|
649
|
-
readonly lift: false;
|
|
650
|
-
readonly tilt: false;
|
|
651
|
-
};
|
|
652
|
-
readonly component: false;
|
|
653
|
-
}];
|
|
654
|
-
}>, readonly [WindowCovering.Feature.Lift, WindowCovering.Feature.PositionAwareLift]>, typeof WindowCoveringServer, import("@matter/main/behaviors").WindowCoveringInterface>;
|
|
91
|
+
declare const MatterbridgeWindowCoveringServer_base: any;
|
|
655
92
|
export declare class MatterbridgeWindowCoveringServer extends MatterbridgeWindowCoveringServer_base {
|
|
656
|
-
upOrOpen():
|
|
657
|
-
downOrClose():
|
|
93
|
+
upOrOpen(): any;
|
|
94
|
+
downOrClose(): any;
|
|
658
95
|
stopMotion(): void;
|
|
659
96
|
goToLiftPercentage({ liftPercent100thsValue }: WindowCovering.GoToLiftPercentageRequest): void;
|
|
660
|
-
handleMovement(type: MovementType, reversed: boolean, direction: MovementDirection, targetPercent100ths?: number):
|
|
97
|
+
handleMovement(type: MovementType, reversed: boolean, direction: MovementDirection, targetPercent100ths?: number): any;
|
|
661
98
|
}
|
|
662
99
|
export declare class MatterbridgeDoorLockServer extends DoorLockServer {
|
|
663
|
-
lockDoor():
|
|
664
|
-
unlockDoor():
|
|
100
|
+
lockDoor(): any;
|
|
101
|
+
unlockDoor(): any;
|
|
665
102
|
}
|
|
666
|
-
declare const MatterbridgeFanControlServer_base:
|
|
103
|
+
declare const MatterbridgeFanControlServer_base: any;
|
|
667
104
|
export declare class MatterbridgeFanControlServer extends MatterbridgeFanControlServer_base {
|
|
668
|
-
step({ direction, wrap, lowestOff }: FanControl.StepRequest):
|
|
105
|
+
step({ direction, wrap, lowestOff }: FanControl.StepRequest): any;
|
|
669
106
|
}
|
|
670
|
-
declare const MatterbridgeThermostatServer_base:
|
|
671
|
-
readonly id: 513;
|
|
672
|
-
readonly name: "Thermostat";
|
|
673
|
-
readonly revision: 6;
|
|
674
|
-
readonly features: {
|
|
675
|
-
readonly heating: import("@matter/main/types").BitFlag;
|
|
676
|
-
readonly cooling: import("@matter/main/types").BitFlag;
|
|
677
|
-
readonly occupancy: import("@matter/main/types").BitFlag;
|
|
678
|
-
readonly scheduleConfiguration: import("@matter/main/types").BitFlag;
|
|
679
|
-
readonly setback: import("@matter/main/types").BitFlag;
|
|
680
|
-
readonly autoMode: import("@matter/main/types").BitFlag;
|
|
681
|
-
readonly localTemperatureNotExposed: import("@matter/main/types").BitFlag;
|
|
682
|
-
};
|
|
683
|
-
readonly attributes: {
|
|
684
|
-
readonly localTemperature: import("@matter/main/types").Attribute<number | null, any>;
|
|
685
|
-
readonly outdoorTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
686
|
-
readonly hvacSystemTypeConfiguration: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
687
|
-
coolingStage: import("@matter/main/types").BitField;
|
|
688
|
-
heatingStage: import("@matter/main/types").BitField;
|
|
689
|
-
heatingIsHeatPump: import("@matter/main/types").BitFlag;
|
|
690
|
-
heatingUsesFuel: import("@matter/main/types").BitFlag;
|
|
691
|
-
}>, any>;
|
|
692
|
-
readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
693
|
-
localTemperature: import("@matter/main/types").BitFlag;
|
|
694
|
-
outdoorTemperature: import("@matter/main/types").BitFlag;
|
|
695
|
-
occupancy: import("@matter/main/types").BitFlag;
|
|
696
|
-
}>, any>;
|
|
697
|
-
readonly controlSequenceOfOperation: import("@matter/main/types").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
|
|
698
|
-
readonly systemMode: import("@matter/main/types").WritableAttribute<Thermostat.SystemMode, any>;
|
|
699
|
-
readonly temperatureSetpointHold: import("@matter/main/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
700
|
-
readonly temperatureSetpointHoldDuration: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
|
|
701
|
-
readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
702
|
-
scheduleActive: import("@matter/main/types").BitFlag;
|
|
703
|
-
autoRecovery: import("@matter/main/types").BitFlag;
|
|
704
|
-
economy: import("@matter/main/types").BitFlag;
|
|
705
|
-
}>, any>;
|
|
706
|
-
readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
707
|
-
heat: import("@matter/main/types").BitFlag;
|
|
708
|
-
cool: import("@matter/main/types").BitFlag;
|
|
709
|
-
fan: import("@matter/main/types").BitFlag;
|
|
710
|
-
heatStage2: import("@matter/main/types").BitFlag;
|
|
711
|
-
coolStage2: import("@matter/main/types").BitFlag;
|
|
712
|
-
fanStage2: import("@matter/main/types").BitFlag;
|
|
713
|
-
fanStage3: import("@matter/main/types").BitFlag;
|
|
714
|
-
}>, any>;
|
|
715
|
-
readonly setpointChangeSource: import("@matter/main/types").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
|
|
716
|
-
readonly setpointChangeAmount: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
717
|
-
readonly setpointChangeSourceTimestamp: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
718
|
-
readonly emergencyHeatDelta: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
719
|
-
readonly acType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcType, any>;
|
|
720
|
-
readonly acCapacity: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
721
|
-
readonly acRefrigerantType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
722
|
-
readonly acCompressorType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
723
|
-
readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
724
|
-
compressorFail: import("@matter/main/types").BitFlag;
|
|
725
|
-
roomSensorFail: import("@matter/main/types").BitFlag;
|
|
726
|
-
outdoorSensorFail: import("@matter/main/types").BitFlag;
|
|
727
|
-
coilSensorFail: import("@matter/main/types").BitFlag;
|
|
728
|
-
fanFail: import("@matter/main/types").BitFlag;
|
|
729
|
-
}>, any>;
|
|
730
|
-
readonly acLouverPosition: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
|
|
731
|
-
readonly acCoilTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
|
|
732
|
-
readonly acCapacityFormat: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
|
|
733
|
-
};
|
|
734
|
-
readonly commands: {
|
|
735
|
-
readonly setpointRaiseLower: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
736
|
-
mode: import("@matter/main/types").FieldType<Thermostat.SetpointRaiseLowerMode>;
|
|
737
|
-
amount: import("@matter/main/types").FieldType<number>;
|
|
738
|
-
}>, void, any>;
|
|
739
|
-
};
|
|
740
|
-
readonly extensions: readonly [{
|
|
741
|
-
readonly flags: {
|
|
742
|
-
readonly occupancy: true;
|
|
743
|
-
};
|
|
744
|
-
readonly component: {
|
|
745
|
-
readonly attributes: {
|
|
746
|
-
readonly occupancy: import("@matter/main/types").Attribute<import("@matter/types").TypeFromPartialBitSchema<{
|
|
747
|
-
occupied: import("@matter/main/types").BitFlag;
|
|
748
|
-
}>, any>;
|
|
749
|
-
};
|
|
750
|
-
};
|
|
751
|
-
}, {
|
|
752
|
-
readonly flags: {
|
|
753
|
-
readonly heating: true;
|
|
754
|
-
};
|
|
755
|
-
readonly component: {
|
|
756
|
-
readonly attributes: {
|
|
757
|
-
readonly absMinHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
758
|
-
readonly absMaxHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
759
|
-
readonly piHeatingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
760
|
-
readonly occupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
761
|
-
readonly minHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
762
|
-
readonly maxHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
763
|
-
};
|
|
764
|
-
};
|
|
765
|
-
}, {
|
|
766
|
-
readonly flags: {
|
|
767
|
-
readonly cooling: true;
|
|
768
|
-
};
|
|
769
|
-
readonly component: {
|
|
770
|
-
readonly attributes: {
|
|
771
|
-
readonly absMinCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
772
|
-
readonly absMaxCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
|
|
773
|
-
readonly piCoolingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
|
|
774
|
-
readonly occupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
775
|
-
readonly minCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
776
|
-
readonly maxCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
777
|
-
};
|
|
778
|
-
};
|
|
779
|
-
}, {
|
|
780
|
-
readonly flags: {
|
|
781
|
-
readonly localTemperatureNotExposed: false;
|
|
782
|
-
};
|
|
783
|
-
readonly component: {
|
|
784
|
-
readonly attributes: {
|
|
785
|
-
readonly localTemperatureCalibration: import("@matter/main/types").OptionalWritableAttribute<number, any>;
|
|
786
|
-
};
|
|
787
|
-
};
|
|
788
|
-
}, {
|
|
789
|
-
readonly flags: {
|
|
790
|
-
readonly cooling: true;
|
|
791
|
-
readonly occupancy: true;
|
|
792
|
-
};
|
|
793
|
-
readonly component: {
|
|
794
|
-
readonly attributes: {
|
|
795
|
-
readonly unoccupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
796
|
-
};
|
|
797
|
-
};
|
|
798
|
-
}, {
|
|
799
|
-
readonly flags: {
|
|
800
|
-
readonly heating: true;
|
|
801
|
-
readonly occupancy: true;
|
|
802
|
-
};
|
|
803
|
-
readonly component: {
|
|
804
|
-
readonly attributes: {
|
|
805
|
-
readonly unoccupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
|
|
806
|
-
};
|
|
807
|
-
};
|
|
808
|
-
}, {
|
|
809
|
-
readonly flags: {
|
|
810
|
-
readonly autoMode: true;
|
|
811
|
-
};
|
|
812
|
-
readonly component: {
|
|
813
|
-
readonly attributes: {
|
|
814
|
-
readonly minSetpointDeadBand: import("@matter/main/types").WritableAttribute<number, any>;
|
|
815
|
-
readonly thermostatRunningMode: import("@matter/main/types").OptionalAttribute<Thermostat.ThermostatRunningMode, any>;
|
|
816
|
-
};
|
|
817
|
-
};
|
|
818
|
-
}, {
|
|
819
|
-
readonly flags: {
|
|
820
|
-
readonly scheduleConfiguration: true;
|
|
821
|
-
};
|
|
822
|
-
readonly component: {
|
|
823
|
-
readonly attributes: {
|
|
824
|
-
readonly startOfWeek: import("@matter/main/types").FixedAttribute<Thermostat.StartOfWeek, any>;
|
|
825
|
-
readonly numberOfWeeklyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
|
|
826
|
-
readonly numberOfDailyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
|
|
827
|
-
};
|
|
828
|
-
readonly commands: {
|
|
829
|
-
readonly setWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
830
|
-
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
831
|
-
dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
832
|
-
sunday: import("@matter/main/types").BitFlag;
|
|
833
|
-
monday: import("@matter/main/types").BitFlag;
|
|
834
|
-
tuesday: import("@matter/main/types").BitFlag;
|
|
835
|
-
wednesday: import("@matter/main/types").BitFlag;
|
|
836
|
-
thursday: import("@matter/main/types").BitFlag;
|
|
837
|
-
friday: import("@matter/main/types").BitFlag;
|
|
838
|
-
saturday: import("@matter/main/types").BitFlag;
|
|
839
|
-
away: import("@matter/main/types").BitFlag;
|
|
840
|
-
}>>;
|
|
841
|
-
modeForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
842
|
-
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
843
|
-
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
844
|
-
}>>;
|
|
845
|
-
transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
|
|
846
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
847
|
-
heatSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
848
|
-
coolSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
849
|
-
}>[]>;
|
|
850
|
-
}>, void, any>;
|
|
851
|
-
readonly getWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
|
|
852
|
-
daysToReturn: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
853
|
-
sunday: import("@matter/main/types").BitFlag;
|
|
854
|
-
monday: import("@matter/main/types").BitFlag;
|
|
855
|
-
tuesday: import("@matter/main/types").BitFlag;
|
|
856
|
-
wednesday: import("@matter/main/types").BitFlag;
|
|
857
|
-
thursday: import("@matter/main/types").BitFlag;
|
|
858
|
-
friday: import("@matter/main/types").BitFlag;
|
|
859
|
-
saturday: import("@matter/main/types").BitFlag;
|
|
860
|
-
away: import("@matter/main/types").BitFlag;
|
|
861
|
-
}>>;
|
|
862
|
-
modeToReturn: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
863
|
-
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
864
|
-
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
865
|
-
}>>;
|
|
866
|
-
}>, import("@matter/main/types").TypeFromFields<{
|
|
867
|
-
numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
|
|
868
|
-
dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
869
|
-
sunday: import("@matter/main/types").BitFlag;
|
|
870
|
-
monday: import("@matter/main/types").BitFlag;
|
|
871
|
-
tuesday: import("@matter/main/types").BitFlag;
|
|
872
|
-
wednesday: import("@matter/main/types").BitFlag;
|
|
873
|
-
thursday: import("@matter/main/types").BitFlag;
|
|
874
|
-
friday: import("@matter/main/types").BitFlag;
|
|
875
|
-
saturday: import("@matter/main/types").BitFlag;
|
|
876
|
-
away: import("@matter/main/types").BitFlag;
|
|
877
|
-
}>>;
|
|
878
|
-
modeForSequence: import("@matter/main/types").FieldType<import("@matter/types").TypeFromPartialBitSchema<{
|
|
879
|
-
heatSetpointPresent: import("@matter/main/types").BitFlag;
|
|
880
|
-
coolSetpointPresent: import("@matter/main/types").BitFlag;
|
|
881
|
-
}>>;
|
|
882
|
-
transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
|
|
883
|
-
transitionTime: import("@matter/main/types").FieldType<number>;
|
|
884
|
-
heatSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
885
|
-
coolSetpoint: import("@matter/main/types").FieldType<number | null>;
|
|
886
|
-
}>[]>;
|
|
887
|
-
}>, any>;
|
|
888
|
-
readonly clearWeeklySchedule: import("@matter/main/types").Command<void, void, any>;
|
|
889
|
-
};
|
|
890
|
-
};
|
|
891
|
-
}, {
|
|
892
|
-
readonly flags: {
|
|
893
|
-
readonly setback: true;
|
|
894
|
-
};
|
|
895
|
-
readonly component: {
|
|
896
|
-
readonly attributes: {
|
|
897
|
-
readonly occupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
|
|
898
|
-
readonly occupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
899
|
-
readonly occupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
900
|
-
};
|
|
901
|
-
};
|
|
902
|
-
}, {
|
|
903
|
-
readonly flags: {
|
|
904
|
-
readonly setback: true;
|
|
905
|
-
readonly occupancy: true;
|
|
906
|
-
};
|
|
907
|
-
readonly component: {
|
|
908
|
-
readonly attributes: {
|
|
909
|
-
readonly unoccupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
|
|
910
|
-
readonly unoccupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
911
|
-
readonly unoccupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
|
|
912
|
-
};
|
|
913
|
-
};
|
|
914
|
-
}, {
|
|
915
|
-
readonly flags: {
|
|
916
|
-
readonly autoMode: true;
|
|
917
|
-
readonly heating: false;
|
|
918
|
-
};
|
|
919
|
-
readonly component: false;
|
|
920
|
-
}, {
|
|
921
|
-
readonly flags: {
|
|
922
|
-
readonly autoMode: true;
|
|
923
|
-
readonly cooling: false;
|
|
924
|
-
};
|
|
925
|
-
readonly component: false;
|
|
926
|
-
}, {
|
|
927
|
-
readonly flags: {
|
|
928
|
-
readonly heating: false;
|
|
929
|
-
readonly cooling: false;
|
|
930
|
-
};
|
|
931
|
-
readonly component: false;
|
|
932
|
-
}];
|
|
933
|
-
}>, readonly [Thermostat.Feature.Cooling, Thermostat.Feature.Heating, Thermostat.Feature.AutoMode]>, typeof ThermostatServer, import("@matter/main/behaviors").ThermostatInterface>;
|
|
107
|
+
declare const MatterbridgeThermostatServer_base: any;
|
|
934
108
|
export declare class MatterbridgeThermostatServer extends MatterbridgeThermostatServer_base {
|
|
935
|
-
setpointRaiseLower({ mode, amount }: Thermostat.SetpointRaiseLowerRequest):
|
|
109
|
+
setpointRaiseLower({ mode, amount }: Thermostat.SetpointRaiseLowerRequest): any;
|
|
936
110
|
}
|
|
937
|
-
declare const MatterbridgeBooleanStateConfigurationServer_base:
|
|
111
|
+
declare const MatterbridgeBooleanStateConfigurationServer_base: any;
|
|
938
112
|
export declare class MatterbridgeBooleanStateConfigurationServer extends MatterbridgeBooleanStateConfigurationServer_base {
|
|
939
|
-
enableDisableAlarm({ alarmsToEnableDisable }: BooleanStateConfiguration.EnableDisableAlarmRequest):
|
|
113
|
+
enableDisableAlarm({ alarmsToEnableDisable }: BooleanStateConfiguration.EnableDisableAlarmRequest): any;
|
|
940
114
|
}
|
|
941
115
|
export {};
|
|
942
116
|
//# sourceMappingURL=matterbridgeBehaviors.d.ts.map
|