@zaplier/sdk 1.1.0 → 1.1.1

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/dist/index.esm.js CHANGED
@@ -6058,6 +6058,17 @@ async function collectFingerprint(options = {}) {
6058
6058
  // - Screen frame (can vary slightly)
6059
6059
  // - Vendor flavors (can change)
6060
6060
  // - Exact hardware values (use buckets)
6061
+ // DEBUG: Log coreVector components to identify DevTools instability
6062
+ if (opts.debug || (typeof window !== 'undefined' && window._rabbitTrackerDebug)) {
6063
+ console.log('[RabbitTracker DEBUG] coreVector components:', {
6064
+ ua: coreVector.ua,
6065
+ platform: coreVector.platform,
6066
+ deviceType: coreVector.deviceType,
6067
+ screenBucket: coreVector.screen?.bucket,
6068
+ timezone: coreVector.timezone,
6069
+ _entropy: coreVector._entropy
6070
+ });
6071
+ }
6061
6072
  // Generate ultra-stable hash with additional collision resistance
6062
6073
  const stableCoreHash = hashStableCore(coreVector, opts.debug);
6063
6074
  // CRITICAL: Generate enhanced fingerprint hash combining STABLE components only