From 6e3eb34a90c51f8aec50eeb0a6dece50c7f3f25f Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Fri, 3 Apr 2026 20:42:22 +0900 Subject: [PATCH] test(bluebubbles): narrow action helper imports --- extensions/bluebubbles/src/actions.ts | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/extensions/bluebubbles/src/actions.ts b/extensions/bluebubbles/src/actions.ts index 695222020f3..53c7412f3df 100644 --- a/extensions/bluebubbles/src/actions.ts +++ b/extensions/bluebubbles/src/actions.ts @@ -1,16 +1,18 @@ +import { readBooleanParam } from "openclaw/plugin-sdk/boolean-param"; +import { + createActionGate, + jsonResult, + readNumberParam, + readReactionParams, + readStringParam, +} from "openclaw/plugin-sdk/channel-actions"; import { createLazyRuntimeNamedExport } from "openclaw/plugin-sdk/lazy-runtime"; +import { extractToolSend } from "openclaw/plugin-sdk/tool-send"; import { resolveBlueBubblesAccount } from "./accounts.js"; import { getCachedBlueBubblesPrivateApiStatus, isMacOS26OrHigher } from "./probe.js"; import { BLUEBUBBLES_ACTION_NAMES, BLUEBUBBLES_ACTIONS, - createActionGate, - extractToolSend, - jsonResult, - readNumberParam, - readBooleanParam, - readReactionParams, - readStringParam, type ChannelMessageActionAdapter, type ChannelMessageActionName, } from "./runtime-api.js";