mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-07 06:17:28 +08:00
* fix(pairing): advertise reachable tailnet routes * fix(pairing): satisfy native and SDK checks * fix(ios): cancel stale pairing route probes * test(pairing): document LAN-only Serve fallback * fix(ios): preserve pairing result initializer
24 lines
864 B
TypeScript
24 lines
864 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,
|
|
resolveTailscaleServeGatewayUrlsWithRunner,
|
|
} 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";
|