// Bootstrapping integration…
import client from '@acme/sdk'
const cfg = { key: 'pk_live_xxx', region: 'ap-south-1' }
await client.init(cfg)
const conn = await client.connect()
console.log('Connected:', conn.status)
const res = await client.verify({
propertyId: 123456,
checks: ['ownership', 'encumbrance']
})
console.log('Flags:', res.flags)
if (res.flags.length === 0 ) {
console.log('All clear ✅')
}