Files
pearcord-platform/platform-bot-auth-imports.js
T
Raven ScottandCursor 60a103a653 refactor(platform): Phase 734 secondary scopes and index exports finalize
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]>
2026-06-03 10:24:52 -04:00

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
}