@versini/ui-fingerprint 0.0.0 → 1.0.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.d.ts +2 -2
- package/dist/index.js +3 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ type FingerprintData = [
|
|
|
71
71
|
ScreenFP,
|
|
72
72
|
SystemFP
|
|
73
73
|
];
|
|
74
|
-
declare const getFingerprintData: (debug
|
|
75
|
-
declare const getFingerprintHash: (debug
|
|
74
|
+
declare const getFingerprintData: (debug?: boolean) => Promise<FingerprintData>;
|
|
75
|
+
declare const getFingerprintHash: (debug?: boolean) => Promise<string>;
|
|
76
76
|
|
|
77
77
|
export { getFingerprintData, getFingerprintHash };
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-fingerprint
|
|
2
|
+
@versini/ui-fingerprint v1.0.1
|
|
3
3
|
© 2024 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
window.__VERSINI_UI_FINGERPRINT__ || (window.__VERSINI_UI_FINGERPRINT__ = {
|
|
7
|
-
version: "
|
|
8
|
-
buildTime: "07/18/2024
|
|
7
|
+
version: "1.0.1",
|
|
8
|
+
buildTime: "07/18/2024 09:17 AM EDT",
|
|
9
9
|
homepage: "https://github.com/aversini/ui-components",
|
|
10
10
|
license: "MIT"
|
|
11
11
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-fingerprint",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"test:watch": "vitest",
|
|
36
36
|
"test": "vitest run"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "2a245f3ee7f2dacc4630f393bf0bdc23c44911bd"
|
|
39
39
|
}
|