@bobfrankston/rmfmail 1.2.233 → 1.2.235
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/TODO.md +6 -1
- package/client/app.bundle.js.map +1 -1
- package/client/compose/compose.bundle.js +23 -3
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.js +42 -4
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +32 -3
- package/client/lib/api-client.ts +1 -1
- package/package.json +5 -5
- package/packages/mailx-service/index.d.ts +21 -2
- package/packages/mailx-service/index.d.ts.map +1 -1
- package/packages/mailx-service/index.js +102 -7
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +113 -9
- package/packages/mailx-service/test/word-edit-guard.test.mjs +92 -0
- package/packages/mailx-types/mailx-api.d.ts +3 -0
- package/packages/mailx-types/mailx-api.d.ts.map +1 -1
- package/packages/mailx-types/mailx-api.ts +3 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-40004 → node_modules.npmglobalize-stash-53964}/.package-lock.json +0 -0
package/TODO.md
CHANGED
|
@@ -663,7 +663,12 @@ Was part of S1 "local-first reconciliation refactor" until 2026-04-23 when S1's
|
|
|
663
663
|
|
|
664
664
|
<a id="ext162"></a>
|
|
665
665
|
|
|
666
|
-
### C162 — Vetting sweep 2026-08-09: dead paths & duplicated mechanisms [↑ summary](#sum)
|
|
666
|
+
### ~~C162 — Vetting sweep 2026-08-09: dead paths & duplicated mechanisms~~ — **DONE v1.2.234** [↑ summary](#sum)
|
|
667
|
+
|
|
668
|
+
**Everything below shipped 2026-08-09**: the dead packages and modules are in `prev/boneyard-2026-08-09/` (with a README), the four live MIME assembly copies are one `buildMimeMessage()` in `mailx-types` (byte-equivalence test in `packages/mailx-types/test/mime-build.test.mjs`), and the Android EAI header bug that hid inside the duplication is fixed. Still open from this sweep: **`escapeHtml` has 15 definitions** [S], and the **Filtered bulk-actions menu** is in the boneyard rather than re-anchored — it needs a home in the bulk bar if it should come back. Kept deliberately: the `mailx-types` flag helpers (`answeredOf`/`deletedOf`/`setAnswered`/`setDraft`/`toggleFlagged`) are unused but complete a small symmetric API; deleting half of it invites the next caller to inline flag arithmetic, which is the problem they exist to prevent.
|
|
669
|
+
|
|
670
|
+
Original findings, for the record:
|
|
671
|
+
|
|
667
672
|
|
|
668
673
|
Requested 2026-08-08 22:34 ("spend the night vetting the code to look for dead path and duplicated mechanism"); the session crashed before it started. First pass below. Every row is a reachability result (grep for importers across `bin/`, `packages/`, `client/`, `android-maui/`, the HTML importmaps and the bundle config), not an impression.
|
|
669
674
|
|