mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 05:56:18 +00:00
27 lines
831 B
TypeScript
27 lines
831 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";
|
|
export {
|
|
CURRENT_MESSAGE_MARKER,
|
|
buildMentionRegexes,
|
|
normalizeMentionText,
|
|
} from "../auto-reply/reply/mentions.js";
|