Files
openclaw/extensions/signal/runtime-api.ts
Peter Steinberger 4eea0d3e27 refactor(channels): remove redundant private runtime facades (#130186)
* refactor(channels): remove private runtime facades

* test(channels): refresh retired facade contract guards
2026-08-26 11:22:29 -07:00

49 lines
2.2 KiB
TypeScript

export type { ChannelMessageActionAdapter } from "openclaw/plugin-sdk/channel-contract";
export type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";
export { buildChannelConfigSchema, SignalConfigSchema } from "./config-api.js";
export { PAIRING_APPROVED_MESSAGE } from "openclaw/plugin-sdk/channel-status";
export type { ChannelPlugin, OpenClawPluginApi, PluginRuntime } from "openclaw/plugin-sdk/core";
export {
DEFAULT_ACCOUNT_ID,
applyAccountNameToChannelSection,
deleteAccountFromConfigSection,
emptyPluginConfigSchema,
formatPairingApproveHint,
getChatChannelMeta,
migrateBaseNameToDefaultAccount,
normalizeAccountId,
setAccountEnabledInConfigSection,
} from "openclaw/plugin-sdk/core";
export { resolveChannelMediaMaxBytes } from "openclaw/plugin-sdk/media-runtime";
export { formatCliCommand, formatDocsLink } from "openclaw/plugin-sdk/setup-tools";
export { chunkText } from "openclaw/plugin-sdk/reply-runtime";
export { detectBinary } from "openclaw/plugin-sdk/setup-tools";
export {
resolveAllowlistProviderRuntimeGroupPolicy,
resolveDefaultGroupPolicy,
} from "openclaw/plugin-sdk/runtime-group-policy";
export {
buildBaseAccountStatusSnapshot,
buildBaseChannelStatusSummary,
collectStatusIssuesFromLastError,
createDefaultChannelRuntimeState,
} from "openclaw/plugin-sdk/status-helpers";
export { normalizeE164 } from "openclaw/plugin-sdk/text-utility-runtime";
export { looksLikeSignalTargetId, normalizeSignalMessagingTarget } from "./src/normalize.js";
export {
listEnabledSignalAccounts,
listSignalAccountIds,
resolveDefaultSignalAccountId,
resolveSignalAccount,
} from "./src/accounts.js";
export { monitorSignalProvider } from "./src/monitor.js";
export { installSignalCli } from "./src/install-signal-cli.js";
export { probeSignal } from "./src/probe.js";
export { resolveSignalReactionLevel } from "./src/reaction-level.js";
export { removeReactionSignal, sendReactionSignal } from "./src/send-reactions.js";
export { sendMessageSignal } from "./src/send.js";
export { signalMessageActions } from "./src/message-actions.js";
export type { ResolvedSignalAccount } from "./src/accounts.js";
export type { SignalAccountConfig } from "./src/account-types.js";
export { setSignalRuntime } from "./src/runtime.js";