2026-03-20 15:43:14 +00:00
|
|
|
// Shared bootstrap/pairing helpers for plugins that provision remote devices.
|
|
|
|
|
|
|
|
|
|
export { approveDevicePairing, listDevicePairing } from "../infra/device-pairing.js";
|
2026-03-21 01:10:29 -05:00
|
|
|
export {
|
|
|
|
|
clearDeviceBootstrapTokens,
|
|
|
|
|
issueDeviceBootstrapToken,
|
|
|
|
|
revokeDeviceBootstrapToken,
|
|
|
|
|
} from "../infra/device-bootstrap.js";
|
2026-03-23 00:15:05 -07:00
|
|
|
export {
|
|
|
|
|
normalizeDeviceBootstrapProfile,
|
|
|
|
|
PAIRING_SETUP_BOOTSTRAP_PROFILE,
|
|
|
|
|
sameDeviceBootstrapProfile,
|
|
|
|
|
type DeviceBootstrapProfile,
|
|
|
|
|
type DeviceBootstrapProfileInput,
|
|
|
|
|
} from "../shared/device-bootstrap-profile.js";
|