@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.mjs
CHANGED
|
@@ -256,6 +256,7 @@ var QUOTA_SUPPORTED_PROVIDERS = [
|
|
|
256
256
|
"antigravity-cli",
|
|
257
257
|
"claude-cli",
|
|
258
258
|
"codex-cli",
|
|
259
|
+
"cursor-cli",
|
|
259
260
|
"grok-cli",
|
|
260
261
|
"kimi",
|
|
261
262
|
"opencode"
|
|
@@ -963,7 +964,8 @@ var DAEMON_TO_SERVER_WS_MSGS = [
|
|
|
963
964
|
"command_result",
|
|
964
965
|
"error",
|
|
965
966
|
"agent_event",
|
|
966
|
-
"log"
|
|
967
|
+
"log",
|
|
968
|
+
"beacon_vectors"
|
|
967
969
|
];
|
|
968
970
|
var SERVER_TO_DAEMON_WS_MSGS = [
|
|
969
971
|
"auth_ok",
|
|
@@ -975,7 +977,8 @@ var SERVER_TO_DAEMON_WS_MSGS = [
|
|
|
975
977
|
"force_update_required",
|
|
976
978
|
"command",
|
|
977
979
|
"agent_command",
|
|
978
|
-
"resolve_action"
|
|
980
|
+
"resolve_action",
|
|
981
|
+
"beacon_vectors_result"
|
|
979
982
|
];
|
|
980
983
|
function isDaemonToServerWsMsg(value) {
|
|
981
984
|
return typeof value === "string" && DAEMON_TO_SERVER_WS_MSGS.includes(value);
|
|
@@ -983,9 +986,13 @@ function isDaemonToServerWsMsg(value) {
|
|
|
983
986
|
function isServerToDaemonWsMsg(value) {
|
|
984
987
|
return typeof value === "string" && SERVER_TO_DAEMON_WS_MSGS.includes(value);
|
|
985
988
|
}
|
|
989
|
+
|
|
990
|
+
// src/interactive-prompt-constants.ts
|
|
991
|
+
var CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX = "Claude TUI review page is not focused";
|
|
986
992
|
export {
|
|
987
993
|
CANONICAL_MESH_TOOL_COUNT,
|
|
988
994
|
CANONICAL_MESH_TOOL_NAMES,
|
|
995
|
+
CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX,
|
|
989
996
|
CLI_SLOT_RECIPES,
|
|
990
997
|
DAEMON_TO_SERVER_WS_MSGS,
|
|
991
998
|
DEFAULT_DIFFICULTY_BRAINS,
|