feat(phase709): notification override CSV & channel follow export mesh parity (v0.8.684)

Add signed guild notification override CSV mesh export and channel follow CSV
export (RPC 136/137): notification-csv-ui.js, notification-csv-mixin.js,
listGuildFollows in pearcord-announcements, delivery-receipts collections,
guild gossip handlers, ui-flow IPC, deep link ?notification-csv=1,
notification-csv-errors dev filter, agentctl notification/follow journeys, and
test:ci-phase709 regression bundle chaining phase708.
This commit is contained in:
Raven Scott
2026-06-03 04:49:39 -04:00
parent 8e16f809b5
commit f97bc46d27
+4
View File
@@ -2786,6 +2786,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
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 === 'notification-csv-modal-open') { pushState(); send({ type: 'notification-csv-modal-opened' }); return true }
if (t === 'sync-notification-override-csv') { const out = await platform.pushNotificationOverrideCsvToMesh(); pushState(); send({ type: 'notification-override-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'clear-notification-override-csv') { await platform.clearNotificationOverrideCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-channel-follow-export-csv') { await platform.pushChannelFollowExportToMesh(); 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()