@matter-server/ws-controller 0.6.6 → 0.6.7
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.
|
@@ -884,7 +884,7 @@ class ControllerCommandHandler {
|
|
|
884
884
|
endpoint: t.endpoint !== null ? EndpointNumber(t.endpoint) : null,
|
|
885
885
|
deviceType: t.device_type !== null ? DeviceTypeId(t.device_type) : null
|
|
886
886
|
})) ?? null,
|
|
887
|
-
fabricIndex: FabricIndex.
|
|
887
|
+
fabricIndex: FabricIndex.NO_FABRIC
|
|
888
888
|
}));
|
|
889
889
|
logger.info("Setting ACL entries", aclEntries);
|
|
890
890
|
const { status } = await this.#writeAttribute(nodeId, EndpointNumber(0), AccessControl.id, "acl", aclEntries);
|
|
@@ -905,7 +905,7 @@ class ControllerCommandHandler {
|
|
|
905
905
|
group: binding.group !== null ? GroupId(binding.group) : void 0,
|
|
906
906
|
endpoint: binding.endpoint !== null ? EndpointNumber(binding.endpoint) : void 0,
|
|
907
907
|
cluster: binding.cluster !== null ? ClusterId(binding.cluster) : void 0,
|
|
908
|
-
fabricIndex: FabricIndex.
|
|
908
|
+
fabricIndex: FabricIndex.NO_FABRIC
|
|
909
909
|
}));
|
|
910
910
|
logger.info("Setting bindings on endpoint", endpointId, bindingEntries);
|
|
911
911
|
const { status } = await this.#writeAttribute(nodeId, endpointId, Binding.id, "binding", bindingEntries);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matter-server/ws-controller",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "matter.js based Matter controller library",
|
|
6
6
|
"bugs": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@matter/main": "0.17.0-alpha.0-20260504-e005cc190",
|
|
41
|
-
"@matter-server/ws-client": "0.6.
|
|
41
|
+
"@matter-server/ws-client": "0.6.7",
|
|
42
42
|
"@project-chip/matter.js": "0.17.0-alpha.0-20260504-e005cc190",
|
|
43
43
|
"ws": "^8.20.0"
|
|
44
44
|
},
|
|
@@ -1132,7 +1132,7 @@ export class ControllerCommandHandler {
|
|
|
1132
1132
|
endpoint: t.endpoint !== null ? EndpointNumber(t.endpoint) : null,
|
|
1133
1133
|
deviceType: t.device_type !== null ? DeviceTypeId(t.device_type) : null,
|
|
1134
1134
|
})) ?? null,
|
|
1135
|
-
fabricIndex: FabricIndex.
|
|
1135
|
+
fabricIndex: FabricIndex.NO_FABRIC,
|
|
1136
1136
|
}));
|
|
1137
1137
|
|
|
1138
1138
|
logger.info("Setting ACL entries", aclEntries);
|
|
@@ -1160,7 +1160,7 @@ export class ControllerCommandHandler {
|
|
|
1160
1160
|
group: binding.group !== null ? GroupId(binding.group) : undefined,
|
|
1161
1161
|
endpoint: binding.endpoint !== null ? EndpointNumber(binding.endpoint) : undefined,
|
|
1162
1162
|
cluster: binding.cluster !== null ? ClusterId(binding.cluster) : undefined,
|
|
1163
|
-
fabricIndex: FabricIndex.
|
|
1163
|
+
fabricIndex: FabricIndex.NO_FABRIC,
|
|
1164
1164
|
}));
|
|
1165
1165
|
|
|
1166
1166
|
logger.info("Setting bindings on endpoint", endpointId, bindingEntries);
|