mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-14 14:20:45 +00:00
Hydrate bundled channel schema metadata through opt-in registry schema paths while keeping ordinary manifest registry loads lightweight.
14 lines
861 B
TypeScript
14 lines
861 B
TypeScript
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";
|
|
|
|
export const loadPluginManifestRegistry = loadPluginManifestRegistryImpl;
|
|
export const collectBundledChannelConfigs = collectBundledChannelConfigsImpl;
|
|
export const collectChannelSchemaMetadata = collectChannelSchemaMetadataImpl;
|
|
export const collectPluginSchemaMetadata = collectPluginSchemaMetadataImpl;
|
|
export const buildConfigSchema = buildConfigSchemaImpl;
|