mirror of https://github.com/openclaw/openclaw.git
40 lines
1.7 KiB
TypeScript
40 lines
1.7 KiB
TypeScript
// Private runtime barrel for the bundled LINE extension.
|
|
// Keep this barrel thin and aligned with the local extension surface.
|
|
|
|
export type {
|
|
ChannelPlugin,
|
|
OpenClawConfig,
|
|
OpenClawPluginApi,
|
|
PluginRuntime,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export { buildChannelConfigSchema, clearAccountEntryFields } from "openclaw/plugin-sdk/core";
|
|
export type { ReplyPayload } from "openclaw/plugin-sdk/reply-runtime";
|
|
export type { ChannelAccountSnapshot, ChannelGatewayContext } from "openclaw/plugin-sdk/testing";
|
|
export type { ChannelStatusIssue } from "openclaw/plugin-sdk/channel-contract";
|
|
export type { ChannelSetupDmPolicy, ChannelSetupWizard } from "openclaw/plugin-sdk/setup";
|
|
export {
|
|
buildComputedAccountStatusSnapshot,
|
|
buildTokenChannelStatusSummary,
|
|
} from "openclaw/plugin-sdk/status-helpers";
|
|
export { DEFAULT_ACCOUNT_ID, formatDocsLink, setSetupChannelEnabled, splitSetupEntries } from "openclaw/plugin-sdk/setup";
|
|
export * from "../../src/plugin-sdk/line-runtime.js";
|
|
|
|
export * from "./src/accounts.js";
|
|
export * from "./src/actions.js";
|
|
export * from "./src/bot-access.js";
|
|
export * from "./src/channel-access-token.js";
|
|
export * from "./src/config-schema.js";
|
|
export * from "./src/download.js";
|
|
export * from "./src/flex-templates.js";
|
|
export * from "./src/group-keys.js";
|
|
export * from "./src/markdown-to-line.js";
|
|
export * from "./src/probe.js";
|
|
export * from "./src/rich-menu.js";
|
|
export * from "./src/send.js";
|
|
export * from "./src/signature.js";
|
|
export * from "./src/template-messages.js";
|
|
export type { LineChannelData, LineConfig, ResolvedLineAccount } from "./src/types.js";
|
|
export * from "./src/webhook-node.js";
|
|
export * from "./src/webhook.js";
|
|
export * from "./src/webhook-utils.js";
|