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
594 B
JavaScript
17 lines
594 B
JavaScript
'use strict'
|
|
|
|
/** pearcord-threads bindings for PearcordPlatform index (Phase 734). */
|
|
const threads = require('pearcord-threads')
|
|
|
|
module.exports = {
|
|
defaultThreadName: threads.defaultThreadName,
|
|
groupThreadsByParent: threads.groupThreadsByParent,
|
|
listForumPostsForParent: threads.listForumPostsForParent,
|
|
buildThreadsPanel: threads.buildThreadsPanel,
|
|
isThreadChannel: threads.isThreadChannel,
|
|
isDmThreadChannel: threads.isDmThreadChannel,
|
|
isForumChannel: threads.isForumChannel,
|
|
isAnnouncementChannel: threads.isAnnouncementChannel,
|
|
sortForumPosts: threads.sortForumPosts
|
|
}
|