@adhdev/mesh-shared 1.0.58-rc.8 → 1.0.58-rc.80
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 +9 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -2
- package/dist/index.mjs.map +1 -1
- package/dist/interactive-prompt-constants.d.ts +1 -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 +1 -0
- package/src/ws-protocol.ts +19 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -22,6 +22,7 @@ var index_exports = {};
|
|
|
22
22
|
__export(index_exports, {
|
|
23
23
|
CANONICAL_MESH_TOOL_COUNT: () => CANONICAL_MESH_TOOL_COUNT,
|
|
24
24
|
CANONICAL_MESH_TOOL_NAMES: () => CANONICAL_MESH_TOOL_NAMES,
|
|
25
|
+
CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX: () => CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX,
|
|
25
26
|
CLI_SLOT_RECIPES: () => CLI_SLOT_RECIPES,
|
|
26
27
|
DAEMON_TO_SERVER_WS_MSGS: () => DAEMON_TO_SERVER_WS_MSGS,
|
|
27
28
|
DEFAULT_DIFFICULTY_BRAINS: () => DEFAULT_DIFFICULTY_BRAINS,
|
|
@@ -1060,7 +1061,8 @@ var DAEMON_TO_SERVER_WS_MSGS = [
|
|
|
1060
1061
|
"command_result",
|
|
1061
1062
|
"error",
|
|
1062
1063
|
"agent_event",
|
|
1063
|
-
"log"
|
|
1064
|
+
"log",
|
|
1065
|
+
"beacon_vectors"
|
|
1064
1066
|
];
|
|
1065
1067
|
var SERVER_TO_DAEMON_WS_MSGS = [
|
|
1066
1068
|
"auth_ok",
|
|
@@ -1072,7 +1074,8 @@ var SERVER_TO_DAEMON_WS_MSGS = [
|
|
|
1072
1074
|
"force_update_required",
|
|
1073
1075
|
"command",
|
|
1074
1076
|
"agent_command",
|
|
1075
|
-
"resolve_action"
|
|
1077
|
+
"resolve_action",
|
|
1078
|
+
"beacon_vectors_result"
|
|
1076
1079
|
];
|
|
1077
1080
|
function isDaemonToServerWsMsg(value) {
|
|
1078
1081
|
return typeof value === "string" && DAEMON_TO_SERVER_WS_MSGS.includes(value);
|
|
@@ -1080,10 +1083,14 @@ function isDaemonToServerWsMsg(value) {
|
|
|
1080
1083
|
function isServerToDaemonWsMsg(value) {
|
|
1081
1084
|
return typeof value === "string" && SERVER_TO_DAEMON_WS_MSGS.includes(value);
|
|
1082
1085
|
}
|
|
1086
|
+
|
|
1087
|
+
// src/interactive-prompt-constants.ts
|
|
1088
|
+
var CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX = "Claude TUI review page is not focused";
|
|
1083
1089
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1084
1090
|
0 && (module.exports = {
|
|
1085
1091
|
CANONICAL_MESH_TOOL_COUNT,
|
|
1086
1092
|
CANONICAL_MESH_TOOL_NAMES,
|
|
1093
|
+
CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX,
|
|
1087
1094
|
CLI_SLOT_RECIPES,
|
|
1088
1095
|
DAEMON_TO_SERVER_WS_MSGS,
|
|
1089
1096
|
DEFAULT_DIFFICULTY_BRAINS,
|