@adhdev/mesh-shared 1.0.58-rc.30 → 1.0.58-rc.32
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/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/dist/ws-protocol.d.ts +17 -2
- package/package.json +1 -1
- package/src/ws-protocol.ts +19 -2
package/dist/index.js
CHANGED
|
@@ -1060,7 +1060,8 @@ var DAEMON_TO_SERVER_WS_MSGS = [
|
|
|
1060
1060
|
"command_result",
|
|
1061
1061
|
"error",
|
|
1062
1062
|
"agent_event",
|
|
1063
|
-
"log"
|
|
1063
|
+
"log",
|
|
1064
|
+
"beacon_vectors"
|
|
1064
1065
|
];
|
|
1065
1066
|
var SERVER_TO_DAEMON_WS_MSGS = [
|
|
1066
1067
|
"auth_ok",
|
|
@@ -1072,7 +1073,8 @@ var SERVER_TO_DAEMON_WS_MSGS = [
|
|
|
1072
1073
|
"force_update_required",
|
|
1073
1074
|
"command",
|
|
1074
1075
|
"agent_command",
|
|
1075
|
-
"resolve_action"
|
|
1076
|
+
"resolve_action",
|
|
1077
|
+
"beacon_vectors_result"
|
|
1076
1078
|
];
|
|
1077
1079
|
function isDaemonToServerWsMsg(value) {
|
|
1078
1080
|
return typeof value === "string" && DAEMON_TO_SERVER_WS_MSGS.includes(value);
|