mirror of https://github.com/openclaw/openclaw.git
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
export {
|
|
applyChannelMatchMeta,
|
|
buildChannelKeyCandidates,
|
|
normalizeChannelSlug,
|
|
resolveChannelEntryMatch,
|
|
resolveChannelEntryMatchWithFallback,
|
|
resolveChannelMatchConfig,
|
|
resolveNestedAllowlistDecision,
|
|
type ChannelEntryMatch,
|
|
type ChannelMatchSource,
|
|
} from "../channels/channel-config.js";
|
|
export {
|
|
buildMessagingTarget,
|
|
ensureTargetId,
|
|
normalizeTargetId,
|
|
parseAtUserTarget,
|
|
parseMentionPrefixOrAtUserTarget,
|
|
parseTargetMention,
|
|
parseTargetPrefix,
|
|
parseTargetPrefixes,
|
|
requireTargetKind,
|
|
type MessagingTarget,
|
|
type MessagingTargetKind,
|
|
type MessagingTargetParseOptions,
|
|
} from "../channels/targets.js";
|
|
export {
|
|
createAllowedChatSenderMatcher,
|
|
parseChatAllowTargetPrefixes,
|
|
parseChatTargetPrefixesOrThrow,
|
|
resolveServicePrefixedAllowTarget,
|
|
resolveServicePrefixedChatTarget,
|
|
resolveServicePrefixedOrChatAllowTarget,
|
|
resolveServicePrefixedTarget,
|
|
type ChatSenderAllowParams,
|
|
type ChatTargetPrefixesParams,
|
|
type ParsedChatAllowTarget,
|
|
type ParsedChatTarget,
|
|
type ServicePrefix,
|
|
} from "../channels/plugins/chat-target-prefixes.js";
|
|
export {
|
|
looksLikeSignalTargetId,
|
|
normalizeSignalMessagingTarget,
|
|
} from "../channels/plugins/normalize/signal.js";
|
|
export type { ChannelId } from "../channels/plugins/types.js";
|
|
export { normalizeChannelId } from "../channels/plugins/registry.js";
|
|
export {
|
|
buildUnresolvedTargetResults,
|
|
resolveTargetsWithOptionalToken,
|
|
} from "../channels/plugins/target-resolvers.js";
|