mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-04 12:23:31 +00:00
* Route LAN pairing URLs by default route * Advertise route-aware LAN Control UI links * Fix route-aware LAN test mocks * Narrow advertised LAN SDK export
23 lines
818 B
TypeScript
23 lines
818 B
TypeScript
// Device Pair API module exposes the plugin public contract.
|
|
export {
|
|
approveDevicePairing,
|
|
clearDeviceBootstrapTokens,
|
|
issueDeviceBootstrapToken,
|
|
PAIRING_SETUP_BOOTSTRAP_PROFILE,
|
|
listDevicePairing,
|
|
revokeDeviceBootstrapToken,
|
|
type DeviceBootstrapProfile,
|
|
} from "openclaw/plugin-sdk/device-bootstrap";
|
|
export { definePluginEntry, type OpenClawPluginApi } from "openclaw/plugin-sdk/plugin-entry";
|
|
export {
|
|
resolveGatewayBindUrl,
|
|
resolveGatewayPort,
|
|
resolveTailnetHostWithRunner,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export { resolveAdvertisedLanHost } from "openclaw/plugin-sdk/gateway-runtime";
|
|
export {
|
|
resolvePreferredOpenClawTmpDir,
|
|
runPluginCommandWithTimeout,
|
|
} from "openclaw/plugin-sdk/sandbox";
|
|
export { renderQrPngBase64, renderQrPngDataUrl, writeQrPngTempFile } from "./qr-image.js";
|