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
732 B
JavaScript
19 lines
732 B
JavaScript
'use strict'
|
|
|
|
const { createJsonExportMeshMixin } = require('pearcord-json-export-mixin')
|
|
|
|
const slashInvokeAuditJsonMixin = createJsonExportMeshMixin({
|
|
keysField: '_slashInvokeAuditRegistryJsonGossipKeys',
|
|
watermarkField: '_slashInvokeAuditJsonHealWatermark',
|
|
initMethod: '_initSlashInvokeAuditJsonMixinState',
|
|
shouldGossipMethod: '_shouldGossipSlashInvokeAuditExportJson',
|
|
healMethod: '_healSlashInvokeAuditJsonExportCursorOnPartition',
|
|
spanKind: 'slash-invoke-audit.json',
|
|
healContext: 'heal.slash-invoke-audit',
|
|
countField: 'guildSlashInvokeAuditJsonCount',
|
|
bridgeKind: 'slash-invoke-audit.json',
|
|
listExportsMethod: 'listSlashInvokeAuditExportJsonExports',
|
|
})
|
|
|
|
module.exports = { slashInvokeAuditJsonMixin }
|