@matterbridge/types 3.7.2-dev-20260329-5cac980 → 3.7.2-dev-20260331-ac050d8
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/matterDataModel.d.ts +4411 -0
- package/dist/matterDataModel.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,4411 @@
|
|
|
1
|
+
import type { Bytes } from '@matter/general';
|
|
2
|
+
import type { Semtag } from '@matter/types';
|
|
3
|
+
import type { ClusterId, EndpointNumber, FabricIndex, GroupId, NodeId, SubjectId, VendorId } from '@matter/types/datatype';
|
|
4
|
+
import type { Status } from '@matter/types/globals';
|
|
5
|
+
export type EpochS = number;
|
|
6
|
+
export type EpochUs = number | bigint;
|
|
7
|
+
export type ElapsedS = number;
|
|
8
|
+
export type Int64 = number | bigint;
|
|
9
|
+
export type MatterEnum = number;
|
|
10
|
+
export type MatterBitmap = number;
|
|
11
|
+
export type MatterStruct = Record<string, unknown>;
|
|
12
|
+
export type Percent = number;
|
|
13
|
+
export type Percent100Ths = number;
|
|
14
|
+
export type Temperature100Ths = number;
|
|
15
|
+
export type SignedTemperature10Ths = number;
|
|
16
|
+
export type UnsignedTemperature10Ths = number;
|
|
17
|
+
export type ZoneId = number;
|
|
18
|
+
export type TLSEndpointId = number;
|
|
19
|
+
export type TLSCAId = number;
|
|
20
|
+
export type TLSCCDId = number;
|
|
21
|
+
export type WebRTCSessionId = number;
|
|
22
|
+
export type PushTransportConnectionId = number;
|
|
23
|
+
export type AudioStreamId = number;
|
|
24
|
+
export type VideoStreamId = number;
|
|
25
|
+
export type SnapshotStreamId = number;
|
|
26
|
+
export type ModeId = number;
|
|
27
|
+
export type SupportedModes = {
|
|
28
|
+
label: string;
|
|
29
|
+
mode: ModeId;
|
|
30
|
+
semanticTags: Semtag[];
|
|
31
|
+
};
|
|
32
|
+
export type LabelStruct = {
|
|
33
|
+
label: string;
|
|
34
|
+
value: string;
|
|
35
|
+
};
|
|
36
|
+
export type MatterClusterTypes = {
|
|
37
|
+
'AccessControl': {
|
|
38
|
+
features: {
|
|
39
|
+
EXTS: 'Extension';
|
|
40
|
+
MNGD: 'ManagedDevice';
|
|
41
|
+
};
|
|
42
|
+
attributes: {
|
|
43
|
+
accessControlEntriesPerFabric: number;
|
|
44
|
+
acl: MatterStruct[];
|
|
45
|
+
arl: MatterStruct[];
|
|
46
|
+
commissioningArl: MatterStruct[];
|
|
47
|
+
extension: MatterStruct[];
|
|
48
|
+
subjectsPerAccessControlEntry: number;
|
|
49
|
+
targetsPerAccessControlEntry: number;
|
|
50
|
+
};
|
|
51
|
+
commands: {
|
|
52
|
+
reviewFabricRestrictions: {
|
|
53
|
+
arl: MatterStruct[];
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
events: {
|
|
57
|
+
AccessControlEntryChanged: {
|
|
58
|
+
adminNodeId: NodeId | null;
|
|
59
|
+
adminPasscodeId: number | null;
|
|
60
|
+
changeType: MatterEnum;
|
|
61
|
+
latestValue: MatterStruct | null;
|
|
62
|
+
};
|
|
63
|
+
AccessControlExtensionChanged: {
|
|
64
|
+
adminNodeId: NodeId | null;
|
|
65
|
+
adminPasscodeId: number | null;
|
|
66
|
+
changeType: MatterEnum;
|
|
67
|
+
latestValue: MatterStruct | null;
|
|
68
|
+
};
|
|
69
|
+
FabricRestrictionReviewUpdate: {
|
|
70
|
+
token: Int64;
|
|
71
|
+
instruction: string;
|
|
72
|
+
arlRequestFlowUrl: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
'AccountLogin': {
|
|
77
|
+
features: {};
|
|
78
|
+
attributes: {};
|
|
79
|
+
commands: {
|
|
80
|
+
getSetupPIN: {
|
|
81
|
+
tempAccountIdentifier: string;
|
|
82
|
+
};
|
|
83
|
+
login: {
|
|
84
|
+
tempAccountIdentifier: string;
|
|
85
|
+
setupPin: string;
|
|
86
|
+
node: NodeId;
|
|
87
|
+
};
|
|
88
|
+
logout: {
|
|
89
|
+
node: NodeId;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
events: {
|
|
93
|
+
LoggedOut: {
|
|
94
|
+
node: NodeId;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
'Actions': {
|
|
99
|
+
features: {};
|
|
100
|
+
attributes: {
|
|
101
|
+
actionList: MatterStruct[];
|
|
102
|
+
endpointLists: MatterStruct[];
|
|
103
|
+
setupUrl: string;
|
|
104
|
+
};
|
|
105
|
+
commands: {
|
|
106
|
+
disableAction: {
|
|
107
|
+
actionId: number;
|
|
108
|
+
invokeId: number;
|
|
109
|
+
};
|
|
110
|
+
disableActionWithDuration: {
|
|
111
|
+
actionId: number;
|
|
112
|
+
invokeId: number;
|
|
113
|
+
duration: number;
|
|
114
|
+
};
|
|
115
|
+
enableAction: {
|
|
116
|
+
actionId: number;
|
|
117
|
+
invokeId: number;
|
|
118
|
+
};
|
|
119
|
+
enableActionWithDuration: {
|
|
120
|
+
actionId: number;
|
|
121
|
+
invokeId: number;
|
|
122
|
+
duration: number;
|
|
123
|
+
};
|
|
124
|
+
instantAction: {
|
|
125
|
+
actionId: number;
|
|
126
|
+
invokeId: number;
|
|
127
|
+
};
|
|
128
|
+
instantActionWithTransition: {
|
|
129
|
+
actionId: number;
|
|
130
|
+
invokeId: number;
|
|
131
|
+
transitionTime: number;
|
|
132
|
+
};
|
|
133
|
+
pauseAction: {
|
|
134
|
+
actionId: number;
|
|
135
|
+
invokeId: number;
|
|
136
|
+
};
|
|
137
|
+
pauseActionWithDuration: {
|
|
138
|
+
actionId: number;
|
|
139
|
+
invokeId: number;
|
|
140
|
+
duration: number;
|
|
141
|
+
};
|
|
142
|
+
resumeAction: {
|
|
143
|
+
actionId: number;
|
|
144
|
+
invokeId: number;
|
|
145
|
+
};
|
|
146
|
+
startAction: {
|
|
147
|
+
actionId: number;
|
|
148
|
+
invokeId: number;
|
|
149
|
+
};
|
|
150
|
+
startActionWithDuration: {
|
|
151
|
+
actionId: number;
|
|
152
|
+
invokeId: number;
|
|
153
|
+
duration: number;
|
|
154
|
+
};
|
|
155
|
+
stopAction: {
|
|
156
|
+
actionId: number;
|
|
157
|
+
invokeId: number;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
events: {
|
|
161
|
+
StateChanged: {
|
|
162
|
+
actionId: number;
|
|
163
|
+
invokeId: number;
|
|
164
|
+
newState: MatterEnum;
|
|
165
|
+
};
|
|
166
|
+
ActionFailed: {
|
|
167
|
+
actionId: number;
|
|
168
|
+
invokeId: number;
|
|
169
|
+
newState: MatterEnum;
|
|
170
|
+
error: MatterEnum;
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
'ActivatedCarbonFilterMonitoring': {
|
|
175
|
+
features: {
|
|
176
|
+
CON: 'Condition';
|
|
177
|
+
REP: 'ReplacementProductList';
|
|
178
|
+
WRN: 'Warning';
|
|
179
|
+
};
|
|
180
|
+
attributes: {
|
|
181
|
+
changeIndication: MatterEnum;
|
|
182
|
+
condition: Percent;
|
|
183
|
+
degradationDirection: MatterEnum;
|
|
184
|
+
inPlaceIndicator: boolean;
|
|
185
|
+
lastChangedTime: EpochS | null;
|
|
186
|
+
replacementProductList: MatterStruct[];
|
|
187
|
+
};
|
|
188
|
+
commands: {
|
|
189
|
+
resetCondition: undefined;
|
|
190
|
+
};
|
|
191
|
+
events: {};
|
|
192
|
+
};
|
|
193
|
+
'AdministratorCommissioning': {
|
|
194
|
+
features: {
|
|
195
|
+
BC: 'Basic';
|
|
196
|
+
};
|
|
197
|
+
attributes: {
|
|
198
|
+
adminFabricIndex: FabricIndex | null;
|
|
199
|
+
adminVendorId: VendorId | null;
|
|
200
|
+
windowStatus: MatterEnum;
|
|
201
|
+
};
|
|
202
|
+
commands: {
|
|
203
|
+
openBasicCommissioningWindow: {
|
|
204
|
+
commissioningTimeout: number;
|
|
205
|
+
};
|
|
206
|
+
openCommissioningWindow: {
|
|
207
|
+
commissioningTimeout: number;
|
|
208
|
+
pakePasscodeVerifier: Bytes;
|
|
209
|
+
discriminator: number;
|
|
210
|
+
iterations: number;
|
|
211
|
+
salt: Bytes;
|
|
212
|
+
};
|
|
213
|
+
revokeCommissioning: undefined;
|
|
214
|
+
};
|
|
215
|
+
events: {};
|
|
216
|
+
};
|
|
217
|
+
'AirQuality': {
|
|
218
|
+
features: {
|
|
219
|
+
XPOOR: 'ExtremelyPoor';
|
|
220
|
+
FAIR: 'Fair';
|
|
221
|
+
MOD: 'Moderate';
|
|
222
|
+
VPOOR: 'VeryPoor';
|
|
223
|
+
};
|
|
224
|
+
attributes: {
|
|
225
|
+
airQuality: MatterEnum;
|
|
226
|
+
};
|
|
227
|
+
commands: {};
|
|
228
|
+
events: {};
|
|
229
|
+
};
|
|
230
|
+
'AlarmBaseCluster': {
|
|
231
|
+
features: {
|
|
232
|
+
RESET: 'Reset';
|
|
233
|
+
};
|
|
234
|
+
attributes: {
|
|
235
|
+
latch: MatterBitmap;
|
|
236
|
+
mask: MatterBitmap;
|
|
237
|
+
state: MatterBitmap;
|
|
238
|
+
supported: MatterBitmap;
|
|
239
|
+
};
|
|
240
|
+
commands: {
|
|
241
|
+
modifyEnabledAlarms: {
|
|
242
|
+
mask: MatterBitmap;
|
|
243
|
+
};
|
|
244
|
+
reset: {
|
|
245
|
+
alarms: MatterBitmap;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
events: {
|
|
249
|
+
Notify: {
|
|
250
|
+
active: MatterBitmap;
|
|
251
|
+
inactive: MatterBitmap;
|
|
252
|
+
state: MatterBitmap;
|
|
253
|
+
mask: MatterBitmap;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
'ApplicationBasic': {
|
|
258
|
+
features: {};
|
|
259
|
+
attributes: {
|
|
260
|
+
allowedVendorList: VendorId[];
|
|
261
|
+
application: MatterStruct;
|
|
262
|
+
applicationName: string;
|
|
263
|
+
applicationVersion: string;
|
|
264
|
+
productId: number;
|
|
265
|
+
status: MatterEnum;
|
|
266
|
+
vendorId: VendorId;
|
|
267
|
+
vendorName: string;
|
|
268
|
+
};
|
|
269
|
+
commands: {};
|
|
270
|
+
events: {};
|
|
271
|
+
};
|
|
272
|
+
'ApplicationLauncher': {
|
|
273
|
+
features: {
|
|
274
|
+
AP: 'ApplicationPlatform';
|
|
275
|
+
};
|
|
276
|
+
attributes: {
|
|
277
|
+
catalogList: number[];
|
|
278
|
+
currentApp: MatterStruct | null;
|
|
279
|
+
};
|
|
280
|
+
commands: {
|
|
281
|
+
hideApp: {
|
|
282
|
+
application: MatterStruct;
|
|
283
|
+
};
|
|
284
|
+
launchApp: {
|
|
285
|
+
application: MatterStruct;
|
|
286
|
+
data: Bytes;
|
|
287
|
+
};
|
|
288
|
+
stopApp: {
|
|
289
|
+
application: MatterStruct;
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
events: {};
|
|
293
|
+
};
|
|
294
|
+
'AudioOutput': {
|
|
295
|
+
features: {
|
|
296
|
+
NU: 'NameUpdates';
|
|
297
|
+
};
|
|
298
|
+
attributes: {
|
|
299
|
+
currentOutput: number;
|
|
300
|
+
outputList: MatterStruct[];
|
|
301
|
+
};
|
|
302
|
+
commands: {
|
|
303
|
+
renameOutput: {
|
|
304
|
+
index: number;
|
|
305
|
+
name: string;
|
|
306
|
+
};
|
|
307
|
+
selectOutput: {
|
|
308
|
+
index: number;
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
events: {};
|
|
312
|
+
};
|
|
313
|
+
'BasicInformation': {
|
|
314
|
+
features: {};
|
|
315
|
+
attributes: {
|
|
316
|
+
capabilityMinima: MatterStruct;
|
|
317
|
+
configurationVersion: number;
|
|
318
|
+
dataModelRevision: number;
|
|
319
|
+
hardwareVersion: number;
|
|
320
|
+
hardwareVersionString: string;
|
|
321
|
+
localConfigDisabled: boolean;
|
|
322
|
+
location: string;
|
|
323
|
+
manufacturingDate: string;
|
|
324
|
+
maxPathsPerInvoke: number;
|
|
325
|
+
nodeLabel: string;
|
|
326
|
+
partNumber: string;
|
|
327
|
+
productAppearance: MatterStruct;
|
|
328
|
+
productId: number;
|
|
329
|
+
productLabel: string;
|
|
330
|
+
productName: string;
|
|
331
|
+
productUrl: string;
|
|
332
|
+
reachable: boolean;
|
|
333
|
+
serialNumber: string;
|
|
334
|
+
softwareVersion: number;
|
|
335
|
+
softwareVersionString: string;
|
|
336
|
+
specificationVersion: number;
|
|
337
|
+
uniqueId: string;
|
|
338
|
+
vendorId: VendorId;
|
|
339
|
+
vendorName: string;
|
|
340
|
+
};
|
|
341
|
+
commands: {};
|
|
342
|
+
events: {
|
|
343
|
+
StartUp: {
|
|
344
|
+
softwareVersion: number;
|
|
345
|
+
};
|
|
346
|
+
ShutDown: undefined;
|
|
347
|
+
Leave: {
|
|
348
|
+
fabricIndex: FabricIndex;
|
|
349
|
+
};
|
|
350
|
+
ReachableChanged: {
|
|
351
|
+
reachableNewValue: boolean;
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
};
|
|
355
|
+
'Binding': {
|
|
356
|
+
features: {};
|
|
357
|
+
attributes: {
|
|
358
|
+
binding: MatterStruct[];
|
|
359
|
+
};
|
|
360
|
+
commands: {};
|
|
361
|
+
events: {};
|
|
362
|
+
};
|
|
363
|
+
'BooleanState': {
|
|
364
|
+
features: {};
|
|
365
|
+
attributes: {
|
|
366
|
+
stateValue: boolean;
|
|
367
|
+
};
|
|
368
|
+
commands: {};
|
|
369
|
+
events: {
|
|
370
|
+
StateChange: {
|
|
371
|
+
stateValue: boolean;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
'BooleanStateConfiguration': {
|
|
376
|
+
features: {
|
|
377
|
+
SPRS: 'AlarmSuppress';
|
|
378
|
+
AUD: 'Audible';
|
|
379
|
+
SENSLVL: 'SensitivityLevel';
|
|
380
|
+
VIS: 'Visual';
|
|
381
|
+
};
|
|
382
|
+
attributes: {
|
|
383
|
+
alarmsActive: MatterBitmap;
|
|
384
|
+
alarmsEnabled: MatterBitmap;
|
|
385
|
+
alarmsSupported: MatterBitmap;
|
|
386
|
+
alarmsSuppressed: MatterBitmap;
|
|
387
|
+
currentSensitivityLevel: number;
|
|
388
|
+
defaultSensitivityLevel: number;
|
|
389
|
+
sensorFault: MatterBitmap;
|
|
390
|
+
supportedSensitivityLevels: number;
|
|
391
|
+
};
|
|
392
|
+
commands: {
|
|
393
|
+
enableDisableAlarm: {
|
|
394
|
+
alarmsToEnableDisable: MatterBitmap;
|
|
395
|
+
};
|
|
396
|
+
suppressAlarm: {
|
|
397
|
+
alarmsToSuppress: MatterBitmap;
|
|
398
|
+
};
|
|
399
|
+
};
|
|
400
|
+
events: {
|
|
401
|
+
AlarmsStateChanged: {
|
|
402
|
+
alarmsActive: MatterBitmap;
|
|
403
|
+
alarmsSuppressed: MatterBitmap;
|
|
404
|
+
};
|
|
405
|
+
SensorFault: {
|
|
406
|
+
sensorFault: MatterBitmap;
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
};
|
|
410
|
+
'BridgedDeviceBasicInformation': {
|
|
411
|
+
features: {
|
|
412
|
+
BIS: 'BridgedICDSupport';
|
|
413
|
+
};
|
|
414
|
+
attributes: {
|
|
415
|
+
capabilityMinima: MatterStruct;
|
|
416
|
+
configurationVersion: number;
|
|
417
|
+
dataModelRevision: number;
|
|
418
|
+
hardwareVersion: number;
|
|
419
|
+
hardwareVersionString: string;
|
|
420
|
+
localConfigDisabled: boolean;
|
|
421
|
+
location: string;
|
|
422
|
+
manufacturingDate: string;
|
|
423
|
+
maxPathsPerInvoke: number;
|
|
424
|
+
nodeLabel: string;
|
|
425
|
+
partNumber: string;
|
|
426
|
+
productAppearance: MatterStruct;
|
|
427
|
+
productId: number;
|
|
428
|
+
productLabel: string;
|
|
429
|
+
productName: string;
|
|
430
|
+
productUrl: string;
|
|
431
|
+
reachable: boolean;
|
|
432
|
+
serialNumber: string;
|
|
433
|
+
softwareVersion: number;
|
|
434
|
+
softwareVersionString: string;
|
|
435
|
+
specificationVersion: number;
|
|
436
|
+
uniqueId: string;
|
|
437
|
+
vendorId: VendorId;
|
|
438
|
+
vendorName: string;
|
|
439
|
+
};
|
|
440
|
+
commands: {
|
|
441
|
+
keepActive: {
|
|
442
|
+
stayActiveDuration: number;
|
|
443
|
+
timeoutMs: number;
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
events: {
|
|
447
|
+
StartUp: {
|
|
448
|
+
softwareVersion: number;
|
|
449
|
+
};
|
|
450
|
+
ShutDown: undefined;
|
|
451
|
+
Leave: {
|
|
452
|
+
fabricIndex: FabricIndex;
|
|
453
|
+
};
|
|
454
|
+
ReachableChanged: {
|
|
455
|
+
reachableNewValue: boolean;
|
|
456
|
+
};
|
|
457
|
+
ActiveChanged: {
|
|
458
|
+
promisedActiveDuration: number;
|
|
459
|
+
};
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
'CameraAVSettingsUserLevelManagement': {
|
|
463
|
+
features: {
|
|
464
|
+
DPTZ: 'DigitalPTZ';
|
|
465
|
+
MPAN: 'MechanicalPan';
|
|
466
|
+
MPRESETS: 'MechanicalPresets';
|
|
467
|
+
MTILT: 'MechanicalTilt';
|
|
468
|
+
MZOOM: 'MechanicalZoom';
|
|
469
|
+
};
|
|
470
|
+
attributes: {
|
|
471
|
+
dptzStreams: MatterStruct[];
|
|
472
|
+
maxPresets: number;
|
|
473
|
+
movementState: MatterEnum;
|
|
474
|
+
mptzPosition: MatterStruct;
|
|
475
|
+
mptzPresets: MatterStruct[];
|
|
476
|
+
panMax: number;
|
|
477
|
+
panMin: number;
|
|
478
|
+
tiltMax: number;
|
|
479
|
+
tiltMin: number;
|
|
480
|
+
zoomMax: number;
|
|
481
|
+
};
|
|
482
|
+
commands: {
|
|
483
|
+
dPTZRelativeMove: {
|
|
484
|
+
videoStreamId: VideoStreamId;
|
|
485
|
+
deltaX: number;
|
|
486
|
+
deltaY: number;
|
|
487
|
+
zoomDelta: number;
|
|
488
|
+
};
|
|
489
|
+
dPTZSetViewport: {
|
|
490
|
+
videoStreamId: VideoStreamId;
|
|
491
|
+
viewport: MatterStruct;
|
|
492
|
+
};
|
|
493
|
+
mPTZMoveToPreset: {
|
|
494
|
+
presetId: number;
|
|
495
|
+
};
|
|
496
|
+
mPTZRelativeMove: {
|
|
497
|
+
panDelta: number;
|
|
498
|
+
tiltDelta: number;
|
|
499
|
+
zoomDelta: number;
|
|
500
|
+
};
|
|
501
|
+
mPTZRemovePreset: {
|
|
502
|
+
presetId: number;
|
|
503
|
+
};
|
|
504
|
+
mPTZSavePreset: {
|
|
505
|
+
presetId: number;
|
|
506
|
+
name: string;
|
|
507
|
+
};
|
|
508
|
+
mPTZSetPosition: {
|
|
509
|
+
pan: number;
|
|
510
|
+
tilt: number;
|
|
511
|
+
zoom: number;
|
|
512
|
+
};
|
|
513
|
+
};
|
|
514
|
+
events: {};
|
|
515
|
+
};
|
|
516
|
+
'CameraAVStreamManagement': {
|
|
517
|
+
features: {
|
|
518
|
+
ADO: 'Audio';
|
|
519
|
+
HDR: 'HighDynamicRange';
|
|
520
|
+
ICTL: 'ImageControl';
|
|
521
|
+
STOR: 'LocalStorage';
|
|
522
|
+
NV: 'NightVision';
|
|
523
|
+
OSD: 'OnScreenDisplay';
|
|
524
|
+
PRIV: 'Privacy';
|
|
525
|
+
SNP: 'Snapshot';
|
|
526
|
+
SPKR: 'Speaker';
|
|
527
|
+
VDO: 'Video';
|
|
528
|
+
WMARK: 'Watermark';
|
|
529
|
+
};
|
|
530
|
+
attributes: {
|
|
531
|
+
allocatedAudioStreams: MatterStruct[];
|
|
532
|
+
allocatedSnapshotStreams: MatterStruct[];
|
|
533
|
+
allocatedVideoStreams: MatterStruct[];
|
|
534
|
+
currentFrameRate: number;
|
|
535
|
+
hardPrivacyModeOn: boolean;
|
|
536
|
+
hdrModeEnabled: boolean;
|
|
537
|
+
imageFlipHorizontal: boolean;
|
|
538
|
+
imageFlipVertical: boolean;
|
|
539
|
+
imageRotation: number;
|
|
540
|
+
localSnapshotRecordingEnabled: boolean;
|
|
541
|
+
localVideoRecordingEnabled: boolean;
|
|
542
|
+
maxConcurrentEncoders: number;
|
|
543
|
+
maxContentBufferSize: number;
|
|
544
|
+
maxEncodedPixelRate: number;
|
|
545
|
+
maxNetworkBandwidth: number;
|
|
546
|
+
microphoneAgcEnabled: boolean;
|
|
547
|
+
microphoneCapabilities: MatterStruct;
|
|
548
|
+
microphoneMaxLevel: number;
|
|
549
|
+
microphoneMinLevel: number;
|
|
550
|
+
microphoneMuted: boolean;
|
|
551
|
+
microphoneVolumeLevel: number;
|
|
552
|
+
minViewportResolution: MatterStruct;
|
|
553
|
+
nightVision: MatterEnum;
|
|
554
|
+
nightVisionIllum: MatterEnum;
|
|
555
|
+
nightVisionUsesInfrared: boolean;
|
|
556
|
+
rateDistortionTradeOffPoints: MatterStruct[];
|
|
557
|
+
snapshotCapabilities: MatterStruct[];
|
|
558
|
+
softLivestreamPrivacyModeEnabled: boolean;
|
|
559
|
+
softRecordingPrivacyModeEnabled: boolean;
|
|
560
|
+
speakerCapabilities: MatterStruct;
|
|
561
|
+
speakerMaxLevel: number;
|
|
562
|
+
speakerMinLevel: number;
|
|
563
|
+
speakerMuted: boolean;
|
|
564
|
+
speakerVolumeLevel: number;
|
|
565
|
+
statusLightBrightness: MatterEnum;
|
|
566
|
+
statusLightEnabled: boolean;
|
|
567
|
+
streamUsagePriorities: MatterEnum[];
|
|
568
|
+
supportedStreamUsages: MatterEnum[];
|
|
569
|
+
twoWayTalkSupport: MatterEnum;
|
|
570
|
+
videoSensorParams: MatterStruct;
|
|
571
|
+
viewport: MatterStruct;
|
|
572
|
+
};
|
|
573
|
+
commands: {
|
|
574
|
+
audioStreamAllocate: {
|
|
575
|
+
streamUsage: MatterEnum;
|
|
576
|
+
audioCodec: MatterEnum;
|
|
577
|
+
channelCount: number;
|
|
578
|
+
sampleRate: number;
|
|
579
|
+
bitRate: number;
|
|
580
|
+
bitDepth: number;
|
|
581
|
+
};
|
|
582
|
+
audioStreamDeallocate: {
|
|
583
|
+
audioStreamId: AudioStreamId;
|
|
584
|
+
};
|
|
585
|
+
captureSnapshot: {
|
|
586
|
+
snapshotStreamId: SnapshotStreamId | null;
|
|
587
|
+
requestedResolution: MatterStruct;
|
|
588
|
+
};
|
|
589
|
+
setStreamPriorities: {
|
|
590
|
+
streamPriorities: MatterEnum[];
|
|
591
|
+
};
|
|
592
|
+
snapshotStreamAllocate: {
|
|
593
|
+
imageCodec: MatterEnum;
|
|
594
|
+
maxFrameRate: number;
|
|
595
|
+
minResolution: MatterStruct;
|
|
596
|
+
maxResolution: MatterStruct;
|
|
597
|
+
quality: number;
|
|
598
|
+
watermarkEnabled: boolean;
|
|
599
|
+
osdEnabled: boolean;
|
|
600
|
+
};
|
|
601
|
+
snapshotStreamDeallocate: {
|
|
602
|
+
snapshotStreamId: SnapshotStreamId;
|
|
603
|
+
};
|
|
604
|
+
snapshotStreamModify: {
|
|
605
|
+
snapshotStreamId: SnapshotStreamId;
|
|
606
|
+
watermarkEnabled: boolean;
|
|
607
|
+
osdEnabled: boolean;
|
|
608
|
+
};
|
|
609
|
+
videoStreamAllocate: {
|
|
610
|
+
streamUsage: MatterEnum;
|
|
611
|
+
videoCodec: MatterEnum;
|
|
612
|
+
minFrameRate: number;
|
|
613
|
+
maxFrameRate: number;
|
|
614
|
+
minResolution: MatterStruct;
|
|
615
|
+
maxResolution: MatterStruct;
|
|
616
|
+
minBitRate: number;
|
|
617
|
+
maxBitRate: number;
|
|
618
|
+
keyFrameInterval: number;
|
|
619
|
+
watermarkEnabled: boolean;
|
|
620
|
+
osdEnabled: boolean;
|
|
621
|
+
};
|
|
622
|
+
videoStreamDeallocate: {
|
|
623
|
+
videoStreamId: VideoStreamId;
|
|
624
|
+
};
|
|
625
|
+
videoStreamModify: {
|
|
626
|
+
videoStreamId: VideoStreamId;
|
|
627
|
+
watermarkEnabled: boolean;
|
|
628
|
+
osdEnabled: boolean;
|
|
629
|
+
};
|
|
630
|
+
};
|
|
631
|
+
events: {};
|
|
632
|
+
};
|
|
633
|
+
'CarbonDioxideConcentrationMeasurement': {
|
|
634
|
+
features: {
|
|
635
|
+
AVG: 'AverageMeasurement';
|
|
636
|
+
CRI: 'CriticalLevel';
|
|
637
|
+
LEV: 'LevelIndication';
|
|
638
|
+
MED: 'MediumLevel';
|
|
639
|
+
MEA: 'NumericMeasurement';
|
|
640
|
+
PEA: 'PeakMeasurement';
|
|
641
|
+
};
|
|
642
|
+
attributes: {
|
|
643
|
+
averageMeasuredValue: number | null;
|
|
644
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
645
|
+
levelValue: MatterEnum;
|
|
646
|
+
maxMeasuredValue: number | null;
|
|
647
|
+
measuredValue: number | null;
|
|
648
|
+
measurementMedium: MatterEnum;
|
|
649
|
+
measurementUnit: MatterEnum;
|
|
650
|
+
minMeasuredValue: number | null;
|
|
651
|
+
peakMeasuredValue: number | null;
|
|
652
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
653
|
+
uncertainty: number;
|
|
654
|
+
};
|
|
655
|
+
commands: {};
|
|
656
|
+
events: {};
|
|
657
|
+
};
|
|
658
|
+
'CarbonMonoxideConcentrationMeasurement': {
|
|
659
|
+
features: {
|
|
660
|
+
AVG: 'AverageMeasurement';
|
|
661
|
+
CRI: 'CriticalLevel';
|
|
662
|
+
LEV: 'LevelIndication';
|
|
663
|
+
MED: 'MediumLevel';
|
|
664
|
+
MEA: 'NumericMeasurement';
|
|
665
|
+
PEA: 'PeakMeasurement';
|
|
666
|
+
};
|
|
667
|
+
attributes: {
|
|
668
|
+
averageMeasuredValue: number | null;
|
|
669
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
670
|
+
levelValue: MatterEnum;
|
|
671
|
+
maxMeasuredValue: number | null;
|
|
672
|
+
measuredValue: number | null;
|
|
673
|
+
measurementMedium: MatterEnum;
|
|
674
|
+
measurementUnit: MatterEnum;
|
|
675
|
+
minMeasuredValue: number | null;
|
|
676
|
+
peakMeasuredValue: number | null;
|
|
677
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
678
|
+
uncertainty: number;
|
|
679
|
+
};
|
|
680
|
+
commands: {};
|
|
681
|
+
events: {};
|
|
682
|
+
};
|
|
683
|
+
'Channel': {
|
|
684
|
+
features: {
|
|
685
|
+
CL: 'ChannelList';
|
|
686
|
+
EG: 'ElectronicGuide';
|
|
687
|
+
LI: 'LineupInfo';
|
|
688
|
+
RP: 'RecordProgram';
|
|
689
|
+
};
|
|
690
|
+
attributes: {
|
|
691
|
+
channelList: MatterStruct[];
|
|
692
|
+
currentChannel: MatterStruct | null;
|
|
693
|
+
lineup: MatterStruct | null;
|
|
694
|
+
};
|
|
695
|
+
commands: {
|
|
696
|
+
cancelRecordProgram: {
|
|
697
|
+
programIdentifier: string;
|
|
698
|
+
shouldRecordSeries: boolean;
|
|
699
|
+
externalIdList: MatterStruct[];
|
|
700
|
+
data: Bytes;
|
|
701
|
+
};
|
|
702
|
+
changeChannel: {
|
|
703
|
+
match: string;
|
|
704
|
+
};
|
|
705
|
+
changeChannelByNumber: {
|
|
706
|
+
majorNumber: number;
|
|
707
|
+
minorNumber: number;
|
|
708
|
+
};
|
|
709
|
+
getProgramGuide: {
|
|
710
|
+
startTime: EpochS;
|
|
711
|
+
endTime: EpochS;
|
|
712
|
+
channelList: MatterStruct[];
|
|
713
|
+
pageToken: MatterStruct | null;
|
|
714
|
+
recordingFlag: MatterBitmap | null;
|
|
715
|
+
externalIdList: MatterStruct[];
|
|
716
|
+
data: Bytes;
|
|
717
|
+
};
|
|
718
|
+
recordProgram: {
|
|
719
|
+
programIdentifier: string;
|
|
720
|
+
shouldRecordSeries: boolean;
|
|
721
|
+
externalIdList: MatterStruct[];
|
|
722
|
+
data: Bytes;
|
|
723
|
+
};
|
|
724
|
+
skipChannel: {
|
|
725
|
+
count: number;
|
|
726
|
+
};
|
|
727
|
+
};
|
|
728
|
+
events: {};
|
|
729
|
+
};
|
|
730
|
+
'Chime': {
|
|
731
|
+
features: {};
|
|
732
|
+
attributes: {
|
|
733
|
+
enabled: boolean;
|
|
734
|
+
installedChimeSounds: MatterStruct[];
|
|
735
|
+
selectedChime: number;
|
|
736
|
+
};
|
|
737
|
+
commands: {
|
|
738
|
+
playChimeSound: undefined;
|
|
739
|
+
};
|
|
740
|
+
events: {};
|
|
741
|
+
};
|
|
742
|
+
'ClosureControl': {
|
|
743
|
+
features: {
|
|
744
|
+
CL: 'Calibration';
|
|
745
|
+
IS: 'Instantaneous';
|
|
746
|
+
MO: 'ManuallyOperable';
|
|
747
|
+
LT: 'MotionLatching';
|
|
748
|
+
PD: 'Pedestrian';
|
|
749
|
+
PS: 'Positioning';
|
|
750
|
+
PT: 'Protection';
|
|
751
|
+
SP: 'Speed';
|
|
752
|
+
VT: 'Ventilation';
|
|
753
|
+
};
|
|
754
|
+
attributes: {
|
|
755
|
+
countdownTime: ElapsedS | null;
|
|
756
|
+
currentErrorList: MatterEnum[];
|
|
757
|
+
latchControlModes: MatterBitmap;
|
|
758
|
+
mainState: MatterEnum;
|
|
759
|
+
overallCurrentState: MatterStruct | null;
|
|
760
|
+
overallTargetState: MatterStruct | null;
|
|
761
|
+
};
|
|
762
|
+
commands: {
|
|
763
|
+
calibrate: undefined;
|
|
764
|
+
moveTo: {
|
|
765
|
+
position: MatterEnum;
|
|
766
|
+
latch: boolean;
|
|
767
|
+
speed: MatterEnum;
|
|
768
|
+
};
|
|
769
|
+
stop: undefined;
|
|
770
|
+
};
|
|
771
|
+
events: {
|
|
772
|
+
OperationalError: {
|
|
773
|
+
errorState: MatterEnum[];
|
|
774
|
+
};
|
|
775
|
+
MovementCompleted: undefined;
|
|
776
|
+
EngageStateChanged: {
|
|
777
|
+
engageValue: boolean;
|
|
778
|
+
};
|
|
779
|
+
SecureStateChanged: {
|
|
780
|
+
secureValue: boolean;
|
|
781
|
+
};
|
|
782
|
+
};
|
|
783
|
+
};
|
|
784
|
+
'ClosureDimension': {
|
|
785
|
+
features: {
|
|
786
|
+
LM: 'Limitation';
|
|
787
|
+
MD: 'Modulation';
|
|
788
|
+
LT: 'MotionLatching';
|
|
789
|
+
PS: 'Positioning';
|
|
790
|
+
RO: 'Rotation';
|
|
791
|
+
SP: 'Speed';
|
|
792
|
+
TR: 'Translation';
|
|
793
|
+
UT: 'Unit';
|
|
794
|
+
};
|
|
795
|
+
attributes: {
|
|
796
|
+
currentState: MatterStruct | null;
|
|
797
|
+
latchControlModes: MatterBitmap;
|
|
798
|
+
limitRange: MatterStruct;
|
|
799
|
+
modulationType: MatterEnum;
|
|
800
|
+
overflow: MatterEnum;
|
|
801
|
+
resolution: Percent100Ths;
|
|
802
|
+
rotationAxis: MatterEnum;
|
|
803
|
+
stepValue: Percent100Ths;
|
|
804
|
+
targetState: MatterStruct | null;
|
|
805
|
+
translationDirection: MatterEnum;
|
|
806
|
+
unit: MatterEnum;
|
|
807
|
+
unitRange: MatterStruct | null;
|
|
808
|
+
};
|
|
809
|
+
commands: {
|
|
810
|
+
setTarget: {
|
|
811
|
+
position: Percent100Ths;
|
|
812
|
+
latch: boolean;
|
|
813
|
+
speed: MatterEnum;
|
|
814
|
+
};
|
|
815
|
+
step: {
|
|
816
|
+
direction: MatterEnum;
|
|
817
|
+
numberOfSteps: number;
|
|
818
|
+
speed: MatterEnum;
|
|
819
|
+
};
|
|
820
|
+
};
|
|
821
|
+
events: {};
|
|
822
|
+
};
|
|
823
|
+
'ColorControl': {
|
|
824
|
+
features: {
|
|
825
|
+
CL: 'ColorLoop';
|
|
826
|
+
CT: 'ColorTemperature';
|
|
827
|
+
EHUE: 'EnhancedHue';
|
|
828
|
+
HS: 'HueSaturation';
|
|
829
|
+
XY: 'XY';
|
|
830
|
+
};
|
|
831
|
+
attributes: {
|
|
832
|
+
colorCapabilities: MatterBitmap;
|
|
833
|
+
colorLoopActive: number;
|
|
834
|
+
colorLoopDirection: MatterEnum;
|
|
835
|
+
colorLoopStartEnhancedHue: number;
|
|
836
|
+
colorLoopStoredEnhancedHue: number;
|
|
837
|
+
colorLoopTime: number;
|
|
838
|
+
colorMode: MatterEnum;
|
|
839
|
+
colorPointBIntensity: number | null;
|
|
840
|
+
colorPointBx: number;
|
|
841
|
+
colorPointBy: number;
|
|
842
|
+
colorPointGIntensity: number | null;
|
|
843
|
+
colorPointGx: number;
|
|
844
|
+
colorPointGy: number;
|
|
845
|
+
colorPointRIntensity: number | null;
|
|
846
|
+
colorPointRx: number;
|
|
847
|
+
colorPointRy: number;
|
|
848
|
+
colorTemperatureMireds: number;
|
|
849
|
+
colorTempPhysicalMaxMireds: number;
|
|
850
|
+
colorTempPhysicalMinMireds: number;
|
|
851
|
+
compensationText: string;
|
|
852
|
+
coupleColorTempToLevelMinMireds: number;
|
|
853
|
+
currentHue: number;
|
|
854
|
+
currentSaturation: number;
|
|
855
|
+
currentX: number;
|
|
856
|
+
currentY: number;
|
|
857
|
+
driftCompensation: MatterEnum;
|
|
858
|
+
enhancedColorMode: MatterEnum;
|
|
859
|
+
enhancedCurrentHue: number;
|
|
860
|
+
numberOfPrimaries: number | null;
|
|
861
|
+
options: MatterBitmap;
|
|
862
|
+
primary1Intensity: number | null;
|
|
863
|
+
primary1X: number;
|
|
864
|
+
primary1Y: number;
|
|
865
|
+
primary2Intensity: number | null;
|
|
866
|
+
primary2X: number;
|
|
867
|
+
primary2Y: number;
|
|
868
|
+
primary3Intensity: number | null;
|
|
869
|
+
primary3X: number;
|
|
870
|
+
primary3Y: number;
|
|
871
|
+
primary4Intensity: number | null;
|
|
872
|
+
primary4X: number;
|
|
873
|
+
primary4Y: number;
|
|
874
|
+
primary5Intensity: number | null;
|
|
875
|
+
primary5X: number;
|
|
876
|
+
primary5Y: number;
|
|
877
|
+
primary6Intensity: number | null;
|
|
878
|
+
primary6X: number;
|
|
879
|
+
primary6Y: number;
|
|
880
|
+
remainingTime: number;
|
|
881
|
+
startUpColorTemperatureMireds: number | null;
|
|
882
|
+
whitePointX: number;
|
|
883
|
+
whitePointY: number;
|
|
884
|
+
};
|
|
885
|
+
commands: {
|
|
886
|
+
colorLoopSet: {
|
|
887
|
+
updateFlags: MatterBitmap;
|
|
888
|
+
action: MatterEnum;
|
|
889
|
+
direction: MatterEnum;
|
|
890
|
+
time: number;
|
|
891
|
+
startHue: number;
|
|
892
|
+
optionsMask: MatterBitmap;
|
|
893
|
+
optionsOverride: MatterBitmap;
|
|
894
|
+
};
|
|
895
|
+
enhancedMoveHue: {
|
|
896
|
+
moveMode: MatterEnum;
|
|
897
|
+
rate: number;
|
|
898
|
+
optionsMask: MatterBitmap;
|
|
899
|
+
optionsOverride: MatterBitmap;
|
|
900
|
+
};
|
|
901
|
+
enhancedMoveToHue: {
|
|
902
|
+
enhancedHue: number;
|
|
903
|
+
direction: MatterEnum;
|
|
904
|
+
transitionTime: number;
|
|
905
|
+
optionsMask: MatterBitmap;
|
|
906
|
+
optionsOverride: MatterBitmap;
|
|
907
|
+
};
|
|
908
|
+
enhancedMoveToHueAndSaturation: {
|
|
909
|
+
enhancedHue: number;
|
|
910
|
+
saturation: number;
|
|
911
|
+
transitionTime: number;
|
|
912
|
+
optionsMask: MatterBitmap;
|
|
913
|
+
optionsOverride: MatterBitmap;
|
|
914
|
+
};
|
|
915
|
+
enhancedStepHue: {
|
|
916
|
+
stepMode: MatterEnum;
|
|
917
|
+
stepSize: number;
|
|
918
|
+
transitionTime: number;
|
|
919
|
+
optionsMask: MatterBitmap;
|
|
920
|
+
optionsOverride: MatterBitmap;
|
|
921
|
+
};
|
|
922
|
+
moveColor: {
|
|
923
|
+
rateX: number;
|
|
924
|
+
rateY: number;
|
|
925
|
+
optionsMask: MatterBitmap;
|
|
926
|
+
optionsOverride: MatterBitmap;
|
|
927
|
+
};
|
|
928
|
+
moveColorTemperature: {
|
|
929
|
+
moveMode: MatterEnum;
|
|
930
|
+
rate: number;
|
|
931
|
+
colorTemperatureMinimumMireds: number;
|
|
932
|
+
colorTemperatureMaximumMireds: number;
|
|
933
|
+
optionsMask: MatterBitmap;
|
|
934
|
+
optionsOverride: MatterBitmap;
|
|
935
|
+
};
|
|
936
|
+
moveHue: {
|
|
937
|
+
moveMode: MatterEnum;
|
|
938
|
+
rate: number;
|
|
939
|
+
optionsMask: MatterBitmap;
|
|
940
|
+
optionsOverride: MatterBitmap;
|
|
941
|
+
};
|
|
942
|
+
moveSaturation: {
|
|
943
|
+
moveMode: MatterEnum;
|
|
944
|
+
rate: number;
|
|
945
|
+
optionsMask: MatterBitmap;
|
|
946
|
+
optionsOverride: MatterBitmap;
|
|
947
|
+
};
|
|
948
|
+
moveToColor: {
|
|
949
|
+
colorX: number;
|
|
950
|
+
colorY: number;
|
|
951
|
+
transitionTime: number;
|
|
952
|
+
optionsMask: MatterBitmap;
|
|
953
|
+
optionsOverride: MatterBitmap;
|
|
954
|
+
};
|
|
955
|
+
moveToColorTemperature: {
|
|
956
|
+
colorTemperatureMireds: number;
|
|
957
|
+
transitionTime: number;
|
|
958
|
+
optionsMask: MatterBitmap;
|
|
959
|
+
optionsOverride: MatterBitmap;
|
|
960
|
+
};
|
|
961
|
+
moveToHue: {
|
|
962
|
+
hue: number;
|
|
963
|
+
direction: MatterEnum;
|
|
964
|
+
transitionTime: number;
|
|
965
|
+
optionsMask: MatterBitmap;
|
|
966
|
+
optionsOverride: MatterBitmap;
|
|
967
|
+
};
|
|
968
|
+
moveToHueAndSaturation: {
|
|
969
|
+
hue: number;
|
|
970
|
+
saturation: number;
|
|
971
|
+
transitionTime: number;
|
|
972
|
+
optionsMask: MatterBitmap;
|
|
973
|
+
optionsOverride: MatterBitmap;
|
|
974
|
+
};
|
|
975
|
+
moveToSaturation: {
|
|
976
|
+
saturation: number;
|
|
977
|
+
transitionTime: number;
|
|
978
|
+
optionsMask: MatterBitmap;
|
|
979
|
+
optionsOverride: MatterBitmap;
|
|
980
|
+
};
|
|
981
|
+
stepColor: {
|
|
982
|
+
stepX: number;
|
|
983
|
+
stepY: number;
|
|
984
|
+
transitionTime: number;
|
|
985
|
+
optionsMask: MatterBitmap;
|
|
986
|
+
optionsOverride: MatterBitmap;
|
|
987
|
+
};
|
|
988
|
+
stepColorTemperature: {
|
|
989
|
+
stepMode: MatterEnum;
|
|
990
|
+
stepSize: number;
|
|
991
|
+
transitionTime: number;
|
|
992
|
+
colorTemperatureMinimumMireds: number;
|
|
993
|
+
colorTemperatureMaximumMireds: number;
|
|
994
|
+
optionsMask: MatterBitmap;
|
|
995
|
+
optionsOverride: MatterBitmap;
|
|
996
|
+
};
|
|
997
|
+
stepHue: {
|
|
998
|
+
stepMode: MatterEnum;
|
|
999
|
+
stepSize: number;
|
|
1000
|
+
transitionTime: number;
|
|
1001
|
+
optionsMask: MatterBitmap;
|
|
1002
|
+
optionsOverride: MatterBitmap;
|
|
1003
|
+
};
|
|
1004
|
+
stepSaturation: {
|
|
1005
|
+
stepMode: MatterEnum;
|
|
1006
|
+
stepSize: number;
|
|
1007
|
+
transitionTime: number;
|
|
1008
|
+
optionsMask: MatterBitmap;
|
|
1009
|
+
optionsOverride: MatterBitmap;
|
|
1010
|
+
};
|
|
1011
|
+
stopMoveStep: {
|
|
1012
|
+
optionsMask: MatterBitmap;
|
|
1013
|
+
optionsOverride: MatterBitmap;
|
|
1014
|
+
};
|
|
1015
|
+
};
|
|
1016
|
+
events: {};
|
|
1017
|
+
};
|
|
1018
|
+
'CommissionerControl': {
|
|
1019
|
+
features: {};
|
|
1020
|
+
attributes: {
|
|
1021
|
+
supportedDeviceCategories: MatterBitmap;
|
|
1022
|
+
};
|
|
1023
|
+
commands: {
|
|
1024
|
+
commissionNode: {
|
|
1025
|
+
requestId: Int64;
|
|
1026
|
+
responseTimeoutSeconds: number;
|
|
1027
|
+
};
|
|
1028
|
+
requestCommissioningApproval: {
|
|
1029
|
+
requestId: Int64;
|
|
1030
|
+
vendorId: VendorId;
|
|
1031
|
+
productId: number;
|
|
1032
|
+
label: string;
|
|
1033
|
+
};
|
|
1034
|
+
};
|
|
1035
|
+
events: {
|
|
1036
|
+
CommissioningRequestResult: {
|
|
1037
|
+
requestId: Int64;
|
|
1038
|
+
clientNodeId: NodeId;
|
|
1039
|
+
statusCode: Status;
|
|
1040
|
+
};
|
|
1041
|
+
};
|
|
1042
|
+
};
|
|
1043
|
+
'CommodityMetering': {
|
|
1044
|
+
features: {};
|
|
1045
|
+
attributes: {
|
|
1046
|
+
maximumMeteredQuantities: number | null;
|
|
1047
|
+
meteredQuantity: MatterStruct[] | null;
|
|
1048
|
+
meteredQuantityTimestamp: EpochS | null;
|
|
1049
|
+
tariffUnit: MatterEnum | null;
|
|
1050
|
+
};
|
|
1051
|
+
commands: {};
|
|
1052
|
+
events: {};
|
|
1053
|
+
};
|
|
1054
|
+
'CommodityPrice': {
|
|
1055
|
+
features: {
|
|
1056
|
+
FORE: 'Forecasting';
|
|
1057
|
+
};
|
|
1058
|
+
attributes: {
|
|
1059
|
+
currency: MatterStruct | null;
|
|
1060
|
+
currentPrice: MatterStruct | null;
|
|
1061
|
+
priceForecast: MatterStruct[];
|
|
1062
|
+
tariffUnit: MatterEnum;
|
|
1063
|
+
};
|
|
1064
|
+
commands: {
|
|
1065
|
+
getDetailedForecastRequest: {
|
|
1066
|
+
details: MatterBitmap;
|
|
1067
|
+
};
|
|
1068
|
+
getDetailedPriceRequest: {
|
|
1069
|
+
details: MatterBitmap;
|
|
1070
|
+
};
|
|
1071
|
+
};
|
|
1072
|
+
events: {
|
|
1073
|
+
PriceChange: {
|
|
1074
|
+
currentPrice: MatterStruct | null;
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
};
|
|
1078
|
+
'CommodityTariff': {
|
|
1079
|
+
features: {
|
|
1080
|
+
AUXLD: 'AuxiliaryLoad';
|
|
1081
|
+
FCRED: 'FriendlyCredit';
|
|
1082
|
+
PEAKP: 'PeakPeriod';
|
|
1083
|
+
PWRTHLD: 'PowerThreshold';
|
|
1084
|
+
PRICE: 'Pricing';
|
|
1085
|
+
RNDM: 'Randomization';
|
|
1086
|
+
};
|
|
1087
|
+
attributes: {
|
|
1088
|
+
calendarPeriods: MatterStruct[] | null;
|
|
1089
|
+
currentDay: MatterStruct | null;
|
|
1090
|
+
currentDayEntry: MatterStruct | null;
|
|
1091
|
+
currentDayEntryDate: EpochS | null;
|
|
1092
|
+
currentTariffComponents: MatterStruct[] | null;
|
|
1093
|
+
dayEntries: MatterStruct[] | null;
|
|
1094
|
+
dayPatterns: MatterStruct[] | null;
|
|
1095
|
+
defaultRandomizationOffset: number | null;
|
|
1096
|
+
defaultRandomizationType: MatterEnum | null;
|
|
1097
|
+
individualDays: MatterStruct[] | null;
|
|
1098
|
+
nextDay: MatterStruct | null;
|
|
1099
|
+
nextDayEntry: MatterStruct | null;
|
|
1100
|
+
nextDayEntryDate: EpochS | null;
|
|
1101
|
+
nextTariffComponents: MatterStruct[] | null;
|
|
1102
|
+
startDate: EpochS | null;
|
|
1103
|
+
tariffComponents: MatterStruct[] | null;
|
|
1104
|
+
tariffInfo: MatterStruct | null;
|
|
1105
|
+
tariffPeriods: MatterStruct[] | null;
|
|
1106
|
+
tariffUnit: MatterEnum | null;
|
|
1107
|
+
};
|
|
1108
|
+
commands: {
|
|
1109
|
+
getDayEntry: {
|
|
1110
|
+
dayEntryId: number;
|
|
1111
|
+
};
|
|
1112
|
+
getTariffComponent: {
|
|
1113
|
+
tariffComponentId: number;
|
|
1114
|
+
};
|
|
1115
|
+
};
|
|
1116
|
+
events: {};
|
|
1117
|
+
};
|
|
1118
|
+
'ConcentrationMeasurementClusters': {
|
|
1119
|
+
features: {
|
|
1120
|
+
AVG: 'AverageMeasurement';
|
|
1121
|
+
CRI: 'CriticalLevel';
|
|
1122
|
+
LEV: 'LevelIndication';
|
|
1123
|
+
MED: 'MediumLevel';
|
|
1124
|
+
MEA: 'NumericMeasurement';
|
|
1125
|
+
PEA: 'PeakMeasurement';
|
|
1126
|
+
};
|
|
1127
|
+
attributes: {
|
|
1128
|
+
averageMeasuredValue: number | null;
|
|
1129
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
1130
|
+
levelValue: MatterEnum;
|
|
1131
|
+
maxMeasuredValue: number | null;
|
|
1132
|
+
measuredValue: number | null;
|
|
1133
|
+
measurementMedium: MatterEnum;
|
|
1134
|
+
measurementUnit: MatterEnum;
|
|
1135
|
+
minMeasuredValue: number | null;
|
|
1136
|
+
peakMeasuredValue: number | null;
|
|
1137
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
1138
|
+
uncertainty: number;
|
|
1139
|
+
};
|
|
1140
|
+
commands: {};
|
|
1141
|
+
events: {};
|
|
1142
|
+
};
|
|
1143
|
+
'ContentAppObserver': {
|
|
1144
|
+
features: {};
|
|
1145
|
+
attributes: {};
|
|
1146
|
+
commands: {
|
|
1147
|
+
contentAppMessage: {
|
|
1148
|
+
data: string;
|
|
1149
|
+
encodingHint: string;
|
|
1150
|
+
};
|
|
1151
|
+
};
|
|
1152
|
+
events: {};
|
|
1153
|
+
};
|
|
1154
|
+
'ContentControl': {
|
|
1155
|
+
features: {
|
|
1156
|
+
BA: 'BlockApplications';
|
|
1157
|
+
BC: 'BlockChannels';
|
|
1158
|
+
BTW: 'BlockContentTimeWindow';
|
|
1159
|
+
BU: 'BlockUnrated';
|
|
1160
|
+
OCR: 'OnDemandContentRating';
|
|
1161
|
+
PM: 'PINManagement';
|
|
1162
|
+
SCR: 'ScheduledContentRating';
|
|
1163
|
+
ST: 'ScreenTime';
|
|
1164
|
+
};
|
|
1165
|
+
attributes: {
|
|
1166
|
+
blockApplicationList: MatterStruct[];
|
|
1167
|
+
blockChannelList: MatterStruct[];
|
|
1168
|
+
blockContentTimeWindow: MatterStruct[];
|
|
1169
|
+
blockUnrated: boolean;
|
|
1170
|
+
enabled: boolean;
|
|
1171
|
+
onDemandRatings: MatterStruct[];
|
|
1172
|
+
onDemandRatingThreshold: string;
|
|
1173
|
+
remainingScreenTime: ElapsedS;
|
|
1174
|
+
scheduledContentRatings: MatterStruct[];
|
|
1175
|
+
scheduledContentRatingThreshold: string;
|
|
1176
|
+
screenDailyTime: ElapsedS;
|
|
1177
|
+
};
|
|
1178
|
+
commands: {
|
|
1179
|
+
addBlockApplications: {
|
|
1180
|
+
applications: MatterStruct[];
|
|
1181
|
+
};
|
|
1182
|
+
addBlockChannels: {
|
|
1183
|
+
channels: MatterStruct[];
|
|
1184
|
+
};
|
|
1185
|
+
addBonusTime: {
|
|
1186
|
+
pinCode: string;
|
|
1187
|
+
bonusTime: ElapsedS;
|
|
1188
|
+
};
|
|
1189
|
+
blockUnratedContent: undefined;
|
|
1190
|
+
disable: undefined;
|
|
1191
|
+
enable: undefined;
|
|
1192
|
+
removeBlockApplications: {
|
|
1193
|
+
applications: MatterStruct[];
|
|
1194
|
+
};
|
|
1195
|
+
removeBlockChannels: {
|
|
1196
|
+
channelIndexes: number[];
|
|
1197
|
+
};
|
|
1198
|
+
removeBlockContentTimeWindow: {
|
|
1199
|
+
timeWindowIndexes: number[];
|
|
1200
|
+
};
|
|
1201
|
+
resetPIN: undefined;
|
|
1202
|
+
setBlockContentTimeWindow: {
|
|
1203
|
+
timeWindow: MatterStruct;
|
|
1204
|
+
};
|
|
1205
|
+
setOnDemandRatingThreshold: {
|
|
1206
|
+
rating: string;
|
|
1207
|
+
};
|
|
1208
|
+
setScheduledContentRatingThreshold: {
|
|
1209
|
+
rating: string;
|
|
1210
|
+
};
|
|
1211
|
+
setScreenDailyTime: {
|
|
1212
|
+
screenTime: ElapsedS;
|
|
1213
|
+
};
|
|
1214
|
+
unblockUnratedContent: undefined;
|
|
1215
|
+
updatePIN: {
|
|
1216
|
+
oldPin: string;
|
|
1217
|
+
newPin: string;
|
|
1218
|
+
};
|
|
1219
|
+
};
|
|
1220
|
+
events: {
|
|
1221
|
+
RemainingScreenTimeExpired: undefined;
|
|
1222
|
+
EnteringBlockContentTimeWindow: undefined;
|
|
1223
|
+
};
|
|
1224
|
+
};
|
|
1225
|
+
'ContentLauncher': {
|
|
1226
|
+
features: {
|
|
1227
|
+
AS: 'AdvancedSeek';
|
|
1228
|
+
AT: 'AudioTracks';
|
|
1229
|
+
CS: 'ContentSearch';
|
|
1230
|
+
TT: 'TextTracks';
|
|
1231
|
+
UP: 'URLPlayback';
|
|
1232
|
+
};
|
|
1233
|
+
attributes: {
|
|
1234
|
+
acceptHeader: string[];
|
|
1235
|
+
supportedStreamingProtocols: MatterBitmap;
|
|
1236
|
+
};
|
|
1237
|
+
commands: {
|
|
1238
|
+
launchContent: {
|
|
1239
|
+
search: MatterStruct;
|
|
1240
|
+
autoPlay: boolean;
|
|
1241
|
+
data: string;
|
|
1242
|
+
playbackPreferences: MatterStruct;
|
|
1243
|
+
useCurrentContext: boolean;
|
|
1244
|
+
};
|
|
1245
|
+
launchURL: {
|
|
1246
|
+
contentUrl: string;
|
|
1247
|
+
displayString: string;
|
|
1248
|
+
brandingInformation: MatterStruct;
|
|
1249
|
+
playbackPreferences: MatterStruct;
|
|
1250
|
+
};
|
|
1251
|
+
};
|
|
1252
|
+
events: {};
|
|
1253
|
+
};
|
|
1254
|
+
'Descriptor': {
|
|
1255
|
+
features: {
|
|
1256
|
+
TAGLIST: 'TagList';
|
|
1257
|
+
};
|
|
1258
|
+
attributes: {
|
|
1259
|
+
clientList: ClusterId[];
|
|
1260
|
+
deviceTypeList: MatterStruct[];
|
|
1261
|
+
endpointUniqueId: string;
|
|
1262
|
+
partsList: EndpointNumber[];
|
|
1263
|
+
serverList: ClusterId[];
|
|
1264
|
+
tagList: Semtag[];
|
|
1265
|
+
};
|
|
1266
|
+
commands: {};
|
|
1267
|
+
events: {};
|
|
1268
|
+
};
|
|
1269
|
+
'DeviceEnergyManagement': {
|
|
1270
|
+
features: {
|
|
1271
|
+
CON: 'ConstraintBasedAdjustment';
|
|
1272
|
+
FA: 'ForecastAdjustment';
|
|
1273
|
+
PAU: 'Pausable';
|
|
1274
|
+
PA: 'PowerAdjustment';
|
|
1275
|
+
PFR: 'PowerForecastReporting';
|
|
1276
|
+
STA: 'StartTimeAdjustment';
|
|
1277
|
+
SFR: 'StateForecastReporting';
|
|
1278
|
+
};
|
|
1279
|
+
attributes: {
|
|
1280
|
+
absMaxPower: Int64;
|
|
1281
|
+
absMinPower: Int64;
|
|
1282
|
+
esaCanGenerate: boolean;
|
|
1283
|
+
esaState: MatterEnum;
|
|
1284
|
+
esaType: MatterEnum;
|
|
1285
|
+
forecast: MatterStruct | null;
|
|
1286
|
+
optOutState: MatterEnum;
|
|
1287
|
+
powerAdjustmentCapability: MatterStruct | null;
|
|
1288
|
+
};
|
|
1289
|
+
commands: {
|
|
1290
|
+
cancelPowerAdjustRequest: undefined;
|
|
1291
|
+
cancelRequest: undefined;
|
|
1292
|
+
modifyForecastRequest: {
|
|
1293
|
+
forecastId: number;
|
|
1294
|
+
slotAdjustments: MatterStruct[];
|
|
1295
|
+
cause: MatterEnum;
|
|
1296
|
+
};
|
|
1297
|
+
pauseRequest: {
|
|
1298
|
+
duration: ElapsedS;
|
|
1299
|
+
cause: MatterEnum;
|
|
1300
|
+
};
|
|
1301
|
+
powerAdjustRequest: {
|
|
1302
|
+
power: Int64;
|
|
1303
|
+
duration: ElapsedS;
|
|
1304
|
+
cause: MatterEnum;
|
|
1305
|
+
};
|
|
1306
|
+
requestConstraintBasedForecast: {
|
|
1307
|
+
constraints: MatterStruct[];
|
|
1308
|
+
cause: MatterEnum;
|
|
1309
|
+
};
|
|
1310
|
+
resumeRequest: undefined;
|
|
1311
|
+
startTimeAdjustRequest: {
|
|
1312
|
+
requestedStartTime: EpochS;
|
|
1313
|
+
cause: MatterEnum;
|
|
1314
|
+
};
|
|
1315
|
+
};
|
|
1316
|
+
events: {
|
|
1317
|
+
PowerAdjustStart: undefined;
|
|
1318
|
+
PowerAdjustEnd: {
|
|
1319
|
+
cause: MatterEnum;
|
|
1320
|
+
duration: ElapsedS;
|
|
1321
|
+
energyUse: Int64;
|
|
1322
|
+
};
|
|
1323
|
+
Paused: undefined;
|
|
1324
|
+
Resumed: {
|
|
1325
|
+
cause: MatterEnum;
|
|
1326
|
+
};
|
|
1327
|
+
};
|
|
1328
|
+
};
|
|
1329
|
+
'DeviceEnergyManagementMode': {
|
|
1330
|
+
features: {
|
|
1331
|
+
DEPONOFF: 'OnOff';
|
|
1332
|
+
};
|
|
1333
|
+
attributes: {
|
|
1334
|
+
currentMode: ModeId;
|
|
1335
|
+
onMode: ModeId | null;
|
|
1336
|
+
startUpMode: ModeId | null;
|
|
1337
|
+
supportedModes: SupportedModes[];
|
|
1338
|
+
};
|
|
1339
|
+
commands: {
|
|
1340
|
+
changeToMode: {
|
|
1341
|
+
newMode: number;
|
|
1342
|
+
};
|
|
1343
|
+
};
|
|
1344
|
+
events: {};
|
|
1345
|
+
};
|
|
1346
|
+
'DiagnosticLogs': {
|
|
1347
|
+
features: {};
|
|
1348
|
+
attributes: {};
|
|
1349
|
+
commands: {
|
|
1350
|
+
retrieveLogsRequest: {
|
|
1351
|
+
intent: MatterEnum;
|
|
1352
|
+
requestedProtocol: MatterEnum;
|
|
1353
|
+
transferFileDesignator: string;
|
|
1354
|
+
};
|
|
1355
|
+
};
|
|
1356
|
+
events: {};
|
|
1357
|
+
};
|
|
1358
|
+
'DishwasherAlarm': {
|
|
1359
|
+
features: {
|
|
1360
|
+
RESET: 'Reset';
|
|
1361
|
+
};
|
|
1362
|
+
attributes: {
|
|
1363
|
+
latch: MatterBitmap;
|
|
1364
|
+
mask: MatterBitmap;
|
|
1365
|
+
state: MatterBitmap;
|
|
1366
|
+
supported: MatterBitmap;
|
|
1367
|
+
};
|
|
1368
|
+
commands: {
|
|
1369
|
+
modifyEnabledAlarms: {
|
|
1370
|
+
mask: MatterBitmap;
|
|
1371
|
+
};
|
|
1372
|
+
reset: {
|
|
1373
|
+
alarms: MatterBitmap;
|
|
1374
|
+
};
|
|
1375
|
+
};
|
|
1376
|
+
events: {
|
|
1377
|
+
Notify: {
|
|
1378
|
+
active: MatterBitmap;
|
|
1379
|
+
inactive: MatterBitmap;
|
|
1380
|
+
state: MatterBitmap;
|
|
1381
|
+
mask: MatterBitmap;
|
|
1382
|
+
};
|
|
1383
|
+
};
|
|
1384
|
+
};
|
|
1385
|
+
'DishwasherMode': {
|
|
1386
|
+
features: {
|
|
1387
|
+
DEPONOFF: 'OnOff';
|
|
1388
|
+
};
|
|
1389
|
+
attributes: {
|
|
1390
|
+
currentMode: ModeId;
|
|
1391
|
+
onMode: ModeId | null;
|
|
1392
|
+
startUpMode: ModeId | null;
|
|
1393
|
+
supportedModes: SupportedModes[];
|
|
1394
|
+
};
|
|
1395
|
+
commands: {
|
|
1396
|
+
changeToMode: {
|
|
1397
|
+
newMode: number;
|
|
1398
|
+
};
|
|
1399
|
+
};
|
|
1400
|
+
events: {};
|
|
1401
|
+
};
|
|
1402
|
+
'DoorLock': {
|
|
1403
|
+
features: {
|
|
1404
|
+
ALBU: 'AliroBLEUWB';
|
|
1405
|
+
ALIRO: 'AliroProvisioning';
|
|
1406
|
+
COTA: 'CredentialOverTheAirAccess';
|
|
1407
|
+
DPS: 'DoorPositionSensor';
|
|
1408
|
+
FACE: 'FaceCredentials';
|
|
1409
|
+
FGP: 'FingerCredentials';
|
|
1410
|
+
HDSCH: 'HolidaySchedules';
|
|
1411
|
+
PIN: 'PINCredential';
|
|
1412
|
+
RID: 'RFIDCredential';
|
|
1413
|
+
UBOLT: 'Unbolting';
|
|
1414
|
+
USR: 'User';
|
|
1415
|
+
WDSCH: 'WeekDayAccessSchedules';
|
|
1416
|
+
YDSCH: 'YearDayAccessSchedules';
|
|
1417
|
+
};
|
|
1418
|
+
attributes: {
|
|
1419
|
+
actuatorEnabled: boolean;
|
|
1420
|
+
aliroBleAdvertisingVersion: number;
|
|
1421
|
+
aliroExpeditedTransactionSupportedProtocolVersions: Bytes[];
|
|
1422
|
+
aliroGroupResolvingKey: Bytes | null;
|
|
1423
|
+
aliroReaderGroupIdentifier: Bytes | null;
|
|
1424
|
+
aliroReaderGroupSubIdentifier: Bytes;
|
|
1425
|
+
aliroReaderVerificationKey: Bytes | null;
|
|
1426
|
+
aliroSupportedBleuwbProtocolVersions: Bytes[];
|
|
1427
|
+
autoRelockTime: number;
|
|
1428
|
+
credentialRulesSupport: MatterBitmap;
|
|
1429
|
+
defaultConfigurationRegister: MatterBitmap;
|
|
1430
|
+
doorClosedEvents: number;
|
|
1431
|
+
doorOpenEvents: number;
|
|
1432
|
+
doorState: MatterEnum | null;
|
|
1433
|
+
enableInsideStatusLed: boolean;
|
|
1434
|
+
enableLocalProgramming: boolean;
|
|
1435
|
+
enableOneTouchLocking: boolean;
|
|
1436
|
+
enablePrivacyModeButton: boolean;
|
|
1437
|
+
expiringUserTimeout: number;
|
|
1438
|
+
language: string;
|
|
1439
|
+
ledSettings: MatterEnum;
|
|
1440
|
+
localProgrammingFeatures: MatterBitmap;
|
|
1441
|
+
lockState: MatterEnum | null;
|
|
1442
|
+
lockType: MatterEnum;
|
|
1443
|
+
maxPinCodeLength: number;
|
|
1444
|
+
maxRfidCodeLength: number;
|
|
1445
|
+
minPinCodeLength: number;
|
|
1446
|
+
minRfidCodeLength: number;
|
|
1447
|
+
numberOfAliroCredentialIssuerKeysSupported: number;
|
|
1448
|
+
numberOfAliroEndpointKeysSupported: number;
|
|
1449
|
+
numberOfCredentialsSupportedPerUser: number;
|
|
1450
|
+
numberOfHolidaySchedulesSupported: number;
|
|
1451
|
+
numberOfPinUsersSupported: number;
|
|
1452
|
+
numberOfRfidUsersSupported: number;
|
|
1453
|
+
numberOfTotalUsersSupported: number;
|
|
1454
|
+
numberOfWeekDaySchedulesSupportedPerUser: number;
|
|
1455
|
+
numberOfYearDaySchedulesSupportedPerUser: number;
|
|
1456
|
+
openPeriod: number;
|
|
1457
|
+
operatingMode: MatterEnum;
|
|
1458
|
+
requirePiNforRemoteOperation: boolean;
|
|
1459
|
+
securityLevel: number;
|
|
1460
|
+
sendPinOverTheAir: boolean;
|
|
1461
|
+
soundVolume: MatterEnum;
|
|
1462
|
+
supportedOperatingModes: MatterBitmap;
|
|
1463
|
+
userCodeTemporaryDisableTime: number;
|
|
1464
|
+
wrongCodeEntryLimit: number;
|
|
1465
|
+
};
|
|
1466
|
+
commands: {
|
|
1467
|
+
clearAliroReaderConfig: undefined;
|
|
1468
|
+
clearAllPINCodes: undefined;
|
|
1469
|
+
clearAllRFIDCodes: undefined;
|
|
1470
|
+
clearCredential: {
|
|
1471
|
+
credential: MatterStruct | null;
|
|
1472
|
+
};
|
|
1473
|
+
clearHolidaySchedule: {
|
|
1474
|
+
holidayIndex: number;
|
|
1475
|
+
};
|
|
1476
|
+
clearPINCode: {
|
|
1477
|
+
pinSlotIndex: number;
|
|
1478
|
+
};
|
|
1479
|
+
clearRFIDCode: {
|
|
1480
|
+
rfidSlotIndex: number;
|
|
1481
|
+
};
|
|
1482
|
+
clearUser: {
|
|
1483
|
+
userIndex: number;
|
|
1484
|
+
};
|
|
1485
|
+
clearWeekDaySchedule: {
|
|
1486
|
+
weekDayIndex: number;
|
|
1487
|
+
userIndex: number;
|
|
1488
|
+
};
|
|
1489
|
+
clearYearDaySchedule: {
|
|
1490
|
+
yearDayIndex: number;
|
|
1491
|
+
userIndex: number;
|
|
1492
|
+
};
|
|
1493
|
+
getCredentialStatus: {
|
|
1494
|
+
credential: MatterStruct;
|
|
1495
|
+
};
|
|
1496
|
+
getHolidaySchedule: {
|
|
1497
|
+
holidayIndex: number;
|
|
1498
|
+
};
|
|
1499
|
+
getPINCode: {
|
|
1500
|
+
userId: number;
|
|
1501
|
+
};
|
|
1502
|
+
getRFIDCode: {
|
|
1503
|
+
userId: number;
|
|
1504
|
+
};
|
|
1505
|
+
getUser: {
|
|
1506
|
+
userIndex: number;
|
|
1507
|
+
};
|
|
1508
|
+
getUserStatus: {
|
|
1509
|
+
userId: number;
|
|
1510
|
+
};
|
|
1511
|
+
getUserType: {
|
|
1512
|
+
userId: number;
|
|
1513
|
+
};
|
|
1514
|
+
getWeekDaySchedule: {
|
|
1515
|
+
weekDayIndex: number;
|
|
1516
|
+
userIndex: number;
|
|
1517
|
+
};
|
|
1518
|
+
getYearDaySchedule: {
|
|
1519
|
+
yearDayIndex: number;
|
|
1520
|
+
userIndex: number;
|
|
1521
|
+
};
|
|
1522
|
+
lockDoor: {
|
|
1523
|
+
pinCode: Bytes;
|
|
1524
|
+
};
|
|
1525
|
+
setAliroReaderConfig: {
|
|
1526
|
+
signingKey: Bytes;
|
|
1527
|
+
verificationKey: Bytes;
|
|
1528
|
+
groupIdentifier: Bytes;
|
|
1529
|
+
groupResolvingKey: Bytes;
|
|
1530
|
+
};
|
|
1531
|
+
setCredential: {
|
|
1532
|
+
operationType: MatterEnum;
|
|
1533
|
+
credential: MatterStruct;
|
|
1534
|
+
credentialData: Bytes;
|
|
1535
|
+
userIndex: number | null;
|
|
1536
|
+
userStatus: MatterEnum | null;
|
|
1537
|
+
userType: MatterEnum | null;
|
|
1538
|
+
};
|
|
1539
|
+
setHolidaySchedule: {
|
|
1540
|
+
holidayIndex: number;
|
|
1541
|
+
localStartTime: EpochS;
|
|
1542
|
+
localEndTime: EpochS;
|
|
1543
|
+
operatingMode: MatterEnum;
|
|
1544
|
+
};
|
|
1545
|
+
setPINCode: {
|
|
1546
|
+
userId: number;
|
|
1547
|
+
userStatus: MatterEnum | null;
|
|
1548
|
+
userType: MatterEnum | null;
|
|
1549
|
+
pin: Bytes;
|
|
1550
|
+
};
|
|
1551
|
+
setRFIDCode: {
|
|
1552
|
+
userId: number;
|
|
1553
|
+
userStatus: MatterEnum | null;
|
|
1554
|
+
userType: MatterEnum | null;
|
|
1555
|
+
rfidCode: Bytes;
|
|
1556
|
+
};
|
|
1557
|
+
setUser: {
|
|
1558
|
+
operationType: MatterEnum;
|
|
1559
|
+
userIndex: number;
|
|
1560
|
+
userName: string | null;
|
|
1561
|
+
userUniqueId: number | null;
|
|
1562
|
+
userStatus: MatterEnum | null;
|
|
1563
|
+
userType: MatterEnum | null;
|
|
1564
|
+
credentialRule: MatterEnum | null;
|
|
1565
|
+
};
|
|
1566
|
+
setUserStatus: {
|
|
1567
|
+
userId: number;
|
|
1568
|
+
userStatus: MatterEnum;
|
|
1569
|
+
};
|
|
1570
|
+
setUserType: {
|
|
1571
|
+
userId: number;
|
|
1572
|
+
userType: MatterEnum;
|
|
1573
|
+
};
|
|
1574
|
+
setWeekDaySchedule: {
|
|
1575
|
+
weekDayIndex: number;
|
|
1576
|
+
userIndex: number;
|
|
1577
|
+
daysMask: MatterBitmap;
|
|
1578
|
+
startHour: number;
|
|
1579
|
+
startMinute: number;
|
|
1580
|
+
endHour: number;
|
|
1581
|
+
endMinute: number;
|
|
1582
|
+
};
|
|
1583
|
+
setYearDaySchedule: {
|
|
1584
|
+
yearDayIndex: number;
|
|
1585
|
+
userIndex: number;
|
|
1586
|
+
localStartTime: EpochS;
|
|
1587
|
+
localEndTime: EpochS;
|
|
1588
|
+
};
|
|
1589
|
+
toggle: undefined;
|
|
1590
|
+
unboltDoor: {
|
|
1591
|
+
pinCode: Bytes;
|
|
1592
|
+
};
|
|
1593
|
+
unlockDoor: {
|
|
1594
|
+
pinCode: Bytes;
|
|
1595
|
+
};
|
|
1596
|
+
unlockWithTimeout: {
|
|
1597
|
+
timeout: number;
|
|
1598
|
+
pinCode: Bytes;
|
|
1599
|
+
};
|
|
1600
|
+
};
|
|
1601
|
+
events: {
|
|
1602
|
+
DoorLockAlarm: {
|
|
1603
|
+
alarmCode: MatterEnum;
|
|
1604
|
+
};
|
|
1605
|
+
DoorStateChange: {
|
|
1606
|
+
doorState: MatterEnum;
|
|
1607
|
+
};
|
|
1608
|
+
LockOperation: {
|
|
1609
|
+
lockOperationType: MatterEnum;
|
|
1610
|
+
operationSource: MatterEnum;
|
|
1611
|
+
userIndex: number | null;
|
|
1612
|
+
fabricIndex: FabricIndex | null;
|
|
1613
|
+
sourceNode: NodeId | null;
|
|
1614
|
+
credentials: MatterStruct[] | null;
|
|
1615
|
+
};
|
|
1616
|
+
LockOperationError: {
|
|
1617
|
+
lockOperationType: MatterEnum;
|
|
1618
|
+
operationSource: MatterEnum;
|
|
1619
|
+
operationError: MatterEnum;
|
|
1620
|
+
userIndex: number | null;
|
|
1621
|
+
fabricIndex: FabricIndex | null;
|
|
1622
|
+
sourceNode: NodeId | null;
|
|
1623
|
+
credentials: MatterStruct[] | null;
|
|
1624
|
+
};
|
|
1625
|
+
LockUserChange: {
|
|
1626
|
+
lockDataType: MatterEnum;
|
|
1627
|
+
dataOperationType: MatterEnum;
|
|
1628
|
+
operationSource: MatterEnum;
|
|
1629
|
+
userIndex: number | null;
|
|
1630
|
+
fabricIndex: FabricIndex | null;
|
|
1631
|
+
sourceNode: NodeId | null;
|
|
1632
|
+
dataIndex: number | null;
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
};
|
|
1636
|
+
'EcosystemInformation': {
|
|
1637
|
+
features: {};
|
|
1638
|
+
attributes: {
|
|
1639
|
+
deviceDirectory: MatterStruct[];
|
|
1640
|
+
locationDirectory: MatterStruct[];
|
|
1641
|
+
};
|
|
1642
|
+
commands: {};
|
|
1643
|
+
events: {};
|
|
1644
|
+
};
|
|
1645
|
+
'ElectricalEnergyMeasurement': {
|
|
1646
|
+
features: {
|
|
1647
|
+
APPE: 'ApparentEnergy';
|
|
1648
|
+
CUME: 'CumulativeEnergy';
|
|
1649
|
+
EXPE: 'ExportedEnergy';
|
|
1650
|
+
IMPE: 'ImportedEnergy';
|
|
1651
|
+
PERE: 'PeriodicEnergy';
|
|
1652
|
+
REAE: 'ReactiveEnergy';
|
|
1653
|
+
};
|
|
1654
|
+
attributes: {
|
|
1655
|
+
accuracy: MatterStruct;
|
|
1656
|
+
cumulativeEnergyExported: MatterStruct | null;
|
|
1657
|
+
cumulativeEnergyImported: MatterStruct | null;
|
|
1658
|
+
cumulativeEnergyReset: MatterStruct | null;
|
|
1659
|
+
periodicEnergyExported: MatterStruct | null;
|
|
1660
|
+
periodicEnergyImported: MatterStruct | null;
|
|
1661
|
+
};
|
|
1662
|
+
commands: {};
|
|
1663
|
+
events: {
|
|
1664
|
+
CumulativeEnergyMeasured: {
|
|
1665
|
+
energyImported: MatterStruct;
|
|
1666
|
+
energyExported: MatterStruct;
|
|
1667
|
+
};
|
|
1668
|
+
PeriodicEnergyMeasured: {
|
|
1669
|
+
energyImported: MatterStruct;
|
|
1670
|
+
energyExported: MatterStruct;
|
|
1671
|
+
};
|
|
1672
|
+
};
|
|
1673
|
+
};
|
|
1674
|
+
'ElectricalGridConditions': {
|
|
1675
|
+
features: {
|
|
1676
|
+
FORE: 'Forecasting';
|
|
1677
|
+
};
|
|
1678
|
+
attributes: {
|
|
1679
|
+
currentConditions: MatterStruct | null;
|
|
1680
|
+
forecastConditions: MatterStruct[];
|
|
1681
|
+
localGenerationAvailable: boolean | null;
|
|
1682
|
+
};
|
|
1683
|
+
commands: {};
|
|
1684
|
+
events: {
|
|
1685
|
+
CurrentConditionsChanged: {
|
|
1686
|
+
currentConditions: MatterStruct | null;
|
|
1687
|
+
};
|
|
1688
|
+
};
|
|
1689
|
+
};
|
|
1690
|
+
'ElectricalPowerMeasurement': {
|
|
1691
|
+
features: {
|
|
1692
|
+
ALTC: 'AlternatingCurrent';
|
|
1693
|
+
DIRC: 'DirectCurrent';
|
|
1694
|
+
HARM: 'Harmonics';
|
|
1695
|
+
POLY: 'PolyphasePower';
|
|
1696
|
+
PWRQ: 'PowerQuality';
|
|
1697
|
+
};
|
|
1698
|
+
attributes: {
|
|
1699
|
+
accuracy: MatterStruct[];
|
|
1700
|
+
activeCurrent: Int64 | null;
|
|
1701
|
+
activePower: Int64 | null;
|
|
1702
|
+
apparentCurrent: Int64 | null;
|
|
1703
|
+
apparentPower: Int64 | null;
|
|
1704
|
+
frequency: Int64 | null;
|
|
1705
|
+
harmonicCurrents: MatterStruct[] | null;
|
|
1706
|
+
harmonicPhases: MatterStruct[] | null;
|
|
1707
|
+
neutralCurrent: Int64 | null;
|
|
1708
|
+
numberOfMeasurementTypes: number;
|
|
1709
|
+
powerFactor: Int64 | null;
|
|
1710
|
+
powerMode: MatterEnum;
|
|
1711
|
+
ranges: MatterStruct[];
|
|
1712
|
+
reactiveCurrent: Int64 | null;
|
|
1713
|
+
reactivePower: Int64 | null;
|
|
1714
|
+
rmsCurrent: Int64 | null;
|
|
1715
|
+
rmsPower: Int64 | null;
|
|
1716
|
+
rmsVoltage: Int64 | null;
|
|
1717
|
+
voltage: Int64 | null;
|
|
1718
|
+
};
|
|
1719
|
+
commands: {};
|
|
1720
|
+
events: {
|
|
1721
|
+
MeasurementPeriodRanges: {
|
|
1722
|
+
ranges: MatterStruct[];
|
|
1723
|
+
};
|
|
1724
|
+
};
|
|
1725
|
+
};
|
|
1726
|
+
'EnergyEVSE': {
|
|
1727
|
+
features: {
|
|
1728
|
+
PREF: 'ChargingPreferences';
|
|
1729
|
+
PNC: 'PlugAndCharge';
|
|
1730
|
+
RFID: 'RFID';
|
|
1731
|
+
SOC: 'SoCReporting';
|
|
1732
|
+
V2X: 'V2X';
|
|
1733
|
+
};
|
|
1734
|
+
attributes: {
|
|
1735
|
+
approximateEvEfficiency: number | null;
|
|
1736
|
+
batteryCapacity: Int64 | null;
|
|
1737
|
+
chargingEnabledUntil: EpochS | null;
|
|
1738
|
+
circuitCapacity: Int64;
|
|
1739
|
+
dischargingEnabledUntil: EpochS | null;
|
|
1740
|
+
faultState: MatterEnum;
|
|
1741
|
+
maximumChargeCurrent: Int64;
|
|
1742
|
+
maximumDischargeCurrent: Int64;
|
|
1743
|
+
minimumChargeCurrent: Int64;
|
|
1744
|
+
nextChargeRequiredEnergy: Int64 | null;
|
|
1745
|
+
nextChargeStartTime: EpochS | null;
|
|
1746
|
+
nextChargeTargetSoC: Percent | null;
|
|
1747
|
+
nextChargeTargetTime: EpochS | null;
|
|
1748
|
+
randomizationDelayWindow: ElapsedS;
|
|
1749
|
+
sessionDuration: ElapsedS | null;
|
|
1750
|
+
sessionEnergyCharged: Int64 | null;
|
|
1751
|
+
sessionEnergyDischarged: Int64 | null;
|
|
1752
|
+
sessionId: number | null;
|
|
1753
|
+
state: MatterEnum | null;
|
|
1754
|
+
stateOfCharge: Percent | null;
|
|
1755
|
+
supplyState: MatterEnum;
|
|
1756
|
+
userMaximumChargeCurrent: Int64;
|
|
1757
|
+
vehicleId: string | null;
|
|
1758
|
+
};
|
|
1759
|
+
commands: {
|
|
1760
|
+
clearTargets: undefined;
|
|
1761
|
+
disable: undefined;
|
|
1762
|
+
enableCharging: {
|
|
1763
|
+
chargingEnabledUntil: EpochS | null;
|
|
1764
|
+
minimumChargeCurrent: Int64;
|
|
1765
|
+
maximumChargeCurrent: Int64;
|
|
1766
|
+
};
|
|
1767
|
+
enableDischarging: {
|
|
1768
|
+
dischargingEnabledUntil: EpochS | null;
|
|
1769
|
+
maximumDischargeCurrent: Int64;
|
|
1770
|
+
};
|
|
1771
|
+
getTargets: undefined;
|
|
1772
|
+
setTargets: {
|
|
1773
|
+
chargingTargetSchedules: MatterStruct[];
|
|
1774
|
+
};
|
|
1775
|
+
startDiagnostics: undefined;
|
|
1776
|
+
};
|
|
1777
|
+
events: {
|
|
1778
|
+
EVConnected: {
|
|
1779
|
+
sessionId: number;
|
|
1780
|
+
};
|
|
1781
|
+
EVNotDetected: {
|
|
1782
|
+
sessionId: number;
|
|
1783
|
+
state: MatterEnum;
|
|
1784
|
+
sessionDuration: ElapsedS;
|
|
1785
|
+
sessionEnergyCharged: Int64;
|
|
1786
|
+
sessionEnergyDischarged: Int64;
|
|
1787
|
+
};
|
|
1788
|
+
EnergyTransferStarted: {
|
|
1789
|
+
sessionId: number;
|
|
1790
|
+
state: MatterEnum;
|
|
1791
|
+
maximumCurrent: Int64;
|
|
1792
|
+
maximumDischargeCurrent: Int64;
|
|
1793
|
+
};
|
|
1794
|
+
EnergyTransferStopped: {
|
|
1795
|
+
sessionId: number;
|
|
1796
|
+
state: MatterEnum;
|
|
1797
|
+
reason: MatterEnum;
|
|
1798
|
+
energyTransferred: Int64;
|
|
1799
|
+
energyDischarged: Int64;
|
|
1800
|
+
};
|
|
1801
|
+
Fault: {
|
|
1802
|
+
sessionId: number | null;
|
|
1803
|
+
state: MatterEnum;
|
|
1804
|
+
faultStatePreviousState: MatterEnum;
|
|
1805
|
+
faultStateCurrentState: MatterEnum;
|
|
1806
|
+
};
|
|
1807
|
+
RFID: {
|
|
1808
|
+
uid: Bytes;
|
|
1809
|
+
};
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1812
|
+
'EnergyEVSEMode': {
|
|
1813
|
+
features: {
|
|
1814
|
+
DEPONOFF: 'OnOff';
|
|
1815
|
+
};
|
|
1816
|
+
attributes: {
|
|
1817
|
+
currentMode: ModeId;
|
|
1818
|
+
onMode: ModeId | null;
|
|
1819
|
+
startUpMode: ModeId | null;
|
|
1820
|
+
supportedModes: SupportedModes[];
|
|
1821
|
+
};
|
|
1822
|
+
commands: {
|
|
1823
|
+
changeToMode: {
|
|
1824
|
+
newMode: number;
|
|
1825
|
+
};
|
|
1826
|
+
};
|
|
1827
|
+
events: {};
|
|
1828
|
+
};
|
|
1829
|
+
'EnergyPreference': {
|
|
1830
|
+
features: {
|
|
1831
|
+
BALA: 'EnergyBalance';
|
|
1832
|
+
LPMS: 'LowPowerModeSensitivity';
|
|
1833
|
+
};
|
|
1834
|
+
attributes: {
|
|
1835
|
+
currentEnergyBalance: number;
|
|
1836
|
+
currentLowPowerModeSensitivity: number;
|
|
1837
|
+
energyBalances: MatterStruct[];
|
|
1838
|
+
energyPriorities: MatterEnum[];
|
|
1839
|
+
lowPowerModeSensitivities: MatterStruct[];
|
|
1840
|
+
};
|
|
1841
|
+
commands: {};
|
|
1842
|
+
events: {};
|
|
1843
|
+
};
|
|
1844
|
+
'EthernetNetworkDiagnostics': {
|
|
1845
|
+
features: {
|
|
1846
|
+
ERRCNT: 'ErrorCounts';
|
|
1847
|
+
PKTCNT: 'PacketCounts';
|
|
1848
|
+
};
|
|
1849
|
+
attributes: {
|
|
1850
|
+
carrierDetect: boolean | null;
|
|
1851
|
+
collisionCount: Int64;
|
|
1852
|
+
fullDuplex: boolean | null;
|
|
1853
|
+
overrunCount: Int64;
|
|
1854
|
+
packetRxCount: Int64;
|
|
1855
|
+
packetTxCount: Int64;
|
|
1856
|
+
phyRate: MatterEnum | null;
|
|
1857
|
+
timeSinceReset: Int64;
|
|
1858
|
+
txErrCount: Int64;
|
|
1859
|
+
};
|
|
1860
|
+
commands: {
|
|
1861
|
+
resetCounts: undefined;
|
|
1862
|
+
};
|
|
1863
|
+
events: {};
|
|
1864
|
+
};
|
|
1865
|
+
'FanControl': {
|
|
1866
|
+
features: {
|
|
1867
|
+
DIR: 'AirflowDirection';
|
|
1868
|
+
AUT: 'Auto';
|
|
1869
|
+
SPD: 'MultiSpeed';
|
|
1870
|
+
RCK: 'Rocking';
|
|
1871
|
+
STEP: 'Step';
|
|
1872
|
+
WND: 'Wind';
|
|
1873
|
+
};
|
|
1874
|
+
attributes: {
|
|
1875
|
+
airflowDirection: MatterEnum;
|
|
1876
|
+
fanMode: MatterEnum;
|
|
1877
|
+
fanModeSequence: MatterEnum;
|
|
1878
|
+
percentCurrent: Percent;
|
|
1879
|
+
percentSetting: Percent | null;
|
|
1880
|
+
rockSetting: MatterBitmap;
|
|
1881
|
+
rockSupport: MatterBitmap;
|
|
1882
|
+
speedCurrent: number;
|
|
1883
|
+
speedMax: number;
|
|
1884
|
+
speedSetting: number | null;
|
|
1885
|
+
windSetting: MatterBitmap;
|
|
1886
|
+
windSupport: MatterBitmap;
|
|
1887
|
+
};
|
|
1888
|
+
commands: {
|
|
1889
|
+
step: {
|
|
1890
|
+
direction: MatterEnum;
|
|
1891
|
+
wrap: boolean;
|
|
1892
|
+
lowestOff: boolean;
|
|
1893
|
+
};
|
|
1894
|
+
};
|
|
1895
|
+
events: {};
|
|
1896
|
+
};
|
|
1897
|
+
'FixedLabel': {
|
|
1898
|
+
features: {};
|
|
1899
|
+
attributes: {
|
|
1900
|
+
labelList: LabelStruct[];
|
|
1901
|
+
};
|
|
1902
|
+
commands: {};
|
|
1903
|
+
events: {};
|
|
1904
|
+
};
|
|
1905
|
+
'FlowMeasurement': {
|
|
1906
|
+
features: {};
|
|
1907
|
+
attributes: {
|
|
1908
|
+
maxMeasuredValue: number | null;
|
|
1909
|
+
measuredValue: number | null;
|
|
1910
|
+
minMeasuredValue: number | null;
|
|
1911
|
+
tolerance: number;
|
|
1912
|
+
};
|
|
1913
|
+
commands: {};
|
|
1914
|
+
events: {};
|
|
1915
|
+
};
|
|
1916
|
+
'FormaldehydeConcentrationMeasurement': {
|
|
1917
|
+
features: {
|
|
1918
|
+
AVG: 'AverageMeasurement';
|
|
1919
|
+
CRI: 'CriticalLevel';
|
|
1920
|
+
LEV: 'LevelIndication';
|
|
1921
|
+
MED: 'MediumLevel';
|
|
1922
|
+
MEA: 'NumericMeasurement';
|
|
1923
|
+
PEA: 'PeakMeasurement';
|
|
1924
|
+
};
|
|
1925
|
+
attributes: {
|
|
1926
|
+
averageMeasuredValue: number | null;
|
|
1927
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
1928
|
+
levelValue: MatterEnum;
|
|
1929
|
+
maxMeasuredValue: number | null;
|
|
1930
|
+
measuredValue: number | null;
|
|
1931
|
+
measurementMedium: MatterEnum;
|
|
1932
|
+
measurementUnit: MatterEnum;
|
|
1933
|
+
minMeasuredValue: number | null;
|
|
1934
|
+
peakMeasuredValue: number | null;
|
|
1935
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
1936
|
+
uncertainty: number;
|
|
1937
|
+
};
|
|
1938
|
+
commands: {};
|
|
1939
|
+
events: {};
|
|
1940
|
+
};
|
|
1941
|
+
'GeneralCommissioning': {
|
|
1942
|
+
features: {
|
|
1943
|
+
NR: 'NetworkRecovery';
|
|
1944
|
+
TC: 'TermsAndConditions';
|
|
1945
|
+
};
|
|
1946
|
+
attributes: {
|
|
1947
|
+
basicCommissioningInfo: MatterStruct;
|
|
1948
|
+
breadcrumb: Int64;
|
|
1949
|
+
isCommissioningWithoutPower: boolean;
|
|
1950
|
+
locationCapability: MatterEnum;
|
|
1951
|
+
networkRecoveryReason: MatterEnum | null;
|
|
1952
|
+
recoveryIdentifier: Bytes;
|
|
1953
|
+
regulatoryConfig: MatterEnum;
|
|
1954
|
+
supportsConcurrentConnection: boolean;
|
|
1955
|
+
tcAcceptedVersion: number;
|
|
1956
|
+
tcAcknowledgements: MatterBitmap;
|
|
1957
|
+
tcAcknowledgementsRequired: boolean;
|
|
1958
|
+
tcMinRequiredVersion: number;
|
|
1959
|
+
tcUpdateDeadline: number | null;
|
|
1960
|
+
};
|
|
1961
|
+
commands: {
|
|
1962
|
+
armFailSafe: {
|
|
1963
|
+
expiryLengthSeconds: number;
|
|
1964
|
+
breadcrumb: Int64;
|
|
1965
|
+
};
|
|
1966
|
+
commissioningComplete: undefined;
|
|
1967
|
+
setRegulatoryConfig: {
|
|
1968
|
+
newRegulatoryConfig: MatterEnum;
|
|
1969
|
+
countryCode: string;
|
|
1970
|
+
breadcrumb: Int64;
|
|
1971
|
+
};
|
|
1972
|
+
setTCAcknowledgements: {
|
|
1973
|
+
tcVersion: number;
|
|
1974
|
+
tcUserResponse: MatterBitmap;
|
|
1975
|
+
};
|
|
1976
|
+
};
|
|
1977
|
+
events: {};
|
|
1978
|
+
};
|
|
1979
|
+
'GeneralDiagnostics': {
|
|
1980
|
+
features: {
|
|
1981
|
+
DMTEST: 'DataModelTest';
|
|
1982
|
+
};
|
|
1983
|
+
attributes: {
|
|
1984
|
+
activeHardwareFaults: MatterEnum[];
|
|
1985
|
+
activeNetworkFaults: MatterEnum[];
|
|
1986
|
+
activeRadioFaults: MatterEnum[];
|
|
1987
|
+
bootReason: MatterEnum;
|
|
1988
|
+
doNotUse: never;
|
|
1989
|
+
networkInterfaces: MatterStruct[];
|
|
1990
|
+
rebootCount: number;
|
|
1991
|
+
testEventTriggersEnabled: boolean;
|
|
1992
|
+
totalOperationalHours: number;
|
|
1993
|
+
upTime: Int64;
|
|
1994
|
+
};
|
|
1995
|
+
commands: {
|
|
1996
|
+
payloadTestRequest: {
|
|
1997
|
+
enableKey: Bytes;
|
|
1998
|
+
value: number;
|
|
1999
|
+
count: number;
|
|
2000
|
+
};
|
|
2001
|
+
testEventTrigger: {
|
|
2002
|
+
enableKey: Bytes;
|
|
2003
|
+
eventTrigger: Int64;
|
|
2004
|
+
};
|
|
2005
|
+
timeSnapshot: undefined;
|
|
2006
|
+
};
|
|
2007
|
+
events: {
|
|
2008
|
+
HardwareFaultChange: {
|
|
2009
|
+
current: MatterEnum[];
|
|
2010
|
+
previous: MatterEnum[];
|
|
2011
|
+
};
|
|
2012
|
+
RadioFaultChange: {
|
|
2013
|
+
current: MatterEnum[];
|
|
2014
|
+
previous: MatterEnum[];
|
|
2015
|
+
};
|
|
2016
|
+
NetworkFaultChange: {
|
|
2017
|
+
current: MatterEnum[];
|
|
2018
|
+
previous: MatterEnum[];
|
|
2019
|
+
};
|
|
2020
|
+
BootReason: {
|
|
2021
|
+
bootReason: MatterEnum;
|
|
2022
|
+
};
|
|
2023
|
+
};
|
|
2024
|
+
};
|
|
2025
|
+
'GroupKeyManagement': {
|
|
2026
|
+
features: {
|
|
2027
|
+
CS: 'CacheAndSync';
|
|
2028
|
+
};
|
|
2029
|
+
attributes: {
|
|
2030
|
+
groupKeyMap: MatterStruct[];
|
|
2031
|
+
groupTable: MatterStruct[];
|
|
2032
|
+
maxGroupKeysPerFabric: number;
|
|
2033
|
+
maxGroupsPerFabric: number;
|
|
2034
|
+
};
|
|
2035
|
+
commands: {
|
|
2036
|
+
keySetRead: {
|
|
2037
|
+
groupKeySetId: number;
|
|
2038
|
+
};
|
|
2039
|
+
keySetReadAllIndices: undefined;
|
|
2040
|
+
keySetRemove: {
|
|
2041
|
+
groupKeySetId: number;
|
|
2042
|
+
};
|
|
2043
|
+
keySetWrite: {
|
|
2044
|
+
groupKeySet: MatterStruct;
|
|
2045
|
+
};
|
|
2046
|
+
};
|
|
2047
|
+
events: {};
|
|
2048
|
+
};
|
|
2049
|
+
'Groups': {
|
|
2050
|
+
features: {
|
|
2051
|
+
GN: 'GroupNames';
|
|
2052
|
+
};
|
|
2053
|
+
attributes: {
|
|
2054
|
+
nameSupport: MatterBitmap;
|
|
2055
|
+
};
|
|
2056
|
+
commands: {
|
|
2057
|
+
addGroup: {
|
|
2058
|
+
groupId: GroupId;
|
|
2059
|
+
groupName: string;
|
|
2060
|
+
};
|
|
2061
|
+
addGroupIfIdentifying: {
|
|
2062
|
+
groupId: GroupId;
|
|
2063
|
+
groupName: string;
|
|
2064
|
+
};
|
|
2065
|
+
getGroupMembership: {
|
|
2066
|
+
groupList: GroupId[];
|
|
2067
|
+
};
|
|
2068
|
+
removeAllGroups: undefined;
|
|
2069
|
+
removeGroup: {
|
|
2070
|
+
groupId: GroupId;
|
|
2071
|
+
};
|
|
2072
|
+
viewGroup: {
|
|
2073
|
+
groupId: GroupId;
|
|
2074
|
+
};
|
|
2075
|
+
};
|
|
2076
|
+
events: {};
|
|
2077
|
+
};
|
|
2078
|
+
'HEPAFilterMonitoring': {
|
|
2079
|
+
features: {
|
|
2080
|
+
CON: 'Condition';
|
|
2081
|
+
REP: 'ReplacementProductList';
|
|
2082
|
+
WRN: 'Warning';
|
|
2083
|
+
};
|
|
2084
|
+
attributes: {
|
|
2085
|
+
changeIndication: MatterEnum;
|
|
2086
|
+
condition: Percent;
|
|
2087
|
+
degradationDirection: MatterEnum;
|
|
2088
|
+
inPlaceIndicator: boolean;
|
|
2089
|
+
lastChangedTime: EpochS | null;
|
|
2090
|
+
replacementProductList: MatterStruct[];
|
|
2091
|
+
};
|
|
2092
|
+
commands: {
|
|
2093
|
+
resetCondition: undefined;
|
|
2094
|
+
};
|
|
2095
|
+
events: {};
|
|
2096
|
+
};
|
|
2097
|
+
'ICDManagement': {
|
|
2098
|
+
features: {
|
|
2099
|
+
CIP: 'CheckInProtocolSupport';
|
|
2100
|
+
DSLS: 'DynamicSitLitSupport';
|
|
2101
|
+
LITS: 'LongIdleTimeSupport';
|
|
2102
|
+
UAT: 'UserActiveModeTrigger';
|
|
2103
|
+
};
|
|
2104
|
+
attributes: {
|
|
2105
|
+
activeModeDuration: number;
|
|
2106
|
+
activeModeThreshold: number;
|
|
2107
|
+
clientsSupportedPerFabric: number;
|
|
2108
|
+
icdCounter: number;
|
|
2109
|
+
idleModeDuration: number;
|
|
2110
|
+
maximumCheckInBackoff: number;
|
|
2111
|
+
operatingMode: MatterEnum;
|
|
2112
|
+
registeredClients: MatterStruct[];
|
|
2113
|
+
userActiveModeTriggerHint: MatterBitmap;
|
|
2114
|
+
userActiveModeTriggerInstruction: string;
|
|
2115
|
+
};
|
|
2116
|
+
commands: {
|
|
2117
|
+
registerClient: {
|
|
2118
|
+
checkInNodeId: NodeId;
|
|
2119
|
+
monitoredSubject: SubjectId;
|
|
2120
|
+
key: Bytes;
|
|
2121
|
+
verificationKey: Bytes;
|
|
2122
|
+
clientType: MatterEnum;
|
|
2123
|
+
};
|
|
2124
|
+
stayActiveRequest: {
|
|
2125
|
+
stayActiveDuration: number;
|
|
2126
|
+
};
|
|
2127
|
+
unregisterClient: {
|
|
2128
|
+
checkInNodeId: NodeId;
|
|
2129
|
+
verificationKey: Bytes;
|
|
2130
|
+
};
|
|
2131
|
+
};
|
|
2132
|
+
events: {};
|
|
2133
|
+
};
|
|
2134
|
+
'Identify': {
|
|
2135
|
+
features: {};
|
|
2136
|
+
attributes: {
|
|
2137
|
+
identifyTime: number;
|
|
2138
|
+
identifyType: MatterEnum;
|
|
2139
|
+
};
|
|
2140
|
+
commands: {
|
|
2141
|
+
identify: {
|
|
2142
|
+
identifyTime: number;
|
|
2143
|
+
};
|
|
2144
|
+
triggerEffect: {
|
|
2145
|
+
effectIdentifier: MatterEnum;
|
|
2146
|
+
effectVariant: MatterEnum;
|
|
2147
|
+
};
|
|
2148
|
+
};
|
|
2149
|
+
events: {};
|
|
2150
|
+
};
|
|
2151
|
+
'IlluminanceMeasurement': {
|
|
2152
|
+
features: {};
|
|
2153
|
+
attributes: {
|
|
2154
|
+
lightSensorType: MatterEnum | null;
|
|
2155
|
+
maxMeasuredValue: number | null;
|
|
2156
|
+
measuredValue: number | null;
|
|
2157
|
+
minMeasuredValue: number | null;
|
|
2158
|
+
tolerance: number;
|
|
2159
|
+
};
|
|
2160
|
+
commands: {};
|
|
2161
|
+
events: {};
|
|
2162
|
+
};
|
|
2163
|
+
'JointFabricAdministrator': {
|
|
2164
|
+
features: {};
|
|
2165
|
+
attributes: {
|
|
2166
|
+
administratorFabricIndex: FabricIndex | null;
|
|
2167
|
+
};
|
|
2168
|
+
commands: {
|
|
2169
|
+
addICAC: {
|
|
2170
|
+
icacValue: Bytes;
|
|
2171
|
+
};
|
|
2172
|
+
announceJointFabricAdministrator: {
|
|
2173
|
+
endpointId: EndpointNumber;
|
|
2174
|
+
};
|
|
2175
|
+
iCACCSRRequest: undefined;
|
|
2176
|
+
openJointCommissioningWindow: {
|
|
2177
|
+
commissioningTimeout: number;
|
|
2178
|
+
pakePasscodeVerifier: Bytes;
|
|
2179
|
+
discriminator: number;
|
|
2180
|
+
iterations: number;
|
|
2181
|
+
salt: Bytes;
|
|
2182
|
+
};
|
|
2183
|
+
transferAnchorComplete: undefined;
|
|
2184
|
+
transferAnchorRequest: undefined;
|
|
2185
|
+
};
|
|
2186
|
+
events: {};
|
|
2187
|
+
};
|
|
2188
|
+
'JointFabricDatastore': {
|
|
2189
|
+
features: {};
|
|
2190
|
+
attributes: {
|
|
2191
|
+
adminList: MatterStruct[];
|
|
2192
|
+
anchorNodeId: NodeId;
|
|
2193
|
+
anchorRootCa: Bytes;
|
|
2194
|
+
anchorVendorId: VendorId;
|
|
2195
|
+
endpointBindingList: MatterStruct[];
|
|
2196
|
+
endpointGroupIdList: MatterStruct[];
|
|
2197
|
+
friendlyName: string;
|
|
2198
|
+
groupKeySetList: MatterStruct[];
|
|
2199
|
+
groupList: MatterStruct[];
|
|
2200
|
+
nodeAclList: MatterStruct[];
|
|
2201
|
+
nodeEndpointList: MatterStruct[];
|
|
2202
|
+
nodeKeySetList: MatterStruct[];
|
|
2203
|
+
nodeList: MatterStruct[];
|
|
2204
|
+
status: MatterStruct;
|
|
2205
|
+
};
|
|
2206
|
+
commands: {
|
|
2207
|
+
addACLToNode: {
|
|
2208
|
+
nodeId: NodeId;
|
|
2209
|
+
aclEntry: MatterStruct;
|
|
2210
|
+
};
|
|
2211
|
+
addAdmin: {
|
|
2212
|
+
nodeId: NodeId;
|
|
2213
|
+
friendlyName: string;
|
|
2214
|
+
vendorId: VendorId;
|
|
2215
|
+
icac: Bytes;
|
|
2216
|
+
};
|
|
2217
|
+
addBindingToEndpointForNode: {
|
|
2218
|
+
nodeId: NodeId;
|
|
2219
|
+
endpointId: EndpointNumber;
|
|
2220
|
+
binding: MatterStruct;
|
|
2221
|
+
};
|
|
2222
|
+
addGroup: {
|
|
2223
|
+
groupId: GroupId;
|
|
2224
|
+
friendlyName: string;
|
|
2225
|
+
groupKeySetId: number | null;
|
|
2226
|
+
groupCat: number | null;
|
|
2227
|
+
groupCatVersion: number | null;
|
|
2228
|
+
groupPermission: MatterEnum;
|
|
2229
|
+
};
|
|
2230
|
+
addGroupIDToEndpointForNode: {
|
|
2231
|
+
nodeId: NodeId;
|
|
2232
|
+
endpointId: EndpointNumber;
|
|
2233
|
+
groupId: GroupId;
|
|
2234
|
+
};
|
|
2235
|
+
addKeySet: {
|
|
2236
|
+
groupKeySet: MatterStruct;
|
|
2237
|
+
};
|
|
2238
|
+
addPendingNode: {
|
|
2239
|
+
nodeId: NodeId;
|
|
2240
|
+
friendlyName: string;
|
|
2241
|
+
};
|
|
2242
|
+
refreshNode: {
|
|
2243
|
+
nodeId: NodeId;
|
|
2244
|
+
};
|
|
2245
|
+
removeACLFromNode: {
|
|
2246
|
+
listId: number;
|
|
2247
|
+
nodeId: NodeId;
|
|
2248
|
+
};
|
|
2249
|
+
removeAdmin: {
|
|
2250
|
+
nodeId: NodeId;
|
|
2251
|
+
};
|
|
2252
|
+
removeBindingFromEndpointForNode: {
|
|
2253
|
+
listId: number;
|
|
2254
|
+
endpointId: EndpointNumber;
|
|
2255
|
+
nodeId: NodeId;
|
|
2256
|
+
};
|
|
2257
|
+
removeGroup: {
|
|
2258
|
+
groupId: GroupId;
|
|
2259
|
+
};
|
|
2260
|
+
removeGroupIDFromEndpointForNode: {
|
|
2261
|
+
nodeId: NodeId;
|
|
2262
|
+
endpointId: EndpointNumber;
|
|
2263
|
+
groupId: GroupId;
|
|
2264
|
+
};
|
|
2265
|
+
removeKeySet: {
|
|
2266
|
+
groupKeySetId: number;
|
|
2267
|
+
};
|
|
2268
|
+
removeNode: {
|
|
2269
|
+
nodeId: NodeId;
|
|
2270
|
+
};
|
|
2271
|
+
updateAdmin: {
|
|
2272
|
+
nodeId: NodeId | null;
|
|
2273
|
+
friendlyName: string | null;
|
|
2274
|
+
icac: Bytes | null;
|
|
2275
|
+
};
|
|
2276
|
+
updateEndpointForNode: {
|
|
2277
|
+
endpointId: EndpointNumber;
|
|
2278
|
+
nodeId: NodeId;
|
|
2279
|
+
friendlyName: string;
|
|
2280
|
+
};
|
|
2281
|
+
updateGroup: {
|
|
2282
|
+
groupId: GroupId;
|
|
2283
|
+
friendlyName: string | null;
|
|
2284
|
+
groupKeySetId: number | null;
|
|
2285
|
+
groupCat: number | null;
|
|
2286
|
+
groupCatVersion: number | null;
|
|
2287
|
+
groupPermission: MatterEnum | null;
|
|
2288
|
+
};
|
|
2289
|
+
updateKeySet: {
|
|
2290
|
+
groupKeySet: MatterStruct;
|
|
2291
|
+
};
|
|
2292
|
+
updateNode: {
|
|
2293
|
+
nodeId: NodeId;
|
|
2294
|
+
friendlyName: string;
|
|
2295
|
+
};
|
|
2296
|
+
};
|
|
2297
|
+
events: {};
|
|
2298
|
+
};
|
|
2299
|
+
'KeypadInput': {
|
|
2300
|
+
features: {
|
|
2301
|
+
LK: 'LocationKeys';
|
|
2302
|
+
NV: 'NavigationKeyCodes';
|
|
2303
|
+
NK: 'NumberKeys';
|
|
2304
|
+
};
|
|
2305
|
+
attributes: {};
|
|
2306
|
+
commands: {
|
|
2307
|
+
sendKey: {
|
|
2308
|
+
keyCode: MatterEnum;
|
|
2309
|
+
};
|
|
2310
|
+
};
|
|
2311
|
+
events: {};
|
|
2312
|
+
};
|
|
2313
|
+
'LabelCluster': {
|
|
2314
|
+
features: {};
|
|
2315
|
+
attributes: {
|
|
2316
|
+
labelList: LabelStruct[];
|
|
2317
|
+
};
|
|
2318
|
+
commands: {};
|
|
2319
|
+
events: {};
|
|
2320
|
+
};
|
|
2321
|
+
'LaundryDryerControls': {
|
|
2322
|
+
features: {};
|
|
2323
|
+
attributes: {
|
|
2324
|
+
selectedDrynessLevel: MatterEnum | null;
|
|
2325
|
+
supportedDrynessLevels: MatterEnum[];
|
|
2326
|
+
};
|
|
2327
|
+
commands: {};
|
|
2328
|
+
events: {};
|
|
2329
|
+
};
|
|
2330
|
+
'LaundryWasherControls': {
|
|
2331
|
+
features: {
|
|
2332
|
+
RINSE: 'Rinse';
|
|
2333
|
+
SPIN: 'Spin';
|
|
2334
|
+
};
|
|
2335
|
+
attributes: {
|
|
2336
|
+
numberOfRinses: MatterEnum;
|
|
2337
|
+
spinSpeedCurrent: number | null;
|
|
2338
|
+
spinSpeeds: string[];
|
|
2339
|
+
supportedRinses: MatterEnum[];
|
|
2340
|
+
};
|
|
2341
|
+
commands: {};
|
|
2342
|
+
events: {};
|
|
2343
|
+
};
|
|
2344
|
+
'LaundryWasherMode': {
|
|
2345
|
+
features: {
|
|
2346
|
+
DEPONOFF: 'OnOff';
|
|
2347
|
+
};
|
|
2348
|
+
attributes: {
|
|
2349
|
+
currentMode: ModeId;
|
|
2350
|
+
onMode: ModeId | null;
|
|
2351
|
+
startUpMode: ModeId | null;
|
|
2352
|
+
supportedModes: SupportedModes[];
|
|
2353
|
+
};
|
|
2354
|
+
commands: {
|
|
2355
|
+
changeToMode: {
|
|
2356
|
+
newMode: number;
|
|
2357
|
+
};
|
|
2358
|
+
};
|
|
2359
|
+
events: {};
|
|
2360
|
+
};
|
|
2361
|
+
'LevelControl': {
|
|
2362
|
+
features: {
|
|
2363
|
+
FQ: 'Frequency';
|
|
2364
|
+
LT: 'Lighting';
|
|
2365
|
+
OO: 'OnOff';
|
|
2366
|
+
};
|
|
2367
|
+
attributes: {
|
|
2368
|
+
currentFrequency: number;
|
|
2369
|
+
currentLevel: number | null;
|
|
2370
|
+
defaultMoveRate: number | null;
|
|
2371
|
+
maxFrequency: number;
|
|
2372
|
+
maxLevel: number;
|
|
2373
|
+
minFrequency: number;
|
|
2374
|
+
minLevel: number;
|
|
2375
|
+
offTransitionTime: number | null;
|
|
2376
|
+
onLevel: number | null;
|
|
2377
|
+
onOffTransitionTime: number;
|
|
2378
|
+
onTransitionTime: number | null;
|
|
2379
|
+
options: MatterBitmap;
|
|
2380
|
+
remainingTime: number;
|
|
2381
|
+
startUpCurrentLevel: number | null;
|
|
2382
|
+
};
|
|
2383
|
+
commands: {
|
|
2384
|
+
move: {
|
|
2385
|
+
moveMode: MatterEnum;
|
|
2386
|
+
rate: number | null;
|
|
2387
|
+
optionsMask: MatterBitmap;
|
|
2388
|
+
optionsOverride: MatterBitmap;
|
|
2389
|
+
};
|
|
2390
|
+
moveToClosestFrequency: {
|
|
2391
|
+
frequency: number;
|
|
2392
|
+
};
|
|
2393
|
+
moveToLevel: {
|
|
2394
|
+
level: number;
|
|
2395
|
+
transitionTime: number | null;
|
|
2396
|
+
optionsMask: MatterBitmap;
|
|
2397
|
+
optionsOverride: MatterBitmap;
|
|
2398
|
+
};
|
|
2399
|
+
moveToLevelWithOnOff: undefined;
|
|
2400
|
+
moveWithOnOff: undefined;
|
|
2401
|
+
step: {
|
|
2402
|
+
stepMode: MatterEnum;
|
|
2403
|
+
stepSize: number;
|
|
2404
|
+
transitionTime: number | null;
|
|
2405
|
+
optionsMask: MatterBitmap;
|
|
2406
|
+
optionsOverride: MatterBitmap;
|
|
2407
|
+
};
|
|
2408
|
+
stepWithOnOff: undefined;
|
|
2409
|
+
stop: {
|
|
2410
|
+
optionsMask: MatterBitmap;
|
|
2411
|
+
optionsOverride: MatterBitmap;
|
|
2412
|
+
};
|
|
2413
|
+
stopWithOnOff: undefined;
|
|
2414
|
+
};
|
|
2415
|
+
events: {};
|
|
2416
|
+
};
|
|
2417
|
+
'LocalizationConfiguration': {
|
|
2418
|
+
features: {};
|
|
2419
|
+
attributes: {
|
|
2420
|
+
activeLocale: string;
|
|
2421
|
+
supportedLocales: string[];
|
|
2422
|
+
};
|
|
2423
|
+
commands: {};
|
|
2424
|
+
events: {};
|
|
2425
|
+
};
|
|
2426
|
+
'LowPower': {
|
|
2427
|
+
features: {};
|
|
2428
|
+
attributes: {};
|
|
2429
|
+
commands: {
|
|
2430
|
+
sleep: undefined;
|
|
2431
|
+
};
|
|
2432
|
+
events: {};
|
|
2433
|
+
};
|
|
2434
|
+
'MediaInput': {
|
|
2435
|
+
features: {
|
|
2436
|
+
NU: 'NameUpdates';
|
|
2437
|
+
};
|
|
2438
|
+
attributes: {
|
|
2439
|
+
currentInput: number;
|
|
2440
|
+
inputList: MatterStruct[];
|
|
2441
|
+
};
|
|
2442
|
+
commands: {
|
|
2443
|
+
hideInputStatus: undefined;
|
|
2444
|
+
renameInput: {
|
|
2445
|
+
index: number;
|
|
2446
|
+
name: string;
|
|
2447
|
+
};
|
|
2448
|
+
selectInput: {
|
|
2449
|
+
index: number;
|
|
2450
|
+
};
|
|
2451
|
+
showInputStatus: undefined;
|
|
2452
|
+
};
|
|
2453
|
+
events: {};
|
|
2454
|
+
};
|
|
2455
|
+
'MediaPlayback': {
|
|
2456
|
+
features: {
|
|
2457
|
+
AS: 'AdvancedSeek';
|
|
2458
|
+
AA: 'AudioAdvance';
|
|
2459
|
+
AT: 'AudioTracks';
|
|
2460
|
+
TT: 'TextTracks';
|
|
2461
|
+
VS: 'VariableSpeed';
|
|
2462
|
+
};
|
|
2463
|
+
attributes: {
|
|
2464
|
+
activeAudioTrack: MatterStruct | null;
|
|
2465
|
+
activeTextTrack: MatterStruct | null;
|
|
2466
|
+
availableAudioTracks: MatterStruct[] | null;
|
|
2467
|
+
availableTextTracks: MatterStruct[] | null;
|
|
2468
|
+
currentState: MatterEnum;
|
|
2469
|
+
duration: Int64 | null;
|
|
2470
|
+
playbackSpeed: number;
|
|
2471
|
+
sampledPosition: MatterStruct | null;
|
|
2472
|
+
seekRangeEnd: Int64 | null;
|
|
2473
|
+
seekRangeStart: Int64 | null;
|
|
2474
|
+
startTime: EpochUs | null;
|
|
2475
|
+
};
|
|
2476
|
+
commands: {
|
|
2477
|
+
activateAudioTrack: {
|
|
2478
|
+
trackId: string;
|
|
2479
|
+
audioOutputIndex: number | null;
|
|
2480
|
+
};
|
|
2481
|
+
activateTextTrack: {
|
|
2482
|
+
trackId: string;
|
|
2483
|
+
};
|
|
2484
|
+
deactivateTextTrack: undefined;
|
|
2485
|
+
fastForward: {
|
|
2486
|
+
audioAdvanceUnmuted: boolean;
|
|
2487
|
+
};
|
|
2488
|
+
next: undefined;
|
|
2489
|
+
pause: undefined;
|
|
2490
|
+
play: undefined;
|
|
2491
|
+
previous: undefined;
|
|
2492
|
+
rewind: {
|
|
2493
|
+
audioAdvanceUnmuted: boolean;
|
|
2494
|
+
};
|
|
2495
|
+
seek: {
|
|
2496
|
+
position: Int64;
|
|
2497
|
+
};
|
|
2498
|
+
skipBackward: {
|
|
2499
|
+
deltaPositionMilliseconds: Int64;
|
|
2500
|
+
};
|
|
2501
|
+
skipForward: {
|
|
2502
|
+
deltaPositionMilliseconds: Int64;
|
|
2503
|
+
};
|
|
2504
|
+
startOver: undefined;
|
|
2505
|
+
stop: undefined;
|
|
2506
|
+
};
|
|
2507
|
+
events: {
|
|
2508
|
+
StateChanged: {
|
|
2509
|
+
currentState: MatterEnum;
|
|
2510
|
+
startTime: EpochUs;
|
|
2511
|
+
duration: Int64;
|
|
2512
|
+
sampledPosition: MatterStruct;
|
|
2513
|
+
playbackSpeed: number;
|
|
2514
|
+
seekRangeEnd: Int64;
|
|
2515
|
+
seekRangeStart: Int64;
|
|
2516
|
+
data: Bytes;
|
|
2517
|
+
audioAdvanceUnmuted: boolean;
|
|
2518
|
+
};
|
|
2519
|
+
};
|
|
2520
|
+
};
|
|
2521
|
+
'Messages': {
|
|
2522
|
+
features: {
|
|
2523
|
+
RPLY: 'ConfirmationReply';
|
|
2524
|
+
RESP: 'ConfirmationResponse';
|
|
2525
|
+
PROT: 'ProtectedMessages';
|
|
2526
|
+
CONF: 'ReceivedConfirmation';
|
|
2527
|
+
};
|
|
2528
|
+
attributes: {
|
|
2529
|
+
activeMessageIDs: Bytes[];
|
|
2530
|
+
messages: MatterStruct[];
|
|
2531
|
+
};
|
|
2532
|
+
commands: {
|
|
2533
|
+
cancelMessagesRequest: {
|
|
2534
|
+
messageIDs: Bytes[];
|
|
2535
|
+
};
|
|
2536
|
+
presentMessagesRequest: {
|
|
2537
|
+
messageId: Bytes;
|
|
2538
|
+
priority: MatterEnum;
|
|
2539
|
+
messageControl: MatterBitmap;
|
|
2540
|
+
startTime: EpochS | null;
|
|
2541
|
+
duration: Int64 | null;
|
|
2542
|
+
messageText: string;
|
|
2543
|
+
responses: MatterStruct[];
|
|
2544
|
+
};
|
|
2545
|
+
};
|
|
2546
|
+
events: {
|
|
2547
|
+
MessageQueued: {
|
|
2548
|
+
messageId: Bytes;
|
|
2549
|
+
};
|
|
2550
|
+
MessagePresented: {
|
|
2551
|
+
messageId: Bytes;
|
|
2552
|
+
};
|
|
2553
|
+
MessageComplete: {
|
|
2554
|
+
messageId: Bytes;
|
|
2555
|
+
responseId: number | null;
|
|
2556
|
+
reply: string | null;
|
|
2557
|
+
futureMessagesPreference: MatterEnum | null;
|
|
2558
|
+
};
|
|
2559
|
+
};
|
|
2560
|
+
};
|
|
2561
|
+
'MeterIdentification': {
|
|
2562
|
+
features: {
|
|
2563
|
+
PWRTHLD: 'PowerThreshold';
|
|
2564
|
+
};
|
|
2565
|
+
attributes: {
|
|
2566
|
+
meterSerialNumber: string | null;
|
|
2567
|
+
meterType: MatterEnum | null;
|
|
2568
|
+
pointOfDelivery: string | null;
|
|
2569
|
+
powerThreshold: MatterStruct | null;
|
|
2570
|
+
protocolVersion: string | null;
|
|
2571
|
+
};
|
|
2572
|
+
commands: {};
|
|
2573
|
+
events: {};
|
|
2574
|
+
};
|
|
2575
|
+
'MicrowaveOvenControl': {
|
|
2576
|
+
features: {
|
|
2577
|
+
PWRNUM: 'PowerAsNumber';
|
|
2578
|
+
WATTS: 'PowerInWatts';
|
|
2579
|
+
PWRLMTS: 'PowerNumberLimits';
|
|
2580
|
+
};
|
|
2581
|
+
attributes: {
|
|
2582
|
+
cookTime: ElapsedS;
|
|
2583
|
+
maxCookTime: ElapsedS;
|
|
2584
|
+
maxPower: number;
|
|
2585
|
+
minPower: number;
|
|
2586
|
+
powerSetting: number;
|
|
2587
|
+
powerStep: number;
|
|
2588
|
+
selectedWattIndex: number;
|
|
2589
|
+
supportedWatts: number[];
|
|
2590
|
+
wattRating: number;
|
|
2591
|
+
};
|
|
2592
|
+
commands: {
|
|
2593
|
+
addMoreTime: {
|
|
2594
|
+
timeToAdd: ElapsedS;
|
|
2595
|
+
};
|
|
2596
|
+
setCookingParameters: {
|
|
2597
|
+
cookMode: number;
|
|
2598
|
+
cookTime: ElapsedS;
|
|
2599
|
+
powerSetting: number;
|
|
2600
|
+
wattSettingIndex: number;
|
|
2601
|
+
startAfterSetting: boolean;
|
|
2602
|
+
};
|
|
2603
|
+
};
|
|
2604
|
+
events: {};
|
|
2605
|
+
};
|
|
2606
|
+
'MicrowaveOvenMode': {
|
|
2607
|
+
features: {
|
|
2608
|
+
DEPONOFF: 'OnOff';
|
|
2609
|
+
};
|
|
2610
|
+
attributes: {
|
|
2611
|
+
currentMode: ModeId;
|
|
2612
|
+
onMode: ModeId | null;
|
|
2613
|
+
startUpMode: ModeId | null;
|
|
2614
|
+
supportedModes: SupportedModes[];
|
|
2615
|
+
};
|
|
2616
|
+
commands: {
|
|
2617
|
+
changeToMode: {
|
|
2618
|
+
newMode: number;
|
|
2619
|
+
};
|
|
2620
|
+
};
|
|
2621
|
+
events: {};
|
|
2622
|
+
};
|
|
2623
|
+
'ModeBaseCluster': {
|
|
2624
|
+
features: {
|
|
2625
|
+
DEPONOFF: 'OnOff';
|
|
2626
|
+
};
|
|
2627
|
+
attributes: {
|
|
2628
|
+
currentMode: ModeId;
|
|
2629
|
+
onMode: ModeId | null;
|
|
2630
|
+
startUpMode: ModeId | null;
|
|
2631
|
+
supportedModes: SupportedModes[];
|
|
2632
|
+
};
|
|
2633
|
+
commands: {
|
|
2634
|
+
changeToMode: {
|
|
2635
|
+
newMode: number;
|
|
2636
|
+
};
|
|
2637
|
+
};
|
|
2638
|
+
events: {};
|
|
2639
|
+
};
|
|
2640
|
+
'ModeSelect': {
|
|
2641
|
+
features: {
|
|
2642
|
+
DEPONOFF: 'OnOff';
|
|
2643
|
+
};
|
|
2644
|
+
attributes: {
|
|
2645
|
+
currentMode: ModeId;
|
|
2646
|
+
description: string;
|
|
2647
|
+
onMode: ModeId | null;
|
|
2648
|
+
standardNamespace: MatterEnum | null;
|
|
2649
|
+
startUpMode: ModeId | null;
|
|
2650
|
+
supportedModes: SupportedModes[];
|
|
2651
|
+
};
|
|
2652
|
+
commands: {
|
|
2653
|
+
changeToMode: {
|
|
2654
|
+
newMode: number;
|
|
2655
|
+
};
|
|
2656
|
+
};
|
|
2657
|
+
events: {};
|
|
2658
|
+
};
|
|
2659
|
+
'NetworkCommissioning': {
|
|
2660
|
+
features: {
|
|
2661
|
+
ET: 'EthernetNetworkInterface';
|
|
2662
|
+
TH: 'ThreadNetworkInterface';
|
|
2663
|
+
WI: 'WiFiNetworkInterface';
|
|
2664
|
+
};
|
|
2665
|
+
attributes: {
|
|
2666
|
+
connectMaxTimeSeconds: number;
|
|
2667
|
+
interfaceEnabled: boolean;
|
|
2668
|
+
lastConnectErrorValue: number | null;
|
|
2669
|
+
lastNetworkId: Bytes | null;
|
|
2670
|
+
lastNetworkingStatus: MatterEnum | null;
|
|
2671
|
+
maxNetworks: number;
|
|
2672
|
+
networks: MatterStruct[];
|
|
2673
|
+
scanMaxTimeSeconds: number;
|
|
2674
|
+
supportedThreadFeatures: MatterBitmap;
|
|
2675
|
+
supportedWiFiBands: MatterEnum[];
|
|
2676
|
+
threadVersion: number;
|
|
2677
|
+
};
|
|
2678
|
+
commands: {
|
|
2679
|
+
addOrUpdateThreadNetwork: {
|
|
2680
|
+
operationalDataset: Bytes;
|
|
2681
|
+
breadcrumb: Int64;
|
|
2682
|
+
};
|
|
2683
|
+
addOrUpdateWiFiNetwork: {
|
|
2684
|
+
ssid: Bytes;
|
|
2685
|
+
credentials: Bytes;
|
|
2686
|
+
breadcrumb: Int64;
|
|
2687
|
+
};
|
|
2688
|
+
connectNetwork: {
|
|
2689
|
+
networkId: Bytes;
|
|
2690
|
+
breadcrumb: Int64;
|
|
2691
|
+
};
|
|
2692
|
+
removeNetwork: {
|
|
2693
|
+
networkId: Bytes;
|
|
2694
|
+
breadcrumb: Int64;
|
|
2695
|
+
};
|
|
2696
|
+
reorderNetwork: {
|
|
2697
|
+
networkId: Bytes;
|
|
2698
|
+
networkIndex: number;
|
|
2699
|
+
breadcrumb: Int64;
|
|
2700
|
+
};
|
|
2701
|
+
scanNetworks: {
|
|
2702
|
+
ssid: Bytes | null;
|
|
2703
|
+
breadcrumb: Int64;
|
|
2704
|
+
};
|
|
2705
|
+
};
|
|
2706
|
+
events: {};
|
|
2707
|
+
};
|
|
2708
|
+
'NitrogenDioxideConcentrationMeasurement': {
|
|
2709
|
+
features: {
|
|
2710
|
+
AVG: 'AverageMeasurement';
|
|
2711
|
+
CRI: 'CriticalLevel';
|
|
2712
|
+
LEV: 'LevelIndication';
|
|
2713
|
+
MED: 'MediumLevel';
|
|
2714
|
+
MEA: 'NumericMeasurement';
|
|
2715
|
+
PEA: 'PeakMeasurement';
|
|
2716
|
+
};
|
|
2717
|
+
attributes: {
|
|
2718
|
+
averageMeasuredValue: number | null;
|
|
2719
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
2720
|
+
levelValue: MatterEnum;
|
|
2721
|
+
maxMeasuredValue: number | null;
|
|
2722
|
+
measuredValue: number | null;
|
|
2723
|
+
measurementMedium: MatterEnum;
|
|
2724
|
+
measurementUnit: MatterEnum;
|
|
2725
|
+
minMeasuredValue: number | null;
|
|
2726
|
+
peakMeasuredValue: number | null;
|
|
2727
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
2728
|
+
uncertainty: number;
|
|
2729
|
+
};
|
|
2730
|
+
commands: {};
|
|
2731
|
+
events: {};
|
|
2732
|
+
};
|
|
2733
|
+
'OccupancySensing': {
|
|
2734
|
+
features: {
|
|
2735
|
+
AIR: 'ActiveInfrared';
|
|
2736
|
+
OTHER: 'Other';
|
|
2737
|
+
PIR: 'PassiveInfrared';
|
|
2738
|
+
PHY: 'PhysicalContact';
|
|
2739
|
+
RAD: 'Radar';
|
|
2740
|
+
RFS: 'RFSensing';
|
|
2741
|
+
US: 'Ultrasonic';
|
|
2742
|
+
VIS: 'Vision';
|
|
2743
|
+
};
|
|
2744
|
+
attributes: {
|
|
2745
|
+
holdTime: number;
|
|
2746
|
+
holdTimeLimits: MatterStruct;
|
|
2747
|
+
occupancy: MatterBitmap;
|
|
2748
|
+
occupancySensorType: MatterEnum;
|
|
2749
|
+
occupancySensorTypeBitmap: MatterBitmap;
|
|
2750
|
+
physicalContactOccupiedToUnoccupiedDelay: number;
|
|
2751
|
+
physicalContactUnoccupiedToOccupiedDelay: number;
|
|
2752
|
+
physicalContactUnoccupiedToOccupiedThreshold: number;
|
|
2753
|
+
pirOccupiedToUnoccupiedDelay: number;
|
|
2754
|
+
pirUnoccupiedToOccupiedDelay: number;
|
|
2755
|
+
pirUnoccupiedToOccupiedThreshold: number;
|
|
2756
|
+
ultrasonicOccupiedToUnoccupiedDelay: number;
|
|
2757
|
+
ultrasonicUnoccupiedToOccupiedDelay: number;
|
|
2758
|
+
ultrasonicUnoccupiedToOccupiedThreshold: number;
|
|
2759
|
+
};
|
|
2760
|
+
commands: {};
|
|
2761
|
+
events: {
|
|
2762
|
+
OccupancyChanged: {
|
|
2763
|
+
occupancy: MatterBitmap;
|
|
2764
|
+
};
|
|
2765
|
+
};
|
|
2766
|
+
};
|
|
2767
|
+
'OnOff': {
|
|
2768
|
+
features: {
|
|
2769
|
+
DF: 'DeadFrontBehavior';
|
|
2770
|
+
LT: 'Lighting';
|
|
2771
|
+
OFFONLY: 'OffOnly';
|
|
2772
|
+
};
|
|
2773
|
+
attributes: {
|
|
2774
|
+
globalSceneControl: boolean;
|
|
2775
|
+
offWaitTime: number;
|
|
2776
|
+
onOff: boolean;
|
|
2777
|
+
onTime: number;
|
|
2778
|
+
startUpOnOff: MatterEnum | null;
|
|
2779
|
+
};
|
|
2780
|
+
commands: {
|
|
2781
|
+
off: undefined;
|
|
2782
|
+
offWithEffect: {
|
|
2783
|
+
effectIdentifier: MatterEnum;
|
|
2784
|
+
effectVariant: MatterEnum;
|
|
2785
|
+
};
|
|
2786
|
+
on: undefined;
|
|
2787
|
+
onWithRecallGlobalScene: undefined;
|
|
2788
|
+
onWithTimedOff: {
|
|
2789
|
+
onOffControl: MatterBitmap;
|
|
2790
|
+
onTime: number;
|
|
2791
|
+
offWaitTime: number;
|
|
2792
|
+
};
|
|
2793
|
+
toggle: undefined;
|
|
2794
|
+
};
|
|
2795
|
+
events: {};
|
|
2796
|
+
};
|
|
2797
|
+
'OperationalCredentials': {
|
|
2798
|
+
features: {};
|
|
2799
|
+
attributes: {
|
|
2800
|
+
commissionedFabrics: number;
|
|
2801
|
+
currentFabricIndex: number;
|
|
2802
|
+
fabrics: MatterStruct[];
|
|
2803
|
+
noCs: MatterStruct[];
|
|
2804
|
+
supportedFabrics: number;
|
|
2805
|
+
trustedRootCertificates: Bytes[];
|
|
2806
|
+
};
|
|
2807
|
+
commands: {
|
|
2808
|
+
addNOC: {
|
|
2809
|
+
nocValue: Bytes;
|
|
2810
|
+
icacValue: Bytes;
|
|
2811
|
+
ipkValue: Bytes;
|
|
2812
|
+
caseAdminSubject: SubjectId;
|
|
2813
|
+
adminVendorId: VendorId;
|
|
2814
|
+
};
|
|
2815
|
+
addTrustedRootCertificate: {
|
|
2816
|
+
rootCaCertificate: Bytes;
|
|
2817
|
+
};
|
|
2818
|
+
attestationRequest: {
|
|
2819
|
+
attestationNonce: Bytes;
|
|
2820
|
+
};
|
|
2821
|
+
certificateChainRequest: {
|
|
2822
|
+
certificateType: MatterEnum;
|
|
2823
|
+
};
|
|
2824
|
+
cSRRequest: {
|
|
2825
|
+
csrNonce: Bytes;
|
|
2826
|
+
isForUpdateNoc: boolean;
|
|
2827
|
+
};
|
|
2828
|
+
removeFabric: {
|
|
2829
|
+
fabricIndex: FabricIndex;
|
|
2830
|
+
};
|
|
2831
|
+
setVIDVerificationStatement: {
|
|
2832
|
+
vendorId: VendorId;
|
|
2833
|
+
vidVerificationStatement: Bytes;
|
|
2834
|
+
vvsc: Bytes;
|
|
2835
|
+
};
|
|
2836
|
+
signVIDVerificationRequest: {
|
|
2837
|
+
fabricIndex: FabricIndex;
|
|
2838
|
+
clientChallenge: Bytes;
|
|
2839
|
+
};
|
|
2840
|
+
updateFabricLabel: {
|
|
2841
|
+
label: string;
|
|
2842
|
+
};
|
|
2843
|
+
updateNOC: {
|
|
2844
|
+
nocValue: Bytes;
|
|
2845
|
+
icacValue: Bytes;
|
|
2846
|
+
};
|
|
2847
|
+
};
|
|
2848
|
+
events: {};
|
|
2849
|
+
};
|
|
2850
|
+
'OperationalState': {
|
|
2851
|
+
features: {};
|
|
2852
|
+
attributes: {
|
|
2853
|
+
countdownTime: ElapsedS | null;
|
|
2854
|
+
currentPhase: number | null;
|
|
2855
|
+
operationalError: MatterStruct;
|
|
2856
|
+
operationalState: MatterEnum;
|
|
2857
|
+
operationalStateList: MatterStruct[];
|
|
2858
|
+
phaseList: string[] | null;
|
|
2859
|
+
};
|
|
2860
|
+
commands: {
|
|
2861
|
+
pause: undefined;
|
|
2862
|
+
resume: undefined;
|
|
2863
|
+
start: undefined;
|
|
2864
|
+
stop: undefined;
|
|
2865
|
+
};
|
|
2866
|
+
events: {
|
|
2867
|
+
OperationalError: {
|
|
2868
|
+
errorState: MatterStruct;
|
|
2869
|
+
};
|
|
2870
|
+
OperationCompletion: {
|
|
2871
|
+
completionErrorCode: MatterEnum;
|
|
2872
|
+
totalOperationalTime: ElapsedS | null;
|
|
2873
|
+
pausedTime: ElapsedS | null;
|
|
2874
|
+
};
|
|
2875
|
+
};
|
|
2876
|
+
};
|
|
2877
|
+
'OTASoftwareUpdateProvider': {
|
|
2878
|
+
features: {};
|
|
2879
|
+
attributes: {};
|
|
2880
|
+
commands: {
|
|
2881
|
+
applyUpdateRequest: {
|
|
2882
|
+
updateToken: Bytes;
|
|
2883
|
+
newVersion: number;
|
|
2884
|
+
};
|
|
2885
|
+
notifyUpdateApplied: {
|
|
2886
|
+
updateToken: Bytes;
|
|
2887
|
+
softwareVersion: number;
|
|
2888
|
+
};
|
|
2889
|
+
queryImage: {
|
|
2890
|
+
vendorId: VendorId;
|
|
2891
|
+
productId: number;
|
|
2892
|
+
softwareVersion: number;
|
|
2893
|
+
protocolsSupported: MatterEnum[];
|
|
2894
|
+
hardwareVersion: number;
|
|
2895
|
+
location: string;
|
|
2896
|
+
requestorCanConsent: boolean;
|
|
2897
|
+
metadataForProvider: Bytes;
|
|
2898
|
+
};
|
|
2899
|
+
};
|
|
2900
|
+
events: {};
|
|
2901
|
+
};
|
|
2902
|
+
'OTASoftwareUpdateRequestor': {
|
|
2903
|
+
features: {};
|
|
2904
|
+
attributes: {
|
|
2905
|
+
defaultOtaProviders: MatterStruct[];
|
|
2906
|
+
updatePossible: boolean;
|
|
2907
|
+
updateState: MatterEnum;
|
|
2908
|
+
updateStateProgress: number | null;
|
|
2909
|
+
};
|
|
2910
|
+
commands: {
|
|
2911
|
+
announceOTAProvider: {
|
|
2912
|
+
providerNodeId: NodeId;
|
|
2913
|
+
vendorId: VendorId;
|
|
2914
|
+
announcementReason: MatterEnum;
|
|
2915
|
+
metadataForNode: Bytes;
|
|
2916
|
+
endpoint: EndpointNumber;
|
|
2917
|
+
};
|
|
2918
|
+
};
|
|
2919
|
+
events: {
|
|
2920
|
+
StateTransition: {
|
|
2921
|
+
previousState: MatterEnum;
|
|
2922
|
+
newState: MatterEnum;
|
|
2923
|
+
reason: MatterEnum;
|
|
2924
|
+
targetSoftwareVersion: number | null;
|
|
2925
|
+
};
|
|
2926
|
+
VersionApplied: {
|
|
2927
|
+
softwareVersion: number;
|
|
2928
|
+
productId: number;
|
|
2929
|
+
};
|
|
2930
|
+
DownloadError: {
|
|
2931
|
+
softwareVersion: number;
|
|
2932
|
+
bytesDownloaded: Int64;
|
|
2933
|
+
progressPercent: number | null;
|
|
2934
|
+
platformCode: Int64 | null;
|
|
2935
|
+
};
|
|
2936
|
+
};
|
|
2937
|
+
};
|
|
2938
|
+
'OvenCavityOperationalState': {
|
|
2939
|
+
features: {};
|
|
2940
|
+
attributes: {
|
|
2941
|
+
countdownTime: ElapsedS | null;
|
|
2942
|
+
currentPhase: number | null;
|
|
2943
|
+
operationalError: MatterStruct;
|
|
2944
|
+
operationalState: MatterEnum;
|
|
2945
|
+
operationalStateList: MatterStruct[];
|
|
2946
|
+
phaseList: string[] | null;
|
|
2947
|
+
};
|
|
2948
|
+
commands: {
|
|
2949
|
+
pause: undefined;
|
|
2950
|
+
resume: undefined;
|
|
2951
|
+
start: undefined;
|
|
2952
|
+
stop: undefined;
|
|
2953
|
+
};
|
|
2954
|
+
events: {
|
|
2955
|
+
OperationalError: {
|
|
2956
|
+
errorState: MatterStruct;
|
|
2957
|
+
};
|
|
2958
|
+
OperationCompletion: {
|
|
2959
|
+
completionErrorCode: MatterEnum;
|
|
2960
|
+
totalOperationalTime: ElapsedS | null;
|
|
2961
|
+
pausedTime: ElapsedS | null;
|
|
2962
|
+
};
|
|
2963
|
+
};
|
|
2964
|
+
};
|
|
2965
|
+
'OvenMode': {
|
|
2966
|
+
features: {
|
|
2967
|
+
DEPONOFF: 'OnOff';
|
|
2968
|
+
};
|
|
2969
|
+
attributes: {
|
|
2970
|
+
currentMode: ModeId;
|
|
2971
|
+
onMode: ModeId | null;
|
|
2972
|
+
startUpMode: ModeId | null;
|
|
2973
|
+
supportedModes: SupportedModes[];
|
|
2974
|
+
};
|
|
2975
|
+
commands: {
|
|
2976
|
+
changeToMode: {
|
|
2977
|
+
newMode: number;
|
|
2978
|
+
};
|
|
2979
|
+
};
|
|
2980
|
+
events: {};
|
|
2981
|
+
};
|
|
2982
|
+
'OzoneConcentrationMeasurement': {
|
|
2983
|
+
features: {
|
|
2984
|
+
AVG: 'AverageMeasurement';
|
|
2985
|
+
CRI: 'CriticalLevel';
|
|
2986
|
+
LEV: 'LevelIndication';
|
|
2987
|
+
MED: 'MediumLevel';
|
|
2988
|
+
MEA: 'NumericMeasurement';
|
|
2989
|
+
PEA: 'PeakMeasurement';
|
|
2990
|
+
};
|
|
2991
|
+
attributes: {
|
|
2992
|
+
averageMeasuredValue: number | null;
|
|
2993
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
2994
|
+
levelValue: MatterEnum;
|
|
2995
|
+
maxMeasuredValue: number | null;
|
|
2996
|
+
measuredValue: number | null;
|
|
2997
|
+
measurementMedium: MatterEnum;
|
|
2998
|
+
measurementUnit: MatterEnum;
|
|
2999
|
+
minMeasuredValue: number | null;
|
|
3000
|
+
peakMeasuredValue: number | null;
|
|
3001
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
3002
|
+
uncertainty: number;
|
|
3003
|
+
};
|
|
3004
|
+
commands: {};
|
|
3005
|
+
events: {};
|
|
3006
|
+
};
|
|
3007
|
+
'PM10ConcentrationMeasurement': {
|
|
3008
|
+
features: {
|
|
3009
|
+
AVG: 'AverageMeasurement';
|
|
3010
|
+
CRI: 'CriticalLevel';
|
|
3011
|
+
LEV: 'LevelIndication';
|
|
3012
|
+
MED: 'MediumLevel';
|
|
3013
|
+
MEA: 'NumericMeasurement';
|
|
3014
|
+
PEA: 'PeakMeasurement';
|
|
3015
|
+
};
|
|
3016
|
+
attributes: {
|
|
3017
|
+
averageMeasuredValue: number | null;
|
|
3018
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
3019
|
+
levelValue: MatterEnum;
|
|
3020
|
+
maxMeasuredValue: number | null;
|
|
3021
|
+
measuredValue: number | null;
|
|
3022
|
+
measurementMedium: MatterEnum;
|
|
3023
|
+
measurementUnit: MatterEnum;
|
|
3024
|
+
minMeasuredValue: number | null;
|
|
3025
|
+
peakMeasuredValue: number | null;
|
|
3026
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
3027
|
+
uncertainty: number;
|
|
3028
|
+
};
|
|
3029
|
+
commands: {};
|
|
3030
|
+
events: {};
|
|
3031
|
+
};
|
|
3032
|
+
'PM1ConcentrationMeasurement': {
|
|
3033
|
+
features: {
|
|
3034
|
+
AVG: 'AverageMeasurement';
|
|
3035
|
+
CRI: 'CriticalLevel';
|
|
3036
|
+
LEV: 'LevelIndication';
|
|
3037
|
+
MED: 'MediumLevel';
|
|
3038
|
+
MEA: 'NumericMeasurement';
|
|
3039
|
+
PEA: 'PeakMeasurement';
|
|
3040
|
+
};
|
|
3041
|
+
attributes: {
|
|
3042
|
+
averageMeasuredValue: number | null;
|
|
3043
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
3044
|
+
levelValue: MatterEnum;
|
|
3045
|
+
maxMeasuredValue: number | null;
|
|
3046
|
+
measuredValue: number | null;
|
|
3047
|
+
measurementMedium: MatterEnum;
|
|
3048
|
+
measurementUnit: MatterEnum;
|
|
3049
|
+
minMeasuredValue: number | null;
|
|
3050
|
+
peakMeasuredValue: number | null;
|
|
3051
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
3052
|
+
uncertainty: number;
|
|
3053
|
+
};
|
|
3054
|
+
commands: {};
|
|
3055
|
+
events: {};
|
|
3056
|
+
};
|
|
3057
|
+
'PM2.5ConcentrationMeasurement': {
|
|
3058
|
+
features: {
|
|
3059
|
+
AVG: 'AverageMeasurement';
|
|
3060
|
+
CRI: 'CriticalLevel';
|
|
3061
|
+
LEV: 'LevelIndication';
|
|
3062
|
+
MED: 'MediumLevel';
|
|
3063
|
+
MEA: 'NumericMeasurement';
|
|
3064
|
+
PEA: 'PeakMeasurement';
|
|
3065
|
+
};
|
|
3066
|
+
attributes: {
|
|
3067
|
+
averageMeasuredValue: number | null;
|
|
3068
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
3069
|
+
levelValue: MatterEnum;
|
|
3070
|
+
maxMeasuredValue: number | null;
|
|
3071
|
+
measuredValue: number | null;
|
|
3072
|
+
measurementMedium: MatterEnum;
|
|
3073
|
+
measurementUnit: MatterEnum;
|
|
3074
|
+
minMeasuredValue: number | null;
|
|
3075
|
+
peakMeasuredValue: number | null;
|
|
3076
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
3077
|
+
uncertainty: number;
|
|
3078
|
+
};
|
|
3079
|
+
commands: {};
|
|
3080
|
+
events: {};
|
|
3081
|
+
};
|
|
3082
|
+
'PowerSource': {
|
|
3083
|
+
features: {
|
|
3084
|
+
BAT: 'Battery';
|
|
3085
|
+
RECHG: 'Rechargeable';
|
|
3086
|
+
REPLC: 'Replaceable';
|
|
3087
|
+
WIRED: 'Wired';
|
|
3088
|
+
};
|
|
3089
|
+
attributes: {
|
|
3090
|
+
activeBatChargeFaults: MatterEnum[];
|
|
3091
|
+
activeBatFaults: MatterEnum[];
|
|
3092
|
+
activeWiredFaults: MatterEnum[];
|
|
3093
|
+
batAnsiDesignation: string;
|
|
3094
|
+
batApprovedChemistry: MatterEnum;
|
|
3095
|
+
batCapacity: number;
|
|
3096
|
+
batChargeLevel: MatterEnum;
|
|
3097
|
+
batChargeState: MatterEnum;
|
|
3098
|
+
batChargingCurrent: number | null;
|
|
3099
|
+
batCommonDesignation: MatterEnum;
|
|
3100
|
+
batFunctionalWhileCharging: boolean;
|
|
3101
|
+
batIecDesignation: string;
|
|
3102
|
+
batPercentRemaining: number | null;
|
|
3103
|
+
batPresent: boolean;
|
|
3104
|
+
batQuantity: number;
|
|
3105
|
+
batReplaceability: MatterEnum;
|
|
3106
|
+
batReplacementDescription: string;
|
|
3107
|
+
batReplacementNeeded: boolean;
|
|
3108
|
+
batTimeRemaining: number | null;
|
|
3109
|
+
batTimeToFullCharge: number | null;
|
|
3110
|
+
batVoltage: number | null;
|
|
3111
|
+
description: string;
|
|
3112
|
+
endpointList: EndpointNumber[];
|
|
3113
|
+
order: number;
|
|
3114
|
+
status: MatterEnum;
|
|
3115
|
+
wiredAssessedCurrent: number | null;
|
|
3116
|
+
wiredAssessedInputFrequency: number | null;
|
|
3117
|
+
wiredAssessedInputVoltage: number | null;
|
|
3118
|
+
wiredCurrentType: MatterEnum;
|
|
3119
|
+
wiredMaximumCurrent: number;
|
|
3120
|
+
wiredNominalVoltage: number;
|
|
3121
|
+
wiredPresent: boolean;
|
|
3122
|
+
};
|
|
3123
|
+
commands: {};
|
|
3124
|
+
events: {
|
|
3125
|
+
WiredFaultChange: {
|
|
3126
|
+
current: MatterEnum[];
|
|
3127
|
+
previous: MatterEnum[];
|
|
3128
|
+
};
|
|
3129
|
+
BatFaultChange: {
|
|
3130
|
+
current: MatterEnum[];
|
|
3131
|
+
previous: MatterEnum[];
|
|
3132
|
+
};
|
|
3133
|
+
BatChargeFaultChange: {
|
|
3134
|
+
current: MatterEnum[];
|
|
3135
|
+
previous: MatterEnum[];
|
|
3136
|
+
};
|
|
3137
|
+
};
|
|
3138
|
+
};
|
|
3139
|
+
'PowerSourceConfiguration': {
|
|
3140
|
+
features: {};
|
|
3141
|
+
attributes: {
|
|
3142
|
+
sources: EndpointNumber[];
|
|
3143
|
+
};
|
|
3144
|
+
commands: {};
|
|
3145
|
+
events: {};
|
|
3146
|
+
};
|
|
3147
|
+
'PowerTopology': {
|
|
3148
|
+
features: {
|
|
3149
|
+
DYPF: 'DynamicPowerFlow';
|
|
3150
|
+
NODE: 'NodeTopology';
|
|
3151
|
+
SET: 'SetTopology';
|
|
3152
|
+
TREE: 'TreeTopology';
|
|
3153
|
+
};
|
|
3154
|
+
attributes: {
|
|
3155
|
+
activeEndpoints: EndpointNumber[];
|
|
3156
|
+
availableEndpoints: EndpointNumber[];
|
|
3157
|
+
};
|
|
3158
|
+
commands: {};
|
|
3159
|
+
events: {};
|
|
3160
|
+
};
|
|
3161
|
+
'PressureMeasurement': {
|
|
3162
|
+
features: {
|
|
3163
|
+
EXT: 'Extended';
|
|
3164
|
+
};
|
|
3165
|
+
attributes: {
|
|
3166
|
+
maxMeasuredValue: number | null;
|
|
3167
|
+
maxScaledValue: number | null;
|
|
3168
|
+
measuredValue: number | null;
|
|
3169
|
+
minMeasuredValue: number | null;
|
|
3170
|
+
minScaledValue: number | null;
|
|
3171
|
+
scale: number;
|
|
3172
|
+
scaledTolerance: number;
|
|
3173
|
+
scaledValue: number | null;
|
|
3174
|
+
tolerance: number;
|
|
3175
|
+
};
|
|
3176
|
+
commands: {};
|
|
3177
|
+
events: {};
|
|
3178
|
+
};
|
|
3179
|
+
'PumpConfigurationandControl': {
|
|
3180
|
+
features: {
|
|
3181
|
+
AUTO: 'Automatic';
|
|
3182
|
+
PRSCOMP: 'CompensatedPressure';
|
|
3183
|
+
FLW: 'ConstantFlow';
|
|
3184
|
+
PRSCONST: 'ConstantPressure';
|
|
3185
|
+
SPD: 'ConstantSpeed';
|
|
3186
|
+
TEMP: 'ConstantTemperature';
|
|
3187
|
+
LOCAL: 'LocalOperation';
|
|
3188
|
+
};
|
|
3189
|
+
attributes: {
|
|
3190
|
+
alarmMask: MatterBitmap;
|
|
3191
|
+
capacity: number | null;
|
|
3192
|
+
controlMode: MatterEnum;
|
|
3193
|
+
effectiveControlMode: MatterEnum;
|
|
3194
|
+
effectiveOperationMode: MatterEnum;
|
|
3195
|
+
lifetimeEnergyConsumed: number | null;
|
|
3196
|
+
lifetimeRunningHours: number | null;
|
|
3197
|
+
maxCompPressure: number | null;
|
|
3198
|
+
maxConstFlow: number | null;
|
|
3199
|
+
maxConstPressure: number | null;
|
|
3200
|
+
maxConstSpeed: number | null;
|
|
3201
|
+
maxConstTemp: number | null;
|
|
3202
|
+
maxFlow: number | null;
|
|
3203
|
+
maxPressure: number | null;
|
|
3204
|
+
maxSpeed: number | null;
|
|
3205
|
+
minCompPressure: number | null;
|
|
3206
|
+
minConstFlow: number | null;
|
|
3207
|
+
minConstPressure: number | null;
|
|
3208
|
+
minConstSpeed: number | null;
|
|
3209
|
+
minConstTemp: number | null;
|
|
3210
|
+
operationMode: MatterEnum;
|
|
3211
|
+
power: number | null;
|
|
3212
|
+
pumpStatus: MatterBitmap;
|
|
3213
|
+
speed: number | null;
|
|
3214
|
+
};
|
|
3215
|
+
commands: {};
|
|
3216
|
+
events: {
|
|
3217
|
+
SupplyVoltageLow: undefined;
|
|
3218
|
+
SupplyVoltageHigh: undefined;
|
|
3219
|
+
PowerMissingPhase: undefined;
|
|
3220
|
+
SystemPressureLow: undefined;
|
|
3221
|
+
SystemPressureHigh: undefined;
|
|
3222
|
+
DryRunning: undefined;
|
|
3223
|
+
MotorTemperatureHigh: undefined;
|
|
3224
|
+
PumpMotorFatalFailure: undefined;
|
|
3225
|
+
ElectronicTemperatureHigh: undefined;
|
|
3226
|
+
PumpBlocked: undefined;
|
|
3227
|
+
SensorFailure: undefined;
|
|
3228
|
+
ElectronicNonFatalFailure: undefined;
|
|
3229
|
+
ElectronicFatalFailure: undefined;
|
|
3230
|
+
GeneralFault: undefined;
|
|
3231
|
+
Leakage: undefined;
|
|
3232
|
+
AirDetection: undefined;
|
|
3233
|
+
TurbineOperation: undefined;
|
|
3234
|
+
};
|
|
3235
|
+
};
|
|
3236
|
+
'PushAVStreamTransport': {
|
|
3237
|
+
features: {
|
|
3238
|
+
METADATA: 'Metadata';
|
|
3239
|
+
PERZONESENS: 'PerZoneSensitivity';
|
|
3240
|
+
};
|
|
3241
|
+
attributes: {
|
|
3242
|
+
currentConnections: MatterStruct[];
|
|
3243
|
+
supportedFormats: MatterStruct[];
|
|
3244
|
+
};
|
|
3245
|
+
commands: {
|
|
3246
|
+
allocatePushTransport: {
|
|
3247
|
+
transportOptions: MatterStruct;
|
|
3248
|
+
};
|
|
3249
|
+
deallocatePushTransport: {
|
|
3250
|
+
connectionId: PushTransportConnectionId;
|
|
3251
|
+
};
|
|
3252
|
+
findTransport: {
|
|
3253
|
+
connectionId: PushTransportConnectionId | null;
|
|
3254
|
+
};
|
|
3255
|
+
manuallyTriggerTransport: {
|
|
3256
|
+
connectionId: PushTransportConnectionId;
|
|
3257
|
+
activationReason: MatterEnum;
|
|
3258
|
+
timeControl: MatterStruct;
|
|
3259
|
+
userDefined: Bytes;
|
|
3260
|
+
};
|
|
3261
|
+
modifyPushTransport: {
|
|
3262
|
+
connectionId: PushTransportConnectionId;
|
|
3263
|
+
transportOptions: MatterStruct;
|
|
3264
|
+
};
|
|
3265
|
+
setTransportStatus: {
|
|
3266
|
+
connectionId: PushTransportConnectionId | null;
|
|
3267
|
+
transportStatus: MatterEnum;
|
|
3268
|
+
};
|
|
3269
|
+
};
|
|
3270
|
+
events: {
|
|
3271
|
+
PushTransportBegin: {
|
|
3272
|
+
connectionId: PushTransportConnectionId;
|
|
3273
|
+
triggerType: MatterEnum;
|
|
3274
|
+
activationReason: MatterEnum;
|
|
3275
|
+
};
|
|
3276
|
+
PushTransportEnd: {
|
|
3277
|
+
connectionId: PushTransportConnectionId;
|
|
3278
|
+
};
|
|
3279
|
+
};
|
|
3280
|
+
};
|
|
3281
|
+
'RadonConcentrationMeasurement': {
|
|
3282
|
+
features: {
|
|
3283
|
+
AVG: 'AverageMeasurement';
|
|
3284
|
+
CRI: 'CriticalLevel';
|
|
3285
|
+
LEV: 'LevelIndication';
|
|
3286
|
+
MED: 'MediumLevel';
|
|
3287
|
+
MEA: 'NumericMeasurement';
|
|
3288
|
+
PEA: 'PeakMeasurement';
|
|
3289
|
+
};
|
|
3290
|
+
attributes: {
|
|
3291
|
+
averageMeasuredValue: number | null;
|
|
3292
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
3293
|
+
levelValue: MatterEnum;
|
|
3294
|
+
maxMeasuredValue: number | null;
|
|
3295
|
+
measuredValue: number | null;
|
|
3296
|
+
measurementMedium: MatterEnum;
|
|
3297
|
+
measurementUnit: MatterEnum;
|
|
3298
|
+
minMeasuredValue: number | null;
|
|
3299
|
+
peakMeasuredValue: number | null;
|
|
3300
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
3301
|
+
uncertainty: number;
|
|
3302
|
+
};
|
|
3303
|
+
commands: {};
|
|
3304
|
+
events: {};
|
|
3305
|
+
};
|
|
3306
|
+
'RefrigeratorAlarm': {
|
|
3307
|
+
features: {
|
|
3308
|
+
RESET: 'Reset';
|
|
3309
|
+
};
|
|
3310
|
+
attributes: {
|
|
3311
|
+
latch: MatterBitmap;
|
|
3312
|
+
mask: MatterBitmap;
|
|
3313
|
+
state: MatterBitmap;
|
|
3314
|
+
supported: MatterBitmap;
|
|
3315
|
+
};
|
|
3316
|
+
commands: {
|
|
3317
|
+
modifyEnabledAlarms: {
|
|
3318
|
+
mask: MatterBitmap;
|
|
3319
|
+
};
|
|
3320
|
+
reset: {
|
|
3321
|
+
alarms: MatterBitmap;
|
|
3322
|
+
};
|
|
3323
|
+
};
|
|
3324
|
+
events: {
|
|
3325
|
+
Notify: {
|
|
3326
|
+
active: MatterBitmap;
|
|
3327
|
+
inactive: MatterBitmap;
|
|
3328
|
+
state: MatterBitmap;
|
|
3329
|
+
mask: MatterBitmap;
|
|
3330
|
+
};
|
|
3331
|
+
};
|
|
3332
|
+
};
|
|
3333
|
+
'RefrigeratorAndTemperatureControlledCabinetMode': {
|
|
3334
|
+
features: {
|
|
3335
|
+
DEPONOFF: 'OnOff';
|
|
3336
|
+
};
|
|
3337
|
+
attributes: {
|
|
3338
|
+
currentMode: ModeId;
|
|
3339
|
+
onMode: ModeId | null;
|
|
3340
|
+
startUpMode: ModeId | null;
|
|
3341
|
+
supportedModes: SupportedModes[];
|
|
3342
|
+
};
|
|
3343
|
+
commands: {
|
|
3344
|
+
changeToMode: {
|
|
3345
|
+
newMode: number;
|
|
3346
|
+
};
|
|
3347
|
+
};
|
|
3348
|
+
events: {};
|
|
3349
|
+
};
|
|
3350
|
+
'RelativeHumidityMeasurement': {
|
|
3351
|
+
features: {};
|
|
3352
|
+
attributes: {
|
|
3353
|
+
maxMeasuredValue: number | null;
|
|
3354
|
+
measuredValue: number | null;
|
|
3355
|
+
minMeasuredValue: number | null;
|
|
3356
|
+
tolerance: number;
|
|
3357
|
+
};
|
|
3358
|
+
commands: {};
|
|
3359
|
+
events: {};
|
|
3360
|
+
};
|
|
3361
|
+
'ResourceMonitoringClusters': {
|
|
3362
|
+
features: {
|
|
3363
|
+
CON: 'Condition';
|
|
3364
|
+
REP: 'ReplacementProductList';
|
|
3365
|
+
WRN: 'Warning';
|
|
3366
|
+
};
|
|
3367
|
+
attributes: {
|
|
3368
|
+
changeIndication: MatterEnum;
|
|
3369
|
+
condition: Percent;
|
|
3370
|
+
degradationDirection: MatterEnum;
|
|
3371
|
+
inPlaceIndicator: boolean;
|
|
3372
|
+
lastChangedTime: EpochS | null;
|
|
3373
|
+
replacementProductList: MatterStruct[];
|
|
3374
|
+
};
|
|
3375
|
+
commands: {
|
|
3376
|
+
resetCondition: undefined;
|
|
3377
|
+
};
|
|
3378
|
+
events: {};
|
|
3379
|
+
};
|
|
3380
|
+
'RVCCleanMode': {
|
|
3381
|
+
features: {
|
|
3382
|
+
DIRECTMODECH: 'DirectModeChange';
|
|
3383
|
+
DEPONOFF: 'OnOff';
|
|
3384
|
+
};
|
|
3385
|
+
attributes: {
|
|
3386
|
+
currentMode: ModeId;
|
|
3387
|
+
onMode: ModeId | null;
|
|
3388
|
+
startUpMode: ModeId | null;
|
|
3389
|
+
supportedModes: SupportedModes[];
|
|
3390
|
+
};
|
|
3391
|
+
commands: {
|
|
3392
|
+
changeToMode: {
|
|
3393
|
+
newMode: number;
|
|
3394
|
+
};
|
|
3395
|
+
};
|
|
3396
|
+
events: {};
|
|
3397
|
+
};
|
|
3398
|
+
'RVCOperationalState': {
|
|
3399
|
+
features: {};
|
|
3400
|
+
attributes: {
|
|
3401
|
+
countdownTime: ElapsedS | null;
|
|
3402
|
+
currentPhase: number | null;
|
|
3403
|
+
operationalError: MatterStruct;
|
|
3404
|
+
operationalState: MatterEnum;
|
|
3405
|
+
operationalStateList: MatterStruct[];
|
|
3406
|
+
phaseList: string[] | null;
|
|
3407
|
+
};
|
|
3408
|
+
commands: {
|
|
3409
|
+
goHome: undefined;
|
|
3410
|
+
pause: undefined;
|
|
3411
|
+
resume: undefined;
|
|
3412
|
+
start: undefined;
|
|
3413
|
+
stop: undefined;
|
|
3414
|
+
};
|
|
3415
|
+
events: {
|
|
3416
|
+
OperationalError: {
|
|
3417
|
+
errorState: MatterStruct;
|
|
3418
|
+
};
|
|
3419
|
+
OperationCompletion: {
|
|
3420
|
+
completionErrorCode: MatterEnum;
|
|
3421
|
+
totalOperationalTime: ElapsedS | null;
|
|
3422
|
+
pausedTime: ElapsedS | null;
|
|
3423
|
+
};
|
|
3424
|
+
};
|
|
3425
|
+
};
|
|
3426
|
+
'RVCRunMode': {
|
|
3427
|
+
features: {
|
|
3428
|
+
DIRECTMODECH: 'DirectModeChange';
|
|
3429
|
+
DEPONOFF: 'OnOff';
|
|
3430
|
+
};
|
|
3431
|
+
attributes: {
|
|
3432
|
+
currentMode: ModeId;
|
|
3433
|
+
onMode: ModeId | null;
|
|
3434
|
+
startUpMode: ModeId | null;
|
|
3435
|
+
supportedModes: SupportedModes[];
|
|
3436
|
+
};
|
|
3437
|
+
commands: {
|
|
3438
|
+
changeToMode: {
|
|
3439
|
+
newMode: number;
|
|
3440
|
+
};
|
|
3441
|
+
};
|
|
3442
|
+
events: {};
|
|
3443
|
+
};
|
|
3444
|
+
'ScenesManagement': {
|
|
3445
|
+
features: {
|
|
3446
|
+
SN: 'SceneNames';
|
|
3447
|
+
};
|
|
3448
|
+
attributes: {
|
|
3449
|
+
doNotUse: never;
|
|
3450
|
+
fabricSceneInfo: MatterStruct[];
|
|
3451
|
+
sceneTableSize: number;
|
|
3452
|
+
};
|
|
3453
|
+
commands: {
|
|
3454
|
+
addScene: {
|
|
3455
|
+
groupId: GroupId;
|
|
3456
|
+
sceneId: number;
|
|
3457
|
+
transitionTime: number;
|
|
3458
|
+
sceneName: string;
|
|
3459
|
+
extensionFieldSetStructs: MatterStruct[];
|
|
3460
|
+
};
|
|
3461
|
+
copyScene: {
|
|
3462
|
+
mode: MatterBitmap;
|
|
3463
|
+
groupIdentifierFrom: GroupId;
|
|
3464
|
+
sceneIdentifierFrom: number;
|
|
3465
|
+
groupIdentifierTo: GroupId;
|
|
3466
|
+
sceneIdentifierTo: number;
|
|
3467
|
+
};
|
|
3468
|
+
getSceneMembership: {
|
|
3469
|
+
groupId: GroupId;
|
|
3470
|
+
};
|
|
3471
|
+
recallScene: {
|
|
3472
|
+
groupId: GroupId;
|
|
3473
|
+
sceneId: number;
|
|
3474
|
+
transitionTime: number | null;
|
|
3475
|
+
};
|
|
3476
|
+
removeAllScenes: {
|
|
3477
|
+
groupId: GroupId;
|
|
3478
|
+
};
|
|
3479
|
+
removeScene: {
|
|
3480
|
+
groupId: GroupId;
|
|
3481
|
+
sceneId: number;
|
|
3482
|
+
};
|
|
3483
|
+
storeScene: {
|
|
3484
|
+
groupId: GroupId;
|
|
3485
|
+
sceneId: number;
|
|
3486
|
+
};
|
|
3487
|
+
viewScene: {
|
|
3488
|
+
groupId: GroupId;
|
|
3489
|
+
sceneId: number;
|
|
3490
|
+
};
|
|
3491
|
+
};
|
|
3492
|
+
events: {};
|
|
3493
|
+
};
|
|
3494
|
+
'ServiceArea': {
|
|
3495
|
+
features: {
|
|
3496
|
+
MAPS: 'Maps';
|
|
3497
|
+
PROG: 'ProgressReporting';
|
|
3498
|
+
SELRUN: 'SelectWhileRunning';
|
|
3499
|
+
};
|
|
3500
|
+
attributes: {
|
|
3501
|
+
currentArea: number | null;
|
|
3502
|
+
estimatedEndTime: EpochS | null;
|
|
3503
|
+
progress: MatterStruct[];
|
|
3504
|
+
selectedAreas: number[];
|
|
3505
|
+
supportedAreas: MatterStruct[];
|
|
3506
|
+
supportedMaps: MatterStruct[];
|
|
3507
|
+
};
|
|
3508
|
+
commands: {
|
|
3509
|
+
selectAreas: {
|
|
3510
|
+
newAreas: number[];
|
|
3511
|
+
};
|
|
3512
|
+
skipArea: {
|
|
3513
|
+
skippedArea: number;
|
|
3514
|
+
};
|
|
3515
|
+
};
|
|
3516
|
+
events: {};
|
|
3517
|
+
};
|
|
3518
|
+
'SmokeCOAlarm': {
|
|
3519
|
+
features: {
|
|
3520
|
+
CO: 'COAlarm';
|
|
3521
|
+
SMOKE: 'SmokeAlarm';
|
|
3522
|
+
};
|
|
3523
|
+
attributes: {
|
|
3524
|
+
batteryAlert: MatterEnum;
|
|
3525
|
+
contaminationState: MatterEnum;
|
|
3526
|
+
coState: MatterEnum;
|
|
3527
|
+
deviceMuted: MatterEnum;
|
|
3528
|
+
endOfServiceAlert: MatterEnum;
|
|
3529
|
+
expiryDate: EpochS;
|
|
3530
|
+
expressedState: MatterEnum;
|
|
3531
|
+
hardwareFaultAlert: boolean;
|
|
3532
|
+
interconnectCoAlarm: MatterEnum;
|
|
3533
|
+
interconnectSmokeAlarm: MatterEnum;
|
|
3534
|
+
smokeSensitivityLevel: MatterEnum;
|
|
3535
|
+
smokeState: MatterEnum;
|
|
3536
|
+
testInProgress: boolean;
|
|
3537
|
+
};
|
|
3538
|
+
commands: {
|
|
3539
|
+
selfTestRequest: undefined;
|
|
3540
|
+
};
|
|
3541
|
+
events: {
|
|
3542
|
+
SmokeAlarm: {
|
|
3543
|
+
alarmSeverityLevel: MatterEnum;
|
|
3544
|
+
};
|
|
3545
|
+
COAlarm: {
|
|
3546
|
+
alarmSeverityLevel: MatterEnum;
|
|
3547
|
+
};
|
|
3548
|
+
LowBattery: {
|
|
3549
|
+
alarmSeverityLevel: MatterEnum;
|
|
3550
|
+
};
|
|
3551
|
+
HardwareFault: undefined;
|
|
3552
|
+
EndOfService: undefined;
|
|
3553
|
+
SelfTestComplete: undefined;
|
|
3554
|
+
AlarmMuted: undefined;
|
|
3555
|
+
MuteEnded: undefined;
|
|
3556
|
+
InterconnectSmokeAlarm: {
|
|
3557
|
+
alarmSeverityLevel: MatterEnum;
|
|
3558
|
+
};
|
|
3559
|
+
InterconnectCOAlarm: {
|
|
3560
|
+
alarmSeverityLevel: MatterEnum;
|
|
3561
|
+
};
|
|
3562
|
+
AllClear: undefined;
|
|
3563
|
+
};
|
|
3564
|
+
};
|
|
3565
|
+
'SoftwareDiagnostics': {
|
|
3566
|
+
features: {
|
|
3567
|
+
WTRMRK: 'Watermarks';
|
|
3568
|
+
};
|
|
3569
|
+
attributes: {
|
|
3570
|
+
currentHeapFree: Int64;
|
|
3571
|
+
currentHeapHighWatermark: Int64;
|
|
3572
|
+
currentHeapUsed: Int64;
|
|
3573
|
+
threadMetrics: MatterStruct[];
|
|
3574
|
+
};
|
|
3575
|
+
commands: {
|
|
3576
|
+
resetWatermarks: undefined;
|
|
3577
|
+
};
|
|
3578
|
+
events: {
|
|
3579
|
+
SoftwareFault: {
|
|
3580
|
+
id: Int64;
|
|
3581
|
+
name: string;
|
|
3582
|
+
faultRecording: Bytes;
|
|
3583
|
+
};
|
|
3584
|
+
};
|
|
3585
|
+
};
|
|
3586
|
+
'SoilMeasurement': {
|
|
3587
|
+
features: {};
|
|
3588
|
+
attributes: {
|
|
3589
|
+
soilMoistureMeasuredValue: Percent | null;
|
|
3590
|
+
soilMoistureMeasurementLimits: MatterStruct;
|
|
3591
|
+
};
|
|
3592
|
+
commands: {};
|
|
3593
|
+
events: {};
|
|
3594
|
+
};
|
|
3595
|
+
'Switch': {
|
|
3596
|
+
features: {
|
|
3597
|
+
AS: 'ActionSwitch';
|
|
3598
|
+
LS: 'LatchingSwitch';
|
|
3599
|
+
MS: 'MomentarySwitch';
|
|
3600
|
+
MSL: 'MomentarySwitchLongPress';
|
|
3601
|
+
MSM: 'MomentarySwitchMultiPress';
|
|
3602
|
+
MSR: 'MomentarySwitchRelease';
|
|
3603
|
+
};
|
|
3604
|
+
attributes: {
|
|
3605
|
+
currentPosition: number;
|
|
3606
|
+
multiPressMax: number;
|
|
3607
|
+
numberOfPositions: number;
|
|
3608
|
+
};
|
|
3609
|
+
commands: {};
|
|
3610
|
+
events: {
|
|
3611
|
+
SwitchLatched: {
|
|
3612
|
+
newPosition: number;
|
|
3613
|
+
};
|
|
3614
|
+
InitialPress: {
|
|
3615
|
+
newPosition: number;
|
|
3616
|
+
};
|
|
3617
|
+
LongPress: {
|
|
3618
|
+
newPosition: number;
|
|
3619
|
+
};
|
|
3620
|
+
ShortRelease: {
|
|
3621
|
+
previousPosition: number;
|
|
3622
|
+
};
|
|
3623
|
+
LongRelease: {
|
|
3624
|
+
previousPosition: number;
|
|
3625
|
+
};
|
|
3626
|
+
MultiPressOngoing: {
|
|
3627
|
+
newPosition: number;
|
|
3628
|
+
currentNumberOfPressesCounted: number;
|
|
3629
|
+
};
|
|
3630
|
+
MultiPressComplete: {
|
|
3631
|
+
previousPosition: number;
|
|
3632
|
+
totalNumberOfPressesCounted: number;
|
|
3633
|
+
};
|
|
3634
|
+
};
|
|
3635
|
+
};
|
|
3636
|
+
'TargetNavigator': {
|
|
3637
|
+
features: {};
|
|
3638
|
+
attributes: {
|
|
3639
|
+
currentTarget: number;
|
|
3640
|
+
targetList: MatterStruct[];
|
|
3641
|
+
};
|
|
3642
|
+
commands: {
|
|
3643
|
+
navigateTarget: {
|
|
3644
|
+
target: number;
|
|
3645
|
+
data: string;
|
|
3646
|
+
};
|
|
3647
|
+
};
|
|
3648
|
+
events: {
|
|
3649
|
+
TargetUpdated: {
|
|
3650
|
+
targetList: MatterStruct[];
|
|
3651
|
+
currentTarget: number;
|
|
3652
|
+
data: Bytes;
|
|
3653
|
+
};
|
|
3654
|
+
};
|
|
3655
|
+
};
|
|
3656
|
+
'TemperatureControl': {
|
|
3657
|
+
features: {
|
|
3658
|
+
TL: 'TemperatureLevel';
|
|
3659
|
+
TN: 'TemperatureNumber';
|
|
3660
|
+
STEP: 'TemperatureStep';
|
|
3661
|
+
};
|
|
3662
|
+
attributes: {
|
|
3663
|
+
maxTemperature: Temperature100Ths;
|
|
3664
|
+
minTemperature: Temperature100Ths;
|
|
3665
|
+
selectedTemperatureLevel: number;
|
|
3666
|
+
step: Temperature100Ths;
|
|
3667
|
+
supportedTemperatureLevels: string[];
|
|
3668
|
+
temperatureSetpoint: Temperature100Ths;
|
|
3669
|
+
};
|
|
3670
|
+
commands: {
|
|
3671
|
+
setTemperature: {
|
|
3672
|
+
targetTemperature: Temperature100Ths;
|
|
3673
|
+
targetTemperatureLevel: number;
|
|
3674
|
+
};
|
|
3675
|
+
};
|
|
3676
|
+
events: {};
|
|
3677
|
+
};
|
|
3678
|
+
'TemperatureMeasurement': {
|
|
3679
|
+
features: {};
|
|
3680
|
+
attributes: {
|
|
3681
|
+
maxMeasuredValue: Temperature100Ths | null;
|
|
3682
|
+
measuredValue: Temperature100Ths | null;
|
|
3683
|
+
minMeasuredValue: Temperature100Ths | null;
|
|
3684
|
+
tolerance: number;
|
|
3685
|
+
};
|
|
3686
|
+
commands: {};
|
|
3687
|
+
events: {};
|
|
3688
|
+
};
|
|
3689
|
+
'Thermostat': {
|
|
3690
|
+
features: {
|
|
3691
|
+
AUTO: 'AutoMode';
|
|
3692
|
+
COOL: 'Cooling';
|
|
3693
|
+
HEAT: 'Heating';
|
|
3694
|
+
LTNE: 'LocalTemperatureNotExposed';
|
|
3695
|
+
MSCH: 'MatterScheduleConfiguration';
|
|
3696
|
+
OCC: 'Occupancy';
|
|
3697
|
+
PRES: 'Presets';
|
|
3698
|
+
SCH: 'ScheduleConfiguration';
|
|
3699
|
+
SB: 'Setback';
|
|
3700
|
+
};
|
|
3701
|
+
attributes: {
|
|
3702
|
+
absMaxCoolSetpointLimit: Temperature100Ths;
|
|
3703
|
+
absMaxHeatSetpointLimit: Temperature100Ths;
|
|
3704
|
+
absMinCoolSetpointLimit: Temperature100Ths;
|
|
3705
|
+
absMinHeatSetpointLimit: Temperature100Ths;
|
|
3706
|
+
acCapacity: number;
|
|
3707
|
+
acCapacityFormat: MatterEnum;
|
|
3708
|
+
acCoilTemperature: Temperature100Ths | null;
|
|
3709
|
+
acCompressorType: MatterEnum;
|
|
3710
|
+
acErrorCode: MatterBitmap;
|
|
3711
|
+
acLouverPosition: MatterEnum;
|
|
3712
|
+
acRefrigerantType: MatterEnum;
|
|
3713
|
+
activePresetHandle: Bytes | null;
|
|
3714
|
+
activeScheduleHandle: Bytes | null;
|
|
3715
|
+
acType: MatterEnum;
|
|
3716
|
+
controlSequenceOfOperation: MatterEnum;
|
|
3717
|
+
emergencyHeatDelta: UnsignedTemperature10Ths;
|
|
3718
|
+
hvacSystemTypeConfiguration: MatterBitmap;
|
|
3719
|
+
localTemperature: Temperature100Ths | null;
|
|
3720
|
+
localTemperatureCalibration: SignedTemperature10Ths;
|
|
3721
|
+
maxCoolSetpointLimit: Temperature100Ths;
|
|
3722
|
+
maxHeatSetpointLimit: Temperature100Ths;
|
|
3723
|
+
minCoolSetpointLimit: Temperature100Ths;
|
|
3724
|
+
minHeatSetpointLimit: Temperature100Ths;
|
|
3725
|
+
minSetpointDeadBand: SignedTemperature10Ths;
|
|
3726
|
+
numberOfDailyTransitions: number;
|
|
3727
|
+
numberOfPresets: number;
|
|
3728
|
+
numberOfSchedules: number;
|
|
3729
|
+
numberOfScheduleTransitionPerDay: number | null;
|
|
3730
|
+
numberOfScheduleTransitions: number;
|
|
3731
|
+
numberOfWeeklyTransitions: number;
|
|
3732
|
+
occupancy: MatterBitmap;
|
|
3733
|
+
occupiedCoolingSetpoint: Temperature100Ths;
|
|
3734
|
+
occupiedHeatingSetpoint: Temperature100Ths;
|
|
3735
|
+
occupiedSetback: UnsignedTemperature10Ths | null;
|
|
3736
|
+
occupiedSetbackMax: UnsignedTemperature10Ths | null;
|
|
3737
|
+
occupiedSetbackMin: UnsignedTemperature10Ths | null;
|
|
3738
|
+
outdoorTemperature: Temperature100Ths | null;
|
|
3739
|
+
piCoolingDemand: number;
|
|
3740
|
+
piHeatingDemand: number;
|
|
3741
|
+
presets: MatterStruct[];
|
|
3742
|
+
presetTypes: MatterStruct[];
|
|
3743
|
+
remoteSensing: MatterBitmap;
|
|
3744
|
+
schedules: MatterStruct[];
|
|
3745
|
+
scheduleTypes: MatterStruct[];
|
|
3746
|
+
setpointChangeAmount: number | null;
|
|
3747
|
+
setpointChangeSource: MatterEnum;
|
|
3748
|
+
setpointChangeSourceTimestamp: EpochS;
|
|
3749
|
+
setpointHoldExpiryTimestamp: EpochS | null;
|
|
3750
|
+
startOfWeek: MatterEnum;
|
|
3751
|
+
systemMode: MatterEnum;
|
|
3752
|
+
temperatureSetpointHold: MatterEnum;
|
|
3753
|
+
temperatureSetpointHoldDuration: number | null;
|
|
3754
|
+
thermostatProgrammingOperationMode: MatterBitmap;
|
|
3755
|
+
thermostatRunningMode: MatterEnum;
|
|
3756
|
+
thermostatRunningState: MatterBitmap;
|
|
3757
|
+
unoccupiedCoolingSetpoint: Temperature100Ths;
|
|
3758
|
+
unoccupiedHeatingSetpoint: Temperature100Ths;
|
|
3759
|
+
unoccupiedSetback: UnsignedTemperature10Ths | null;
|
|
3760
|
+
unoccupiedSetbackMax: UnsignedTemperature10Ths | null;
|
|
3761
|
+
unoccupiedSetbackMin: UnsignedTemperature10Ths | null;
|
|
3762
|
+
};
|
|
3763
|
+
commands: {
|
|
3764
|
+
clearWeeklySchedule: undefined;
|
|
3765
|
+
getWeeklySchedule: {
|
|
3766
|
+
daysToReturn: MatterBitmap;
|
|
3767
|
+
modeToReturn: MatterBitmap;
|
|
3768
|
+
};
|
|
3769
|
+
setActivePresetRequest: {
|
|
3770
|
+
presetHandle: Bytes | null;
|
|
3771
|
+
};
|
|
3772
|
+
setActiveScheduleRequest: {
|
|
3773
|
+
scheduleHandle: Bytes;
|
|
3774
|
+
};
|
|
3775
|
+
setpointRaiseLower: {
|
|
3776
|
+
mode: MatterEnum;
|
|
3777
|
+
amount: number;
|
|
3778
|
+
};
|
|
3779
|
+
setWeeklySchedule: {
|
|
3780
|
+
numberOfTransitionsForSequence: number;
|
|
3781
|
+
dayOfWeekForSequence: MatterBitmap;
|
|
3782
|
+
modeForSequence: MatterBitmap;
|
|
3783
|
+
transitions: MatterStruct[];
|
|
3784
|
+
};
|
|
3785
|
+
};
|
|
3786
|
+
events: {};
|
|
3787
|
+
};
|
|
3788
|
+
'ThermostatUserInterfaceConfiguration': {
|
|
3789
|
+
features: {};
|
|
3790
|
+
attributes: {
|
|
3791
|
+
keypadLockout: MatterEnum;
|
|
3792
|
+
scheduleProgrammingVisibility: MatterEnum;
|
|
3793
|
+
temperatureDisplayMode: MatterEnum;
|
|
3794
|
+
};
|
|
3795
|
+
commands: {};
|
|
3796
|
+
events: {};
|
|
3797
|
+
};
|
|
3798
|
+
'ThreadBorderRouterManagement': {
|
|
3799
|
+
features: {
|
|
3800
|
+
PC: 'PANChange';
|
|
3801
|
+
};
|
|
3802
|
+
attributes: {
|
|
3803
|
+
activeDatasetTimestamp: Int64 | null;
|
|
3804
|
+
borderAgentId: Bytes;
|
|
3805
|
+
borderRouterName: string;
|
|
3806
|
+
interfaceEnabled: boolean;
|
|
3807
|
+
pendingDatasetTimestamp: Int64 | null;
|
|
3808
|
+
threadVersion: number;
|
|
3809
|
+
};
|
|
3810
|
+
commands: {
|
|
3811
|
+
getActiveDatasetRequest: undefined;
|
|
3812
|
+
getPendingDatasetRequest: undefined;
|
|
3813
|
+
setActiveDatasetRequest: {
|
|
3814
|
+
activeDataset: Bytes;
|
|
3815
|
+
breadcrumb: Int64;
|
|
3816
|
+
};
|
|
3817
|
+
setPendingDatasetRequest: {
|
|
3818
|
+
pendingDataset: Bytes;
|
|
3819
|
+
};
|
|
3820
|
+
};
|
|
3821
|
+
events: {};
|
|
3822
|
+
};
|
|
3823
|
+
'ThreadNetworkDiagnostics': {
|
|
3824
|
+
features: {
|
|
3825
|
+
ERRCNT: 'ErrorCounts';
|
|
3826
|
+
MACCNT: 'MACCounts';
|
|
3827
|
+
MLECNT: 'MLECounts';
|
|
3828
|
+
PKTCNT: 'PacketCounts';
|
|
3829
|
+
};
|
|
3830
|
+
attributes: {
|
|
3831
|
+
activeNetworkFaultsList: MatterEnum[];
|
|
3832
|
+
activeTimestamp: Int64 | null;
|
|
3833
|
+
attachAttemptCount: number;
|
|
3834
|
+
betterPartitionAttachAttemptCount: number;
|
|
3835
|
+
channel: number | null;
|
|
3836
|
+
channelPage0Mask: Bytes | null;
|
|
3837
|
+
childRoleCount: number;
|
|
3838
|
+
dataVersion: number | null;
|
|
3839
|
+
delay: number | null;
|
|
3840
|
+
detachedRoleCount: number;
|
|
3841
|
+
extAddress: Int64 | null;
|
|
3842
|
+
extendedPanId: Int64 | null;
|
|
3843
|
+
leaderRoleCount: number;
|
|
3844
|
+
leaderRouterId: number | null;
|
|
3845
|
+
meshLocalPrefix: Bytes | null;
|
|
3846
|
+
neighborTable: MatterStruct[];
|
|
3847
|
+
networkName: string | null;
|
|
3848
|
+
operationalDatasetComponents: MatterStruct | null;
|
|
3849
|
+
overrunCount: Int64;
|
|
3850
|
+
panId: number | null;
|
|
3851
|
+
parentChangeCount: number;
|
|
3852
|
+
partitionId: number | null;
|
|
3853
|
+
partitionIdChangeCount: number;
|
|
3854
|
+
pendingTimestamp: Int64 | null;
|
|
3855
|
+
rloc16: number | null;
|
|
3856
|
+
routerRoleCount: number;
|
|
3857
|
+
routeTable: MatterStruct[];
|
|
3858
|
+
routingRole: MatterEnum | null;
|
|
3859
|
+
rxAddressFilteredCount: number;
|
|
3860
|
+
rxBeaconCount: number;
|
|
3861
|
+
rxBeaconRequestCount: number;
|
|
3862
|
+
rxBroadcastCount: number;
|
|
3863
|
+
rxDataCount: number;
|
|
3864
|
+
rxDataPollCount: number;
|
|
3865
|
+
rxDestAddrFilteredCount: number;
|
|
3866
|
+
rxDuplicatedCount: number;
|
|
3867
|
+
rxErrFcsCount: number;
|
|
3868
|
+
rxErrInvalidSrcAddrCount: number;
|
|
3869
|
+
rxErrNoFrameCount: number;
|
|
3870
|
+
rxErrOtherCount: number;
|
|
3871
|
+
rxErrSecCount: number;
|
|
3872
|
+
rxErrUnknownNeighborCount: number;
|
|
3873
|
+
rxOtherCount: number;
|
|
3874
|
+
rxTotalCount: number;
|
|
3875
|
+
rxUnicastCount: number;
|
|
3876
|
+
securityPolicy: MatterStruct | null;
|
|
3877
|
+
stableDataVersion: number | null;
|
|
3878
|
+
txAckedCount: number;
|
|
3879
|
+
txAckRequestedCount: number;
|
|
3880
|
+
txBeaconCount: number;
|
|
3881
|
+
txBeaconRequestCount: number;
|
|
3882
|
+
txBroadcastCount: number;
|
|
3883
|
+
txDataCount: number;
|
|
3884
|
+
txDataPollCount: number;
|
|
3885
|
+
txDirectMaxRetryExpiryCount: number;
|
|
3886
|
+
txErrAbortCount: number;
|
|
3887
|
+
txErrBusyChannelCount: number;
|
|
3888
|
+
txErrCcaCount: number;
|
|
3889
|
+
txIndirectMaxRetryExpiryCount: number;
|
|
3890
|
+
txNoAckRequestedCount: number;
|
|
3891
|
+
txOtherCount: number;
|
|
3892
|
+
txRetryCount: number;
|
|
3893
|
+
txTotalCount: number;
|
|
3894
|
+
txUnicastCount: number;
|
|
3895
|
+
weighting: number | null;
|
|
3896
|
+
};
|
|
3897
|
+
commands: {
|
|
3898
|
+
resetCounts: undefined;
|
|
3899
|
+
};
|
|
3900
|
+
events: {
|
|
3901
|
+
ConnectionStatus: {
|
|
3902
|
+
connectionStatus: MatterEnum;
|
|
3903
|
+
};
|
|
3904
|
+
NetworkFaultChange: {
|
|
3905
|
+
current: MatterEnum[];
|
|
3906
|
+
previous: MatterEnum[];
|
|
3907
|
+
};
|
|
3908
|
+
};
|
|
3909
|
+
};
|
|
3910
|
+
'ThreadNetworkDirectory': {
|
|
3911
|
+
features: {};
|
|
3912
|
+
attributes: {
|
|
3913
|
+
preferredExtendedPanId: Bytes | null;
|
|
3914
|
+
threadNetworks: MatterStruct[];
|
|
3915
|
+
threadNetworkTableSize: number;
|
|
3916
|
+
};
|
|
3917
|
+
commands: {
|
|
3918
|
+
addNetwork: {
|
|
3919
|
+
operationalDataset: Bytes;
|
|
3920
|
+
};
|
|
3921
|
+
getOperationalDataset: {
|
|
3922
|
+
extendedPanId: Bytes;
|
|
3923
|
+
};
|
|
3924
|
+
removeNetwork: {
|
|
3925
|
+
extendedPanId: Bytes;
|
|
3926
|
+
};
|
|
3927
|
+
};
|
|
3928
|
+
events: {};
|
|
3929
|
+
};
|
|
3930
|
+
'TimeFormatLocalization': {
|
|
3931
|
+
features: {
|
|
3932
|
+
CALFMT: 'CalendarFormat';
|
|
3933
|
+
};
|
|
3934
|
+
attributes: {
|
|
3935
|
+
activeCalendarType: MatterEnum;
|
|
3936
|
+
hourFormat: MatterEnum;
|
|
3937
|
+
supportedCalendarTypes: MatterEnum[];
|
|
3938
|
+
};
|
|
3939
|
+
commands: {};
|
|
3940
|
+
events: {};
|
|
3941
|
+
};
|
|
3942
|
+
'TimeSynchronization': {
|
|
3943
|
+
features: {
|
|
3944
|
+
NTPC: 'NTPClient';
|
|
3945
|
+
NTPS: 'NTPServer';
|
|
3946
|
+
TSC: 'TimeSyncClient';
|
|
3947
|
+
TZ: 'TimeZone';
|
|
3948
|
+
};
|
|
3949
|
+
attributes: {
|
|
3950
|
+
defaultNtp: string | null;
|
|
3951
|
+
dstOffset: MatterStruct[];
|
|
3952
|
+
dstOffsetListMaxSize: number;
|
|
3953
|
+
granularity: MatterEnum;
|
|
3954
|
+
localTime: EpochUs | null;
|
|
3955
|
+
ntpServerAvailable: boolean;
|
|
3956
|
+
supportsDnsResolve: boolean;
|
|
3957
|
+
timeSource: MatterEnum;
|
|
3958
|
+
timeZone: MatterStruct[];
|
|
3959
|
+
timeZoneDatabase: MatterEnum;
|
|
3960
|
+
timeZoneListMaxSize: number;
|
|
3961
|
+
trustedTimeSource: MatterStruct | null;
|
|
3962
|
+
utcTime: EpochUs | null;
|
|
3963
|
+
};
|
|
3964
|
+
commands: {
|
|
3965
|
+
setDefaultNTP: {
|
|
3966
|
+
defaultNtp: string | null;
|
|
3967
|
+
};
|
|
3968
|
+
setDSTOffset: {
|
|
3969
|
+
dstOffset: MatterStruct[];
|
|
3970
|
+
};
|
|
3971
|
+
setTimeZone: {
|
|
3972
|
+
timeZone: MatterStruct[];
|
|
3973
|
+
};
|
|
3974
|
+
setTrustedTimeSource: {
|
|
3975
|
+
trustedTimeSource: MatterStruct | null;
|
|
3976
|
+
};
|
|
3977
|
+
setUTCTime: {
|
|
3978
|
+
utcTime: EpochUs;
|
|
3979
|
+
granularity: MatterEnum;
|
|
3980
|
+
timeSource: MatterEnum;
|
|
3981
|
+
};
|
|
3982
|
+
};
|
|
3983
|
+
events: {
|
|
3984
|
+
DSTTableEmpty: undefined;
|
|
3985
|
+
DSTStatus: {
|
|
3986
|
+
dstOffsetActive: boolean;
|
|
3987
|
+
};
|
|
3988
|
+
TimeZoneStatus: {
|
|
3989
|
+
offset: number;
|
|
3990
|
+
name: string;
|
|
3991
|
+
};
|
|
3992
|
+
TimeFailure: undefined;
|
|
3993
|
+
MissingTrustedTimeSource: undefined;
|
|
3994
|
+
};
|
|
3995
|
+
};
|
|
3996
|
+
'TLSCertificateManagement': {
|
|
3997
|
+
features: {};
|
|
3998
|
+
attributes: {
|
|
3999
|
+
maxClientCertificates: number;
|
|
4000
|
+
maxRootCertificates: number;
|
|
4001
|
+
provisionedClientCertificates: MatterStruct[];
|
|
4002
|
+
provisionedRootCertificates: MatterStruct[];
|
|
4003
|
+
};
|
|
4004
|
+
commands: {
|
|
4005
|
+
clientCSR: {
|
|
4006
|
+
nonce: Bytes;
|
|
4007
|
+
ccdid: TLSCCDId | null;
|
|
4008
|
+
};
|
|
4009
|
+
findClientCertificate: {
|
|
4010
|
+
ccdid: TLSCCDId | null;
|
|
4011
|
+
};
|
|
4012
|
+
findRootCertificate: {
|
|
4013
|
+
caid: TLSCAId | null;
|
|
4014
|
+
};
|
|
4015
|
+
lookupClientCertificate: {
|
|
4016
|
+
fingerprint: Bytes;
|
|
4017
|
+
};
|
|
4018
|
+
lookupRootCertificate: {
|
|
4019
|
+
fingerprint: Bytes;
|
|
4020
|
+
};
|
|
4021
|
+
provisionClientCertificate: {
|
|
4022
|
+
ccdid: TLSCCDId;
|
|
4023
|
+
clientCertificate: Bytes;
|
|
4024
|
+
intermediateCertificates: Bytes[];
|
|
4025
|
+
};
|
|
4026
|
+
provisionRootCertificate: {
|
|
4027
|
+
certificate: Bytes;
|
|
4028
|
+
caid: TLSCAId | null;
|
|
4029
|
+
};
|
|
4030
|
+
removeClientCertificate: {
|
|
4031
|
+
ccdid: TLSCCDId;
|
|
4032
|
+
};
|
|
4033
|
+
removeRootCertificate: {
|
|
4034
|
+
caid: TLSCAId;
|
|
4035
|
+
};
|
|
4036
|
+
};
|
|
4037
|
+
events: {};
|
|
4038
|
+
};
|
|
4039
|
+
'TLSClientManagement': {
|
|
4040
|
+
features: {};
|
|
4041
|
+
attributes: {
|
|
4042
|
+
maxProvisioned: number;
|
|
4043
|
+
provisionedEndpoints: MatterStruct[];
|
|
4044
|
+
};
|
|
4045
|
+
commands: {
|
|
4046
|
+
findEndpoint: {
|
|
4047
|
+
endpointId: TLSEndpointId;
|
|
4048
|
+
};
|
|
4049
|
+
provisionEndpoint: {
|
|
4050
|
+
hostname: Bytes;
|
|
4051
|
+
port: number;
|
|
4052
|
+
caid: TLSCAId;
|
|
4053
|
+
ccdid: TLSCCDId | null;
|
|
4054
|
+
endpointId: TLSEndpointId | null;
|
|
4055
|
+
};
|
|
4056
|
+
removeEndpoint: {
|
|
4057
|
+
endpointId: TLSEndpointId;
|
|
4058
|
+
};
|
|
4059
|
+
};
|
|
4060
|
+
events: {};
|
|
4061
|
+
};
|
|
4062
|
+
'TotalVolatileOrganicCompoundsConcentrationMeasurement': {
|
|
4063
|
+
features: {
|
|
4064
|
+
AVG: 'AverageMeasurement';
|
|
4065
|
+
CRI: 'CriticalLevel';
|
|
4066
|
+
LEV: 'LevelIndication';
|
|
4067
|
+
MED: 'MediumLevel';
|
|
4068
|
+
MEA: 'NumericMeasurement';
|
|
4069
|
+
PEA: 'PeakMeasurement';
|
|
4070
|
+
};
|
|
4071
|
+
attributes: {
|
|
4072
|
+
averageMeasuredValue: number | null;
|
|
4073
|
+
averageMeasuredValueWindow: ElapsedS;
|
|
4074
|
+
levelValue: MatterEnum;
|
|
4075
|
+
maxMeasuredValue: number | null;
|
|
4076
|
+
measuredValue: number | null;
|
|
4077
|
+
measurementMedium: MatterEnum;
|
|
4078
|
+
measurementUnit: MatterEnum;
|
|
4079
|
+
minMeasuredValue: number | null;
|
|
4080
|
+
peakMeasuredValue: number | null;
|
|
4081
|
+
peakMeasuredValueWindow: ElapsedS;
|
|
4082
|
+
uncertainty: number;
|
|
4083
|
+
};
|
|
4084
|
+
commands: {};
|
|
4085
|
+
events: {};
|
|
4086
|
+
};
|
|
4087
|
+
'UnitLocalization': {
|
|
4088
|
+
features: {
|
|
4089
|
+
TEMP: 'TemperatureUnit';
|
|
4090
|
+
};
|
|
4091
|
+
attributes: {
|
|
4092
|
+
supportedTemperatureUnits: MatterEnum[];
|
|
4093
|
+
temperatureUnit: MatterEnum;
|
|
4094
|
+
};
|
|
4095
|
+
commands: {};
|
|
4096
|
+
events: {};
|
|
4097
|
+
};
|
|
4098
|
+
'UserLabel': {
|
|
4099
|
+
features: {};
|
|
4100
|
+
attributes: {
|
|
4101
|
+
labelList: LabelStruct[];
|
|
4102
|
+
};
|
|
4103
|
+
commands: {};
|
|
4104
|
+
events: {};
|
|
4105
|
+
};
|
|
4106
|
+
'ValveConfigurationandControl': {
|
|
4107
|
+
features: {
|
|
4108
|
+
LVL: 'Level';
|
|
4109
|
+
TS: 'TimeSync';
|
|
4110
|
+
};
|
|
4111
|
+
attributes: {
|
|
4112
|
+
autoCloseTime: EpochUs | null;
|
|
4113
|
+
currentLevel: Percent | null;
|
|
4114
|
+
currentState: MatterEnum | null;
|
|
4115
|
+
defaultOpenDuration: ElapsedS | null;
|
|
4116
|
+
defaultOpenLevel: Percent;
|
|
4117
|
+
levelStep: number;
|
|
4118
|
+
openDuration: ElapsedS | null;
|
|
4119
|
+
remainingDuration: ElapsedS | null;
|
|
4120
|
+
targetLevel: Percent | null;
|
|
4121
|
+
targetState: MatterEnum | null;
|
|
4122
|
+
valveFault: MatterBitmap;
|
|
4123
|
+
};
|
|
4124
|
+
commands: {
|
|
4125
|
+
close: undefined;
|
|
4126
|
+
open: {
|
|
4127
|
+
openDuration: ElapsedS | null;
|
|
4128
|
+
targetLevel: Percent;
|
|
4129
|
+
};
|
|
4130
|
+
};
|
|
4131
|
+
events: {
|
|
4132
|
+
ValveStateChanged: {
|
|
4133
|
+
valveState: MatterEnum;
|
|
4134
|
+
valveLevel: Percent;
|
|
4135
|
+
};
|
|
4136
|
+
ValveFault: {
|
|
4137
|
+
valveFault: MatterBitmap;
|
|
4138
|
+
};
|
|
4139
|
+
};
|
|
4140
|
+
};
|
|
4141
|
+
'WakeOnLAN': {
|
|
4142
|
+
features: {};
|
|
4143
|
+
attributes: {
|
|
4144
|
+
linkLocalAddress: Bytes;
|
|
4145
|
+
macAddress: string;
|
|
4146
|
+
};
|
|
4147
|
+
commands: {};
|
|
4148
|
+
events: {};
|
|
4149
|
+
};
|
|
4150
|
+
'WaterContentMeasurementClusters': {
|
|
4151
|
+
features: {};
|
|
4152
|
+
attributes: {
|
|
4153
|
+
maxMeasuredValue: number | null;
|
|
4154
|
+
measuredValue: number | null;
|
|
4155
|
+
minMeasuredValue: number | null;
|
|
4156
|
+
tolerance: number;
|
|
4157
|
+
};
|
|
4158
|
+
commands: {};
|
|
4159
|
+
events: {};
|
|
4160
|
+
};
|
|
4161
|
+
'WaterHeaterManagement': {
|
|
4162
|
+
features: {
|
|
4163
|
+
EM: 'EnergyManagement';
|
|
4164
|
+
TP: 'TankPercent';
|
|
4165
|
+
};
|
|
4166
|
+
attributes: {
|
|
4167
|
+
boostState: MatterEnum;
|
|
4168
|
+
estimatedHeatRequired: Int64;
|
|
4169
|
+
heatDemand: MatterBitmap;
|
|
4170
|
+
heaterTypes: MatterBitmap;
|
|
4171
|
+
tankPercentage: Percent;
|
|
4172
|
+
tankVolume: number;
|
|
4173
|
+
};
|
|
4174
|
+
commands: {
|
|
4175
|
+
boost: {
|
|
4176
|
+
boostInfo: MatterStruct;
|
|
4177
|
+
};
|
|
4178
|
+
cancelBoost: undefined;
|
|
4179
|
+
};
|
|
4180
|
+
events: {
|
|
4181
|
+
BoostStarted: {
|
|
4182
|
+
boostInfo: MatterStruct;
|
|
4183
|
+
};
|
|
4184
|
+
BoostEnded: undefined;
|
|
4185
|
+
};
|
|
4186
|
+
};
|
|
4187
|
+
'WaterHeaterMode': {
|
|
4188
|
+
features: {
|
|
4189
|
+
DEPONOFF: 'OnOff';
|
|
4190
|
+
};
|
|
4191
|
+
attributes: {
|
|
4192
|
+
currentMode: ModeId;
|
|
4193
|
+
onMode: ModeId | null;
|
|
4194
|
+
startUpMode: ModeId | null;
|
|
4195
|
+
supportedModes: SupportedModes[];
|
|
4196
|
+
};
|
|
4197
|
+
commands: {
|
|
4198
|
+
changeToMode: {
|
|
4199
|
+
newMode: number;
|
|
4200
|
+
};
|
|
4201
|
+
};
|
|
4202
|
+
events: {};
|
|
4203
|
+
};
|
|
4204
|
+
'WaterTankLevelMonitoring': {
|
|
4205
|
+
features: {
|
|
4206
|
+
CON: 'Condition';
|
|
4207
|
+
REP: 'ReplacementProductList';
|
|
4208
|
+
WRN: 'Warning';
|
|
4209
|
+
};
|
|
4210
|
+
attributes: {
|
|
4211
|
+
changeIndication: MatterEnum;
|
|
4212
|
+
condition: Percent;
|
|
4213
|
+
degradationDirection: MatterEnum;
|
|
4214
|
+
inPlaceIndicator: boolean;
|
|
4215
|
+
lastChangedTime: EpochS | null;
|
|
4216
|
+
replacementProductList: MatterStruct[];
|
|
4217
|
+
};
|
|
4218
|
+
commands: {
|
|
4219
|
+
resetCondition: undefined;
|
|
4220
|
+
};
|
|
4221
|
+
events: {};
|
|
4222
|
+
};
|
|
4223
|
+
'WebRTCTransportProvider': {
|
|
4224
|
+
features: {
|
|
4225
|
+
METADATA: 'Metadata';
|
|
4226
|
+
};
|
|
4227
|
+
attributes: {
|
|
4228
|
+
currentSessions: MatterStruct[];
|
|
4229
|
+
};
|
|
4230
|
+
commands: {
|
|
4231
|
+
endSession: {
|
|
4232
|
+
webRtcSessionId: WebRTCSessionId;
|
|
4233
|
+
reason: MatterEnum;
|
|
4234
|
+
};
|
|
4235
|
+
provideAnswer: {
|
|
4236
|
+
webRtcSessionId: WebRTCSessionId;
|
|
4237
|
+
sdp: string;
|
|
4238
|
+
};
|
|
4239
|
+
provideICECandidates: {
|
|
4240
|
+
webRtcSessionId: WebRTCSessionId;
|
|
4241
|
+
iceCandidates: MatterStruct[];
|
|
4242
|
+
};
|
|
4243
|
+
};
|
|
4244
|
+
events: {};
|
|
4245
|
+
};
|
|
4246
|
+
'WebRTCTransportRequestor': {
|
|
4247
|
+
features: {};
|
|
4248
|
+
attributes: {
|
|
4249
|
+
currentSessions: MatterStruct[];
|
|
4250
|
+
};
|
|
4251
|
+
commands: {
|
|
4252
|
+
answer: {
|
|
4253
|
+
webRtcSessionId: WebRTCSessionId;
|
|
4254
|
+
sdp: string;
|
|
4255
|
+
};
|
|
4256
|
+
end: {
|
|
4257
|
+
webRtcSessionId: WebRTCSessionId;
|
|
4258
|
+
reason: MatterEnum;
|
|
4259
|
+
};
|
|
4260
|
+
iCECandidates: {
|
|
4261
|
+
webRtcSessionId: WebRTCSessionId;
|
|
4262
|
+
iceCandidates: MatterStruct[];
|
|
4263
|
+
};
|
|
4264
|
+
offer: {
|
|
4265
|
+
webRtcSessionId: WebRTCSessionId;
|
|
4266
|
+
sdp: string;
|
|
4267
|
+
iceServers: MatterStruct[];
|
|
4268
|
+
iceTransportPolicy: string;
|
|
4269
|
+
};
|
|
4270
|
+
};
|
|
4271
|
+
events: {};
|
|
4272
|
+
};
|
|
4273
|
+
'Wi-FiNetworkDiagnostics': {
|
|
4274
|
+
features: {
|
|
4275
|
+
ERRCNT: 'ErrorCounts';
|
|
4276
|
+
PKTCNT: 'PacketCounts';
|
|
4277
|
+
};
|
|
4278
|
+
attributes: {
|
|
4279
|
+
beaconLostCount: number | null;
|
|
4280
|
+
beaconRxCount: number | null;
|
|
4281
|
+
bssid: Bytes | null;
|
|
4282
|
+
channelNumber: number | null;
|
|
4283
|
+
currentMaxRate: Int64 | null;
|
|
4284
|
+
overrunCount: Int64 | null;
|
|
4285
|
+
packetMulticastRxCount: number | null;
|
|
4286
|
+
packetMulticastTxCount: number | null;
|
|
4287
|
+
packetUnicastRxCount: number | null;
|
|
4288
|
+
packetUnicastTxCount: number | null;
|
|
4289
|
+
rssi: number | null;
|
|
4290
|
+
securityType: MatterEnum | null;
|
|
4291
|
+
wiFiVersion: MatterEnum | null;
|
|
4292
|
+
};
|
|
4293
|
+
commands: {
|
|
4294
|
+
resetCounts: undefined;
|
|
4295
|
+
};
|
|
4296
|
+
events: {
|
|
4297
|
+
Disconnection: {
|
|
4298
|
+
reasonCode: number;
|
|
4299
|
+
};
|
|
4300
|
+
AssociationFailure: {
|
|
4301
|
+
associationFailureCause: MatterEnum;
|
|
4302
|
+
status: number;
|
|
4303
|
+
};
|
|
4304
|
+
ConnectionStatus: {
|
|
4305
|
+
connectionStatus: MatterEnum;
|
|
4306
|
+
};
|
|
4307
|
+
};
|
|
4308
|
+
};
|
|
4309
|
+
'Wi-FiNetworkManagement': {
|
|
4310
|
+
features: {};
|
|
4311
|
+
attributes: {
|
|
4312
|
+
passphraseSurrogate: Int64 | null;
|
|
4313
|
+
ssid: Bytes | null;
|
|
4314
|
+
};
|
|
4315
|
+
commands: {
|
|
4316
|
+
networkPassphraseRequest: undefined;
|
|
4317
|
+
};
|
|
4318
|
+
events: {};
|
|
4319
|
+
};
|
|
4320
|
+
'WindowCovering': {
|
|
4321
|
+
features: {
|
|
4322
|
+
LF: 'Lift';
|
|
4323
|
+
PA_LF: 'PositionAwareLift';
|
|
4324
|
+
PA_TL: 'PositionAwareTilt';
|
|
4325
|
+
TL: 'Tilt';
|
|
4326
|
+
};
|
|
4327
|
+
attributes: {
|
|
4328
|
+
configStatus: MatterBitmap;
|
|
4329
|
+
currentPositionLiftPercent100Ths: Percent100Ths | null;
|
|
4330
|
+
currentPositionLiftPercentage: Percent | null;
|
|
4331
|
+
currentPositionTiltPercent100Ths: Percent100Ths | null;
|
|
4332
|
+
currentPositionTiltPercentage: Percent | null;
|
|
4333
|
+
endProductType: MatterEnum;
|
|
4334
|
+
mode: MatterBitmap;
|
|
4335
|
+
numberOfActuationsLift: number;
|
|
4336
|
+
numberOfActuationsTilt: number;
|
|
4337
|
+
operationalStatus: MatterBitmap;
|
|
4338
|
+
safetyStatus: MatterBitmap;
|
|
4339
|
+
targetPositionLiftPercent100Ths: Percent100Ths | null;
|
|
4340
|
+
targetPositionTiltPercent100Ths: Percent100Ths | null;
|
|
4341
|
+
type: MatterEnum;
|
|
4342
|
+
};
|
|
4343
|
+
commands: {
|
|
4344
|
+
downOrClose: undefined;
|
|
4345
|
+
goToLiftPercentage: {
|
|
4346
|
+
liftPercent100ThsValue: Percent100Ths;
|
|
4347
|
+
};
|
|
4348
|
+
goToTiltPercentage: {
|
|
4349
|
+
tiltPercent100ThsValue: Percent100Ths;
|
|
4350
|
+
};
|
|
4351
|
+
stopMotion: undefined;
|
|
4352
|
+
upOrOpen: undefined;
|
|
4353
|
+
};
|
|
4354
|
+
events: {};
|
|
4355
|
+
};
|
|
4356
|
+
'ZoneManagement': {
|
|
4357
|
+
features: {
|
|
4358
|
+
FOCUSZONES: 'FocusZones';
|
|
4359
|
+
PERZONESENS: 'PerZoneSensitivity';
|
|
4360
|
+
TWODCART: 'TwoDimensionalCartesianZone';
|
|
4361
|
+
USERDEFINED: 'UserDefined';
|
|
4362
|
+
};
|
|
4363
|
+
attributes: {
|
|
4364
|
+
maxUserDefinedZones: number;
|
|
4365
|
+
maxZones: number;
|
|
4366
|
+
sensitivity: number;
|
|
4367
|
+
sensitivityMax: number;
|
|
4368
|
+
triggers: MatterStruct[];
|
|
4369
|
+
twoDCartesianMax: MatterStruct;
|
|
4370
|
+
zones: MatterStruct[];
|
|
4371
|
+
};
|
|
4372
|
+
commands: {
|
|
4373
|
+
createOrUpdateTrigger: {
|
|
4374
|
+
trigger: MatterStruct;
|
|
4375
|
+
};
|
|
4376
|
+
createTwoDCartesianZone: {
|
|
4377
|
+
zone: MatterStruct;
|
|
4378
|
+
};
|
|
4379
|
+
removeTrigger: {
|
|
4380
|
+
zoneId: ZoneId;
|
|
4381
|
+
};
|
|
4382
|
+
removeZone: {
|
|
4383
|
+
zoneId: ZoneId;
|
|
4384
|
+
};
|
|
4385
|
+
updateTwoDCartesianZone: {
|
|
4386
|
+
zoneId: ZoneId;
|
|
4387
|
+
zone: MatterStruct;
|
|
4388
|
+
};
|
|
4389
|
+
};
|
|
4390
|
+
events: {
|
|
4391
|
+
ZoneTriggered: {
|
|
4392
|
+
zone: ZoneId;
|
|
4393
|
+
reason: MatterEnum;
|
|
4394
|
+
};
|
|
4395
|
+
ZoneStopped: {
|
|
4396
|
+
zone: ZoneId;
|
|
4397
|
+
reason: MatterEnum;
|
|
4398
|
+
};
|
|
4399
|
+
};
|
|
4400
|
+
};
|
|
4401
|
+
};
|
|
4402
|
+
export type ClusterName = keyof MatterClusterTypes;
|
|
4403
|
+
export type ClusterFeatures<C extends ClusterName> = MatterClusterTypes[C]['features'];
|
|
4404
|
+
export type FeatureCode<C extends ClusterName> = keyof ClusterFeatures<C>;
|
|
4405
|
+
export type FeatureName<C extends ClusterName> = ClusterFeatures<C>[keyof ClusterFeatures<C>];
|
|
4406
|
+
export type ClusterCommands<C extends ClusterName> = MatterClusterTypes[C]['commands'];
|
|
4407
|
+
export type CommandName<C extends ClusterName> = keyof ClusterCommands<C>;
|
|
4408
|
+
export type ClusterAttributes<C extends ClusterName> = MatterClusterTypes[C]['attributes'];
|
|
4409
|
+
export type AttributeName<C extends ClusterName> = keyof ClusterAttributes<C>;
|
|
4410
|
+
export type ClusterEvents<C extends ClusterName> = MatterClusterTypes[C]['events'];
|
|
4411
|
+
export type EventName<C extends ClusterName> = keyof ClusterEvents<C>;
|