@matterbridge/types 3.6.2-dev-20260315-d23fd18 → 3.6.2-dev-20260316-0b03ae0
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.
|
@@ -252,6 +252,54 @@ export type WorkerMessageTypes = {
|
|
|
252
252
|
};
|
|
253
253
|
};
|
|
254
254
|
};
|
|
255
|
+
matterbridge_start_plugin_server: {
|
|
256
|
+
request: {
|
|
257
|
+
params: {
|
|
258
|
+
pluginName: string;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
response: {
|
|
262
|
+
result: {
|
|
263
|
+
success: boolean;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
matterbridge_stop_plugin_server: {
|
|
268
|
+
request: {
|
|
269
|
+
params: {
|
|
270
|
+
pluginName: string;
|
|
271
|
+
};
|
|
272
|
+
};
|
|
273
|
+
response: {
|
|
274
|
+
result: {
|
|
275
|
+
success: boolean;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
matterbridge_start_device_server: {
|
|
280
|
+
request: {
|
|
281
|
+
params: {
|
|
282
|
+
deviceUniqueId: string;
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
response: {
|
|
286
|
+
result: {
|
|
287
|
+
success: boolean;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
matterbridge_stop_device_server: {
|
|
292
|
+
request: {
|
|
293
|
+
params: {
|
|
294
|
+
deviceUniqueId: string;
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
response: {
|
|
298
|
+
result: {
|
|
299
|
+
success: boolean;
|
|
300
|
+
};
|
|
301
|
+
};
|
|
302
|
+
};
|
|
255
303
|
matter_start: {
|
|
256
304
|
request: {
|
|
257
305
|
params: {
|
|
@@ -584,7 +632,7 @@ export type WorkerMessageTypes = {
|
|
|
584
632
|
};
|
|
585
633
|
response: {
|
|
586
634
|
result: {
|
|
587
|
-
|
|
635
|
+
success: boolean;
|
|
588
636
|
};
|
|
589
637
|
};
|
|
590
638
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/types",
|
|
3
|
-
"version": "3.6.2-dev-
|
|
3
|
+
"version": "3.6.2-dev-20260316-0b03ae0",
|
|
4
4
|
"description": "Matterbridge types library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
55
|
-
"node": ">=20.
|
|
55
|
+
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
56
56
|
},
|
|
57
57
|
"files": [
|
|
58
58
|
"bin",
|