feat(v0.8.681): Phase 706 voice state CSV & boost ledger export mesh parity
Complete signed guild voice state CSV mesh export and boost ledger CSV export (RPC 130/131): voice-csv-ui.js, voice-csv-mixin.js, delivery-receipts store, guild gossip handlers, ui-flow IPC, deep link ?voice-csv=1, agentctl voice + boost journeys, smokes, and docs. Fix stage705 smoke dev-filter check. Bundle: npm run test:ci-phase706 (50/50). Roadmap Phase 706 complete; Phase 707 slot opened.
This commit is contained in:
@@ -2774,6 +2774,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
|
|||||||
if (t === 'sync-stage-instance-csv') { const out = await platform.pushStageInstanceCsvToMesh(); pushState(); send({ type: 'stage-instance-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
if (t === 'sync-stage-instance-csv') { const out = await platform.pushStageInstanceCsvToMesh(); pushState(); send({ type: 'stage-instance-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||||
if (t === 'clear-stage-instance-csv') { await platform.clearStageInstanceCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
if (t === 'clear-stage-instance-csv') { await platform.clearStageInstanceCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||||
if (t === 'push-guild-event-export-csv') { await platform.pushGuildEventExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
if (t === 'push-guild-event-export-csv') { await platform.pushGuildEventExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||||
|
if (t === 'voice-csv-modal-open') { pushState(); send({ type: 'voice-csv-modal-opened' }); 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 === '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-sticker-pack-export-csv') {
|
if (t === 'push-sticker-pack-export-csv') {
|
||||||
await platform.pushStickerPackExportToMesh()
|
await platform.pushStickerPackExportToMesh()
|
||||||
pushState()
|
pushState()
|
||||||
|
|||||||
Reference in New Issue
Block a user