mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
113 lines
4.9 KiB
TypeScript
113 lines
4.9 KiB
TypeScript
// Narrow plugin-sdk surface for the bundled msteams plugin.
|
|
// Keep this list additive and scoped to symbols used under extensions/msteams.
|
|
|
|
export type { ChunkMode } from "../auto-reply/chunk.js";
|
|
export type { HistoryEntry } from "../auto-reply/reply/history.js";
|
|
export {
|
|
buildPendingHistoryContextFromMap,
|
|
clearHistoryEntriesIfEnabled,
|
|
DEFAULT_GROUP_HISTORY_LIMIT,
|
|
recordPendingHistoryEntryIfEnabled,
|
|
} from "../auto-reply/reply/history.js";
|
|
export { isSilentReplyText, SILENT_REPLY_TOKEN } from "../auto-reply/tokens.js";
|
|
export type { ReplyPayload } from "../auto-reply/types.js";
|
|
export { mergeAllowlist, summarizeMapping } from "../channels/allowlists/resolve-utils.js";
|
|
export { resolveControlCommandGate } from "../channels/command-gating.js";
|
|
export { logInboundDrop, logTypingFailure } from "../channels/logging.js";
|
|
export { resolveMentionGating } from "../channels/mention-gating.js";
|
|
export type { AllowlistMatch } from "../channels/plugins/allowlist-match.js";
|
|
export {
|
|
formatAllowlistMatchMeta,
|
|
resolveAllowlistMatchSimple,
|
|
} from "../channels/plugins/allowlist-match.js";
|
|
export {
|
|
buildChannelKeyCandidates,
|
|
normalizeChannelSlug,
|
|
resolveChannelEntryMatchWithFallback,
|
|
resolveNestedAllowlistDecision,
|
|
} from "../channels/plugins/channel-config.js";
|
|
export { buildChannelConfigSchema } from "../channels/plugins/config-schema.js";
|
|
export { resolveChannelMediaMaxBytes } from "../channels/plugins/media-limits.js";
|
|
export { buildMediaPayload } from "../channels/plugins/media-payload.js";
|
|
export type {
|
|
ChannelOnboardingAdapter,
|
|
ChannelOnboardingDmPolicy,
|
|
} from "../channels/plugins/onboarding-types.js";
|
|
export { promptChannelAccessConfig } from "../channels/plugins/onboarding/channel-access.js";
|
|
export {
|
|
addWildcardAllowFrom,
|
|
mergeAllowFromEntries,
|
|
} from "../channels/plugins/onboarding/helpers.js";
|
|
export { PAIRING_APPROVED_MESSAGE } from "../channels/plugins/pairing-message.js";
|
|
export type {
|
|
BaseProbeResult,
|
|
ChannelDirectoryEntry,
|
|
ChannelGroupContext,
|
|
ChannelMessageActionName,
|
|
ChannelOutboundAdapter,
|
|
} from "../channels/plugins/types.js";
|
|
export type { ChannelPlugin } from "../channels/plugins/types.plugin.js";
|
|
export { createReplyPrefixOptions } from "../channels/reply-prefix.js";
|
|
export { createTypingCallbacks } from "../channels/typing.js";
|
|
export type { OpenClawConfig } from "../config/config.js";
|
|
export { isDangerousNameMatchingEnabled } from "../config/dangerous-name-matching.js";
|
|
export { resolveToolsBySender } from "../config/group-policy.js";
|
|
export {
|
|
resolveAllowlistProviderRuntimeGroupPolicy,
|
|
resolveDefaultGroupPolicy,
|
|
} from "../config/runtime-group-policy.js";
|
|
export type {
|
|
DmPolicy,
|
|
GroupPolicy,
|
|
GroupToolPolicyConfig,
|
|
MarkdownTableMode,
|
|
MSTeamsChannelConfig,
|
|
MSTeamsConfig,
|
|
MSTeamsReplyStyle,
|
|
MSTeamsTeamConfig,
|
|
} from "../config/types.js";
|
|
export {
|
|
hasConfiguredSecretInput,
|
|
normalizeResolvedSecretInputString,
|
|
normalizeSecretInputString,
|
|
} from "../config/types.secrets.js";
|
|
export { MSTeamsConfigSchema } from "../config/zod-schema.providers-core.js";
|
|
export { DEFAULT_WEBHOOK_MAX_BODY_BYTES } from "../infra/http-body.js";
|
|
export { fetchWithSsrFGuard } from "../infra/net/fetch-guard.js";
|
|
export type { SsrFPolicy } from "../infra/net/ssrf.js";
|
|
export { isPrivateIpAddress } from "../infra/net/ssrf.js";
|
|
export { detectMime, extensionForMime, getFileExtension } from "../media/mime.js";
|
|
export { extractOriginalFilename } from "../media/store.js";
|
|
export { emptyPluginConfigSchema } from "../plugins/config-schema.js";
|
|
export type { PluginRuntime } from "../plugins/runtime/types.js";
|
|
export type { OpenClawPluginApi } from "../plugins/types.js";
|
|
export { DEFAULT_ACCOUNT_ID } from "../routing/session-key.js";
|
|
export type { RuntimeEnv } from "../runtime.js";
|
|
export {
|
|
readStoreAllowFromForDmPolicy,
|
|
resolveDmGroupAccessWithLists,
|
|
resolveEffectiveAllowFromLists,
|
|
} from "../security/dm-policy-shared.js";
|
|
export { formatDocsLink } from "../terminal/links.js";
|
|
export { sleep } from "../utils.js";
|
|
export { loadWebMedia } from "../web/media.js";
|
|
export type { WizardPrompter } from "../wizard/prompts.js";
|
|
export { keepHttpServerTaskAlive } from "./channel-lifecycle.js";
|
|
export { withFileLock } from "./file-lock.js";
|
|
export { dispatchReplyFromConfigWithSettledDispatcher } from "./inbound-reply-dispatch.js";
|
|
export { readJsonFileWithFallback, writeJsonFileAtomically } from "./json-store.js";
|
|
export { loadOutboundMediaFromUrl } from "./outbound-media.js";
|
|
export { createScopedPairingAccess } from "./pairing-access.js";
|
|
export { resolveInboundSessionEnvelopeContext } from "../channels/session-envelope.js";
|
|
export {
|
|
buildHostnameAllowlistPolicyFromSuffixAllowlist,
|
|
isHttpsUrlAllowedByHostnameSuffixAllowlist,
|
|
normalizeHostnameSuffixAllowlist,
|
|
} from "./ssrf-policy.js";
|
|
export {
|
|
buildBaseChannelStatusSummary,
|
|
buildProbeChannelStatusSummary,
|
|
buildRuntimeAccountStatusSnapshot,
|
|
createDefaultChannelRuntimeState,
|
|
} from "./status-helpers.js";
|