@openreplay/tracker 16.0.2 → 16.0.3
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/cjs/entry.js +22 -5
- package/dist/cjs/entry.js.map +1 -1
- package/dist/cjs/index.js +22 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/main/modules/attributeSender.d.ts +2 -2
- package/dist/lib/entry.js +22 -5
- package/dist/lib/entry.js.map +1 -1
- package/dist/lib/index.js +22 -5
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/main/modules/attributeSender.d.ts +2 -2
- package/dist/types/main/modules/attributeSender.d.ts +2 -2
- package/package.json +1 -1
|
@@ -5,11 +5,11 @@ export declare class StringDictionary {
|
|
|
5
5
|
/** backwards dictionary of
|
|
6
6
|
* [repeated str:key]
|
|
7
7
|
* */
|
|
8
|
-
backDict
|
|
8
|
+
private backDict;
|
|
9
9
|
getKey: (str: string) => [number, boolean];
|
|
10
10
|
}
|
|
11
11
|
export default class AttributeSender {
|
|
12
|
-
dict
|
|
12
|
+
private dict;
|
|
13
13
|
private readonly app;
|
|
14
14
|
private readonly isDictDisabled;
|
|
15
15
|
constructor(options: {
|
|
@@ -5,11 +5,11 @@ export declare class StringDictionary {
|
|
|
5
5
|
/** backwards dictionary of
|
|
6
6
|
* [repeated str:key]
|
|
7
7
|
* */
|
|
8
|
-
backDict
|
|
8
|
+
private backDict;
|
|
9
9
|
getKey: (str: string) => [number, boolean];
|
|
10
10
|
}
|
|
11
11
|
export default class AttributeSender {
|
|
12
|
-
dict
|
|
12
|
+
private dict;
|
|
13
13
|
private readonly app;
|
|
14
14
|
private readonly isDictDisabled;
|
|
15
15
|
constructor(options: {
|