Files
openclaw/extensions/slack/src/runtime-api.ts
2026-04-04 07:39:53 +01:00

33 lines
1.2 KiB
TypeScript

export {
buildComputedAccountStatusSnapshot,
PAIRING_APPROVED_MESSAGE,
projectCredentialSnapshotFields,
resolveConfiguredFromRequiredCredentialStatuses,
} from "openclaw/plugin-sdk/channel-status";
export { buildChannelConfigSchema, SlackConfigSchema } from "../config-api.js";
export type { ChannelMessageActionContext } from "openclaw/plugin-sdk/channel-contract";
export { DEFAULT_ACCOUNT_ID } from "openclaw/plugin-sdk/account-id";
export type {
ChannelPlugin,
OpenClawPluginApi,
PluginRuntime,
} from "openclaw/plugin-sdk/channel-plugin-common";
export type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";
export type { SlackAccountConfig } from "openclaw/plugin-sdk/config-runtime";
export {
emptyPluginConfigSchema,
formatPairingApproveHint,
} from "openclaw/plugin-sdk/channel-plugin-common";
export { loadOutboundMediaFromUrl } from "openclaw/plugin-sdk/outbound-media";
export { looksLikeSlackTargetId, normalizeSlackMessagingTarget } from "./target-parsing.js";
export { getChatChannelMeta } from "./channel-api.js";
export {
createActionGate,
imageResultFromFile,
jsonResult,
readNumberParam,
readReactionParams,
readStringParam,
withNormalizedTimestamp,
} from "openclaw/plugin-sdk/channel-actions";