You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The Convert product line this billing plan pertains to.
60
+
* - `experiences`: Relates to A/B testing, MVT, Split URL, and personalization features.
61
+
* - `deploy`: Relates to the "Deploy" feature for rolling out changes to specific audiences without A/B testing reports. Knowledge Base: "Deployments have the potential to contain small segments...and this could be interpreted by Privacy Authorities in Europe as identification of data subjects."
62
+
* - `addons`: Relates to add-on products that extend the core platform capabilities.
* The Convert product line this billing plan pertains to.
69
+
* - `experiences`: Relates to A/B testing, MVT, Split URL, and personalization features.
70
+
* - `deploy`: Relates to the "Deploy" feature for rolling out changes to specific audiences without A/B testing reports. Knowledge Base: "Deployments have the potential to contain small segments...and this could be interpreted by Privacy Authorities in Europe as identification of data subjects."
71
+
* - `addons`: Relates to add-on products that extend the core platform capabilities.
72
+
*
73
+
*/
74
+
exportconstProducts={
75
+
EXPERIENCES: 'experiences',
76
+
DEPLOY: 'deploy',
77
+
ADDONS: 'addons'
78
+
}asconst;
79
+
42
80
exporttypePageNumber={
43
81
/**
44
82
* The page number for paginated results. For example, if `results_per_page` is 30, `page: 2` will retrieve items 31-60.
@@ -933,8 +971,35 @@ export type VisitorInsightsBase = {
933
971
*
934
972
*/
935
973
obfuscate_text?: boolean;
974
+
/**
975
+
* The percentage of visitors included in sampling for Convert Signals session recordings and Heatmaps for this project.
976
+
* Higher values collect data from a larger share of traffic and consume allocation faster.
977
+
*
978
+
*/
979
+
sampling_rate?: 5|10|20|30|40|50;
936
980
};
937
981
982
+
/**
983
+
* The percentage of visitors included in sampling for Convert Signals session recordings and Heatmaps for this project.
984
+
* Higher values collect data from a larger share of traffic and consume allocation faster.
985
+
*
986
+
*/
987
+
exporttypesampling_rate=5|10|20|30|40|50;
988
+
989
+
/**
990
+
* The percentage of visitors included in sampling for Convert Signals session recordings and Heatmaps for this project.
991
+
* Higher values collect data from a larger share of traffic and consume allocation faster.
992
+
*
993
+
*/
994
+
exportconstsampling_rate={
995
+
'_5': 5,
996
+
'_10': 10,
997
+
'_20': 20,
998
+
'_30': 30,
999
+
'_40': 40,
1000
+
'_50': 50
1001
+
}asconst;
1002
+
938
1003
/**
939
1004
* The method used for detecting and handling order outliers in revenue or product count tracking:
940
1005
* - `none`: No outlier detection is applied.
@@ -1597,7 +1662,7 @@ export type UpdateExperienceChangeRequestData = ExperienceChangeAdd;
1597
1662
* Knowledge Base has many articles on integrations, e.g., "Integrate Convert Experiences with Google Analytics", "Hotjar Integration".
0 commit comments