matterbridge 3.0.4-dev-20250525-b1cbfb7 → 3.0.4

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 (163) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/dist/cli.d.ts +29 -0
  3. package/dist/cli.d.ts.map +1 -0
  4. package/dist/cli.js +37 -2
  5. package/dist/cli.js.map +1 -0
  6. package/dist/cluster/export.d.ts +2 -0
  7. package/dist/cluster/export.d.ts.map +1 -0
  8. package/dist/cluster/export.js +2 -0
  9. package/dist/cluster/export.js.map +1 -0
  10. package/dist/defaultConfigSchema.d.ts +27 -0
  11. package/dist/defaultConfigSchema.d.ts.map +1 -0
  12. package/dist/defaultConfigSchema.js +23 -0
  13. package/dist/defaultConfigSchema.js.map +1 -0
  14. package/dist/deviceManager.d.ts +114 -0
  15. package/dist/deviceManager.d.ts.map +1 -0
  16. package/dist/deviceManager.js +94 -1
  17. package/dist/deviceManager.js.map +1 -0
  18. package/dist/frontend.d.ts +256 -0
  19. package/dist/frontend.d.ts.map +1 -0
  20. package/dist/frontend.js +363 -16
  21. package/dist/frontend.js.map +1 -0
  22. package/dist/helpers.d.ts +47 -0
  23. package/dist/helpers.d.ts.map +1 -0
  24. package/dist/helpers.js +51 -0
  25. package/dist/helpers.js.map +1 -0
  26. package/dist/index.d.ts +35 -0
  27. package/dist/index.d.ts.map +1 -0
  28. package/dist/index.js +27 -1
  29. package/dist/index.js.map +1 -0
  30. package/dist/logger/export.d.ts +2 -0
  31. package/dist/logger/export.d.ts.map +1 -0
  32. package/dist/logger/export.js +1 -0
  33. package/dist/logger/export.js.map +1 -0
  34. package/dist/matter/behaviors.d.ts +2 -0
  35. package/dist/matter/behaviors.d.ts.map +1 -0
  36. package/dist/matter/behaviors.js +2 -0
  37. package/dist/matter/behaviors.js.map +1 -0
  38. package/dist/matter/clusters.d.ts +2 -0
  39. package/dist/matter/clusters.d.ts.map +1 -0
  40. package/dist/matter/clusters.js +2 -0
  41. package/dist/matter/clusters.js.map +1 -0
  42. package/dist/matter/devices.d.ts +2 -0
  43. package/dist/matter/devices.d.ts.map +1 -0
  44. package/dist/matter/devices.js +2 -0
  45. package/dist/matter/devices.js.map +1 -0
  46. package/dist/matter/endpoints.d.ts +2 -0
  47. package/dist/matter/endpoints.d.ts.map +1 -0
  48. package/dist/matter/endpoints.js +2 -0
  49. package/dist/matter/endpoints.js.map +1 -0
  50. package/dist/matter/export.d.ts +5 -0
  51. package/dist/matter/export.d.ts.map +1 -0
  52. package/dist/matter/export.js +2 -0
  53. package/dist/matter/export.js.map +1 -0
  54. package/dist/matter/types.d.ts +3 -0
  55. package/dist/matter/types.d.ts.map +1 -0
  56. package/dist/matter/types.js +2 -0
  57. package/dist/matter/types.js.map +1 -0
  58. package/dist/matterbridge.d.ts +445 -0
  59. package/dist/matterbridge.d.ts.map +1 -0
  60. package/dist/matterbridge.js +747 -47
  61. package/dist/matterbridge.js.map +1 -0
  62. package/dist/matterbridgeAccessoryPlatform.d.ts +40 -0
  63. package/dist/matterbridgeAccessoryPlatform.d.ts.map +1 -0
  64. package/dist/matterbridgeAccessoryPlatform.js +34 -0
  65. package/dist/matterbridgeAccessoryPlatform.js.map +1 -0
  66. package/dist/matterbridgeBehaviors.d.ts +1398 -0
  67. package/dist/matterbridgeBehaviors.d.ts.map +1 -0
  68. package/dist/matterbridgeBehaviors.js +61 -4
  69. package/dist/matterbridgeBehaviors.js.map +1 -0
  70. package/dist/matterbridgeDeviceTypes.d.ts +629 -0
  71. package/dist/matterbridgeDeviceTypes.d.ts.map +1 -0
  72. package/dist/matterbridgeDeviceTypes.js +563 -15
  73. package/dist/matterbridgeDeviceTypes.js.map +1 -0
  74. package/dist/matterbridgeDynamicPlatform.d.ts +40 -0
  75. package/dist/matterbridgeDynamicPlatform.d.ts.map +1 -0
  76. package/dist/matterbridgeDynamicPlatform.js +34 -0
  77. package/dist/matterbridgeDynamicPlatform.js.map +1 -0
  78. package/dist/matterbridgeEndpoint.d.ts +1053 -0
  79. package/dist/matterbridgeEndpoint.d.ts.map +1 -0
  80. package/dist/matterbridgeEndpoint.js +903 -23
  81. package/dist/matterbridgeEndpoint.js.map +1 -0
  82. package/dist/matterbridgeEndpointHelpers.d.ts +2749 -0
  83. package/dist/matterbridgeEndpointHelpers.d.ts.map +1 -0
  84. package/dist/matterbridgeEndpointHelpers.js +172 -10
  85. package/dist/matterbridgeEndpointHelpers.js.map +1 -0
  86. package/dist/matterbridgePlatform.d.ts +294 -0
  87. package/dist/matterbridgePlatform.d.ts.map +1 -0
  88. package/dist/matterbridgePlatform.js +225 -7
  89. package/dist/matterbridgePlatform.js.map +1 -0
  90. package/dist/matterbridgeTypes.d.ts +196 -0
  91. package/dist/matterbridgeTypes.d.ts.map +1 -0
  92. package/dist/matterbridgeTypes.js +24 -0
  93. package/dist/matterbridgeTypes.js.map +1 -0
  94. package/dist/pluginManager.d.ts +273 -0
  95. package/dist/pluginManager.d.ts.map +1 -0
  96. package/dist/pluginManager.js +264 -3
  97. package/dist/pluginManager.js.map +1 -0
  98. package/dist/roboticVacuumCleaner.d.ts +82 -0
  99. package/dist/roboticVacuumCleaner.d.ts.map +1 -0
  100. package/dist/roboticVacuumCleaner.js +78 -3
  101. package/dist/roboticVacuumCleaner.js.map +1 -0
  102. package/dist/shelly.d.ts +153 -0
  103. package/dist/shelly.d.ts.map +1 -0
  104. package/dist/shelly.js +155 -7
  105. package/dist/shelly.js.map +1 -0
  106. package/dist/storage/export.d.ts +2 -0
  107. package/dist/storage/export.d.ts.map +1 -0
  108. package/dist/storage/export.js +1 -0
  109. package/dist/storage/export.js.map +1 -0
  110. package/dist/update.d.ts +58 -0
  111. package/dist/update.d.ts.map +1 -0
  112. package/dist/update.js +53 -0
  113. package/dist/update.js.map +1 -0
  114. package/dist/utils/colorUtils.d.ts +61 -0
  115. package/dist/utils/colorUtils.d.ts.map +1 -0
  116. package/dist/utils/colorUtils.js +205 -2
  117. package/dist/utils/colorUtils.js.map +1 -0
  118. package/dist/utils/commandLine.d.ts +58 -0
  119. package/dist/utils/commandLine.d.ts.map +1 -0
  120. package/dist/utils/commandLine.js +53 -0
  121. package/dist/utils/commandLine.js.map +1 -0
  122. package/dist/utils/copyDirectory.d.ts +32 -0
  123. package/dist/utils/copyDirectory.d.ts.map +1 -0
  124. package/dist/utils/copyDirectory.js +37 -1
  125. package/dist/utils/copyDirectory.js.map +1 -0
  126. package/dist/utils/createZip.d.ts +38 -0
  127. package/dist/utils/createZip.d.ts.map +1 -0
  128. package/dist/utils/createZip.js +42 -2
  129. package/dist/utils/createZip.js.map +1 -0
  130. package/dist/utils/deepCopy.d.ts +31 -0
  131. package/dist/utils/deepCopy.d.ts.map +1 -0
  132. package/dist/utils/deepCopy.js +38 -0
  133. package/dist/utils/deepCopy.js.map +1 -0
  134. package/dist/utils/deepEqual.d.ts +53 -0
  135. package/dist/utils/deepEqual.d.ts.map +1 -0
  136. package/dist/utils/deepEqual.js +71 -1
  137. package/dist/utils/deepEqual.js.map +1 -0
  138. package/dist/utils/export.d.ts +11 -0
  139. package/dist/utils/export.d.ts.map +1 -0
  140. package/dist/utils/export.js +1 -0
  141. package/dist/utils/export.js.map +1 -0
  142. package/dist/utils/hex.d.ts +48 -0
  143. package/dist/utils/hex.d.ts.map +1 -0
  144. package/dist/utils/hex.js +57 -0
  145. package/dist/utils/hex.js.map +1 -0
  146. package/dist/utils/isvalid.d.ts +102 -0
  147. package/dist/utils/isvalid.d.ts.map +1 -0
  148. package/dist/utils/isvalid.js +100 -0
  149. package/dist/utils/isvalid.js.map +1 -0
  150. package/dist/utils/network.d.ts +69 -0
  151. package/dist/utils/network.d.ts.map +1 -0
  152. package/dist/utils/network.js +76 -5
  153. package/dist/utils/network.js.map +1 -0
  154. package/dist/utils/wait.d.ts +52 -0
  155. package/dist/utils/wait.d.ts.map +1 -0
  156. package/dist/utils/wait.js +58 -9
  157. package/dist/utils/wait.js.map +1 -0
  158. package/dist/waterHeater.d.ts +75 -0
  159. package/dist/waterHeater.d.ts.map +1 -0
  160. package/dist/waterHeater.js +52 -0
  161. package/dist/waterHeater.js.map +1 -0
  162. package/npm-shrinkwrap.json +2 -2
  163. package/package.json +2 -1
@@ -1,30 +1,74 @@
1
+ /**
2
+ * This file contains the class MatterbridgeAccessoryPlatform.
3
+ *
4
+ * @file matterbridgePlatform.ts
5
+ * @author Luca Liguori
6
+ * @date 2024-03-21
7
+ * @version 1.2.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
+ */
1
23
  import { checkNotLatinCharacters } from './matterbridgeEndpointHelpers.js';
2
24
  import { isValidArray, isValidObject, isValidString } from './utils/export.js';
25
+ // AnsiLogger module
3
26
  import { CYAN, db, er, nf, wr } from './logger/export.js';
27
+ // Storage module
4
28
  import { NodeStorageManager } from './storage/export.js';
29
+ // Node.js module
5
30
  import path from 'node:path';
31
+ /**
32
+ * Represents the base Matterbridge platform. It is extended by the MatterbridgeAccessoryPlatform and MatterbridgeServicePlatform classes.
33
+ *
34
+ */
6
35
  export class MatterbridgePlatform {
7
36
  matterbridge;
8
37
  log;
9
38
  config = {};
10
- name = '';
11
- type = '';
12
- version = '1.0.0';
39
+ name = ''; // Will be set by the loadPlugin() method using the package.json value.
40
+ type = ''; // Will be set by the extending classes.
41
+ version = '1.0.0'; // Will be set by the loadPlugin() method using the package.json value.
42
+ // Platform storage
13
43
  storage;
14
44
  context;
45
+ // Device and entity selection
15
46
  selectDevice = new Map();
16
47
  selectEntity = new Map();
48
+ // Promises for storage
17
49
  _contextReady;
18
50
  _selectDeviceContextReady;
19
51
  _selectEntityContextReady;
20
52
  ready;
21
- _registeredEndpoints = new Map();
22
- _registeredEndpointsByName = new Map();
23
- _storedDevices = new Map();
53
+ // Registered devices
54
+ _registeredEndpoints = new Map(); // uniqueId, MatterbridgeEndpoint
55
+ _registeredEndpointsByName = new Map(); // deviceName, MatterbridgeEndpoint
56
+ // Stored devices
57
+ _storedDevices = new Map(); // serial, { serial, name }
58
+ /**
59
+ * Creates an instance of the base MatterbridgePlatform.
60
+ * It is extended by the MatterbridgeAccessoryPlatform and MatterbridgeServicePlatform classes.
61
+ * Each plugin must extend the MatterbridgeAccessoryPlatform and MatterbridgeServicePlatform classes.
62
+ *
63
+ * @param {Matterbridge} matterbridge - The Matterbridge instance.
64
+ * @param {AnsiLogger} log - The logger instance.
65
+ * @param {PlatformConfig} config - The platform configuration.
66
+ */
24
67
  constructor(matterbridge, log, config) {
25
68
  this.matterbridge = matterbridge;
26
69
  this.log = log;
27
70
  this.config = config;
71
+ // create the NodeStorageManager for the plugin platform
28
72
  if (!isValidString(this.config.name) || this.config.name === '')
29
73
  throw new Error('Platform: the plugin name is missing or invalid.');
30
74
  this.log.debug(`Creating storage for plugin ${this.config.name} in ${path.join(this.matterbridge.matterbridgeDirectory, this.config.name)}`);
@@ -35,12 +79,14 @@ export class MatterbridgePlatform {
35
79
  logging: false,
36
80
  forgiveParseErrors: true,
37
81
  });
82
+ // create the context storage for the plugin platform
38
83
  this.log.debug(`Creating context for plugin ${this.config.name}`);
39
84
  this._contextReady = this.storage.createStorage('context').then((context) => {
40
85
  this.context = context;
41
- this.context.remove('endpointMap');
86
+ this.context.remove('endpointMap'); // Remove the old endpointMap TODO: remove in future versions
42
87
  this.log.debug(`Created context for plugin ${this.config.name}`);
43
88
  });
89
+ // create the selectDevice storage for the plugin platform
44
90
  this.log.debug(`Loading selectDevice for plugin ${this.config.name}`);
45
91
  this._selectDeviceContextReady = this.storage.createStorage('selectDevice').then(async (context) => {
46
92
  const selectDevice = await context.get('selectDevice', []);
@@ -48,6 +94,7 @@ export class MatterbridgePlatform {
48
94
  this.selectDevice.set(device.serial, device);
49
95
  this.log.debug(`Loaded ${this.selectDevice.size} selectDevice for plugin ${this.config.name}`);
50
96
  });
97
+ // create the selectEntity storage for the plugin platform
51
98
  this.log.debug(`Loading selectEntity for plugin ${this.config.name}`);
52
99
  this._selectEntityContextReady = this.storage.createStorage('selectEntity').then(async (context) => {
53
100
  const selectEntity = await context.get('selectEntity', []);
@@ -55,44 +102,111 @@ export class MatterbridgePlatform {
55
102
  this.selectEntity.set(entity.name, entity);
56
103
  this.log.debug(`Loaded ${this.selectEntity.size} selectEntity for plugin ${this.config.name}`);
57
104
  });
105
+ // Create the `ready` promise for the platform
58
106
  this.ready = Promise.all([this._contextReady, this._selectDeviceContextReady, this._selectEntityContextReady]).then(() => {
59
107
  this.log.debug(`MatterbridgePlatform for plugin ${this.config.name} is fully initialized`);
60
108
  });
61
109
  }
110
+ /**
111
+ * This method must be overridden in the extended class.
112
+ * It is called when the platform is started.
113
+ * Use this method to create the MatterbridgeDevice and call this.registerDevice().
114
+ * @param {string} [reason] - The reason for starting.
115
+ * @throws {Error} - Throws an error if the method is not overridden.
116
+ */
62
117
  async onStart(reason) {
63
118
  this.log.error('Plugins must override onStart.', reason);
64
119
  throw new Error('Plugins must override onStart.');
65
120
  }
121
+ /**
122
+ * This method can be overridden in the extended class. Call super.onConfigure() to run checkEndpointNumbers().
123
+ * It is called after the platform has started.
124
+ * Use this method to perform any configuration of your devices and to override the value of the attributes that are stored in the
125
+ * matter storage (i.e. the onOff attribute of the OnOff cluster).
126
+ */
66
127
  async onConfigure() {
67
128
  this.log.debug(`Configuring platform ${this.name}`);
129
+ // Save the selectDevice and selectEntity
68
130
  await this.saveSelects();
131
+ // Check and update the endpoint numbers
69
132
  await this.checkEndpointNumbers();
70
133
  }
134
+ /**
135
+ * This method can be overridden in the extended class. In this case always call super.onShutdown() to save the selects, run checkEndpointNumbers() and cleanup memory.
136
+ * It is called when the platform is shutting down.
137
+ * Use this method to clean up any resources.
138
+ * @param {string} [reason] - The reason for shutting down.
139
+ */
71
140
  async onShutdown(reason) {
72
141
  this.log.debug(`Shutting down platform ${this.name}`, reason);
142
+ // Save the selectDevice and selectEntity
73
143
  await this.saveSelects();
144
+ // Check and update the endpoint numbers
74
145
  await this.checkEndpointNumbers();
146
+ // Cleanup memory
75
147
  this.selectDevice.clear();
76
148
  this.selectEntity.clear();
77
149
  this._registeredEndpoints.clear();
78
150
  this._registeredEndpointsByName.clear();
79
151
  this._storedDevices.clear();
152
+ // Close the storage
80
153
  await this.context?.close();
81
154
  this.context = undefined;
82
155
  await this.storage?.close();
83
156
  }
157
+ /**
158
+ * Sets the logger level and logs a debug message indicating that the plugin doesn't override this method.
159
+ * @param {LogLevel} logLevel The new logger level.
160
+ */
84
161
  async onChangeLoggerLevel(logLevel) {
85
162
  this.log.debug(`The plugin doesn't override onChangeLoggerLevel. Logger level set to: ${logLevel}`);
86
163
  }
164
+ /**
165
+ * Called when a plugin config includes an action button or an action button with text field.
166
+ * @param {string} action The action triggered by the button in plugin config.
167
+ * @param {string} value The value of the field of the action button.
168
+ * @param {string} id The id of the schema associated with the action.
169
+ * @param {PlatformConfig} formData The changed form data of the plugin.
170
+ *
171
+ * @remarks
172
+ * This method can be overridden in the extended class.
173
+ *
174
+ * Use this method to handle the action defined in the plugin schema:
175
+ * ```json
176
+ * "addDevice": {
177
+ * "description": "Manually add a device that has not been discovered with mdns:",
178
+ * "type": "boolean",
179
+ * "buttonText": "ADD", // The text on the button. This is used when the action doesn't include a text field.
180
+ * "buttonField": "ADD", // The text on the button. This is used when the action includes a text field.
181
+ * "buttonClose": false, // optional, default is false. When true, the dialog will close after the action is sent.
182
+ * "buttonSave": false, // optional, default is false. When true, the dialog will close and trigger the restart required after the action is sent.
183
+ * "textPlaceholder": "Enter the device IP address", // optional: the placeholder text for the text field.
184
+ * "default": false
185
+ * },
186
+ * ```
187
+ */
87
188
  async onAction(action, value, id, formData) {
88
189
  this.log.debug(`The plugin ${CYAN}${this.name}${db} doesn't override onAction. Received action ${CYAN}${action}${db}${value ? ' with ' + CYAN + value + db : ''} ${id ? ' for schema ' + CYAN + id + db : ''}`, formData);
89
190
  }
191
+ /**
192
+ * Called when the plugin config has been updated.
193
+ * @param {PlatformConfig} config The new plugin config.
194
+ */
90
195
  async onConfigChanged(config) {
91
196
  this.log.debug(`The plugin ${CYAN}${config.name}${db} doesn't override onConfigChanged. Received new config.`);
92
197
  }
198
+ /**
199
+ * Check if a device with this name is already registered in the platform.
200
+ * @param {string} deviceName - The device name to check.
201
+ * @returns {boolean} True if the device is already registered, false otherwise.
202
+ */
93
203
  hasDeviceName(deviceName) {
94
204
  return this._registeredEndpointsByName.has(deviceName);
95
205
  }
206
+ /**
207
+ * Registers a device with the Matterbridge platform.
208
+ * @param {MatterbridgeEndpoint} device - The device to register.
209
+ */
96
210
  async registerDevice(device) {
97
211
  device.plugin = this.name;
98
212
  if (device.deviceName && this._registeredEndpointsByName.has(device.deviceName)) {
@@ -108,6 +222,10 @@ export class MatterbridgePlatform {
108
222
  if (device.deviceName)
109
223
  this._registeredEndpointsByName.set(device.deviceName, device);
110
224
  }
225
+ /**
226
+ * Unregisters a device registered with the Matterbridge platform.
227
+ * @param {MatterbridgeEndpoint} device - The device to unregister.
228
+ */
111
229
  async unregisterDevice(device) {
112
230
  await this.matterbridge.removeBridgedEndpoint(this.name, device);
113
231
  if (device.uniqueId)
@@ -115,11 +233,24 @@ export class MatterbridgePlatform {
115
233
  if (device.deviceName)
116
234
  this._registeredEndpointsByName.delete(device.deviceName);
117
235
  }
236
+ /**
237
+ * Unregisters all devices registered with the Matterbridge platform.
238
+ *
239
+ * @param {number} [delay=0] - The delay in milliseconds between removing each bridged endpoint (default: 0).
240
+ */
118
241
  async unregisterAllDevices(delay = 0) {
119
242
  await this.matterbridge.removeAllBridgedEndpoints(this.name, delay);
120
243
  this._registeredEndpoints.clear();
121
244
  this._registeredEndpointsByName.clear();
122
245
  }
246
+ /**
247
+ * Saves the select devices and entities to storage.
248
+ *
249
+ * This method saves the current state of `selectDevice` and `selectEntity` maps to their respective storage.
250
+ * It logs the number of items being saved and ensures that the storage is properly closed after saving.
251
+ *
252
+ * @returns {Promise<void>} A promise that resolves when the save operation is complete.
253
+ */
123
254
  async saveSelects() {
124
255
  if (this.storage) {
125
256
  this.log.debug(`Saving ${this.selectDevice.size} selectDevice...`);
@@ -132,15 +263,36 @@ export class MatterbridgePlatform {
132
263
  await selectEntity.close();
133
264
  }
134
265
  }
266
+ /**
267
+ * Clears the select device and entity maps.
268
+ *
269
+ * @returns {void}
270
+ */
135
271
  async clearSelect() {
136
272
  this.selectDevice.clear();
137
273
  this.selectEntity.clear();
138
274
  await this.saveSelects();
139
275
  }
276
+ /**
277
+ * Clears the select for a single device.
278
+ *
279
+ * @param {string} device - The serial of the device to clear.
280
+ * @returns {void}
281
+ */
140
282
  async clearDeviceSelect(device) {
141
283
  this.selectDevice.delete(device);
142
284
  await this.saveSelects();
143
285
  }
286
+ /**
287
+ * Set the select device in the platform map.
288
+ *
289
+ * @param {string} serial - The serial number of the device.
290
+ * @param {string} name - The name of the device.
291
+ * @param {string} [configUrl] - The configuration URL of the device.
292
+ * @param {string} [icon] - The icon of the device: 'wifi', 'ble', 'hub'
293
+ * @param {Array<{ name: string; description: string; icon?: string }>} [entities] - The entities associated with the device.
294
+ * @returns {void}
295
+ */
144
296
  setSelectDevice(serial, name, configUrl, icon, entities) {
145
297
  const device = this.selectDevice.get(serial);
146
298
  if (device) {
@@ -157,6 +309,15 @@ export class MatterbridgePlatform {
157
309
  this.selectDevice.set(serial, { serial, name, configUrl, icon, entities });
158
310
  }
159
311
  }
312
+ /**
313
+ * Set the select device entity in the platform map.
314
+ *
315
+ * @param {string} serial - The serial number of the device.
316
+ * @param {string} entityName - The name of the entity.
317
+ * @param {string} entityDescription - The description of the entity.
318
+ * @param {string} [entityIcon] - The icon of the entity: 'wifi', 'ble', 'hub', 'component', 'matter'
319
+ * @returns {void}
320
+ */
160
321
  setSelectDeviceEntity(serial, entityName, entityDescription, entityIcon) {
161
322
  const device = this.selectDevice.get(serial);
162
323
  if (device) {
@@ -166,6 +327,11 @@ export class MatterbridgePlatform {
166
327
  device.entities.push({ name: entityName, description: entityDescription, icon: entityIcon });
167
328
  }
168
329
  }
330
+ /**
331
+ * Retrieves the select devices from the platform map.
332
+ *
333
+ * @returns {{ pluginName: string; serial: string; name: string; configUrl?: string; icon?: string; entities?: { name: string; description: string; icon?: string }[] }[]} The selected devices array.
334
+ */
169
335
  getSelectDevices() {
170
336
  const selectDevices = [];
171
337
  for (const device of this.selectDevice.values()) {
@@ -173,9 +339,22 @@ export class MatterbridgePlatform {
173
339
  }
174
340
  return selectDevices;
175
341
  }
342
+ /**
343
+ * Set the select entity in the platform map.
344
+ *
345
+ * @param {string} name - The entity name.
346
+ * @param {string} description - The entity description.
347
+ * @param {string} [icon] - The entity icon: 'wifi', 'ble', 'hub', 'component', 'matter'
348
+ * @returns {void}
349
+ */
176
350
  setSelectEntity(name, description, icon) {
177
351
  this.selectEntity.set(name, { name, description, icon });
178
352
  }
353
+ /**
354
+ * Retrieve the select entities.
355
+ *
356
+ * @returns {{ pluginName: string; name: string; description: string; icon?: string }[]} The select entities array.
357
+ */
179
358
  getSelectEntities() {
180
359
  const selectEntities = [];
181
360
  for (const entity of this.selectEntity.values()) {
@@ -183,6 +362,11 @@ export class MatterbridgePlatform {
183
362
  }
184
363
  return selectEntities;
185
364
  }
365
+ /**
366
+ * Verifies if the Matterbridge version meets the required version.
367
+ * @param {string} requiredVersion - The required version to compare against.
368
+ * @returns {boolean} True if the Matterbridge version meets or exceeds the required version, false otherwise.
369
+ */
186
370
  verifyMatterbridgeVersion(requiredVersion) {
187
371
  const compareVersions = (matterbridgeVersion, requiredVersion) => {
188
372
  const stripTag = (v) => {
@@ -207,9 +391,21 @@ export class MatterbridgePlatform {
207
391
  return false;
208
392
  return true;
209
393
  }
394
+ /**
395
+ * @deprecated This method is deprecated and will be removed in future versions. Use validateDevice instead.
396
+ */
210
397
  validateDeviceWhiteBlackList(device, log = true) {
211
398
  return this.validateDevice(device, log);
212
399
  }
400
+ /**
401
+ * Validates if a device is allowed based on the whitelist and blacklist configurations.
402
+ * The blacklist has priority over the whitelist.
403
+ *
404
+ * @param {string | string[]} device - The device name(s) to validate.
405
+ * @param {boolean} [log=true] - Whether to log the validation result.
406
+ * @returns {boolean} - Returns true if the device is allowed, false otherwise.
407
+ *
408
+ */
213
409
  validateDevice(device, log = true) {
214
410
  if (!Array.isArray(device))
215
411
  device = [device];
@@ -239,9 +435,21 @@ export class MatterbridgePlatform {
239
435
  this.log.info(`Skipping device ${CYAN}${device.join(', ')}${nf} because not in whitelist`);
240
436
  return false;
241
437
  }
438
+ /**
439
+ * @deprecated This method is deprecated and will be removed in future versions. Use validateEntity instead.
440
+ */
242
441
  validateEntityBlackList(device, entity, log = true) {
243
442
  return this.validateEntity(device, entity, log);
244
443
  }
444
+ /**
445
+ * Validates if an entity is allowed based on the entity blacklist and device-entity blacklist configurations.
446
+ *
447
+ * @param {string} device - The device to which the entity belongs.
448
+ * @param {string} entity - The entity to validate.
449
+ * @param {boolean} [log=true] - Whether to log the validation result.
450
+ * @returns {boolean} - Returns true if the entity is allowed, false otherwise.
451
+ *
452
+ */
245
453
  validateEntity(device, entity, log = true) {
246
454
  if (isValidArray(this.config.entityBlackList, 1) && this.config.entityBlackList.find((e) => e === entity)) {
247
455
  if (log)
@@ -260,6 +468,15 @@ export class MatterbridgePlatform {
260
468
  }
261
469
  return true;
262
470
  }
471
+ /**
472
+ * Checks and updates the endpoint numbers for Matterbridge devices.
473
+ *
474
+ * This method retrieves the list of Matterbridge devices and their child endpoints,
475
+ * compares their current endpoint numbers with the stored ones, and updates the storage
476
+ * if there are any changes. It logs the changes and updates the endpoint numbers accordingly.
477
+ *
478
+ * @returns {Promise<number>} The size of the updated endpoint map, or -1 if storage is not available.
479
+ */
263
480
  async checkEndpointNumbers() {
264
481
  if (!this.storage)
265
482
  return -1;
@@ -300,3 +517,4 @@ export class MatterbridgePlatform {
300
517
  return endpointMap.size;
301
518
  }
302
519
  }
520
+ //# sourceMappingURL=matterbridgePlatform.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"matterbridgePlatform.js","sourceRoot":"","sources":["../src/matterbridgePlatform.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAKH,OAAO,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAE/E,oBAAoB;AACpB,OAAO,EAAc,IAAI,EAAE,EAAE,EAAE,EAAE,EAAY,EAAE,EAAE,EAAE,EAAE,MAAM,oBAAoB,CAAC;AAEhF,iBAAiB;AACjB,OAAO,EAAe,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAKtE,iBAAiB;AACjB,OAAO,IAAI,MAAM,WAAW,CAAC;AAqB7B;;;GAGG;AACH,MAAM,OAAO,oBAAoB;IAC/B,YAAY,CAAe;IAC3B,GAAG,CAAa;IAChB,MAAM,GAAmB,EAAE,CAAC;IAC5B,IAAI,GAAG,EAAE,CAAC,CAAC,uEAAuE;IAClF,IAAI,GAAG,EAAE,CAAC,CAAC,wCAAwC;IACnD,OAAO,GAAG,OAAO,CAAC,CAAC,uEAAuE;IAE1F,mBAAmB;IACnB,OAAO,CAAqB;IAC5B,OAAO,CAAe;IAEtB,8BAA8B;IACrB,YAAY,GAAG,IAAI,GAAG,EAAkJ,CAAC;IACzK,YAAY,GAAG,IAAI,GAAG,EAAgE,CAAC;IAEhG,uBAAuB;IACf,aAAa,CAAgB;IAC7B,yBAAyB,CAAgB;IACzC,yBAAyB,CAAgB;IACjD,KAAK,CAAgB;IAErB,qBAAqB;IACJ,oBAAoB,GAAG,IAAI,GAAG,EAAgC,CAAC,CAAC,iCAAiC;IACjG,0BAA0B,GAAG,IAAI,GAAG,EAAgC,CAAC,CAAC,mCAAmC;IAE1H,iBAAiB;IACA,cAAc,GAAG,IAAI,GAAG,EAAoF,CAAC,CAAC,2BAA2B;IAE1J;;;;;;;;OAQG;IACH,YAAY,YAA0B,EAAE,GAAe,EAAE,MAAsB;QAC7E,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACf,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QAErB,wDAAwD;QACxD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,KAAK,EAAE;YAAE,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;QACrI,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,+BAA+B,IAAI,CAAC,MAAM,CAAC,IAAI,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,qBAAqB,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QAC7I,IAAI,CAAC,OAAO,GAAG,IAAI,kBAAkB,CAAC;YACpC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,qBAAqB,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC;YACzE,UAAU,EAAE,KAAK;YACjB,eAAe,EAAE,SAAS;YAC1B,OAAO,EAAE,KAAK;YACd,kBAAkB,EAAE,IAAI;SACzB,CAAC,CAAC;QAEH,qDAAqD;QACrD,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,+BAA+B,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;QAClE,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE;YAC1E,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;YACvB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,6DAA6D;YACjG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,8BAA8B,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;QACnE,CAAC,CAAC,CAAC;QAEH,0DAA0D;QAC1D,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,mCAAmC,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;QACtE,IAAI,CAAC,yBAAyB,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,OAAO,EAAE,EAAE;YACjG,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,GAAG,CAAuH,cAAc,EAAE,EAAE,CAAC,CAAC;YACjL,KAAK,MAAM,MAAM,IAAI,YAAY;gBAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;YAChF,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,IAAI,CAAC,YAAY,CAAC,IAAI,4BAA4B,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;QACjG,CAAC,CAAC,CAAC;QAEH,0DAA0D;QAC1D,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,mCAAmC,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;QACtE,IAAI,CAAC,yBAAyB,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,OAAO,EAAE,EAAE;YACjG,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,GAAG,CAAyD,cAAc,EAAE,EAAE,CAAC,CAAC;YACnH,KAAK,MAAM,MAAM,IAAI,YAAY;gBAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;YAC9E,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,IAAI,CAAC,YAAY,CAAC,IAAI,4BAA4B,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;QACjG,CAAC,CAAC,CAAC;QAEH,8CAA8C;QAC9C,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,yBAAyB,EAAE,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE;YACvH,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,mCAAmC,IAAI,CAAC,MAAM,CAAC,IAAI,uBAAuB,CAAC,CAAC;QAC7F,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;;;;;OAMG;IACH,KAAK,CAAC,OAAO,CAAC,MAAe;QAC3B,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,gCAAgC,EAAE,MAAM,CAAC,CAAC;QACzD,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAC;IACpD,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,WAAW;QACf,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,wBAAwB,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;QAEpD,yCAAyC;QACzC,MAAM,IAAI,CAAC,WAAW,EAAE,CAAC;QAEzB,wCAAwC;QACxC,MAAM,IAAI,CAAC,oBAAoB,EAAE,CAAC;IACpC,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,UAAU,CAAC,MAAe;QAC9B,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,0BAA0B,IAAI,CAAC,IAAI,EAAE,EAAE,MAAM,CAAC,CAAC;QAE9D,yCAAyC;QACzC,MAAM,IAAI,CAAC,WAAW,EAAE,CAAC;QAEzB,wCAAwC;QACxC,MAAM,IAAI,CAAC,oBAAoB,EAAE,CAAC;QAElC,iBAAiB;QACjB,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;QAC1B,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;QAC1B,IAAI,CAAC,oBAAoB,CAAC,KAAK,EAAE,CAAC;QAClC,IAAI,CAAC,0BAA0B,CAAC,KAAK,EAAE,CAAC;QACxC,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,CAAC;QAE5B,oBAAoB;QACpB,MAAM,IAAI,CAAC,OAAO,EAAE,KAAK,EAAE,CAAC;QAC5B,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC;QACzB,MAAM,IAAI,CAAC,OAAO,EAAE,KAAK,EAAE,CAAC;IAC9B,CAAC;IAED;;;OAGG;IACH,KAAK,CAAC,mBAAmB,CAAC,QAAkB;QAC1C,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,yEAAyE,QAAQ,EAAE,CAAC,CAAC;IACtG,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,KAAK,CAAC,QAAQ,CAAC,MAAc,EAAE,KAAc,EAAE,EAAW,EAAE,QAAyB;QACnF,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,cAAc,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,EAAE,+CAA+C,IAAI,GAAG,MAAM,GAAG,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,QAAQ,GAAG,IAAI,GAAG,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,cAAc,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE,EAAE,QAAQ,CAAC,CAAC;IAC5N,CAAC;IAED;;;OAGG;IACH,KAAK,CAAC,eAAe,CAAC,MAAsB;QAC1C,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,cAAc,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,EAAE,yDAAyD,CAAC,CAAC;IACjH,CAAC;IAED;;;;OAIG;IACH,aAAa,CAAC,UAAkB;QAC9B,OAAO,IAAI,CAAC,0BAA0B,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACzD,CAAC;IAED;;;OAGG;IACH,KAAK,CAAC,cAAc,CAAC,MAA4B;QAC/C,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC;QAC1B,IAAI,MAAM,CAAC,UAAU,IAAI,IAAI,CAAC,0BAA0B,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,CAAC;YAChF,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,oBAAoB,IAAI,GAAG,MAAM,CAAC,UAAU,GAAG,EAAE,sFAAsF,CAAC,CAAC;YACxJ,OAAO;QACT,CAAC;QACD,IAAI,MAAM,CAAC,UAAU,IAAI,uBAAuB,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,CAAC;YACpE,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,oBAAoB,IAAI,GAAG,MAAM,CAAC,UAAU,GAAG,EAAE,4BAA4B,CAAC,CAAC;QAChG,CAAC;QACD,MAAM,IAAI,CAAC,YAAY,CAAC,kBAAkB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QAC9D,IAAI,MAAM,CAAC,QAAQ;YAAE,IAAI,CAAC,oBAAoB,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;QAC5E,IAAI,MAAM,CAAC,UAAU;YAAE,IAAI,CAAC,0BAA0B,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;IACxF,CAAC;IAED;;;OAGG;IACH,KAAK,CAAC,gBAAgB,CAAC,MAA4B;QACjD,MAAM,IAAI,CAAC,YAAY,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QACjE,IAAI,MAAM,CAAC,QAAQ;YAAE,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QACvE,IAAI,MAAM,CAAC,UAAU;YAAE,IAAI,CAAC,0BAA0B,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;IACnF,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,oBAAoB,CAAC,KAAK,GAAG,CAAC;QAClC,MAAM,IAAI,CAAC,YAAY,CAAC,yBAAyB,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;QACpE,IAAI,CAAC,oBAAoB,CAAC,KAAK,EAAE,CAAC;QAClC,IAAI,CAAC,0BAA0B,CAAC,KAAK,EAAE,CAAC;IAC1C,CAAC;IAED;;;;;;;OAOG;IACK,KAAK,CAAC,WAAW;QACvB,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC;YACjB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,IAAI,CAAC,YAAY,CAAC,IAAI,kBAAkB,CAAC,CAAC;YACnE,MAAM,YAAY,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC;YACtE,MAAM,YAAY,CAAC,GAAG,CAAC,cAAc,EAAE,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;YAC/E,MAAM,YAAY,CAAC,KAAK,EAAE,CAAC;YAE3B,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,IAAI,CAAC,YAAY,CAAC,IAAI,kBAAkB,CAAC,CAAC;YACnE,MAAM,YAAY,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC;YACtE,MAAM,YAAY,CAAC,GAAG,CAAC,cAAc,EAAE,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;YAC/E,MAAM,YAAY,CAAC,KAAK,EAAE,CAAC;QAC7B,CAAC;IACH,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,WAAW;QACf,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;QAC1B,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;QAC1B,MAAM,IAAI,CAAC,WAAW,EAAE,CAAC;IAC3B,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,iBAAiB,CAAC,MAAc;QACpC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QACjC,MAAM,IAAI,CAAC,WAAW,EAAE,CAAC;IAC3B,CAAC;IAED;;;;;;;;;OASG;IACH,eAAe,CAAC,MAAc,EAAE,IAAY,EAAE,SAAkB,EAAE,IAAa,EAAE,QAAiE;QAChJ,MAAM,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;QAC7C,IAAI,MAAM,EAAE,CAAC;YACX,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC;YACvB,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;YACnB,IAAI,SAAS;gBAAE,MAAM,CAAC,SAAS,GAAG,SAAS,CAAC;YAC5C,IAAI,IAAI;gBAAE,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;YAC7B,IAAI,QAAQ;gBAAE,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC;QAC3C,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,CAAC;QAC7E,CAAC;IACH,CAAC;IAED;;;;;;;;OAQG;IACH,qBAAqB,CAAC,MAAc,EAAE,UAAkB,EAAE,iBAAyB,EAAE,UAAmB;QACtG,MAAM,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;QAC7C,IAAI,MAAM,EAAE,CAAC;YACX,IAAI,CAAC,MAAM,CAAC,QAAQ;gBAAE,MAAM,CAAC,QAAQ,GAAG,EAAE,CAAC;YAC3C,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,KAAK,UAAU,CAAC;gBAAE,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,WAAW,EAAE,iBAAiB,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC,CAAC;QAClK,CAAC;IACH,CAAC;IAED;;;;OAIG;IACH,gBAAgB;QACd,MAAM,aAAa,GAAiK,EAAE,CAAC;QACvL,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,EAAE,CAAC;YAChD,aAAa,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;QAC3D,CAAC;QACD,OAAO,aAAa,CAAC;IACvB,CAAC;IAED;;;;;;;OAOG;IACH,eAAe,CAAC,IAAY,EAAE,WAAmB,EAAE,IAAa;QAC9D,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC,CAAC;IAC3D,CAAC;IAED;;;;OAIG;IACH,iBAAiB;QACf,MAAM,cAAc,GAA+E,EAAE,CAAC;QACtG,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,EAAE,CAAC;YAChD,cAAc,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;QAC5D,CAAC;QACD,OAAO,cAAc,CAAC;IACxB,CAAC;IAED;;;;OAIG;IACH,yBAAyB,CAAC,eAAuB;QAC/C,MAAM,eAAe,GAAG,CAAC,mBAA2B,EAAE,eAAuB,EAAW,EAAE;YACxF,MAAM,QAAQ,GAAG,CAAC,CAAS,EAAE,EAAE;gBAC7B,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gBAC3B,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC;YAClB,CAAC,CAAC;YACF,MAAM,OAAO,GAAG,QAAQ,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;YACrE,MAAM,OAAO,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;YACjE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;gBAClE,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;gBAC/B,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;gBAC/B,IAAI,MAAM,GAAG,MAAM,EAAE,CAAC;oBACpB,OAAO,KAAK,CAAC;gBACf,CAAC;qBAAM,IAAI,MAAM,GAAG,MAAM,EAAE,CAAC;oBAC3B,OAAO,IAAI,CAAC;gBACd,CAAC;YACH,CAAC;YACD,OAAO,IAAI,CAAC;QACd,CAAC,CAAC;QAEF,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,YAAY,CAAC,mBAAmB,EAAE,eAAe,CAAC;YAAE,OAAO,KAAK,CAAC;QAC3F,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACH,4BAA4B,CAAC,MAAyB,EAAE,GAAG,GAAG,IAAI;QAChE,OAAO,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC1C,CAAC;IAED;;;;;;;;OAQG;IACH,cAAc,CAAC,MAAyB,EAAE,GAAG,GAAG,IAAI;QAClD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,CAAC;QAE9C,IAAI,gBAAgB,GAAG,CAAC,CAAC;QACzB,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC;YAC3C,KAAK,MAAM,CAAC,IAAI,MAAM;gBAAE,IAAI,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC;oBAAE,gBAAgB,EAAE,CAAC;QACpF,CAAC;QACD,IAAI,gBAAgB,GAAG,CAAC,EAAE,CAAC;YACzB,IAAI,GAAG;gBAAE,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,mBAAmB,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,uBAAuB,CAAC,CAAC;YAChG,OAAO,KAAK,CAAC;QACf,CAAC;QAED,IAAI,eAAe,GAAG,CAAC,CAAC;QACxB,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC;YAC3C,KAAK,MAAM,CAAC,IAAI,MAAM;gBAAE,IAAI,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC;oBAAE,eAAe,EAAE,CAAC;QACnF,CAAC;;YAAM,eAAe,EAAE,CAAC;QACzB,IAAI,eAAe,GAAG,CAAC,EAAE,CAAC;YACxB,OAAO,IAAI,CAAC;QACd,CAAC;QACD,IAAI,GAAG;YAAE,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,mBAAmB,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,2BAA2B,CAAC,CAAC;QACpG,OAAO,KAAK,CAAC;IACf,CAAC;IAED;;OAEG;IACH,uBAAuB,CAAC,MAAc,EAAE,MAAc,EAAE,GAAG,GAAG,IAAI;QAChE,OAAO,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,CAAC,CAAC;IAClD,CAAC;IAED;;;;;;;;OAQG;IACH,cAAc,CAAC,MAAc,EAAE,MAAc,EAAE,GAAG,GAAG,IAAI;QACvD,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,EAAE,CAAC;YAC1G,IAAI,GAAG;gBAAE,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,mBAAmB,IAAI,GAAG,MAAM,GAAG,EAAE,6BAA6B,CAAC,CAAC;YAC3F,OAAO,KAAK,CAAC;QACf,CAAC;QACD,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,EAAE,CAAC;YAC3G,IAAI,GAAG;gBAAE,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,mBAAmB,IAAI,GAAG,MAAM,GAAG,EAAE,iCAAiC,CAAC,CAAC;YAC/F,OAAO,KAAK,CAAC;QACf,CAAC;QACD,IAAI,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,qBAAqB,EAAE,CAAC,CAAC,IAAI,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,qBAAqB,IAAK,IAAI,CAAC,MAAM,CAAC,qBAAkD,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;YACnM,IAAI,GAAG;gBAAE,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,mBAAmB,IAAI,GAAG,MAAM,GAAG,EAAE,eAAe,IAAI,GAAG,MAAM,GAAG,EAAE,mCAAmC,CAAC,CAAC;YAClI,OAAO,KAAK,CAAC;QACf,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;;;OAQG;IACH,KAAK,CAAC,oBAAoB;QACxB,IAAI,CAAC,IAAI,CAAC,OAAO;YAAE,OAAO,CAAC,CAAC,CAAC;QAC7B,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,8BAA8B,CAAC,CAAC;QAC/C,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,iBAAiB,CAAC,CAAC;QACpE,MAAM,SAAS,GAAG,KAAK,CAAC;QACxB,MAAM,WAAW,GAAG,IAAI,GAAG,CAAyB,MAAM,OAAO,CAAC,GAAG,CAA6B,aAAa,EAAE,EAAE,CAAC,CAAC,CAAC;QAEtH,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,YAAY,CAAC,UAAU,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;YAC1F,IAAI,MAAM,CAAC,QAAQ,KAAK,SAAS,IAAI,MAAM,CAAC,WAAW,KAAK,SAAS,EAAE,CAAC;gBACtE,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,uBAAuB,MAAM,CAAC,UAAU,kCAAkC,CAAC,CAAC;gBAC3F,SAAS;YACX,CAAC;YACD,IAAI,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,MAAM,CAAC,WAAW,EAAE,CAAC;gBAChG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,8BAA8B,IAAI,GAAG,MAAM,CAAC,UAAU,GAAG,EAAE,iBAAiB,IAAI,GAAG,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,OAAO,IAAI,GAAG,MAAM,CAAC,WAAW,GAAG,EAAE,EAAE,CAAC,CAAC;gBAC/K,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC;YACvD,CAAC;YACD,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC;gBACtC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,sCAAsC,IAAI,GAAG,MAAM,CAAC,QAAQ,GAAG,EAAE,OAAO,IAAI,GAAG,MAAM,CAAC,WAAW,GAAG,EAAE,EAAE,CAAC,CAAC;gBACzH,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC;YACvD,CAAC;YACD,KAAK,MAAM,KAAK,IAAI,MAAM,CAAC,iBAAiB,EAA4B,EAAE,CAAC;gBACzE,IAAI,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,WAAW;oBAAE,SAAS;gBACnD,IAAI,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,CAAC,IAAI,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,CAAC,KAAK,KAAK,CAAC,WAAW,EAAE,CAAC;oBAC7I,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,oCAAoC,IAAI,GAAG,MAAM,CAAC,UAAU,GAAG,EAAE,IAAI,IAAI,GAAG,KAAK,CAAC,EAAE,GAAG,EAAE,iBAAiB,IAAI,GAAG,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,IAAI,GAAG,KAAK,CAAC,WAAW,GAAG,EAAE,EAAE,CAAC,CAAC;oBACnO,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;gBAC7E,CAAC;gBACD,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,CAAC,EAAE,CAAC;oBAC7D,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,4CAA4C,IAAI,GAAG,MAAM,CAAC,QAAQ,GAAG,EAAE,IAAI,IAAI,GAAG,KAAK,CAAC,EAAE,GAAG,EAAE,OAAO,IAAI,GAAG,KAAK,CAAC,WAAW,GAAG,EAAE,EAAE,CAAC,CAAC;oBACtJ,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;gBAC7E,CAAC;YACH,CAAC;QACH,CAAC;QACD,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;QAC5C,MAAM,OAAO,CAAC,GAAG,CAAC,aAAa,EAAE,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;QACpE,MAAM,OAAO,CAAC,KAAK,EAAE,CAAC;QACtB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,mCAAmC,CAAC,CAAC;QACpD,OAAO,WAAW,CAAC,IAAI,CAAC;IAC1B,CAAC;CACF"}
@@ -0,0 +1,196 @@
1
+ /**
2
+ * This file contains the types for Matterbridge.
3
+ *
4
+ * @file matterbridgeTypes.ts
5
+ * @author Luca Liguori
6
+ * @date 2024-07-12
7
+ * @version 1.0.2
8
+ *
9
+ * Copyright 2023, 2024, 2025 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 { NodeStorage } from './storage/export.js';
24
+ import { LogLevel } from './logger/export.js';
25
+ import { MatterbridgePlatform, PlatformConfig, PlatformSchema } from './matterbridgePlatform.js';
26
+ import { MatterbridgeEndpoint } from './matterbridgeEndpoint.js';
27
+ import { FabricIndex, NodeId, VendorId, StorageContext, ServerNode, EndpointNumber, Endpoint as EndpointNode } from '@matter/main';
28
+ import { ExposedFabricInformation } from '@matter/main/protocol';
29
+ import { AggregatorEndpoint } from '@matter/main/endpoints/aggregator';
30
+ export declare const plg = "\u001B[38;5;33m";
31
+ export declare const dev = "\u001B[38;5;79m";
32
+ export declare const typ = "\u001B[38;5;207m";
33
+ export interface RegisteredPlugin extends BaseRegisteredPlugin {
34
+ nodeContext?: NodeStorage;
35
+ storageContext?: StorageContext;
36
+ serverNode?: ServerNode<ServerNode.RootEndpoint>;
37
+ aggregatorNode?: EndpointNode<AggregatorEndpoint>;
38
+ device?: MatterbridgeEndpoint;
39
+ platform?: MatterbridgePlatform;
40
+ reachabilityTimeout?: NodeJS.Timeout;
41
+ }
42
+ export interface BaseRegisteredPlugin {
43
+ name: string;
44
+ version: string;
45
+ description: string;
46
+ author: string;
47
+ path: string;
48
+ type: string;
49
+ latestVersion?: string;
50
+ serialNumber?: string;
51
+ homepage?: string;
52
+ help?: string;
53
+ changelog?: string;
54
+ funding?: string;
55
+ locked?: boolean;
56
+ error?: boolean;
57
+ enabled?: boolean;
58
+ loaded?: boolean;
59
+ started?: boolean;
60
+ configured?: boolean;
61
+ paired?: boolean;
62
+ restartRequired?: boolean;
63
+ fabricInformations?: SanitizedExposedFabricInformation[];
64
+ sessionInformations?: SanitizedSessionInformation[];
65
+ registeredDevices?: number;
66
+ addedDevices?: number;
67
+ qrPairingCode?: string;
68
+ manualPairingCode?: string;
69
+ configJson?: PlatformConfig;
70
+ schemaJson?: PlatformSchema;
71
+ hasWhiteList?: boolean;
72
+ hasBlackList?: boolean;
73
+ }
74
+ export interface SystemInformation {
75
+ interfaceName: string;
76
+ macAddress: string;
77
+ ipv4Address: string;
78
+ ipv6Address: string;
79
+ nodeVersion: string;
80
+ hostname: string;
81
+ user: string;
82
+ osType: string;
83
+ osRelease: string;
84
+ osPlatform: string;
85
+ osArch: string;
86
+ totalMemory: string;
87
+ freeMemory: string;
88
+ systemUptime: string;
89
+ processUptime: string;
90
+ cpuUsage: string;
91
+ rss: string;
92
+ heapTotal: string;
93
+ heapUsed: string;
94
+ }
95
+ export interface MatterbridgeInformation {
96
+ homeDirectory: string;
97
+ rootDirectory: string;
98
+ matterbridgeDirectory: string;
99
+ matterbridgePluginDirectory: string;
100
+ matterbridgeCertDirectory: string;
101
+ globalModulesDirectory: string;
102
+ matterbridgeVersion: string;
103
+ matterbridgeLatestVersion: string;
104
+ matterbridgeDevVersion: string;
105
+ matterbridgeSerialNumber: string;
106
+ matterbridgeQrPairingCode: string | undefined;
107
+ matterbridgeManualPairingCode: string | undefined;
108
+ matterbridgeFabricInformations: SanitizedExposedFabricInformation[] | undefined;
109
+ matterbridgeSessionInformations: SanitizedSessionInformation[] | undefined;
110
+ matterbridgePaired: boolean | undefined;
111
+ matterbridgeAdvertise: boolean | undefined;
112
+ bridgeMode: string;
113
+ restartMode: string;
114
+ virtualMode: 'disabled' | 'outlet' | 'light' | 'switch' | 'mounted_switch';
115
+ readOnly: boolean;
116
+ shellyBoard: boolean;
117
+ shellySysUpdate: boolean;
118
+ shellyMainUpdate: boolean;
119
+ profile?: string;
120
+ loggerLevel: LogLevel;
121
+ fileLogger: boolean;
122
+ matterLoggerLevel: number;
123
+ matterFileLogger: boolean;
124
+ mattermdnsinterface: string | undefined;
125
+ matteripv4address: string | undefined;
126
+ matteripv6address: string | undefined;
127
+ matterPort: number;
128
+ matterDiscriminator: number | undefined;
129
+ matterPasscode: number | undefined;
130
+ restartRequired: boolean;
131
+ updateRequired: boolean;
132
+ }
133
+ export interface SanitizedExposedFabricInformation {
134
+ fabricIndex: FabricIndex;
135
+ fabricId: string;
136
+ nodeId: string;
137
+ rootNodeId: string;
138
+ rootVendorId: VendorId;
139
+ rootVendorName: string;
140
+ label: string;
141
+ }
142
+ export interface SessionInformation {
143
+ name: string;
144
+ nodeId: NodeId;
145
+ peerNodeId: NodeId;
146
+ fabric?: ExposedFabricInformation;
147
+ isPeerActive: boolean;
148
+ secure: boolean;
149
+ lastInteractionTimestamp?: number;
150
+ lastActiveTimestamp?: number;
151
+ numberOfActiveSubscriptions: number;
152
+ }
153
+ export interface SanitizedSessionInformation {
154
+ name: string;
155
+ nodeId: string;
156
+ peerNodeId: string;
157
+ fabric?: SanitizedExposedFabricInformation;
158
+ isPeerActive: boolean;
159
+ secure: boolean;
160
+ lastInteractionTimestamp?: string;
161
+ lastActiveTimestamp?: string;
162
+ numberOfActiveSubscriptions: number;
163
+ }
164
+ export interface ApiDevices {
165
+ pluginName: string;
166
+ type: string;
167
+ endpoint: EndpointNumber | undefined;
168
+ name: string;
169
+ serial: string;
170
+ productUrl: string;
171
+ configUrl?: string;
172
+ uniqueId: string;
173
+ reachable: boolean;
174
+ powerSource?: 'ac' | 'dc' | 'ok' | 'warning' | 'critical';
175
+ cluster: string;
176
+ }
177
+ export interface ApiClustersResponse {
178
+ plugin: string;
179
+ deviceName: string;
180
+ serialNumber: string;
181
+ endpoint: number;
182
+ deviceTypes: number[];
183
+ clusters: ApiClusters[];
184
+ }
185
+ export interface ApiClusters {
186
+ endpoint: string;
187
+ id: string;
188
+ deviceTypes: number[];
189
+ clusterName: string;
190
+ clusterId: string;
191
+ attributeName: string;
192
+ attributeId: string;
193
+ attributeValue: string;
194
+ attributeLocalValue: unknown;
195
+ }
196
+ //# sourceMappingURL=matterbridgeTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"matterbridgeTypes.d.ts","sourceRoot":"","sources":["../src/matterbridgeTypes.ts"],"names":[],"mappings":"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"}