feat(v0.8.679): Phase 704 thread archive CSV & forum tag export mesh parity

Complete signed guild thread archive CSV mesh export and forum tag palette
export (RPC 126/127): thread-csv-ui.js, thread-csv-mixin.js, delivery-receipts
store, guild gossip handlers, ui-flow IPC, deep link ?thread-csv=1, agentctl
journeys, smokes, and docs. Fix pushForumTagExportToMesh naming from pin clone.

Bundle: npm run test:ci-phase704 (50/50). Roadmap Phase 704 complete; Phase 705 slot opened.
This commit is contained in:
Raven Scott
2026-06-03 03:45:02 -04:00
parent b67551aff3
commit 3c61793580
+4
View File
@@ -2766,6 +2766,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
if (t === 'sync-pin-registry-csv') { const out = await platform.pushPinRegistryCsvToMesh(); pushState(); send({ type: 'pin-registry-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true } if (t === 'sync-pin-registry-csv') { const out = await platform.pushPinRegistryCsvToMesh(); pushState(); send({ type: 'pin-registry-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'clear-pin-registry-csv') { await platform.clearPinRegistryCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true } if (t === 'clear-pin-registry-csv') { await platform.clearPinRegistryCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-reaction-summary-export-csv') { await platform.pushReactionSummaryExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true } if (t === 'push-reaction-summary-export-csv') { await platform.pushReactionSummaryExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'thread-csv-modal-open') { pushState(); send({ type: 'thread-csv-modal-opened' }); return true }
if (t === 'sync-thread-archive-csv') { const out = await platform.pushThreadArchiveCsvToMesh(); pushState(); send({ type: 'thread-archive-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'clear-thread-archive-csv') { await platform.clearThreadArchiveCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-forum-tag-export-csv') { await platform.pushForumTagExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-sticker-pack-export-csv') { if (t === 'push-sticker-pack-export-csv') {
await platform.pushStickerPackExportToMesh() await platform.pushStickerPackExportToMesh()
pushState() pushState()