matterbridge 3.0.3 → 3.0.4-dev-20250525-b1cbfb7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (164) hide show
  1. package/CHANGELOG.md +25 -4
  2. package/README.md +6 -12
  3. package/dist/cli.js +2 -37
  4. package/dist/cluster/export.js +0 -2
  5. package/dist/defaultConfigSchema.js +0 -23
  6. package/dist/deviceManager.js +1 -94
  7. package/dist/frontend.js +100 -437
  8. package/dist/helpers.js +9 -53
  9. package/dist/index.js +1 -27
  10. package/dist/logger/export.js +0 -1
  11. package/dist/matter/behaviors.js +0 -2
  12. package/dist/matter/clusters.js +0 -2
  13. package/dist/matter/devices.js +0 -2
  14. package/dist/matter/endpoints.js +0 -2
  15. package/dist/matter/export.js +1 -3
  16. package/dist/matter/types.js +0 -2
  17. package/dist/matterbridge.js +47 -747
  18. package/dist/matterbridgeAccessoryPlatform.js +0 -34
  19. package/dist/matterbridgeBehaviors.js +43 -61
  20. package/dist/matterbridgeDeviceTypes.js +15 -563
  21. package/dist/matterbridgeDynamicPlatform.js +0 -34
  22. package/dist/matterbridgeEndpoint.js +68 -837
  23. package/dist/matterbridgeEndpointHelpers.js +33 -204
  24. package/dist/matterbridgePlatform.js +7 -225
  25. package/dist/matterbridgeTypes.js +0 -24
  26. package/dist/pluginManager.js +3 -264
  27. package/dist/roboticVacuumCleaner.js +3 -78
  28. package/dist/shelly.js +7 -155
  29. package/dist/storage/export.js +0 -1
  30. package/dist/update.js +0 -53
  31. package/dist/utils/colorUtils.js +2 -205
  32. package/dist/utils/commandLine.js +0 -53
  33. package/dist/utils/copyDirectory.js +1 -37
  34. package/dist/utils/createZip.js +2 -42
  35. package/dist/utils/deepCopy.js +0 -38
  36. package/dist/utils/deepEqual.js +1 -71
  37. package/dist/utils/export.js +0 -1
  38. package/dist/utils/hex.js +0 -57
  39. package/dist/utils/isvalid.js +0 -100
  40. package/dist/utils/network.js +5 -76
  41. package/dist/utils/wait.js +9 -58
  42. package/dist/waterHeater.js +0 -52
  43. package/npm-shrinkwrap.json +10 -10
  44. package/package.json +2 -3
  45. package/dist/cli.d.ts +0 -29
  46. package/dist/cli.d.ts.map +0 -1
  47. package/dist/cli.js.map +0 -1
  48. package/dist/cluster/export.d.ts +0 -2
  49. package/dist/cluster/export.d.ts.map +0 -1
  50. package/dist/cluster/export.js.map +0 -1
  51. package/dist/defaultConfigSchema.d.ts +0 -27
  52. package/dist/defaultConfigSchema.d.ts.map +0 -1
  53. package/dist/defaultConfigSchema.js.map +0 -1
  54. package/dist/deviceManager.d.ts +0 -114
  55. package/dist/deviceManager.d.ts.map +0 -1
  56. package/dist/deviceManager.js.map +0 -1
  57. package/dist/frontend.d.ts +0 -241
  58. package/dist/frontend.d.ts.map +0 -1
  59. package/dist/frontend.js.map +0 -1
  60. package/dist/helpers.d.ts +0 -47
  61. package/dist/helpers.d.ts.map +0 -1
  62. package/dist/helpers.js.map +0 -1
  63. package/dist/index.d.ts +0 -35
  64. package/dist/index.d.ts.map +0 -1
  65. package/dist/index.js.map +0 -1
  66. package/dist/logger/export.d.ts +0 -2
  67. package/dist/logger/export.d.ts.map +0 -1
  68. package/dist/logger/export.js.map +0 -1
  69. package/dist/matter/behaviors.d.ts +0 -2
  70. package/dist/matter/behaviors.d.ts.map +0 -1
  71. package/dist/matter/behaviors.js.map +0 -1
  72. package/dist/matter/clusters.d.ts +0 -2
  73. package/dist/matter/clusters.d.ts.map +0 -1
  74. package/dist/matter/clusters.js.map +0 -1
  75. package/dist/matter/devices.d.ts +0 -2
  76. package/dist/matter/devices.d.ts.map +0 -1
  77. package/dist/matter/devices.js.map +0 -1
  78. package/dist/matter/endpoints.d.ts +0 -2
  79. package/dist/matter/endpoints.d.ts.map +0 -1
  80. package/dist/matter/endpoints.js.map +0 -1
  81. package/dist/matter/export.d.ts +0 -5
  82. package/dist/matter/export.d.ts.map +0 -1
  83. package/dist/matter/export.js.map +0 -1
  84. package/dist/matter/types.d.ts +0 -3
  85. package/dist/matter/types.d.ts.map +0 -1
  86. package/dist/matter/types.js.map +0 -1
  87. package/dist/matterbridge.d.ts +0 -445
  88. package/dist/matterbridge.d.ts.map +0 -1
  89. package/dist/matterbridge.js.map +0 -1
  90. package/dist/matterbridgeAccessoryPlatform.d.ts +0 -40
  91. package/dist/matterbridgeAccessoryPlatform.d.ts.map +0 -1
  92. package/dist/matterbridgeAccessoryPlatform.js.map +0 -1
  93. package/dist/matterbridgeBehaviors.d.ts +0 -1201
  94. package/dist/matterbridgeBehaviors.d.ts.map +0 -1
  95. package/dist/matterbridgeBehaviors.js.map +0 -1
  96. package/dist/matterbridgeDeviceTypes.d.ts +0 -629
  97. package/dist/matterbridgeDeviceTypes.d.ts.map +0 -1
  98. package/dist/matterbridgeDeviceTypes.js.map +0 -1
  99. package/dist/matterbridgeDynamicPlatform.d.ts +0 -40
  100. package/dist/matterbridgeDynamicPlatform.d.ts.map +0 -1
  101. package/dist/matterbridgeDynamicPlatform.js.map +0 -1
  102. package/dist/matterbridgeEndpoint.d.ts +0 -967
  103. package/dist/matterbridgeEndpoint.d.ts.map +0 -1
  104. package/dist/matterbridgeEndpoint.js.map +0 -1
  105. package/dist/matterbridgeEndpointHelpers.d.ts +0 -2728
  106. package/dist/matterbridgeEndpointHelpers.d.ts.map +0 -1
  107. package/dist/matterbridgeEndpointHelpers.js.map +0 -1
  108. package/dist/matterbridgePlatform.d.ts +0 -294
  109. package/dist/matterbridgePlatform.d.ts.map +0 -1
  110. package/dist/matterbridgePlatform.js.map +0 -1
  111. package/dist/matterbridgeTypes.d.ts +0 -188
  112. package/dist/matterbridgeTypes.d.ts.map +0 -1
  113. package/dist/matterbridgeTypes.js.map +0 -1
  114. package/dist/pluginManager.d.ts +0 -273
  115. package/dist/pluginManager.d.ts.map +0 -1
  116. package/dist/pluginManager.js.map +0 -1
  117. package/dist/roboticVacuumCleaner.d.ts +0 -82
  118. package/dist/roboticVacuumCleaner.d.ts.map +0 -1
  119. package/dist/roboticVacuumCleaner.js.map +0 -1
  120. package/dist/shelly.d.ts +0 -153
  121. package/dist/shelly.d.ts.map +0 -1
  122. package/dist/shelly.js.map +0 -1
  123. package/dist/storage/export.d.ts +0 -2
  124. package/dist/storage/export.d.ts.map +0 -1
  125. package/dist/storage/export.js.map +0 -1
  126. package/dist/update.d.ts +0 -58
  127. package/dist/update.d.ts.map +0 -1
  128. package/dist/update.js.map +0 -1
  129. package/dist/utils/colorUtils.d.ts +0 -61
  130. package/dist/utils/colorUtils.d.ts.map +0 -1
  131. package/dist/utils/colorUtils.js.map +0 -1
  132. package/dist/utils/commandLine.d.ts +0 -58
  133. package/dist/utils/commandLine.d.ts.map +0 -1
  134. package/dist/utils/commandLine.js.map +0 -1
  135. package/dist/utils/copyDirectory.d.ts +0 -32
  136. package/dist/utils/copyDirectory.d.ts.map +0 -1
  137. package/dist/utils/copyDirectory.js.map +0 -1
  138. package/dist/utils/createZip.d.ts +0 -38
  139. package/dist/utils/createZip.d.ts.map +0 -1
  140. package/dist/utils/createZip.js.map +0 -1
  141. package/dist/utils/deepCopy.d.ts +0 -31
  142. package/dist/utils/deepCopy.d.ts.map +0 -1
  143. package/dist/utils/deepCopy.js.map +0 -1
  144. package/dist/utils/deepEqual.d.ts +0 -53
  145. package/dist/utils/deepEqual.d.ts.map +0 -1
  146. package/dist/utils/deepEqual.js.map +0 -1
  147. package/dist/utils/export.d.ts +0 -11
  148. package/dist/utils/export.d.ts.map +0 -1
  149. package/dist/utils/export.js.map +0 -1
  150. package/dist/utils/hex.d.ts +0 -48
  151. package/dist/utils/hex.d.ts.map +0 -1
  152. package/dist/utils/hex.js.map +0 -1
  153. package/dist/utils/isvalid.d.ts +0 -102
  154. package/dist/utils/isvalid.d.ts.map +0 -1
  155. package/dist/utils/isvalid.js.map +0 -1
  156. package/dist/utils/network.d.ts +0 -69
  157. package/dist/utils/network.d.ts.map +0 -1
  158. package/dist/utils/network.js.map +0 -1
  159. package/dist/utils/wait.d.ts +0 -52
  160. package/dist/utils/wait.d.ts.map +0 -1
  161. package/dist/utils/wait.js.map +0 -1
  162. package/dist/waterHeater.d.ts +0 -75
  163. package/dist/waterHeater.d.ts.map +0 -1
  164. package/dist/waterHeater.js.map +0 -1
@@ -1,629 +0,0 @@
1
- /**
2
- * This file contains the class MatterbridgeDevice.
3
- *
4
- * @file matterbridgeDeviceTypes.ts
5
- * @author Luca Liguori
6
- * @date 2024-11-08
7
- * @version 1.0.0
8
- *
9
- * Copyright 2024, 2025, 2026 Luca Liguori.
10
- *
11
- * Licensed under the Apache License, Version 2.0 (the "License");
12
- * you may not use this file except in compliance with the License.
13
- * You may obtain a copy of the License at
14
- *
15
- * http://www.apache.org/licenses/LICENSE-2.0
16
- *
17
- * Unless required by applicable law or agreed to in writing, software
18
- * distributed under the License is distributed on an "AS IS" BASIS,
19
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
- * See the License for the specific language governing permissions and
21
- * limitations under the License. *
22
- */
23
- import { ClusterId, DeviceTypeId, EndpointNumber } from '@matter/main';
24
- import { Semtag } from '@matter/main/types';
25
- export declare enum DeviceClasses {
26
- /** Node device type. */
27
- Node = "Node",
28
- /**
29
- * Application device type.
30
- * Application devices types are typically the most datatype endpoints on a node and in the network.
31
- */
32
- App = "App",
33
- /**
34
- * Utility device type.
35
- * A Utility device type supports configuration and settings.
36
- */
37
- Utility = "Utility",
38
- /**
39
- * Simple device type.
40
- * A Simple device type supports local control that is persistent, independent, and unsupervised.
41
- */
42
- Simple = "Simple",
43
- /**
44
- * Dynamic device type.
45
- * A Dynamic device type supports intelligent and supervisory services, such as commissioning,
46
- * monitoring, trend analysis, scheduling and central management. A dynamic device type is an
47
- * application device type.
48
- */
49
- Dynamic = "Dynamic",
50
- /** There exists a client application cluster on the endpoint. */
51
- Client = "Client",
52
- /** There exists a server application cluster on the endpoint. */
53
- Server = "Server",
54
- /** The device type is composed of 2 or more device types. */
55
- Composed = "Composed",
56
- /** The endpoint and at least one of its sibling endpoints have an overlap in application device type(s). */
57
- Duplicate = "Duplicate",
58
- /**
59
- * The endpoint represents a Bridged Device, for which information about the state of
60
- * its power source is available to the Bridge
61
- */
62
- BridgedPowerSourceInfo = "BridgedPowerSourceInfo"
63
- }
64
- export interface DeviceTypeDefinition {
65
- name: string;
66
- code: DeviceTypeId;
67
- deviceClass: DeviceClasses;
68
- revision: number;
69
- requiredServerClusters: ClusterId[];
70
- optionalServerClusters: ClusterId[];
71
- requiredClientClusters: ClusterId[];
72
- optionalClientClusters: ClusterId[];
73
- }
74
- export declare const DeviceTypeDefinition: ({ name, code, deviceClass, revision, requiredServerClusters, optionalServerClusters, requiredClientClusters, optionalClientClusters, }: {
75
- name: string;
76
- code: number;
77
- deviceClass: DeviceClasses;
78
- revision: number;
79
- requiredServerClusters?: ClusterId[];
80
- optionalServerClusters?: ClusterId[];
81
- requiredClientClusters?: ClusterId[];
82
- optionalClientClusters?: ClusterId[];
83
- }) => DeviceTypeDefinition;
84
- export interface MatterbridgeEndpointOptions extends EndpointOptions {
85
- tagList?: Semtag[];
86
- }
87
- export interface EndpointOptions {
88
- endpointId?: EndpointNumber;
89
- uniqueStorageKey?: string;
90
- }
91
- export declare const powerSource: DeviceTypeDefinition;
92
- export declare const OTARequestor: DeviceTypeDefinition;
93
- export declare const OTAProvider: DeviceTypeDefinition;
94
- /**
95
- 2.5.3. Conditions
96
- Please see the Base Device Type definition for conformance tags.
97
- This device type SHALL only be used for Nodes which have a device type of Bridge.
98
-
99
- 2.5.5. Cluster Requirements
100
- Each endpoint supporting this device type SHALL include these clusters based on the conformance
101
- defined below.
102
- - 0x0039 Bridged Device Basic Information Server
103
-
104
- 2.5.6. Endpoint Composition
105
- • A Bridged Node endpoint SHALL support one of the following composition patterns:
106
- ◦ Separate Endpoints: All application device types are supported on separate endpoints, and
107
- not on the Bridged Node endpoint. The Bridged Node endpoint’s Descriptor cluster PartsList
108
- attribute SHALL indicate a list of all endpoints representing the functionality of the bridged
109
- device, including the endpoints supporting the application device types, i.e. the full-family
110
- pattern defined in the System Model specification.
111
- ◦ One Endpoint: Both the Bridged Node and one or more application device types are sup
112
- ported on the same endpoint (following application device type rules). Endpoint composi
113
- tion SHALL conform to the application device type(s) definition
114
- */
115
- export declare const bridgedNode: DeviceTypeDefinition;
116
- /**
117
- 2.6.3. Device Type Requirements
118
- Electrical measurements made by either the Electrical Power Measurement cluster, the Electrical
119
- Energy Measurement cluster, or both SHALL apply to the endpoints indicated by the Power Topology
120
- cluster.
121
- */
122
- export declare const electricalSensor: DeviceTypeDefinition;
123
- export declare const deviceEnergyManagement: DeviceTypeDefinition;
124
- /**
125
- * Element Requirements:
126
- * - Identify Command TriggerEffect
127
- * - Scenes Management Command CopyScene
128
- * - On/Off Feature Lighting
129
- * - Level Control Feature OnOff
130
- * - Level Control Feature Lighting
131
- * - Level Control Attribute CurrentLevel 1 to 254
132
- * - Level Control Attribute MinLevel 1
133
- * - Level Control Attribute MaxLevel 254
134
- */
135
- export declare const onOffLight: DeviceTypeDefinition;
136
- /**
137
- * Element Requirements:
138
- * - Identify Command TriggerEffect
139
- * - Scenes Management Command CopyScene
140
- * - On/Off Feature Lighting
141
- * - Level Control Feature OnOff
142
- * - Level Control Feature Lighting
143
- * - Level Control Attribute CurrentLevel 1 to 254
144
- * - Level Control Attribute MinLevel 1
145
- * - Level Control Attribute MaxLevel 254
146
- */
147
- export declare const dimmableLight: DeviceTypeDefinition;
148
- /**
149
- * Element Requirements:
150
- * - Identify Command TriggerEffect
151
- * - Scenes Management Command CopyScene
152
- * - On/Off Feature Lighting
153
- * - Level Control Feature OnOff
154
- * - Level Control Feature Lighting
155
- * - Level Control Attribute CurrentLevel 1 to 254
156
- * - Level Control Attribute MinLevel 1
157
- * - Level Control Attribute MaxLevel 254
158
- * - Color Control Feature ColorTemperature
159
- * - Color Control Attribute RemainingTime
160
- */
161
- export declare const colorTemperatureLight: DeviceTypeDefinition;
162
- /**
163
- * Element Requirements:
164
- * - Identify Command TriggerEffect
165
- * - Scenes Management Command CopyScene
166
- * - On/Off Feature Lighting
167
- * - Level Control Feature OnOff
168
- * - Level Control Feature Lighting
169
- * - Level Control Attribute CurrentLevel 1 to 254
170
- * - Level Control Attribute MinLevel 1
171
- * - Level Control Attribute MaxLevel 254
172
- * - Color Control Feature XY
173
- * - Color Control Feature ColorTemperature
174
- * - Color Control Attribute RemainingTime
175
- */
176
- export declare const extendedColorLight: DeviceTypeDefinition;
177
- /**
178
- * Element Requirements:
179
- * - Identify Command TriggerEffect
180
- * - Scenes Management Command CopyScene
181
- * - On/Off Feature Lighting
182
- * - Level Control Feature OnOff
183
- * - Level Control Feature Lighting
184
- * - Level Control Attribute CurrentLevel 1 to 254
185
- * - Level Control Attribute MinLevel 1
186
- * - Level Control Attribute MaxLevel 254
187
- */
188
- export declare const onOffOutlet: DeviceTypeDefinition;
189
- /**
190
- * Element Requirements:
191
- * - Identify Command TriggerEffect
192
- * - Scenes Management Command CopyScene
193
- * - On/Off Feature Lighting
194
- * - Level Control Feature OnOff
195
- * - Level Control Feature Lighting
196
- * - Level Control Attribute CurrentLevel 1 to 254
197
- * - Level Control Attribute MinLevel 1
198
- * - Level Control Attribute MaxLevel 254
199
- */
200
- export declare const dimmableOutlet: DeviceTypeDefinition;
201
- /**
202
- * A Mounted On/Off Control is a fixed device that provides power to another device that is plugged
203
- * into it, and is capable of switching that provided power on or off.
204
- * It is a simple device type that does not require any client clusters.
205
- * Element Requirements:
206
- * - Identify Command TriggerEffect
207
- * - Scenes Management Command CopyScene
208
- * - On/Off Feature Lighting
209
- * - Level Control Feature OnOff
210
- * - Level Control Feature Lighting
211
- * - Level Control Attribute CurrentLevel 1 to 254
212
- * - Level Control Attribute MinLevel 1
213
- * - Level Control Attribute MaxLevel 254
214
- */
215
- export declare const onOffMountedSwitch: DeviceTypeDefinition;
216
- /**
217
- * A Mounted Dimmable Load Control is a fixed device that provides power to another device that is
218
- * plugged into it, and is capable of being switched on or off and have its level adjusted. The Mounted
219
- * Dimmable Load Control is typically used to control a conventional non-communicating light
220
- * through its mains connection using phase cutting.
221
- * It is a simple device type that does not require any client clusters.
222
- * Element Requirements:
223
- * - Identify Command TriggerEffect
224
- * - Scenes Management Command CopyScene
225
- * - On/Off Feature Lighting
226
- * - Level Control Feature OnOff
227
- * - Level Control Feature Lighting
228
- * - Level Control Attribute CurrentLevel 1 to 254
229
- * - Level Control Attribute MinLevel 1
230
- * - Level Control Attribute MaxLevel 254
231
- */
232
- export declare const dimmableMountedSwitch: DeviceTypeDefinition;
233
- /**
234
- * Remark:
235
- * On/Off Cluster:
236
- * - Off If the pump is powered on, store the current level then immediately power it off.
237
- * - On If the pump is powered off, power it on and move immediately to the level stored by a previous Off command. If no such level has been stored,
238
- * move immediately to the maximum level allowed for the pump.
239
- * - Toggle If the pump is powered on, proceed as for the Off command. If the device is powered off, proceed as for the On command.
240
- *
241
- * LevelControl cluster:
242
- * Level Setpoint Meaning
243
- * 0 N/A Pump is stopped,
244
- * 1–200 Level / 2 (0.5–100.0%) Pump setpoint in percent
245
- * 201–255 100.0% Pump setpoint is 100.0%
246
- */
247
- export declare const pumpDevice: DeviceTypeDefinition;
248
- export declare const waterValve: DeviceTypeDefinition;
249
- export declare const onOffSwitch: DeviceTypeDefinition;
250
- export declare const dimmableSwitch: DeviceTypeDefinition;
251
- export declare const colorTemperatureSwitch: DeviceTypeDefinition;
252
- export declare const genericSwitch: DeviceTypeDefinition;
253
- /**
254
- * Closed or contact: state true
255
- * Open or no contact: state false
256
- */
257
- export declare const contactSensor: DeviceTypeDefinition;
258
- export declare const lightSensor: DeviceTypeDefinition;
259
- export declare const occupancySensor: DeviceTypeDefinition;
260
- export declare const temperatureSensor: DeviceTypeDefinition;
261
- export declare const pressureSensor: DeviceTypeDefinition;
262
- export declare const flowSensor: DeviceTypeDefinition;
263
- export declare const humiditySensor: DeviceTypeDefinition;
264
- export declare const smokeCoAlarm: DeviceTypeDefinition;
265
- export declare const airQualitySensor: DeviceTypeDefinition;
266
- export declare const waterFreezeDetector: DeviceTypeDefinition;
267
- export declare const waterLeakDetector: DeviceTypeDefinition;
268
- export declare const rainSensor: DeviceTypeDefinition;
269
- /**
270
- * A Door Lock is a device used to secure a door. It is possible to actuate a door lock either by means of a manual or a remote method.
271
- * Element Requirements:
272
- *
273
- * - AccessControl Attribute Extension
274
- * - DoorLock Feature User
275
- * - DoorLock Attribute AlarmMask
276
- */
277
- export declare const doorLockDevice: DeviceTypeDefinition;
278
- export declare const coverDevice: DeviceTypeDefinition;
279
- /**
280
- * A Thermostat device is capable of having either built-in or separate sensors for temperature,
281
- * humidity or occupancy. It allows the desired temperature to be set either remotely or locally. The
282
- * thermostat is capable of sending heating and/or cooling requirement notifications to a heating/cooling
283
- * unit (for example, an indoor air handler) or is capable of including a mechanism to control a
284
- * heating or cooling unit directly.
285
- *
286
- */
287
- export declare const thermostatDevice: DeviceTypeDefinition;
288
- /**
289
- * A Fan device is typically standalone or mounted on a ceiling or wall and is used to circulate air in a room.
290
- * Remark: it may have a thermostat device type.
291
- * Additional device types MAY also be included in device compositions.
292
- * Element Requirements:
293
- * The FanControl cluster must have the FanModeSequence attribute.
294
- *
295
- * The On/Off cluster is independent from the Fan Control Cluster’s FanMode attribute, which also
296
- * includes an Off setting.
297
- * If the FanMode attribute of the Fan Control cluster is set to a value other than Off when the OnOff
298
- * attribute of the On/Off cluster transitions from TRUE to FALSE, it may be desirable to restore the
299
- * FanMode, SpeedSetting and PercentSetting attribute values of the Fan Control cluster when the OnOff
300
- * attribute of the On/Off cluster later transitions from FALSE to TRUE. If the FanMode is set to Off when
301
- * the device is turned off, this information is lost, as the SpeedSetting and PercentSetting will be set to
302
- * zero. Using the On/Off cluster alongside the Fan Control cluster allows the FanMode, SpeedSetting and
303
- * PercentSetting to remain unchanged when the device is turned off. In this case, the On/Off cluster
304
- * would be set to Off, and the SpeedCurrent and PercentCurrent set to zero, without changing FanMode,
305
- * SpeedSetting and PercentSetting.
306
- */
307
- export declare const fanDevice: DeviceTypeDefinition;
308
- /**
309
- * An Air Purifier is a standalone device that is designed to clean the air in a room.
310
- * It is a device that has a fan to control the air speed while it is operating. Optionally, it can report on
311
- * the condition of its filters.
312
- *
313
- * Remark:
314
- * An Air Purifier MAY expose elements of its functionality through one or more additional device
315
- * types on different endpoints. All devices used in compositions SHALL adhere to the disambiguation
316
- * requirements of the System Model. Other device types, not explicitly listed in the table, MAY also be
317
- * included in device compositions but are not considered part of the core functionality of the device.
318
- * 0x0301 Thermostat O
319
- * 0x0302 Temperature Sensor O
320
- * 0x0307 Humidity Sensor O
321
- * 0x002C Air Quality Sensor O
322
- *
323
- * Cluster Restrictions:
324
- * The On/Off cluster is independent from the Fan Control Cluster’s FanMode attribute, which also
325
- * includes an Off setting.
326
- * If the FanMode attribute of the Fan Control cluster is set to a value other than Off when the OnOff
327
- * attribute of the On/Off cluster transitions from TRUE to FALSE, it may be desirable to restore the
328
- * FanMode, SpeedSetting and PercentSetting attribute values of the Fan Control cluster when the OnOff
329
- * attribute of the On/Off cluster later transitions from FALSE to TRUE. If the FanMode is set to Off when
330
- * the device is turned off, this information is lost, as the SpeedSetting and PercentSetting will be set to
331
- * zero. Using the On/Off cluster alongside the Fan Control cluster allows the FanMode, SpeedSetting and
332
- * PercentSetting to remain unchanged when the device is turned off. In this case, the On/Off cluster
333
- * would be set to Off, and the SpeedCurrent and PercentCurrent set to zero, without changing FanMode,
334
- * SpeedSetting and PercentSetting.
335
- *
336
- */
337
- export declare const airPurifier: DeviceTypeDefinition;
338
- export declare const modeSelect: DeviceTypeDefinition;
339
- /**
340
- * This device type aggregates endpoints as a collection. Clusters on the endpoint indicating this
341
- * device type provide functionality for the collection of descendant endpoints present in the PartsList
342
- * of the endpoint’s descriptor, for example the Actions cluster.
343
- *
344
- * Endpoint Composition:
345
- * An Aggregator endpoint’s Descriptor cluster PartsList attribute SHALL list the collection of all endpoints
346
- * aggregated by the Aggregator device type, i.e. the full-family pattern defined in the System Model specification.
347
- *
348
- * Disambiguation:
349
- * If the Duplicate condition applies to child endpoints of an Aggregator endpoint that represent multiple
350
- * independent bridged devices, the endpoints SHOULD make available metadata to allow a
351
- * client to disambiguate distinct bridged devices with an overlap in application device types.
352
- *
353
- * Typically this is done using the NodeLabel attribute of the Bridged Device Basic Information cluster
354
- * - thus reusing the naming information which the bridge already has to allow disambiguation to the
355
- * user when using a direct user interface to the bridge.
356
- *
357
- * Actions cluster (9.14 Matter specification):
358
- * If a Bridge has (such) information on topology or logical grouping, it SHOULD expose such information
359
- * in the EndpointLists attribute of an Actions cluster (the ActionLists of which MAY be empty if
360
- * no actions are exposed). 9.12 Matter specification
361
- *
362
- * 9.12.5. New features for Bridged Devices
363
- * Bridged Devices can have their software updated independently of the Bridge, through Bridge Manufacturer-
364
- * specific means. These updates MAY result in one or more changes to their capabilities,
365
- * such as supported clusters and/or attributes, for an endpoint. Like every Matter Node, every endpoint
366
- * on the Bridge’s Node contains a Descriptor cluster that contains attributes for the device types
367
- * (DeviceTypeList), endpoints (PartsList) and supported clusters (ServerList and ClientList). Nodes
368
- * that wish to be notified of such changes SHOULD monitor changes of these attributes.
369
- */
370
- export declare const aggregator: DeviceTypeDefinition;
371
- export declare const bridge: DeviceTypeDefinition;
372
- /**
373
- * A Robotic Vacuum Cleaner is a device that is capable of cleaning floors and other surfaces
374
- * in a home or office environment. It is typically a mobile device that can navigate around
375
- * obstacles and can be controlled remotely.
376
- *
377
- * Cluster Usage:
378
- * The RVC Operational State cluster’s OperationalState attribute SHALL be updated according to the
379
- * state of the device, and therefore it SHOULD be used for monitoring purposes.
380
- *
381
- * To attempt starting a cleaning operation, the RVC Run Mode cluster can be sent a ChangeToMode
382
- * command with the NewMode field set to a mode that has the Cleaning mode tag associated with it.
383
- *
384
- * To attempt stopping a cleaning operation, the RVC Run Mode cluster can be sent a ChangeToMode
385
- * command with the NewMode field set to a mode that has the Idle mode tag associated with it.
386
- *
387
- * To attempt pausing a cleaning operation, the RVC Operational State cluster can be sent a Pause command.
388
- *
389
- * To attempt resuming a cleaning operation, the RVC Operational State cluster can be sent a Resume
390
- * command.
391
- *
392
- *
393
- */
394
- export declare const roboticVacuumCleaner: DeviceTypeDefinition;
395
- /**
396
- * Cluster Restrictions:
397
- * On/Off Cluster: the DF (Dead Front) feature is required
398
- */
399
- export declare const laundryWasher: DeviceTypeDefinition;
400
- /**
401
- * A refrigerator represents a device that contains one or more cabinets that are capable of chilling or freezing food.
402
- * A Refrigerator SHALL be composed of at least one endpoint with the Temperature Controlled Cabinet device type.
403
- *
404
- * Device Type Requirements:
405
- * 0x0071 Temperature Controlled Cabinet
406
- */
407
- export declare const refrigerator: DeviceTypeDefinition;
408
- /**
409
- * A Room Air Conditioner is a device with the primary function of controlling the air temperature in a single room.
410
- *
411
- * A Room Air Conditioner MAY have zero or more of each device type listed in this table subject to
412
- * the conformance column of the table. All devices used in compositions SHALL adhere to the disambiguation
413
- * requirements of the System Model. Additional device types not listed in this table MAY also be included in device compositions.
414
- * 0x0302 Temperature Sensor O
415
- * 0x0307 Humidity Sensor O
416
- *
417
- * Remark:
418
- * The DF (Dead Front) feature is required for the On/Off cluster in this device type:
419
- * - Thermostat LocalTemperature null
420
- * - Temperature Measurement MeasuredValue null
421
- * - Relative Humidity Measurement MeasuredValue null
422
- * - Fan Control SpeedSetting null
423
- * - Fan Control PercentSetting null
424
- */
425
- export declare const airConditioner: DeviceTypeDefinition;
426
- /**
427
- * A Temperature Controlled Cabinet only exists composed as part of another device type. It represents
428
- * a single cabinet that is capable of having its temperature controlled. Such a cabinet may be
429
- * chilling or freezing food, for example as part of a refrigerator, freezer, wine chiller, or other similar
430
- * device. Equally, such a cabinet may be warming or heating food, for example as part of an oven,
431
- * range, or similar device.
432
- * Conditions:
433
- * Cooler The device has cooling functionality.
434
- */
435
- export declare const temperatureControlledCabinetCooler: DeviceTypeDefinition;
436
- /**
437
- * A Temperature Controlled Cabinet only exists composed as part of another device type. It represents
438
- * a single cabinet that is capable of having its temperature controlled. Such a cabinet may be
439
- * chilling or freezing food, for example as part of a refrigerator, freezer, wine chiller, or other similar
440
- * device. Equally, such a cabinet may be warming or heating food, for example as part of an oven,
441
- * range, or similar device.
442
- * Conditions:
443
- * Heater The device has heating functionality.
444
- */
445
- export declare const temperatureControlledCabinetHeater: DeviceTypeDefinition;
446
- /**
447
- * Cluster Restrictions:
448
- * On/Off Cluster: the DF (Dead Front) feature is required
449
- */
450
- export declare const dishwasher: DeviceTypeDefinition;
451
- /**
452
- * Cluster Restrictions:
453
- * On/Off Cluster: the DF (Dead Front) feature is required
454
- */
455
- export declare const laundryDryer: DeviceTypeDefinition;
456
- /**
457
- * A Cook Surface device type represents a heating object on a cooktop or other similar device. It
458
- * SHALL only be used when composed as part of another device type (cooktop).
459
- *
460
- * Cluster Restrictions:
461
- * The OffOnly feature is required for the On/Off cluster in this device type due to safety requirements.
462
- */
463
- export declare const cookSurface: DeviceTypeDefinition;
464
- /**
465
- * A cooktop is a cooking surface that heats food either by transferring currents from an electromagnetic
466
- * field located below the glass surface directly to the magnetic induction cookware placed
467
- * above or through traditional gas or electric burners.
468
- *
469
- * Device Type Requirements:
470
- * A Cooktop SHALL be composed of zero or more endpoints with the Cook Surface device type as defined by the conformance below.
471
- * 0x0077 Cook Surface min 1 O
472
- *
473
- * Cluster Restrictions:
474
- * The OffOnly feature is required for the On/Off cluster in this device type due to safety requirements.
475
- */
476
- export declare const cooktop: DeviceTypeDefinition;
477
- /**
478
- * An oven represents a device that contains one or more cabinets, and optionally a single cooktop, that are all capable of heating food.
479
- * An oven is always defined via endpoint composition.
480
- * Conditions:
481
- * An Oven SHALL have the Heater condition applied to at least one endpoint containing the Temperature Control Cluster.
482
- * Device Type Requirements:
483
- * 0x0071 Temperature Controlled Cabinet min 1
484
- * 0x0078 Cooktop
485
- */
486
- export declare const oven: DeviceTypeDefinition;
487
- /**
488
- * An Extractor Hood is a device that is generally installed above a cooking surface in residential kitchens.
489
- * Additional device types not listed in this table MAY also be included in device compositions.
490
- * Device Type Requirements:
491
- * 0x0100+ On/Off Light+ O
492
- *
493
- *
494
- * Element Requirements:
495
- * 0x0202 Fan Control Feature Rocking X
496
- * 0x0202 Fan Control Feature Wind X
497
- * 0x0202 Fan Control Feature AirflowDirection X
498
- */
499
- export declare const extractorHood: DeviceTypeDefinition;
500
- /**
501
- * A Microwave Oven is a device with the primary function of heating foods and beverages using a magnetron.
502
- * A Microwave Oven is a device which at a minimum is capable of being started and stopped and of setting a power level.
503
- * A Microwave Oven MAY also support additional capabilities via endpoint composition.
504
- *
505
- */
506
- export declare const microwaveOven: DeviceTypeDefinition;
507
- /**
508
- * An EVSE (Electric Vehicle Supply Equipment) is a device that allows an EV (Electric Vehicle) to be
509
- * connected to the mains electricity supply to allow it to be charged (or discharged in case of Vehicle
510
- * to Grid / Vehicle to Home applications).
511
- *
512
- * 14.1.5. Device Type Requirements
513
- * An EVSE SHALL be composed of at least one endpoint with device types as defined by the conformance
514
- * below. There MAY be more endpoints with other device types existing in the EVSE.
515
- * ID Name Constraint Conformance
516
- * 0x0011 Power Source min 1 M
517
- * 0x0510 Electrical Sensor min 1 M
518
- * 0x050D Device Energy Management min 1 M
519
- */
520
- export declare const evse: DeviceTypeDefinition;
521
- /**
522
- * A water heater is a device that is generally installed in properties to heat water for showers, baths etc.
523
- * A Water Heater is always defined via endpoint composition.
524
- *
525
- * 14.2.5. Device Type Requirements
526
- * A Water Heater SHALL be composed of at least one endpoint with device types as defined by the
527
- * conformance below. There MAY be more endpoints with other device types existing in the Water Heater.
528
- * ID Name Constraint Conformance
529
- * 0x0011 Power Source O
530
- * 0x0302 Temperature Sensor O
531
- * 0x0510 Electrical Sensor desc
532
- * 0x050D Device Energy Management O
533
- *
534
- * 14.2.7. Element Requirements
535
- * 0x0201 Thermostat Feature Heating M
536
- *
537
- * The Energy Management feature of the Water Heater cluster SHALL be supported if the Device
538
- * Energy Management device type is included.
539
- * If Off is a supported SystemMode in the Thermostat cluster, setting the SystemMode of the Thermostat
540
- * cluster to Off SHALL set the CurrentMode attribute of the Water Heater Mode cluster to a mode
541
- * having the Off mode tag value and vice versa.
542
- * At least one entry in the SupportedModes attribute of the Water Heater Mode cluster SHALL
543
- * include the Timed mode tag in the ModeTags field list.
544
- *
545
- * WaterHeaterMode Cluster
546
- * 9.6.6.1. SupportedModes Attribute
547
- * At least one entry in the SupportedModes attribute SHALL include the Manual mode tag in the
548
- * ModeTags field list.
549
- * At least one entry in the SupportedModes attribute SHALL include the Off mode tag in the ModeTags
550
- * field list.
551
- * An entry in the SupportedModes attribute that includes one of an Off, Manual, or Timed tag SHALL
552
- * NOT also include an additional instance of any one of these tag types.
553
- */
554
- export declare const waterHeater: DeviceTypeDefinition;
555
- /**
556
- * A Solar Power device is a device that allows a solar panel array, which can optionally be comprised
557
- * of a set parallel strings of solar panels, and its associated controller and, if appropriate, inverter, to
558
- * be monitored and controlled by an Energy Management System.
559
- *
560
- * 14.3.5. Device Type Requirements
561
- * A Solar Power device SHALL be composed of at least one endpoint with device types as defined by
562
- * the conformance below. There MAY be more endpoints with additional instances of these device
563
- * types or additional device types existing in the Solar Power device.
564
- *
565
- * ID Name Constraint Conformance
566
- * 0x0011 Power Source min 1 M
567
- * 0x0510 Electrical Sensor min 1 M
568
- * 0x050D Device Energy Management O
569
- * 0x0302 Temperature Sensor O
570
- *
571
- * 14.3.5.1. Cluster Requirements on Composing Device Types
572
- *
573
- * 0x0011 Power Source 0x002F Power Source Feature Wired M
574
- * 0x0011 Power Source 0x001D Descriptor Feature TagList M
575
- * 0x0510 Electrical Sensor 0x0090 Electrical Power Measurement M
576
- * 0x0510 Electrical Sensor 0x0090 Electrical Power Measurement Attribute Voltage M
577
- * 0x0510 Electrical Sensor 0x0090 Electrical Power Measurement Attribute ActiveCurrent M
578
- * 0x0510 Electrical Sensor 0x0091 Electrical Energy Measurement M
579
- * 0x0510 Electrical Sensor 0x0091 Electrical Energy Measurement Feature ExportedEnergy M
580
- * 0x050D Device Energy Management 0x0098 Device Energy Management Feature PowerAdjustment M
581
- * 0x0302 Temperature Sensor 0x001D Descriptor Feature TagList M
582
- */
583
- export declare const solarPower: DeviceTypeDefinition;
584
- /**
585
- * A Battery Storage device is a device that allows a DC battery, which can optionally be comprised of
586
- * a set parallel strings of battery packs and associated controller, and an AC inverter, to be monitored
587
- * and controlled by an Energy Management System in order to manage the peaks and troughs of supply
588
- * and demand, and/or to optimize cost of the energy consumed in premises. It is not intended to
589
- * be used for a UPS directly supplying a set of appliances, nor for portable battery storage devices.
590
- *
591
- * 14.4.5. Device Type Requirements
592
- * A Battery Storage device SHALL be composed of at least one endpoint with device types as defined by
593
- * the conformance below. There MAY be more endpoints with additional instances of these device
594
- * types or additional device types existing in the Battery Storage device.
595
- * ID Name Constraint Conformance
596
- * 0x0011 Power Source min 1 M
597
- * 0x0510 Electrical Sensor min 1 M
598
- * 0x050D Device Energy Management M
599
- * 0x0302 Temperature Sensor O
600
- * 0x0017 Solar Power O
601
- *
602
- * See 14.4.5.1. Cluster Requirements on Composing Device Types
603
- */
604
- export declare const batteryStorage: DeviceTypeDefinition;
605
- /**
606
- * A Heat Pump device is a device that uses electrical energy to heat either spaces or water tanks using
607
- * ground, water or air as the heat source. These typically can heat the air or can pump water via central
608
- * heating radiators or underfloor heating systems. It is typical to also heat hot water and store
609
- * the heat in a hot water tank.
610
- *
611
- * 14.5.1. Heat Pump Architecture
612
- * A Heat Pump device is always defined via endpoint composition.
613
- *
614
- * 14.5.5. Device Type Requirements
615
- * A Heat Pump device SHALL be composed of at least one endpoint with device types as defined by
616
- * the conformance below. There MAY be more endpoints with additional instances of these device
617
- * types or additional device types existing in the Heat Pump device.
618
- * ID Name Constraint Conformance
619
- * 0x0011 Power Source M
620
- * 0x0510 Electrical Sensor min 1 M
621
- * 0x050D Device Energy Management M
622
- * 0x0301 Thermostat O
623
- * 0x050f Water Heater O
624
- * 0x0302 Temperature Sensor O
625
- *
626
- * See 14.5.5.1. Cluster Requirements on Composing Device Types
627
- */
628
- export declare const heatPump: DeviceTypeDefinition;
629
- //# sourceMappingURL=matterbridgeDeviceTypes.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"matterbridgeDeviceTypes.d.ts","sourceRoot":"","sources":["../src/matterbridgeDeviceTypes.ts"],"names":[],"mappings":"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"}