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]>
16 lines
554 B
JavaScript
16 lines
554 B
JavaScript
'use strict'
|
|
|
|
/** pearcord-bot-auth bindings for PearcordPlatform index (Phase 734). */
|
|
const botAuth = require('pearcord-bot-auth')
|
|
|
|
module.exports = {
|
|
createInstallToken: botAuth.createInstallToken,
|
|
verifyInstallToken: botAuth.verifyInstallToken,
|
|
payloadToBotRow: botAuth.payloadToBotRow,
|
|
DEFAULT_BOT_PERMISSIONS: botAuth.DEFAULT_BOT_PERMISSIONS,
|
|
normalizePermissions: botAuth.normalizePermissions,
|
|
botHasPermission: botAuth.botHasPermission,
|
|
formatBotPermissions: botAuth.formatBotPermissions,
|
|
BOT_PERMISSION: botAuth.BOT_PERMISSION
|
|
}
|