Move 136 prototype mixins under mixins/domain, json-export, and runtime/* so the package root stays navigable. Manifest assign order is unchanged; apply-platform-mixins and runtime registry paths updated. Co-authored-by: Cursor <[email protected]>
19 lines
693 B
JavaScript
19 lines
693 B
JavaScript
'use strict'
|
|
|
|
const { createJsonExportMeshMixin } = require('pearcord-json-export-mixin')
|
|
|
|
const channelFollowJsonMixin = createJsonExportMeshMixin({
|
|
keysField: '_channelFollowRegistryJsonGossipKeys',
|
|
watermarkField: '_channelFollowJsonHealWatermark',
|
|
initMethod: '_initChannelFollowJsonMixinState',
|
|
shouldGossipMethod: '_shouldGossipChannelFollowExportJson',
|
|
healMethod: '_healChannelFollowJsonExportCursorOnPartition',
|
|
spanKind: 'channel-follow.json',
|
|
healContext: 'heal.channel-follow',
|
|
countField: 'guildChannelFollowJsonCount',
|
|
bridgeKind: 'channel-follow.json',
|
|
listExportsMethod: 'listChannelFollowExportJsonExports',
|
|
})
|
|
|
|
module.exports = { channelFollowJsonMixin }
|