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
617 B
JavaScript
19 lines
617 B
JavaScript
'use strict'
|
|
|
|
const { createJsonExportMeshMixin } = require('pearcord-json-export-mixin')
|
|
|
|
const deviceJsonMixin = createJsonExportMeshMixin({
|
|
keysField: '_sessionRegistryJsonGossipKeys',
|
|
watermarkField: '_deviceJsonHealWatermark',
|
|
initMethod: '_initSessionJsonMixinState',
|
|
shouldGossipMethod: '_shouldGossipDeviceSyncRegistryJson',
|
|
healMethod: '_healDeviceSyncExportCursorOnPartition',
|
|
spanKind: 'device.json',
|
|
healContext: 'heal.device-sync',
|
|
countField: 'guildDeviceJsonCount',
|
|
bridgeKind: 'device.json',
|
|
listExportsMethod: 'listDeviceSyncJsonExports',
|
|
})
|
|
|
|
module.exports = { deviceJsonMixin }
|