'use strict' const { createJsonExportHealDelegateMixin } = require('pearcord-json-export-mixin') const slashJsonMixin = createJsonExportHealDelegateMixin({ gossipEntries: [ { method: '_shouldGossipSlashRegistryJson', keysField: '_slashRegistryExportJsonGossipKeys', initMethod: '_initSlashRegistryJsonMixinState' }, { method: '_shouldGossipSlashInvokeAuditExportJson', gossipHashPrefix: 'invoke:', keysField: '_slashInvokeAuditRegistryJsonGossipKeys', initMethod: '_initSlashInvokeAuditJsonMixinState' } ], delegates: [ { legacyHeal: '_healSlashRegistryExportCursorOnPartition', dedicatedHeal: '_healSlashRegistryJsonExportCursorOnPartition' }, { legacyHeal: '_healSlashInvokeAuditExportCursorOnPartition', dedicatedHeal: '_healSlashInvokeAuditJsonExportCursorOnPartition' } ] }) module.exports = { slashJsonMixin }