@adhdev/mesh-shared 1.0.58-rc.49 → 1.0.58-rc.50
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 +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/dist/interactive-prompt-constants.d.ts +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/interactive-prompt-constants.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -986,9 +986,13 @@ function isDaemonToServerWsMsg(value) {
|
|
|
986
986
|
function isServerToDaemonWsMsg(value) {
|
|
987
987
|
return typeof value === "string" && SERVER_TO_DAEMON_WS_MSGS.includes(value);
|
|
988
988
|
}
|
|
989
|
+
|
|
990
|
+
// src/interactive-prompt-constants.ts
|
|
991
|
+
var CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX = "Claude TUI review page is not focused";
|
|
989
992
|
export {
|
|
990
993
|
CANONICAL_MESH_TOOL_COUNT,
|
|
991
994
|
CANONICAL_MESH_TOOL_NAMES,
|
|
995
|
+
CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX,
|
|
992
996
|
CLI_SLOT_RECIPES,
|
|
993
997
|
DAEMON_TO_SERVER_WS_MSGS,
|
|
994
998
|
DEFAULT_DIFFICULTY_BRAINS,
|