Add foldersScope, enrichmentScope, threadsScope, botAuthScope, and automationScope namespaces in index.js; consolidate automation-export, bot-auth, and threads import modules; finalize exports via platform-index-exports.js. No behavior or mesh semantics changes. Co-authored-by: Cursor <[email protected]>
17 lines
422 B
JavaScript
17 lines
422 B
JavaScript
'use strict'
|
|
|
|
const { bootstrapPearcordPlatform } = require('./platform-bootstrap')
|
|
|
|
/**
|
|
* Register PearcordPlatform export and apply prototype mixins (Phase 734).
|
|
*/
|
|
function finalizePearcordPlatformModule (PearcordPlatform, sharedScope) {
|
|
bootstrapPearcordPlatform(PearcordPlatform)
|
|
return {
|
|
PearcordPlatform,
|
|
USER_STATUS: sharedScope.USER_STATUS
|
|
}
|
|
}
|
|
|
|
module.exports = { finalizePearcordPlatformModule }
|