List all active webhook watches for your account.
churn.listWatches(options?: CallOptions): Promise<WatchedUser[]>
interface WatchedUser { userId: string threshold: number webhook: string cooldown: string }
const watches = await churn.listWatches() for (const w of watches) { console.log(`${w.userId} → alert at ${w.threshold} score, cooldown ${w.cooldown}`) }