refactor: narrow telegram message context runtime imports

This commit is contained in:
Shakker
2026-04-02 10:40:30 +01:00
committed by Peter Steinberger
parent 71b5a7c35b
commit 27a8ef1284
3 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
export { readSessionUpdatedAt, resolveStorePath } from "openclaw/plugin-sdk/config-runtime";
export { recordInboundSession } from "openclaw/plugin-sdk/conversation-runtime";
export { finalizeInboundContext } from "openclaw/plugin-sdk/reply-runtime";
export { finalizeInboundContext } from "openclaw/plugin-sdk/reply-dispatch-runtime";
export { resolveInboundLastRouteSessionKey } from "openclaw/plugin-sdk/routing";
export { resolvePinnedMainDmOwnerFromAllowlist } from "openclaw/plugin-sdk/security-runtime";

View File

@@ -1,6 +1,6 @@
import type { ReactionTypeEmoji } from "@grammyjs/types";
import { resolveAckReaction } from "openclaw/plugin-sdk/agent-runtime";
import {
resolveAckReaction,
shouldAckReaction as shouldAckReactionGate,
type StatusReactionController,
} from "openclaw/plugin-sdk/channel-feedback";