From 353da29d19157329d936a48a9a6c809509071002 Mon Sep 17 00:00:00 2001 From: Daniel Rivers Date: Mon, 16 Mar 2026 17:30:27 +0000 Subject: [PATCH] feat: add ip_address to user authenticated and user authentication failed payloads --- lib/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/types.ts b/lib/types.ts index 1e57f3c..1a3aa21 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -91,6 +91,7 @@ export type UserAuthenticatedWebhookEvent = WebhookBase & { id: string; }; }; + ip_address: string; type: WebhookEventType.userAuthenticated; }; @@ -100,6 +101,7 @@ export type UserAuthenticationFailedWebhookEvent = WebhookBase & { id: string; }; }; + ip_address: string; type: WebhookEventType.userAuthenticationFailed; };