@openreplay/tracker 15.1.0 → 15.1.2
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 +163 -23
- package/dist/cjs/entry.js.map +1 -1
- package/dist/cjs/index.js +163 -23
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/main/app/index.d.ts +1 -0
- package/dist/lib/entry.js +163 -23
- package/dist/lib/entry.js.map +1 -1
- package/dist/lib/index.js +163 -23
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/main/app/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -171,6 +171,7 @@ export default class App {
|
|
|
171
171
|
private pageFrames;
|
|
172
172
|
private frameOderNumber;
|
|
173
173
|
private features;
|
|
174
|
+
private emptyBatchCounter;
|
|
174
175
|
constructor(projectKey: string, sessionToken: string | undefined, options: Partial<Options>, signalError: (error: string, apis: string[]) => void, insideIframe: boolean);
|
|
175
176
|
/** used by child iframes for crossdomain only */
|
|
176
177
|
parentActive: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openreplay/tracker",
|
|
3
3
|
"description": "The OpenReplay tracker main package",
|
|
4
|
-
"version": "15.1.
|
|
4
|
+
"version": "15.1.2",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logging",
|
|
7
7
|
"replay"
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"test": "jest --coverage=false",
|
|
48
48
|
"test:ci": "jest --coverage=true",
|
|
49
49
|
"postversion": "bun run build",
|
|
50
|
-
"prepublishOnly": "bun run
|
|
50
|
+
"prepublishOnly": "bun run build"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@babel/core": "^7.26.0",
|