Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions packages/types/src/config/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

/**
Expand All @@ -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.
Expand Down Expand Up @@ -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;
Expand Down
Loading