fix(extensions): remove barrel type back-edges

This commit is contained in:
Vincent Koc
2026-04-10 07:07:29 +01:00
parent 78d2e9e2a8
commit 4aa61cf8ca
2 changed files with 2 additions and 2 deletions

View File

@@ -1,10 +1,10 @@
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";
import {
buildOutboundBaseSessionKey,
normalizeOutboundThreadId,
resolveThreadSessionKeys,
type RoutePeer,
} from "openclaw/plugin-sdk/routing";
import type { OpenClawConfig } from "./runtime-api.js";
import { parseDiscordTarget } from "./target-parsing.js";
export type ResolveDiscordOutboundSessionRouteParams = {

View File

@@ -12,12 +12,12 @@ import {
createLoggedPairingApprovalNotifier,
createPairingPrefixStripper,
} from "openclaw/plugin-sdk/channel-pairing";
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";
import { buildPassiveProbedChannelStatusSummary } from "openclaw/plugin-sdk/extension-shared";
import {
createComputedAccountStatusAdapter,
createDefaultChannelRuntimeState,
} from "openclaw/plugin-sdk/status-helpers";
import type { OpenClawConfig } from "../api.js";
import { twitchMessageActions } from "./actions.js";
import { removeClientManager } from "./client-manager-registry.js";
import { TwitchConfigSchema } from "./config-schema.js";