Skip to content

Commit 2594965

Browse files
abbaseyaConvert Bot
authored andcommitted
feat: automated TS Serving API update
1 parent 095b70f commit 2594965

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

packages/types/src/config/types.gen.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -849,6 +849,12 @@ export type VisitorInsightsBase = {
849849
*
850850
*/
851851
sampling_rate?: 5 | 10 | 20 | 30 | 40 | 50;
852+
/**
853+
* Maximum number of visits per variation used when generating a heatmap for this project.
854+
* Applies to newly created heatmaps when an experience is activated.
855+
*
856+
*/
857+
heatmap_visits_limit?: 2500 | 5000 | 10000 | 15000;
852858
};
853859

854860
/**
@@ -865,6 +871,18 @@ export enum sampling_rate {
865871
'_50' = 50
866872
}
867873

874+
/**
875+
* Maximum number of visits per variation used when generating a heatmap for this project.
876+
* Applies to newly created heatmaps when an experience is activated.
877+
*
878+
*/
879+
export enum heatmap_visits_limit {
880+
'_2500' = 2500,
881+
'_5000' = 5000,
882+
'_10000' = 10000,
883+
'_15000' = 15000
884+
}
885+
868886
/**
869887
* The method used for detecting and handling order outliers in revenue or product count tracking:
870888
* - `none`: No outlier detection is applied.
@@ -2391,6 +2409,10 @@ export type ProjectGASettingsBase = GA_SettingsBase & {
23912409
* Attempt to pull revenue data from Google Analytics Revenue Tracking code.
23922410
*/
23932411
auto_revenue_tracking?: boolean;
2412+
/**
2413+
* 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.
2414+
*/
2415+
track_first_exposure_only?: boolean;
23942416
};
23952417

23962418
export type ProjectIntegrationGA3 = ProjectGASettingsBase & IntegrationGA3;

0 commit comments

Comments
 (0)