You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During review of PR #154, it was identified that webhook handler functions use any type for their body parameters, which bypasses TypeScript's type checking.
Request
Refactor webhook body handling to use proper TypeScript types or Zod schemas with type guards for validation. This should cover all webhook handler functions in the codebase, particularly in src/app/api/webhook/route.ts.