mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 16:32:29 +00:00
75 lines
2.3 KiB
TypeScript
75 lines
2.3 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/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/send.js";
|
|
export * from "./src/signature.js";
|
|
export { datetimePickerAction, messageAction, postbackAction, uriAction } from "./src/rich-menu.js";
|
|
export {
|
|
createDefaultMenuConfig,
|
|
createGridLayout,
|
|
type RichMenuArea,
|
|
type RichMenuRequest,
|
|
type RichMenuResponse,
|
|
} from "./src/rich-menu.js";
|
|
export {
|
|
createButtonMenu,
|
|
createButtonTemplate,
|
|
createCarouselColumn,
|
|
createConfirmTemplate,
|
|
createImageCarousel,
|
|
createImageCarouselColumn,
|
|
createLinkMenu,
|
|
createProductCarousel,
|
|
createTemplateCarousel,
|
|
createYesNoConfirm,
|
|
buildTemplateMessageFromPayload,
|
|
type ButtonsTemplate,
|
|
type CarouselColumn,
|
|
type CarouselTemplate,
|
|
type ConfirmTemplate,
|
|
type ImageCarouselColumn,
|
|
type ImageCarouselTemplate,
|
|
type TemplateMessage,
|
|
} from "./src/template-messages.js";
|
|
export type {
|
|
LineChannelData,
|
|
LineConfig,
|
|
LineProbeResult,
|
|
ResolvedLineAccount,
|
|
} from "./src/types.js";
|
|
export * from "./src/webhook-node.js";
|
|
export * from "./src/webhook.js";
|
|
export * from "./src/webhook-utils.js";
|