mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-22 23:41:07 +00:00
* fix(plugin-sdk): remove relative extension boundary escapes * Gate new plugin-sdk subpaths on host version * Add changelog entry for #51939 * Fix local staging for plugin-sdk host version gate * Raise host floor for line and googlechat plugins --------- Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
30 lines
808 B
TypeScript
30 lines
808 B
TypeScript
export {
|
|
buildComputedAccountStatusSnapshot,
|
|
DEFAULT_ACCOUNT_ID,
|
|
looksLikeSlackTargetId,
|
|
normalizeSlackMessagingTarget,
|
|
PAIRING_APPROVED_MESSAGE,
|
|
projectCredentialSnapshotFields,
|
|
resolveConfiguredFromRequiredCredentialStatuses,
|
|
type ChannelPlugin,
|
|
type OpenClawConfig,
|
|
type SlackAccountConfig,
|
|
} from "openclaw/plugin-sdk/slack";
|
|
export {
|
|
listSlackDirectoryGroupsFromConfig,
|
|
listSlackDirectoryPeersFromConfig,
|
|
} from "./directory-config.js";
|
|
export {
|
|
buildChannelConfigSchema,
|
|
getChatChannelMeta,
|
|
createActionGate,
|
|
imageResultFromFile,
|
|
jsonResult,
|
|
readNumberParam,
|
|
readReactionParams,
|
|
readStringParam,
|
|
SlackConfigSchema,
|
|
withNormalizedTimestamp,
|
|
} from "openclaw/plugin-sdk/slack-core";
|
|
export { isSlackInteractiveRepliesEnabled } from "./interactive-replies.js";
|