openclaw/src/security/audit-channel.runtime.ts
2026-03-17 00:59:20 -07:00

18 lines
486 B
TypeScript

import { readChannelAllowFromStore } from "../pairing/pairing-store.js";
import {
isNumericTelegramUserId,
normalizeTelegramAllowFromEntry,
} from "../plugin-sdk/telegram.js";
import {
isDiscordMutableAllowEntry,
isZalouserMutableGroupEntry,
} from "./mutable-allowlist-detectors.js";
export const auditChannelRuntime = {
readChannelAllowFromStore,
isDiscordMutableAllowEntry,
isZalouserMutableGroupEntry,
isNumericTelegramUserId,
normalizeTelegramAllowFromEntry,
};