@adhdev/mesh-shared 1.0.58-rc.89 → 1.0.58-rc.90

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.
@@ -1 +1,17 @@
1
1
  export declare const CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX = "Claude TUI review page is not focused";
2
+ /**
3
+ * The answer keystrokes reached the terminal, but the daemon could not CONFIRM
4
+ * the review page before its settle budget expired — the picker was still
5
+ * showing our own bound question, not a foreign widget.
6
+ *
7
+ * This is deliberately a separate class from
8
+ * CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX, which means "the screen is
9
+ * something we do not own, so we refuse to press Enter into it". Here the
10
+ * screen IS ours and the input WAS delivered; only the confirmation is
11
+ * missing. Resending would replay the whole keystroke sequence into a picker
12
+ * that may have advanced in the meantime, so the UI for this class must NOT
13
+ * invite a retry. See the daemon-side gate in
14
+ * `providers/spec/cli-adapter.ts` (assertFocusedClaudeTuiReview) and the web
15
+ * mapping in `web-core/src/hooks/useInteractivePrompt.ts`.
16
+ */
17
+ export declare const CLAUDE_TUI_REVIEW_UNCONFIRMED_PREFIX = "Claude TUI answer delivered but not confirmed";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/mesh-shared",
3
- "version": "1.0.58-rc.89",
3
+ "version": "1.0.58-rc.90",
4
4
  "description": "ADHDev mesh-shared — pure mesh/git status normalizers shared by daemon-core and web-core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1 +1,18 @@
1
1
  export const CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX = 'Claude TUI review page is not focused';
2
+
3
+ /**
4
+ * The answer keystrokes reached the terminal, but the daemon could not CONFIRM
5
+ * the review page before its settle budget expired — the picker was still
6
+ * showing our own bound question, not a foreign widget.
7
+ *
8
+ * This is deliberately a separate class from
9
+ * CLAUDE_TUI_REVIEW_PAGE_NOT_FOCUSED_PREFIX, which means "the screen is
10
+ * something we do not own, so we refuse to press Enter into it". Here the
11
+ * screen IS ours and the input WAS delivered; only the confirmation is
12
+ * missing. Resending would replay the whole keystroke sequence into a picker
13
+ * that may have advanced in the meantime, so the UI for this class must NOT
14
+ * invite a retry. See the daemon-side gate in
15
+ * `providers/spec/cli-adapter.ts` (assertFocusedClaudeTuiReview) and the web
16
+ * mapping in `web-core/src/hooks/useInteractivePrompt.ts`.
17
+ */
18
+ export const CLAUDE_TUI_REVIEW_UNCONFIRMED_PREFIX = 'Claude TUI answer delivered but not confirmed';