mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 17:16:10 +00:00
16 lines
1016 B
TypeScript
16 lines
1016 B
TypeScript
// Collects runtime data needed to generate config documentation baselines.
|
|
import { collectBundledChannelConfigs as collectBundledChannelConfigsImpl } from "../plugins/bundled-channel-config-metadata.js";
|
|
import { loadPluginManifestRegistry as loadPluginManifestRegistryImpl } from "../plugins/manifest-registry.js";
|
|
import {
|
|
collectChannelSchemaMetadata as collectChannelSchemaMetadataImpl,
|
|
collectPluginSchemaMetadata as collectPluginSchemaMetadataImpl,
|
|
} from "./channel-config-metadata.js";
|
|
import { buildConfigSchema as buildConfigSchemaImpl } from "./schema.js";
|
|
|
|
/** Runtime facade used by docs baseline generation to keep imports narrow. */
|
|
export const loadPluginManifestRegistry = loadPluginManifestRegistryImpl;
|
|
export const collectBundledChannelConfigs = collectBundledChannelConfigsImpl;
|
|
export const collectChannelSchemaMetadata = collectChannelSchemaMetadataImpl;
|
|
export const collectPluginSchemaMetadata = collectPluginSchemaMetadataImpl;
|
|
export const buildConfigSchema = buildConfigSchemaImpl;
|