mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 19:01:44 +00:00
28 lines
752 B
TypeScript
28 lines
752 B
TypeScript
// Private runtime barrel for the bundled Feishu extension.
|
|
// Keep this barrel thin and aligned with the local extension surface.
|
|
|
|
export type {
|
|
ChannelMessageActionName,
|
|
ChannelMeta,
|
|
ChannelOutboundAdapter,
|
|
OpenClawConfig as ClawdbotConfig,
|
|
OpenClawConfig,
|
|
OpenClawPluginApi,
|
|
PluginRuntime,
|
|
RuntimeEnv,
|
|
} from "openclaw/plugin-sdk/feishu";
|
|
export {
|
|
DEFAULT_ACCOUNT_ID,
|
|
PAIRING_APPROVED_MESSAGE,
|
|
buildChannelConfigSchema,
|
|
buildProbeChannelStatusSummary,
|
|
createActionGate,
|
|
createDefaultChannelRuntimeState,
|
|
} from "openclaw/plugin-sdk/feishu";
|
|
export * from "openclaw/plugin-sdk/feishu";
|
|
export {
|
|
isRequestBodyLimitError,
|
|
readRequestBodyWithLimit,
|
|
requestBodyErrorToText,
|
|
} from "openclaw/plugin-sdk/webhook-ingress";
|