bro-auth 0.2.0 → 0.2.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/browser.cjs CHANGED
@@ -705,6 +705,8 @@ async function getFingerprint() {
705
705
  ].join("|");
706
706
  const hash = SHA256(normalizedString).toString();
707
707
  return {
708
+ normalizedString,
709
+ components,
708
710
  hash
709
711
  };
710
712
  }
package/dist/browser.js CHANGED
@@ -680,6 +680,8 @@ async function getFingerprint() {
680
680
  ].join("|");
681
681
  const hash = SHA256(normalizedString).toString();
682
682
  return {
683
+ normalizedString,
684
+ components,
683
685
  hash
684
686
  };
685
687
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bro-auth",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "bro-auth — Stateless, fingerprint-bound JWT authentication. Server utilities + browser fingerprinting module.",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -46,4 +46,4 @@
46
46
  "tsup": "^8.5.1",
47
47
  "typescript": "^5.9.3"
48
48
  }
49
- }
49
+ }