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]>
14 lines
545 B
JavaScript
14 lines
545 B
JavaScript
'use strict'
|
|
|
|
/** pearcord-automation-export bindings for PearcordPlatform index (Phase 734). */
|
|
const automation = require('pearcord-automation-export')
|
|
|
|
module.exports = {
|
|
AutomationManifestStore: automation.AutomationManifestStore,
|
|
buildAutomationManifest: automation.buildAutomationManifest,
|
|
validateAutomationManifest: automation.validateAutomationManifest,
|
|
ACTION_TYPE_LIST: automation.ACTION_TYPE_LIST,
|
|
CATEGORY_OPTIONS: automation.CATEGORY_OPTIONS,
|
|
sanitizeAutomationEventPayload: automation.sanitizeAutomationEventPayload
|
|
}
|