mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-22 15:31:07 +00:00
* fix(plugin-sdk): remove relative extension boundary escapes * Gate new plugin-sdk subpaths on host version * Add changelog entry for #51939 * Fix local staging for plugin-sdk host version gate * Raise host floor for line and googlechat plugins --------- Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
14 lines
398 B
TypeScript
14 lines
398 B
TypeScript
// Private runtime barrel for the bundled LINE extension.
|
|
// Keep this barrel thin and aligned with the local extension surface.
|
|
|
|
export * from "openclaw/plugin-sdk/line";
|
|
export {
|
|
DEFAULT_ACCOUNT_ID,
|
|
formatDocsLink,
|
|
resolveExactLineGroupConfigKey,
|
|
setSetupChannelEnabled,
|
|
splitSetupEntries,
|
|
type ChannelSetupDmPolicy,
|
|
type ChannelSetupWizard,
|
|
} from "openclaw/plugin-sdk/line-core";
|