@adhdev/mesh-shared 1.0.58-rc.9 → 1.0.58-rc.91
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.d.ts +1 -0
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -2
- package/dist/index.mjs.map +1 -1
- package/dist/interactive-prompt-constants.d.ts +17 -0
- package/dist/ws-protocol.d.ts +17 -2
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/interactive-prompt-constants.ts +18 -0
- 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);
|
|
@@ -984,9 +986,15 @@ function isDaemonToServerWsMsg(value) {
|
|
|
984
986
|
function isServerToDaemonWsMsg(value) {
|
|
985
987
|
return typeof value === "string" && SERVER_TO_DAEMON_WS_MSGS.includes(value);
|
|
986
988
|
}
|
|
989
|
+
|
|
990
|
+
// src/interactive-prompt-constants.ts
|
|
991
|
+
var CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX = "Claude TUI review page is not focused";
|
|
992
|
+
var CLAUDE_TUI_REVIEW_UNCONFIRMED_PREFIX = "Claude TUI answer delivered but not confirmed";
|
|
987
993
|
export {
|
|
988
994
|
CANONICAL_MESH_TOOL_COUNT,
|
|
989
995
|
CANONICAL_MESH_TOOL_NAMES,
|
|
996
|
+
CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX,
|
|
997
|
+
CLAUDE_TUI_REVIEW_UNCONFIRMED_PREFIX,
|
|
990
998
|
CLI_SLOT_RECIPES,
|
|
991
999
|
DAEMON_TO_SERVER_WS_MSGS,
|
|
992
1000
|
DEFAULT_DIFFICULTY_BRAINS,
|