mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 15:12:52 +00:00
Limit plugin metadata snapshots to the channel, provider, and startup surfaces that need them, while preserving unscoped fallback for incomplete index data and provider runtime resolution. Refs #70533. Refs #84628. Co-authored-by: IWhatsskill <IWhatsskill@users.noreply.github.com>
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
export {
|
|
hasConfiguredChannelsForReadOnlyScope,
|
|
hasExplicitChannelConfig,
|
|
listConfiguredAnnounceChannelIdsForConfig,
|
|
listConfiguredChannelIdsForReadOnlyScope,
|
|
listExplicitConfiguredChannelIdsForConfig,
|
|
resolveConfiguredChannelPluginIds,
|
|
resolveConfiguredChannelPresencePolicy,
|
|
resolveDiscoverableScopedChannelPluginIds,
|
|
type ConfiguredChannelBlockedReason,
|
|
type ConfiguredChannelPresencePolicyEntry,
|
|
type ConfiguredChannelPresenceSource,
|
|
} from "./channel-presence-policy.js";
|
|
|
|
export {
|
|
resolveChannelPluginIds,
|
|
resolveChannelPluginIdsFromRegistry,
|
|
resolveConfiguredDeferredChannelPluginIds,
|
|
resolveConfiguredDeferredChannelPluginIdsFromRegistry,
|
|
createConfigValidationMetadataPluginIdScope,
|
|
createGatewayStartupMetadataPluginIdScope,
|
|
isMetadataSnapshotScopedForGatewayStartup,
|
|
resolveConfigValidationMetadataPluginIds,
|
|
resolveGatewayStartupMetadataPluginIds,
|
|
loadGatewayStartupPluginPlan,
|
|
resolveGatewayStartupPluginIds,
|
|
resolveGatewayStartupPluginPlanFromRegistry,
|
|
resolveGatewayStartupPluginIdsFromRegistry,
|
|
type GatewayStartupPluginPlan,
|
|
} from "./gateway-startup-plugin-ids.js";
|