Files
openclaw/src/config/doc-baseline.runtime.ts
2026-06-04 04:01:24 -04:00

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;