Files
openclaw/src/plugin-sdk/channel-mention-gating.ts
2026-04-17 16:05:09 +01:00

22 lines
707 B
TypeScript

export type {
InboundImplicitMentionKind,
InboundMentionDecision,
InboundMentionFacts,
InboundMentionPolicy,
MentionGateParams,
MentionGateResult,
MentionGateWithBypassParams,
MentionGateWithBypassResult,
ResolveInboundMentionDecisionFlatParams,
ResolveInboundMentionDecisionNestedParams,
ResolveInboundMentionDecisionParams,
} from "../channels/mention-gating.js";
export {
implicitMentionKindWhen,
resolveInboundMentionDecision,
// @deprecated Prefer `resolveInboundMentionDecision({ facts, policy })`.
resolveMentionGating,
// @deprecated Prefer `resolveInboundMentionDecision({ facts, policy })`.
resolveMentionGatingWithBypass,
} from "../channels/mention-gating.js";