matterbridge 3.4.3-dev-20251209-e6cb85f → 3.4.3

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