Add swarmScope, dmScope, appEventsScope, cryptoScope, channelMetaScope, permissionsScope, and hyperdbScope namespaces in index.js with dedicated import modules and platform-index-scope-registry.js (17 scopes). No behavior or mesh semantics changes. Co-authored-by: Cursor <[email protected]>
30 lines
559 B
JavaScript
30 lines
559 B
JavaScript
'use strict'
|
|
|
|
/** Declared index.js import scopes for CI smokes (Phase 735). */
|
|
const INDEX_IMPORT_SCOPES = [
|
|
'deliveryScope',
|
|
'sharedScope',
|
|
'localScope',
|
|
'searchScope',
|
|
'integrationScope',
|
|
'foldersScope',
|
|
'enrichmentScope',
|
|
'threadsScope',
|
|
'botAuthScope',
|
|
'automationScope',
|
|
'swarmScope',
|
|
'dmScope',
|
|
'appEventsScope',
|
|
'cryptoScope',
|
|
'channelMetaScope',
|
|
'permissionsScope',
|
|
'hyperdbScope'
|
|
]
|
|
|
|
const INDEX_IMPORT_SCOPE_COUNT = INDEX_IMPORT_SCOPES.length
|
|
|
|
module.exports = {
|
|
INDEX_IMPORT_SCOPES,
|
|
INDEX_IMPORT_SCOPE_COUNT
|
|
}
|