From ebd688b9e0ac3086f4dbb40eacf0d36cb76c1a40 Mon Sep 17 00:00:00 2001 From: JosephSamirL <68662601+JosephSamirL@users.noreply.github.com> Date: Fri, 17 Jul 2026 14:14:50 +0000 Subject: [PATCH] feat: automated TS Serving API update --- packages/types/src/config/types.gen.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages/types/src/config/types.gen.ts b/packages/types/src/config/types.gen.ts index 589b2d27..eb6e1d03 100644 --- a/packages/types/src/config/types.gen.ts +++ b/packages/types/src/config/types.gen.ts @@ -849,6 +849,12 @@ export type VisitorInsightsBase = { * */ sampling_rate?: 5 | 10 | 20 | 30 | 40 | 50; + /** + * Maximum number of visits per variation used when generating a heatmap for this project. + * Applies to newly created heatmaps when an experience is activated. + * + */ + heatmap_visits_limit?: 2500 | 5000 | 10000 | 15000; }; /** @@ -865,6 +871,18 @@ export enum sampling_rate { '_50' = 50 } +/** + * Maximum number of visits per variation used when generating a heatmap for this project. + * Applies to newly created heatmaps when an experience is activated. + * + */ +export enum heatmap_visits_limit { + '_2500' = 2500, + '_5000' = 5000, + '_10000' = 10000, + '_15000' = 15000 +} + /** * The method used for detecting and handling order outliers in revenue or product count tracking: * - `none`: No outlier detection is applied. @@ -2391,6 +2409,10 @@ export type ProjectGASettingsBase = GA_SettingsBase & { * Attempt to pull revenue data from Google Analytics Revenue Tracking code. */ auto_revenue_tracking?: boolean; + /** + * When enabled, the experience_impression event is sent only the first time a visitor is exposed to an experience, instead of on every subsequent qualifying page view. Opt-in and disabled by default. + */ + track_first_exposure_only?: boolean; }; export type ProjectIntegrationGA3 = ProjectGASettingsBase & IntegrationGA3; @@ -2558,6 +2580,10 @@ export type VisitorSegments = { * Campaign string */ campaign?: string; + /** + * Content string (ad-creative identifier from utm_content) + */ + content?: string; /** * Type of the visitor */