Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@openreplay/tracker

Package Overview
Dependencies
Maintainers
3
Versions
220
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openreplay/tracker - npm Package Compare versions

Comparing version 3.5.4 to 3.5.5-beta.0

4

cjs/app/context.js

@@ -15,3 +15,3 @@ "use strict";

doc.defaultView; // TODO: smart global typing for Window object
while ((context.parent || context.top) && context.parent !== context) {
while (context !== window) {
// @ts-ignore

@@ -22,3 +22,3 @@ if (node instanceof context[constr.name]) {

// @ts-ignore
context = context.parent || context.top;
context = context.parent || window;
}

@@ -25,0 +25,0 @@ // @ts-ignore

@@ -32,3 +32,3 @@ "use strict";

this.activityState = ActivityState.NotActive;
this.version = '3.5.4'; // TODO: version compatability check inside each plugin.
this.version = '3.5.5-beta.0'; // TODO: version compatability check inside each plugin.
this.preStartMessages = [];

@@ -35,0 +35,0 @@ this.projectKey = projectKey;

@@ -130,3 +130,3 @@ "use strict";

req.send(JSON.stringify({
trackerVersion: '3.5.4',
trackerVersion: '3.5.5-beta.0',
projectKey: options.projectKey,

@@ -133,0 +133,0 @@ doNotTrack,

@@ -12,3 +12,3 @@ // TODO: we need a type expert here so we won't have to ignore the lines

doc.defaultView; // TODO: smart global typing for Window object
while ((context.parent || context.top) && context.parent !== context) {
while (context !== window) {
// @ts-ignore

@@ -19,3 +19,3 @@ if (node instanceof context[constr.name]) {

// @ts-ignore
context = context.parent || context.top;
context = context.parent || window;
}

@@ -22,0 +22,0 @@ // @ts-ignore

@@ -29,3 +29,3 @@ import { timestamp } from "../utils.js";

this.activityState = ActivityState.NotActive;
this.version = '3.5.4'; // TODO: version compatability check inside each plugin.
this.version = '3.5.5-beta.0'; // TODO: version compatability check inside each plugin.
this.preStartMessages = [];

@@ -32,0 +32,0 @@ this.projectKey = projectKey;

@@ -126,3 +126,3 @@ import App, { DEFAULT_INGEST_POINT } from "./app/index.js";

req.send(JSON.stringify({
trackerVersion: '3.5.4',
trackerVersion: '3.5.5-beta.0',
projectKey: options.projectKey,

@@ -129,0 +129,0 @@ doNotTrack,

{
"name": "@openreplay/tracker",
"description": "The OpenReplay tracker main package",
"version": "3.5.4",
"version": "3.5.5-beta.0",
"keywords": [

@@ -6,0 +6,0 @@ "logging",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc