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
664 B
JavaScript
19 lines
664 B
JavaScript
'use strict'
|
|
|
|
const { createJsonExportMeshMixin } = require('pearcord-json-export-mixin')
|
|
|
|
const guildWidgetJsonMixin = createJsonExportMeshMixin({
|
|
keysField: '_guildWidgetRegistryJsonGossipKeys',
|
|
watermarkField: '_guildWidgetJsonHealWatermark',
|
|
initMethod: '_initGuildWidgetJsonMixinState',
|
|
shouldGossipMethod: '_shouldGossipGuildWidgetExportJson',
|
|
healMethod: '_healGuildWidgetJsonExportCursorOnPartition',
|
|
spanKind: 'guild-widget.json',
|
|
healContext: 'heal.guild-widget',
|
|
countField: 'guildWidgetJsonCount',
|
|
bridgeKind: 'guild-widget.json',
|
|
listExportsMethod: 'listGuildWidgetExportJsonExports',
|
|
})
|
|
|
|
module.exports = { guildWidgetJsonMixin }
|