@gemx-dev/clarity-js 0.8.59 → 0.8.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/core.d.ts CHANGED
@@ -140,6 +140,7 @@ export interface Config {
140
140
  throttleDom?: boolean;
141
141
  conversions?: boolean;
142
142
  includeSubdomains?: boolean;
143
+ modules?: string[];
143
144
  }
144
145
 
145
146
  export const enum Constant {
package/types/data.d.ts CHANGED
@@ -212,6 +212,7 @@ export const enum Code {
212
212
  Config = 8,
213
213
  FunctionExecutionTime = 9,
214
214
  LeanLimit = 10,
215
+ BFCache = 11,
215
216
  }
216
217
 
217
218
  export const enum Severity {
@@ -395,7 +396,20 @@ export const enum ConsentSource {
395
396
  // 100-255 Reserved for CMP integration, both internal and external
396
397
  ClarityShopifyPixel = 100,
397
398
  ClarityShopifyApp = 101,
398
- UET = 102
399
+ UET = 102,
400
+
401
+ //CMPs
402
+ CmpMyAgilePrivacy = 150,
403
+ CmpUserCentrics = 151,
404
+ CmpCookiebot = 152,
405
+ CmpAxeptio = 153,
406
+ CmpCookiehub = 154,
407
+ CmpCookieYes = 155,
408
+ CmpWebTofee = 156,
409
+ CmpWPConsent = 157,
410
+ CmpSeersAI = 158,
411
+ // Reserved to indicate an unknown consent source
412
+ Unknown = 255,
399
413
  }
400
414
 
401
415
  /* Helper Interfaces */
@@ -154,6 +154,7 @@ export interface ScrollData {
154
154
  y: number;
155
155
  top: Node | string;
156
156
  bottom: Node | string;
157
+ trust: BooleanFlag;
157
158
  }
158
159
 
159
160
  export interface SelectionData {