@matterbridge/core 3.10.3-dev-20260730-41cf6d2 → 3.10.3-dev-20260731-c56abb7
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.
package/dist/matterNode.js
CHANGED
|
@@ -9,8 +9,8 @@ import { BridgedDeviceBasicInformationServer } from '@matter/node/behaviors/brid
|
|
|
9
9
|
import { PowerSourceServer } from '@matter/node/behaviors/power-source';
|
|
10
10
|
import { AggregatorEndpoint } from '@matter/node/endpoints/aggregator';
|
|
11
11
|
import { MdnsService, PaseClient } from '@matter/protocol';
|
|
12
|
-
import { PowerSource } from '@matter/types/clusters/power-source';
|
|
13
12
|
import { DeviceTypeId, VendorId } from '@matter/types';
|
|
13
|
+
import { PowerSource } from '@matter/types/clusters/power-source';
|
|
14
14
|
import { BroadcastServer } from '@matterbridge/thread/server';
|
|
15
15
|
import { dev, MATTER_LOGGER_FILE, MATTER_STORAGE_DIR, MATTERBRIDGE_LOGGER_FILE, NODE_STORAGE_DIR, plg } from '@matterbridge/types';
|
|
16
16
|
import { getIntParameter, getParameter, hasParameter } from '@matterbridge/utils/cli';
|
|
@@ -842,6 +842,7 @@ export function getDefaultPowerSourceBatteryClusterServer(batPercentRemaining =
|
|
|
842
842
|
batChargeLevel,
|
|
843
843
|
batReplacementNeeded: false,
|
|
844
844
|
batReplaceability,
|
|
845
|
+
activeBatFaults: [],
|
|
845
846
|
});
|
|
846
847
|
}
|
|
847
848
|
export function getDefaultPowerSourceReplaceableBatteryClusterServer(batPercentRemaining = 100, batChargeLevel = PowerSource.BatChargeLevel.Ok, batVoltage = 1500, batReplacementDescription = 'Battery type', batQuantity = 1, batReplaceability = PowerSource.BatReplaceability.UserReplaceable) {
|
|
@@ -855,7 +856,7 @@ export function getDefaultPowerSourceReplaceableBatteryClusterServer(batPercentR
|
|
|
855
856
|
batChargeLevel,
|
|
856
857
|
batReplacementNeeded: false,
|
|
857
858
|
batReplaceability,
|
|
858
|
-
activeBatFaults:
|
|
859
|
+
activeBatFaults: [],
|
|
859
860
|
batReplacementDescription,
|
|
860
861
|
batQuantity,
|
|
861
862
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/core",
|
|
3
|
-
"version": "3.10.3-dev-
|
|
3
|
+
"version": "3.10.3-dev-20260731-c56abb7",
|
|
4
4
|
"description": "Matterbridge core library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -132,10 +132,10 @@
|
|
|
132
132
|
},
|
|
133
133
|
"dependencies": {
|
|
134
134
|
"@matter/main": "0.17.7",
|
|
135
|
-
"@matterbridge/dgram": "3.10.3-dev-
|
|
136
|
-
"@matterbridge/thread": "3.10.3-dev-
|
|
137
|
-
"@matterbridge/types": "3.10.3-dev-
|
|
138
|
-
"@matterbridge/utils": "3.10.3-dev-
|
|
135
|
+
"@matterbridge/dgram": "3.10.3-dev-20260731-c56abb7",
|
|
136
|
+
"@matterbridge/thread": "3.10.3-dev-20260731-c56abb7",
|
|
137
|
+
"@matterbridge/types": "3.10.3-dev-20260731-c56abb7",
|
|
138
|
+
"@matterbridge/utils": "3.10.3-dev-20260731-c56abb7",
|
|
139
139
|
"escape-html": "1.0.3",
|
|
140
140
|
"express": "5.2.1",
|
|
141
141
|
"express-rate-limit": "8.6.0",
|