@matterbridge/core 3.8.1-dev-20260609-37884d6 → 3.8.1-dev-20260609-705c476
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.
|
@@ -57,9 +57,9 @@ export declare const onOffLight: DeviceTypeDefinition;
|
|
|
57
57
|
export declare const dimmableLight: DeviceTypeDefinition;
|
|
58
58
|
export declare const colorTemperatureLight: DeviceTypeDefinition;
|
|
59
59
|
export declare const extendedColorLight: DeviceTypeDefinition;
|
|
60
|
-
export declare const
|
|
60
|
+
export declare const onOffPlugInUnit: DeviceTypeDefinition;
|
|
61
61
|
export declare const onOffOutlet: DeviceTypeDefinition;
|
|
62
|
-
export declare const
|
|
62
|
+
export declare const dimmablePlugInUnit: DeviceTypeDefinition;
|
|
63
63
|
export declare const dimmableOutlet: DeviceTypeDefinition;
|
|
64
64
|
export declare const mountedOnOffControl: DeviceTypeDefinition;
|
|
65
65
|
export declare const onOffMountedSwitch: DeviceTypeDefinition;
|
|
@@ -279,8 +279,8 @@ export const extendedColorLight = DeviceTypeDefinition({
|
|
|
279
279
|
requiredClientClusters: [],
|
|
280
280
|
optionalClientClusters: [OccupancySensing.id],
|
|
281
281
|
});
|
|
282
|
-
export const
|
|
283
|
-
name: 'MA-
|
|
282
|
+
export const onOffPlugInUnit = DeviceTypeDefinition({
|
|
283
|
+
name: 'MA-onOffPlugInUnit',
|
|
284
284
|
deviceName: 'OnOff Plugin Unit',
|
|
285
285
|
code: 0x010a,
|
|
286
286
|
deviceClass: DeviceClasses.Simple,
|
|
@@ -291,9 +291,9 @@ export const onOffPluginUnit = DeviceTypeDefinition({
|
|
|
291
291
|
requiredClientClusters: [],
|
|
292
292
|
optionalClientClusters: [OccupancySensing.id],
|
|
293
293
|
});
|
|
294
|
-
export const onOffOutlet =
|
|
295
|
-
export const
|
|
296
|
-
name: 'MA-
|
|
294
|
+
export const onOffOutlet = onOffPlugInUnit;
|
|
295
|
+
export const dimmablePlugInUnit = DeviceTypeDefinition({
|
|
296
|
+
name: 'MA-dimmablePlugInUnit',
|
|
297
297
|
deviceName: 'Dimmable Plugin Unit',
|
|
298
298
|
code: 0x010b,
|
|
299
299
|
deviceClass: DeviceClasses.Simple,
|
|
@@ -304,7 +304,7 @@ export const dimmablePluginUnit = DeviceTypeDefinition({
|
|
|
304
304
|
requiredClientClusters: [],
|
|
305
305
|
optionalClientClusters: [OccupancySensing.id],
|
|
306
306
|
});
|
|
307
|
-
export const dimmableOutlet =
|
|
307
|
+
export const dimmableOutlet = dimmablePlugInUnit;
|
|
308
308
|
export const mountedOnOffControl = DeviceTypeDefinition({
|
|
309
309
|
name: 'MA-mountedOnOffControl',
|
|
310
310
|
deviceName: 'Mounted OnOff Control',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/core",
|
|
3
|
-
"version": "3.8.1-dev-20260609-
|
|
3
|
+
"version": "3.8.1-dev-20260609-705c476",
|
|
4
4
|
"description": "Matterbridge core library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -130,10 +130,10 @@
|
|
|
130
130
|
],
|
|
131
131
|
"dependencies": {
|
|
132
132
|
"@matter/main": "0.17.2-alpha.0-20260606-610f30128",
|
|
133
|
-
"@matterbridge/dgram": "3.8.1-dev-20260609-
|
|
134
|
-
"@matterbridge/thread": "3.8.1-dev-20260609-
|
|
135
|
-
"@matterbridge/types": "3.8.1-dev-20260609-
|
|
136
|
-
"@matterbridge/utils": "3.8.1-dev-20260609-
|
|
133
|
+
"@matterbridge/dgram": "3.8.1-dev-20260609-705c476",
|
|
134
|
+
"@matterbridge/thread": "3.8.1-dev-20260609-705c476",
|
|
135
|
+
"@matterbridge/types": "3.8.1-dev-20260609-705c476",
|
|
136
|
+
"@matterbridge/utils": "3.8.1-dev-20260609-705c476",
|
|
137
137
|
"escape-html": "1.0.3",
|
|
138
138
|
"express": "5.2.1",
|
|
139
139
|
"express-rate-limit": "8.5.2",
|