@adhdev/mesh-shared 1.0.58-rc.7 → 1.0.58-rc.70
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 +10 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -2
- package/dist/index.mjs.map +1 -1
- package/dist/interactive-prompt-constants.d.ts +1 -0
- package/dist/node-facts.d.ts +20 -1
- 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/node-facts.ts +21 -1
- 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,
|
|
@@ -352,6 +353,7 @@ var QUOTA_SUPPORTED_PROVIDERS = [
|
|
|
352
353
|
"antigravity-cli",
|
|
353
354
|
"claude-cli",
|
|
354
355
|
"codex-cli",
|
|
356
|
+
"cursor-cli",
|
|
355
357
|
"grok-cli",
|
|
356
358
|
"kimi",
|
|
357
359
|
"opencode"
|
|
@@ -1059,7 +1061,8 @@ var DAEMON_TO_SERVER_WS_MSGS = [
|
|
|
1059
1061
|
"command_result",
|
|
1060
1062
|
"error",
|
|
1061
1063
|
"agent_event",
|
|
1062
|
-
"log"
|
|
1064
|
+
"log",
|
|
1065
|
+
"beacon_vectors"
|
|
1063
1066
|
];
|
|
1064
1067
|
var SERVER_TO_DAEMON_WS_MSGS = [
|
|
1065
1068
|
"auth_ok",
|
|
@@ -1071,7 +1074,8 @@ var SERVER_TO_DAEMON_WS_MSGS = [
|
|
|
1071
1074
|
"force_update_required",
|
|
1072
1075
|
"command",
|
|
1073
1076
|
"agent_command",
|
|
1074
|
-
"resolve_action"
|
|
1077
|
+
"resolve_action",
|
|
1078
|
+
"beacon_vectors_result"
|
|
1075
1079
|
];
|
|
1076
1080
|
function isDaemonToServerWsMsg(value) {
|
|
1077
1081
|
return typeof value === "string" && DAEMON_TO_SERVER_WS_MSGS.includes(value);
|
|
@@ -1079,10 +1083,14 @@ function isDaemonToServerWsMsg(value) {
|
|
|
1079
1083
|
function isServerToDaemonWsMsg(value) {
|
|
1080
1084
|
return typeof value === "string" && SERVER_TO_DAEMON_WS_MSGS.includes(value);
|
|
1081
1085
|
}
|
|
1086
|
+
|
|
1087
|
+
// src/interactive-prompt-constants.ts
|
|
1088
|
+
var CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX = "Claude TUI review page is not focused";
|
|
1082
1089
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1083
1090
|
0 && (module.exports = {
|
|
1084
1091
|
CANONICAL_MESH_TOOL_COUNT,
|
|
1085
1092
|
CANONICAL_MESH_TOOL_NAMES,
|
|
1093
|
+
CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX,
|
|
1086
1094
|
CLI_SLOT_RECIPES,
|
|
1087
1095
|
DAEMON_TO_SERVER_WS_MSGS,
|
|
1088
1096
|
DEFAULT_DIFFICULTY_BRAINS,
|