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