UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

66 lines 2.83 kB
import { _t as GroupToolPolicyBySenderConfig, r as OpenClawConfig, vt as GroupToolPolicyConfig } from "./types.openclaw-BdCLfP4c.js"; import { t as ChannelId } from "./channel-id.types-CjcGKHk0.js"; //#region src/config/group-policy.d.ts type GroupPolicyChannel = ChannelId; type ChannelGroupConfig = { requireMention?: boolean; ingest?: boolean; tools?: GroupToolPolicyConfig; toolsBySender?: GroupToolPolicyBySenderConfig; }; type ChannelGroupPolicy = { allowlistEnabled: boolean; allowed: boolean; groupConfig?: ChannelGroupConfig; defaultConfig?: ChannelGroupConfig; }; type ChannelGroups = Record<string, ChannelGroupConfig>; type GroupToolPolicySender = { /** Skip sender-specific overlays for trusted non-ingress executions. */ senderPolicyMode?: "always" | "never"; messageProvider?: string | null; senderId?: string | null; senderName?: string | null; senderUsername?: string | null; senderE164?: string | null; }; declare function resolveToolsBySender(params: { toolsBySender?: GroupToolPolicyBySenderConfig; } & GroupToolPolicySender): GroupToolPolicyConfig | undefined; declare function resolveChannelGroups(cfg: OpenClawConfig, channel: GroupPolicyChannel, accountId?: string | null): ChannelGroups | undefined; /** Locate the authored map selected by the channel owner without changing its inheritance rules. */ declare function resolveChannelGroupsConfigPath(params: { cfg: OpenClawConfig; channel: GroupPolicyChannel; accountId?: string | null; groups: Readonly<Record<string, unknown>> | undefined; }): string; declare function resolveChannelGroupPolicy(params: { cfg: OpenClawConfig; channel: GroupPolicyChannel; groupId?: string | null; accountId?: string | null; groupIdCaseInsensitive?: boolean; /** When true, sender-level filtering (groupAllowFrom) is configured upstream. */ hasGroupAllowFrom?: boolean; }): ChannelGroupPolicy; declare function resolveChannelGroupRequireMention(params: { cfg: OpenClawConfig; channel: GroupPolicyChannel; groupId?: string | null; accountId?: string | null; groupIdCaseInsensitive?: boolean; requireMentionOverride?: boolean; configuredGroupDefaultsToNoMention?: boolean; overrideOrder?: "before-config" | "after-config"; }): boolean; declare function resolveChannelGroupToolsPolicy(params: { cfg: OpenClawConfig; channel: GroupPolicyChannel; groupId?: string | null; groupIdCandidates?: Array<string | null | undefined>; accountId?: string | null; groupIdCaseInsensitive?: boolean; } & GroupToolPolicySender): GroupToolPolicyConfig | undefined; //#endregion export { resolveChannelGroups as a, resolveChannelGroupToolsPolicy as i, resolveChannelGroupPolicy as n, resolveChannelGroupsConfigPath as o, resolveChannelGroupRequireMention as r, resolveToolsBySender as s, ChannelGroupPolicy as t };