From a642bfa7b3f1d84d1bfde53072e4996c37287eba Mon Sep 17 00:00:00 2001 From: xaeon2026 Date: Fri, 20 Mar 2026 17:45:08 -0400 Subject: [PATCH] fix(line): restore runtime-api imports to local plugin-sdk paths --- extensions/line/runtime-api.ts | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/extensions/line/runtime-api.ts b/extensions/line/runtime-api.ts index e439c4020b0..675c11a7467 100644 --- a/extensions/line/runtime-api.ts +++ b/extensions/line/runtime-api.ts @@ -1,19 +1,13 @@ // 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 * from "../../src/plugin-sdk/line.js"; export { DEFAULT_ACCOUNT_ID, formatDocsLink, - LineConfigSchema, - listLineAccountIds, - normalizeAccountId, - resolveDefaultLineAccountId, resolveExactLineGroupConfigKey, - resolveLineAccount, setSetupChannelEnabled, splitSetupEntries, -} from "openclaw/plugin-sdk/line-core"; + type ChannelSetupDmPolicy, + type ChannelSetupWizard, +} from "../../src/plugin-sdk/line-core.js";