@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.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,
|
|
@@ -1082,10 +1083,14 @@ function isDaemonToServerWsMsg(value) {
|
|
|
1082
1083
|
function isServerToDaemonWsMsg(value) {
|
|
1083
1084
|
return typeof value === "string" && SERVER_TO_DAEMON_WS_MSGS.includes(value);
|
|
1084
1085
|
}
|
|
1086
|
+
|
|
1087
|
+
// src/interactive-prompt-constants.ts
|
|
1088
|
+
var CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX = "Claude TUI review page is not focused";
|
|
1085
1089
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1086
1090
|
0 && (module.exports = {
|
|
1087
1091
|
CANONICAL_MESH_TOOL_COUNT,
|
|
1088
1092
|
CANONICAL_MESH_TOOL_NAMES,
|
|
1093
|
+
CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX,
|
|
1089
1094
|
CLI_SLOT_RECIPES,
|
|
1090
1095
|
DAEMON_TO_SERVER_WS_MSGS,
|
|
1091
1096
|
DEFAULT_DIFFICULTY_BRAINS,
|