mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-07 15:21:06 +00:00
13 lines
474 B
TypeScript
13 lines
474 B
TypeScript
// Narrow barrel for config compatibility helpers consumed outside the plugin.
|
|
// Keep this separate from api.ts so config migration code does not pull in the
|
|
// full runtime-oriented voice-call surface.
|
|
|
|
export {
|
|
VOICE_CALL_LEGACY_CONFIG_REMOVAL_VERSION,
|
|
collectVoiceCallLegacyConfigIssues,
|
|
formatVoiceCallLegacyConfigWarnings,
|
|
migrateVoiceCallLegacyConfigInput,
|
|
normalizeVoiceCallLegacyConfigInput,
|
|
parseVoiceCallPluginConfig,
|
|
} from "./src/config-compat.js";
|