mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-18 08:31:49 -06:00
18 lines
619 B
TypeScript
18 lines
619 B
TypeScript
// Shared bootstrap/pairing helpers for plugins that provision remote devices.
|
|
|
|
export { approveDevicePairing } from "../infra/device-pairing-approval.js";
|
|
export { listDevicePairing } from "../infra/device-pairing.js";
|
|
export {
|
|
clearDeviceBootstrapTokens,
|
|
issueDeviceBootstrapToken,
|
|
revokeDeviceBootstrapToken,
|
|
} from "../infra/device-bootstrap.js";
|
|
export {
|
|
BOOTSTRAP_HANDOFF_OPERATOR_SCOPES,
|
|
normalizeDeviceBootstrapProfile,
|
|
PAIRING_SETUP_BOOTSTRAP_PROFILE,
|
|
type DeviceBootstrapProfile,
|
|
type DeviceBootstrapProfileInput,
|
|
type DeviceBootstrapPurpose,
|
|
} from "../shared/device-bootstrap-profile.js";
|