From a628d5d78ba7ee548adb6296283d66daa1118893 Mon Sep 17 00:00:00 2001 From: Ayaan Zaidi Date: Sat, 28 Mar 2026 15:23:22 +0530 Subject: [PATCH] fix(irc): pin runtime barrel exports for jiti --- extensions/irc/src/runtime-api.ts | 36 ++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/extensions/irc/src/runtime-api.ts b/extensions/irc/src/runtime-api.ts index 40f35e1ad53..93f5c73f1cd 100644 --- a/extensions/irc/src/runtime-api.ts +++ b/extensions/irc/src/runtime-api.ts @@ -1,4 +1,38 @@ // Private runtime barrel for the bundled IRC extension. // Keep this barrel thin and aligned with the local extension surface. -export * from "openclaw/plugin-sdk/irc"; +export { + buildBaseChannelStatusSummary, + createAccountStatusSink, + chunkTextForOutbound, + createChannelPairingController, + DEFAULT_ACCOUNT_ID, + deliverFormattedTextWithAttachments, + dispatchInboundReplyWithBase, + getChatChannelMeta, + GROUP_POLICY_BLOCKED_LABEL, + isDangerousNameMatchingEnabled, + logInboundDrop, + PAIRING_APPROVED_MESSAGE, + readStoreAllowFromForDmPolicy, + resolveAllowlistProviderRuntimeGroupPolicy, + resolveControlCommandGate, + resolveDefaultGroupPolicy, + resolveEffectiveAllowFromLists, + warnMissingProviderGroupPolicyFallbackOnce, +} from "openclaw/plugin-sdk/irc"; +export type { + BaseProbeResult, + BlockStreamingCoalesceConfig, + ChannelPlugin, + DmConfig, + DmPolicy, + GroupPolicy, + GroupToolPolicyBySenderConfig, + GroupToolPolicyConfig, + MarkdownConfig, + OpenClawConfig, + OutboundReplyPayload, + PluginRuntime, + RuntimeEnv, +} from "openclaw/plugin-sdk/irc";