@liquidcommerce/elements-sdk 2.1.0-beta.58 → 2.1.0-beta.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/dist/index.esm.js +7071 -7064
- package/dist/types/core/fingerprint.service.d.ts +1 -1
- package/package.json +1 -1
- package/umd/elements.js +1 -1
|
@@ -8,6 +8,7 @@ interface FingerprintData {
|
|
|
8
8
|
export declare class FingerPrintService {
|
|
9
9
|
private readonly keyPrefix;
|
|
10
10
|
private isLocalStorageAvailable;
|
|
11
|
+
private fingerprintCache;
|
|
11
12
|
static getInstance(): FingerPrintService;
|
|
12
13
|
getId(partnerCode: string): Promise<string>;
|
|
13
14
|
getFingerprintData(): Promise<FingerprintData>;
|
|
@@ -22,7 +23,6 @@ export declare class FingerPrintService {
|
|
|
22
23
|
private _getBrowser;
|
|
23
24
|
private _getTimezone;
|
|
24
25
|
private _hash;
|
|
25
|
-
private _quickHash;
|
|
26
26
|
private _simpleHash;
|
|
27
27
|
}
|
|
28
28
|
export {};
|
package/package.json
CHANGED