@adhdev/mesh-shared 1.0.58-rc.30 → 1.0.58-rc.31
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.mjs
CHANGED
|
@@ -964,7 +964,8 @@ var DAEMON_TO_SERVER_WS_MSGS = [
|
|
|
964
964
|
"command_result",
|
|
965
965
|
"error",
|
|
966
966
|
"agent_event",
|
|
967
|
-
"log"
|
|
967
|
+
"log",
|
|
968
|
+
"beacon_vectors"
|
|
968
969
|
];
|
|
969
970
|
var SERVER_TO_DAEMON_WS_MSGS = [
|
|
970
971
|
"auth_ok",
|
|
@@ -976,7 +977,8 @@ var SERVER_TO_DAEMON_WS_MSGS = [
|
|
|
976
977
|
"force_update_required",
|
|
977
978
|
"command",
|
|
978
979
|
"agent_command",
|
|
979
|
-
"resolve_action"
|
|
980
|
+
"resolve_action",
|
|
981
|
+
"beacon_vectors_result"
|
|
980
982
|
];
|
|
981
983
|
function isDaemonToServerWsMsg(value) {
|
|
982
984
|
return typeof value === "string" && DAEMON_TO_SERVER_WS_MSGS.includes(value);
|