feat(phase708): presence activity CSV & read-state export mesh parity (v0.8.683)
Add signed guild presence activity CSV mesh export and read-state CSV export (RPC 134/135): presence-csv-ui.js, presence-csv-mixin.js, delivery-receipts collections, guild gossip handlers, ui-flow IPC, deep link ?presence-csv=1, presence-csv-errors dev filter, agentctl presence/read-state journeys, and test:ci-phase708 regression bundle chaining phase707.
This commit is contained in:
@@ -2782,6 +2782,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
|
||||
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 === 'presence-csv-modal-open') { pushState(); send({ type: 'presence-csv-modal-opened' }); return true }
|
||||
if (t === 'sync-presence-activity-csv') { const out = await platform.pushPresenceActivityCsvToMesh(); pushState(); send({ type: 'presence-activity-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'clear-presence-activity-csv') { await platform.clearPresenceActivityCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'push-read-state-export-csv') { await platform.pushReadStateExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'push-sticker-pack-export-csv') {
|
||||
await platform.pushStickerPackExportToMesh()
|
||||
pushState()
|
||||
|
||||
Reference in New Issue
Block a user