@matterbridge/core 3.6.0-dev-20260306-f4eb336 → 3.6.0-dev-20260307-6171bce
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/matterbridge.js +3 -6
- package/package.json +5 -5
package/dist/matterbridge.js
CHANGED
|
@@ -1870,18 +1870,15 @@ export class Matterbridge extends EventEmitter {
|
|
|
1870
1870
|
serverNode.lifecycle.online.on(async () => {
|
|
1871
1871
|
this.log.notice(`Server node for ${storeId} is online`);
|
|
1872
1872
|
if (!serverNode.lifecycle.isCommissioned) {
|
|
1873
|
-
this.log.notice(`Server node for ${storeId} is not commissioned. Pair to commission
|
|
1873
|
+
this.log.notice(`Server node for ${storeId} is not commissioned. Pair to commission.`);
|
|
1874
1874
|
this.advertisingNodes.set(storeId, Date.now());
|
|
1875
1875
|
const { qrPairingCode, manualPairingCode } = serverNode.state.commissioning.pairingCodes;
|
|
1876
1876
|
const pairingData = ManualPairingCodeCodec.decode(manualPairingCode);
|
|
1877
1877
|
this.log.notice(`QR Code URL: https://project-chip.github.io/connectedhomeip/qrcode.html?data=${qrPairingCode}`);
|
|
1878
|
-
this.log.notice(`Manual pairing code
|
|
1879
|
-
this.log.notice(`Discriminator: ${discriminator}`);
|
|
1880
|
-
this.log.notice(`Short discriminator: ${pairingData.shortDiscriminator}`);
|
|
1881
|
-
this.log.notice(`Passcode: ${passcode}`);
|
|
1878
|
+
this.log.notice(`Manual pairing code ${CYAN}${manualPairingCode}${nt} discriminator ${CYAN}${discriminator}${nt} short discriminator ${CYAN}${pairingData.shortDiscriminator}${nt} passcode ${CYAN}${passcode}${nt}`);
|
|
1882
1879
|
}
|
|
1883
1880
|
else {
|
|
1884
|
-
this.log.notice(`Server node for ${storeId} is already commissioned. Waiting for controllers to connect
|
|
1881
|
+
this.log.notice(`Server node for ${storeId} is already commissioned. Waiting for controllers to connect...`);
|
|
1885
1882
|
this.advertisingNodes.delete(storeId);
|
|
1886
1883
|
}
|
|
1887
1884
|
this.frontend.wssSendRefreshRequired('matter', { matter: { ...this.getServerNodeData(serverNode) } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/core",
|
|
3
|
-
"version": "3.6.0-dev-
|
|
3
|
+
"version": "3.6.0-dev-20260307-6171bce",
|
|
4
4
|
"description": "Matterbridge core library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -122,10 +122,10 @@
|
|
|
122
122
|
],
|
|
123
123
|
"dependencies": {
|
|
124
124
|
"@matter/main": "0.16.10",
|
|
125
|
-
"@matterbridge/dgram": "3.6.0-dev-
|
|
126
|
-
"@matterbridge/thread": "3.6.0-dev-
|
|
127
|
-
"@matterbridge/types": "3.6.0-dev-
|
|
128
|
-
"@matterbridge/utils": "3.6.0-dev-
|
|
125
|
+
"@matterbridge/dgram": "3.6.0-dev-20260307-6171bce",
|
|
126
|
+
"@matterbridge/thread": "3.6.0-dev-20260307-6171bce",
|
|
127
|
+
"@matterbridge/types": "3.6.0-dev-20260307-6171bce",
|
|
128
|
+
"@matterbridge/utils": "3.6.0-dev-20260307-6171bce",
|
|
129
129
|
"archiver": "7.0.1",
|
|
130
130
|
"express": "5.2.1",
|
|
131
131
|
"glob": "13.0.6",
|