2026-03-17 00:58:46 -07:00
|
|
|
import { readChannelAllowFromStore } from "../pairing/pairing-store.js";
|
|
|
|
|
import {
|
|
|
|
|
isNumericTelegramUserId,
|
|
|
|
|
normalizeTelegramAllowFromEntry,
|
|
|
|
|
} from "../plugin-sdk/telegram.js";
|
|
|
|
|
import {
|
2026-03-15 21:08:41 -07:00
|
|
|
isDiscordMutableAllowEntry,
|
|
|
|
|
isZalouserMutableGroupEntry,
|
|
|
|
|
} from "./mutable-allowlist-detectors.js";
|
2026-03-17 00:58:46 -07:00
|
|
|
|
|
|
|
|
export const auditChannelRuntime = {
|
|
|
|
|
readChannelAllowFromStore,
|
|
|
|
|
isDiscordMutableAllowEntry,
|
|
|
|
|
isZalouserMutableGroupEntry,
|
2026-03-15 23:30:04 -07:00
|
|
|
isNumericTelegramUserId,
|
|
|
|
|
normalizeTelegramAllowFromEntry,
|
2026-03-17 00:58:46 -07:00
|
|
|
};
|