feat(phase707): screen share CSV & soundboard registry export mesh parity (v0.8.682)

Add signed guild screen share CSV mesh export and soundboard registry CSV
export (RPC 132/133): screen-csv-ui.js, screen-csv-mixin.js, delivery-receipts
collections, guild gossip handlers, ui-flow IPC, deep link ?screen-csv=1,
screen-csv-errors dev filter, agentctl screen/soundboard journeys, and
test:ci-phase707 regression bundle chaining phase706.
This commit is contained in:
Raven Scott
2026-06-03 04:22:58 -04:00
parent 876cd025d5
commit 6d85101956
+4
View File
@@ -2778,6 +2778,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
if (t === 'sync-voice-state-csv') { const out = await platform.pushVoiceStateCsvToMesh(); pushState(); send({ type: 'voice-state-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true } if (t === 'sync-voice-state-csv') { const out = await platform.pushVoiceStateCsvToMesh(); pushState(); send({ type: 'voice-state-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'clear-voice-state-csv') { await platform.clearVoiceStateCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true } if (t === 'clear-voice-state-csv') { await platform.clearVoiceStateCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-boost-ledger-export-csv') { await platform.pushBoostLedgerExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true } if (t === 'push-boost-ledger-export-csv') { await platform.pushBoostLedgerExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'screen-csv-modal-open') { pushState(); send({ type: 'screen-csv-modal-opened' }); return true }
if (t === 'sync-screen-share-csv') { const out = await platform.pushScreenShareCsvToMesh(); pushState(); send({ type: 'screen-share-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'clear-screen-share-csv') { await platform.clearScreenShareCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-soundboard-registry-export-csv') { await platform.pushSoundboardRegistryExportToMesh(); 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()