@livedigital/client 3.41.1 → 3.42.0-use-webapi-crypto.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/helpers/common.d.ts +0 -1
- package/dist/helpers/randomString.d.ts +1 -0
- package/dist/index.es.js +4 -4
- package/dist/index.js +4 -5
- package/package.json +1 -1
- package/src/engine/analyticsApiClient/helper.ts +2 -2
- package/src/engine/index.ts +2 -1
- package/src/helpers/common.ts +0 -7
- package/src/helpers/randomString.ts +18 -0
package/dist/helpers/common.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ export declare function deepEqualObject(object1: PlainObject, object2: PlainObje
|
|
|
10
10
|
export declare function debounce<T extends (...args: never[]) => Promise<void>>(callback: T, delay: number, immediate?: boolean): (this: unknown, ...args: Parameters<typeof callback>) => Promise<void>;
|
|
11
11
|
export declare function prepareLogLevel(level?: LogLevel): LogLevel;
|
|
12
12
|
export declare function isAnalyticsActive(flag?: boolean): boolean;
|
|
13
|
-
export declare function randomString(): string;
|
|
14
13
|
export declare function markSDKInstance(mark: string): void;
|
|
15
14
|
export declare function getSDKInstancesMarks(): string[];
|
|
16
15
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function randomString(len?: number): string;
|