mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 06:41:08 +00:00
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
// Private runtime barrel for the bundled Feishu extension.
|
|
// Keep this barrel thin and generic-only.
|
|
|
|
export type {
|
|
AllowlistMatch,
|
|
AnyAgentTool,
|
|
BaseProbeResult,
|
|
ChannelGroupContext,
|
|
ChannelMessageActionName,
|
|
ChannelMeta,
|
|
ChannelOutboundAdapter,
|
|
ChannelPlugin,
|
|
HistoryEntry,
|
|
OpenClawConfig,
|
|
OpenClawPluginApi,
|
|
OutboundIdentity,
|
|
PluginRuntime,
|
|
ReplyPayload,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export type { OpenClawConfig as ClawdbotConfig } from "openclaw/plugin-sdk/core";
|
|
export type { RuntimeEnv } from "openclaw/plugin-sdk/runtime";
|
|
export type { GroupToolPolicyConfig } from "openclaw/plugin-sdk/config-runtime";
|
|
export {
|
|
DEFAULT_ACCOUNT_ID,
|
|
buildChannelConfigSchema,
|
|
createActionGate,
|
|
createDedupeCache,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export {
|
|
PAIRING_APPROVED_MESSAGE,
|
|
buildProbeChannelStatusSummary,
|
|
createDefaultChannelRuntimeState,
|
|
} from "openclaw/plugin-sdk/channel-status";
|
|
export { buildAgentMediaPayload } from "openclaw/plugin-sdk/agent-media-payload";
|
|
export { createChannelPairingController } from "openclaw/plugin-sdk/channel-pairing";
|
|
export { createReplyPrefixContext } from "openclaw/plugin-sdk/channel-reply-pipeline";
|
|
export {
|
|
evaluateSupplementalContextVisibility,
|
|
filterSupplementalContextItems,
|
|
resolveChannelContextVisibilityMode,
|
|
} from "openclaw/plugin-sdk/config-runtime";
|
|
export { readJsonFileWithFallback } from "openclaw/plugin-sdk/json-store";
|
|
export { createPersistentDedupe } from "openclaw/plugin-sdk/persistent-dedupe";
|
|
export { normalizeAgentId } from "openclaw/plugin-sdk/routing";
|
|
export { chunkTextForOutbound } from "openclaw/plugin-sdk/text-chunking";
|
|
export {
|
|
isRequestBodyLimitError,
|
|
readRequestBodyWithLimit,
|
|
requestBodyErrorToText,
|
|
} from "openclaw/plugin-sdk/webhook-ingress";
|