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