mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-28 02:12:07 +00:00
16 lines
527 B
TypeScript
16 lines
527 B
TypeScript
// Shared bootstrap/pairing helpers for plugins that provision remote devices.
|
|
|
|
export { approveDevicePairing, listDevicePairing } from "../infra/device-pairing.js";
|
|
export {
|
|
clearDeviceBootstrapTokens,
|
|
issueDeviceBootstrapToken,
|
|
revokeDeviceBootstrapToken,
|
|
} from "../infra/device-bootstrap.js";
|
|
export {
|
|
normalizeDeviceBootstrapProfile,
|
|
PAIRING_SETUP_BOOTSTRAP_PROFILE,
|
|
sameDeviceBootstrapProfile,
|
|
type DeviceBootstrapProfile,
|
|
type DeviceBootstrapProfileInput,
|
|
} from "../shared/device-bootstrap-profile.js";
|