* Extensions: fix oxfmt drift on main * Plugins: restore runtime barrel exports on main * Config: restore web search compatibility types * Telegram: align test harness with reply runtime * Plugin SDK: fix channel config accessor generics * CLI: remove redundant search provider casts * Tests: restore main typecheck coverage * Lobster: fix test import formatting * Extensions: route bundled seams through plugin-sdk * Tests: use extension env helper for xai * Image generation: fix main oxfmt drift * Config: restore latest main compatibility checks * Plugin SDK: align guardrail tests with lint * Telegram: type native command skill mock
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
export {
|
|
buildComputedAccountStatusSnapshot,
|
|
buildTokenChannelStatusSummary,
|
|
PAIRING_APPROVED_MESSAGE,
|
|
projectCredentialSnapshotFields,
|
|
resolveConfiguredFromCredentialStatuses,
|
|
} from "openclaw/plugin-sdk/discord";
|
|
export {
|
|
buildChannelConfigSchema,
|
|
getChatChannelMeta,
|
|
jsonResult,
|
|
readNumberParam,
|
|
readStringArrayParam,
|
|
readStringParam,
|
|
type ActionGate,
|
|
type ChannelPlugin,
|
|
type OpenClawConfig,
|
|
} from "openclaw/plugin-sdk/discord-core";
|
|
export { DiscordConfigSchema } from "openclaw/plugin-sdk/discord-core";
|
|
export { readBooleanParam } from "openclaw/plugin-sdk/boolean-param";
|
|
export {
|
|
listDiscordDirectoryGroupsFromConfig,
|
|
listDiscordDirectoryPeersFromConfig,
|
|
} from "./directory-config.js";
|
|
export {
|
|
createHybridChannelConfigAdapter,
|
|
createScopedChannelConfigAdapter,
|
|
createScopedAccountConfigAccessors,
|
|
createScopedChannelConfigBase,
|
|
createTopLevelChannelConfigAdapter,
|
|
} from "openclaw/plugin-sdk/channel-config-helpers";
|
|
export {
|
|
createAccountActionGate,
|
|
createAccountListHelpers,
|
|
DEFAULT_ACCOUNT_ID,
|
|
normalizeAccountId,
|
|
resolveAccountEntry,
|
|
} from "openclaw/plugin-sdk/account-resolution";
|
|
export type {
|
|
ChannelMessageActionAdapter,
|
|
ChannelMessageActionName,
|
|
} from "openclaw/plugin-sdk/channel-runtime";
|
|
export type { DiscordConfig } from "openclaw/plugin-sdk/discord";
|
|
export {
|
|
assertMediaNotDataUrl,
|
|
parseAvailableTags,
|
|
readReactionParams,
|
|
resolvePollMaxSelections,
|
|
withNormalizedTimestamp,
|
|
} from "openclaw/plugin-sdk/discord-core";
|
|
export type { DiscordAccountConfig, DiscordActionConfig } from "openclaw/plugin-sdk/discord";
|
|
export {
|
|
hasConfiguredSecretInput,
|
|
normalizeResolvedSecretInputString,
|
|
normalizeSecretInputString,
|
|
} from "openclaw/plugin-sdk/config-runtime";
|