From 83559227599547f52c43c73f38d31e5f78ebc488 Mon Sep 17 00:00:00 2001 From: xaeon2026 Date: Fri, 20 Mar 2026 13:46:11 -0400 Subject: [PATCH] fix(line): restore runtime-api exports for setup helpers --- extensions/line/runtime-api.ts | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/extensions/line/runtime-api.ts b/extensions/line/runtime-api.ts index af6082ba155..e439c4020b0 100644 --- a/extensions/line/runtime-api.ts +++ b/extensions/line/runtime-api.ts @@ -1 +1,19 @@ -export * from "openclaw/plugin-sdk/line-core"; +// Private runtime barrel for the bundled LINE extension. +// Keep this barrel thin and aligned with the local extension surface. + +export type { OpenClawConfig } from "openclaw/plugin-sdk/line-core"; +export type { ChannelSetupDmPolicy, ChannelSetupWizard } from "openclaw/plugin-sdk/channel-setup"; +export type { LineConfig, ResolvedLineAccount } from "openclaw/plugin-sdk/line-core"; +export { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-schema"; +export { + DEFAULT_ACCOUNT_ID, + formatDocsLink, + LineConfigSchema, + listLineAccountIds, + normalizeAccountId, + resolveDefaultLineAccountId, + resolveExactLineGroupConfigKey, + resolveLineAccount, + setSetupChannelEnabled, + splitSetupEntries, +} from "openclaw/plugin-sdk/line-core";