From efb72b1165f80dd7378c2fec4215bb38ad384710 Mon Sep 17 00:00:00 2001 From: Arif Raveendran Date: Tue, 7 Apr 2026 18:52:50 +0530 Subject: [PATCH] add click ID fields to Utm type for ad platform tracking - Add gclid, fbclid, msclkid and 6 other click ID params to Utm type - Add index signature for future-proofing --- src/timely.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/timely.tsx b/src/timely.tsx index f80bd3c..ea096b3 100644 --- a/src/timely.tsx +++ b/src/timely.tsx @@ -31,6 +31,16 @@ export type Utm = Optional<{ ref: string referral_url: string referral_code: string + gclid: string + gbraid: string + wbraid: string + dclid: string + msclkid: string + fbclid: string + ttclid: string + li_fat_id: string + ScCid: string + [key: string]: string }> export type IframeTitle = string